:root {
  --ink: #18204a;
  --ink-soft: #5f6484;
  --blue: #5265e8;
  --blue-dark: #3547c4;
  --sky: #61c9ff;
  --yellow: #ffd54a;
  --coral: #ff6d61;
  --mint: #9ee7ba;
  --lilac: #c9b5ff;
  --cream: #fffaf1;
  --paper: #ffffff;
  --line: #e9e8f2;
  --shadow: 0 24px 70px rgba(61, 69, 132, 0.13);
  --radius-lg: 36px;
  --radius-md: 24px;
  --display: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  width: min(1220px, calc(100% - 40px));
  height: 76px;
  margin: 16px auto;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 14px 45px rgba(27, 43, 105, 0.12);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled {
  position: fixed;
  height: 68px;
  box-shadow: 0 12px 35px rgba(27, 43, 105, 0.18);
  animation: header-in .35s ease both;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.025em;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.button) {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}
.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav-links > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
}
.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(82, 101, 232, 0.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 17px 34px rgba(82, 101, 232, 0.25); }
.button span { transition: transform .2s ease; }
.button:hover span { transform: translate(2px, -2px); }
.button-small { min-height: 48px; padding-inline: 18px; border-radius: 14px; }
.button-dark { color: white; background: var(--ink); box-shadow: none; }
.button-primary {
  color: white;
  background: var(--blue);
}
.button-primary:hover { background: var(--blue-dark); }
.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.hero {
  min-height: 800px;
  height: min(900px, 100vh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,250,241,.98) 0%, rgba(255,250,241,.9) 31%, rgba(255,250,241,.18) 58%, transparent 75%),
    linear-gradient(0deg, rgba(255,250,241,.5), transparent 28%);
}
.hero-content {
  width: min(1220px, calc(100% - 40px));
  margin: 64px auto 0;
}
.hero-content > * { opacity: 0; animation: rise-in .75s ease forwards; }
.hero-content .pill { animation-delay: .15s; }
.hero-content h1 { animation-delay: .25s; }
.hero-content > p { animation-delay: .35s; }
.hero-actions { animation-delay: .45s; }
.hero-notes { animation-delay: .55s; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(82,101,232,.16);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(67, 76, 139, .08);
}
.pill b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,109,97,.16);
}
h1, h2, blockquote {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .97;
}
h1 {
  max-width: 650px;
  margin: 22px 0;
  font-size: clamp(72px, 9.2vw, 132px);
}
h1 em, h2 em {
  color: var(--blue);
  font-style: normal;
}
.hero-content > p {
  max-width: 570px;
  margin: 0 0 30px;
  color: #535978;
  font-size: 17px;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0;
  padding: 0;
  color: #5b617c;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}
.hero-notes span { color: var(--blue); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(24,32,74,.75);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue span {
  width: 19px;
  height: 28px;
  position: relative;
  border: 1px solid rgba(24,32,74,.38);
  border-radius: 10px;
}
.scroll-cue span::after {
  content: "";
  width: 3px;
  height: 5px;
  position: absolute;
  left: 7px;
  top: 5px;
  border-radius: 3px;
  background: var(--blue);
  animation: scroll-dot 1.5s ease infinite;
}
.hero-confetti i { position: absolute; z-index: -1; border-radius: 4px; transform: rotate(20deg); }
.hero-confetti i:nth-child(1) { width: 9px; height: 32px; left: 7%; top: 24%; background: var(--coral); transform: rotate(-24deg); }
.hero-confetti i:nth-child(2) { width: 17px; height: 17px; left: 42%; top: 23%; border: 4px solid var(--yellow); background: transparent; border-radius: 50%; }
.hero-confetti i:nth-child(3) { width: 9px; height: 24px; left: 46%; bottom: 19%; background: var(--blue); transform: rotate(42deg); }
.hero-confetti i:nth-child(4) { width: 12px; height: 12px; left: 3%; bottom: 27%; background: var(--mint); border-radius: 50%; }
.hero-confetti i:nth-child(5) { width: 18px; height: 7px; left: 34%; bottom: 13%; background: var(--lilac); transform: rotate(-15deg); }

.marquee {
  padding: 14px 0;
  overflow: hidden;
  background: var(--yellow);
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 25s linear infinite;
}
.marquee span {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
}
.marquee b { color: var(--coral); font-size: 20px; }

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before { content: "✦"; color: var(--yellow); font-size: 16px; }
.kicker-light { color: white; }
.section h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
}
.heading-aside p { margin: 0 0 20px; color: var(--ink-soft); font-size: 15px; }
.arrow-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}
.arrow-link span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lilac);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}
.arrow-link:hover span { color: white; background: var(--blue); transform: rotate(45deg); }

.products { padding-bottom: 135px; }
.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.asset-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(75, 81, 130, .09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.asset-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(61,69,132,.2); }
.asset-visual {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e9edff;
}
.asset-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(24,32,74,.12));
  pointer-events: none;
}
.asset-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.asset-card:hover .asset-visual img { transform: scale(1.035); }
.asset-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.91);
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.asset-number {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 13px;
  color: rgba(255,255,255,.86);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
.asset-content { padding: 26px 28px 28px; }
.asset-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.asset-meta .price { color: var(--coral); }
.asset-content h3 {
  margin: 13px 0 9px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.13;
}
.asset-content p {
  min-height: 51px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 13px;
}
.asset-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}
.asset-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  transition: transform .2s ease;
}
.asset-link:hover span { transform: rotate(45deg); }

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding-top: 80px;
}
.feature-art {
  min-height: 610px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 46% 54% 48% 52% / 47% 42% 58% 53%;
  background: #e7eaff;
}
.feature-art > img {
  width: 52%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 30px rgba(55,70,171,.2));
}
.feature-orbit {
  position: absolute;
  border: 2px dashed rgba(82,101,232,.18);
  border-radius: 50%;
}
.orbit-one { inset: 15%; }
.orbit-two { inset: 27%; border-color: rgba(255,109,97,.2); }
.feature-card {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 11px;
  border-radius: 18px;
  color: white;
  box-shadow: 0 15px 30px rgba(41,53,121,.16);
  animation: float-card 5s ease-in-out infinite;
}
.feature-card .feature-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  font-family: var(--display);
  font-size: 19px;
}
.feature-card strong { font-family: var(--display); font-size: 14px; line-height: 1.3; }
.feature-card small { font-size: 8px; opacity: .82; }
.card-blue { top: 9%; left: -3%; background: var(--blue); }
.card-yellow { top: 44%; right: -7%; color: var(--ink); background: var(--yellow); animation-delay: -.8s; }
.card-coral { bottom: 8%; left: 1%; background: var(--coral); animation-delay: -1.5s; }
.feature-copy .lead { margin: 28px 0 32px; color: var(--ink-soft); font-size: 16px; }
.feature-list { display: grid; gap: 0; }
.feature-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 17px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}
.feature-list article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-dark);
  background: #e7eaff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}
.feature-list h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 17px;
}
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 12px; }

.promise { padding-top: 70px; padding-bottom: 70px; }
.promise-card {
  min-height: 520px;
  padding: 70px 15%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: white;
  background: var(--blue);
  border-radius: 46px;
  isolation: isolate;
}
.promise-card blockquote {
  max-width: 900px;
  margin: 15px 0 35px;
  font-size: clamp(38px, 5.4vw, 65px);
}
.promise-signoff { display: flex; align-items: center; gap: 12px; }
.promise-signoff img { width: 52px; height: 52px; object-fit: contain; }
.promise-signoff span { display: flex; flex-direction: column; text-align: left; }
.promise-signoff strong { font-family: var(--display); font-size: 15px; }
.promise-signoff small { font-size: 9px; opacity: .72; }
.promise-shape {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}
.shape-one { left: -130px; bottom: -120px; background: var(--coral); }
.shape-two { right: -150px; top: -160px; background: var(--yellow); }
.promise-stars {
  position: absolute;
  right: 6%;
  bottom: 10%;
  color: var(--yellow);
  font-size: 22px;
  transform: rotate(-15deg);
}

.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.support-copy > p {
  max-width: 540px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.support-bubble {
  min-height: 390px;
  position: relative;
  border-radius: 52% 48% 41% 59% / 45% 54% 46% 55%;
  background: #f1edff;
}
.message {
  position: absolute;
  max-width: 270px;
  padding: 18px 21px;
  border-radius: 22px;
  font-family: var(--display);
  font-size: 15px;
  box-shadow: 0 18px 35px rgba(69,65,121,.12);
}
.message span { margin-right: 5px; }
.message-one { top: 15%; left: 7%; color: white; background: var(--blue); transform: rotate(-4deg); }
.message-two { top: 43%; right: 5%; background: white; transform: rotate(3deg); }
.message-two span { color: var(--coral); }
.message-three { left: 20%; bottom: 10%; background: var(--yellow); transform: rotate(-2deg); }

.nav-links a[aria-current="page"] { color: var(--blue-dark); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.support-page {
  background:
    radial-gradient(circle at 8% 28%, rgba(158,231,186,.42), transparent 25%),
    radial-gradient(circle at 92% 8%, rgba(201,181,255,.38), transparent 24%),
    var(--cream);
}
.support-page .site-header { position: absolute; }
.support-page .site-header.is-scrolled { position: fixed; }
.support-hero {
  width: min(1160px, calc(100% - 40px));
  min-height: 880px;
  margin: 0 auto;
  padding: 145px 0 100px;
  position: relative;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: center;
  gap: 72px;
}
.support-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}
.shape-sun {
  width: 180px;
  height: 180px;
  top: 110px;
  left: -120px;
  background: rgba(255,213,74,.34);
}
.shape-sky {
  width: 280px;
  height: 280px;
  right: -170px;
  bottom: 40px;
  background: rgba(97,201,255,.24);
}
.support-intro h1 {
  margin: 26px 0;
  font-size: clamp(70px, 8vw, 112px);
}
.support-intro > p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.support-details {
  margin-top: 42px;
  display: grid;
  gap: 15px;
}
.support-details > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
}
.support-details > div > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--blue);
  font-family: var(--display);
  font-weight: 700;
}
.support-details > div:nth-child(2) > span { color: var(--ink); background: var(--yellow); }
.support-details > div:nth-child(3) > span { background: var(--coral); }
.support-details p {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.support-details strong { font-family: var(--display); font-size: 15px; }
.support-details small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; }

.contact-card {
  padding: 42px;
  position: relative;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(75,81,130,.09);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(61,69,132,.16);
}
.contact-card::before {
  content: "";
  width: 76px;
  height: 18px;
  position: absolute;
  top: -9px;
  right: 54px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(3deg);
}
.contact-card-heading { margin-bottom: 28px; }
.contact-card-heading .kicker { margin-bottom: 10px; }
.contact-card-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 35px;
  letter-spacing: -.035em;
  line-height: 1.1;
}
.contact-card-heading p { margin: 9px 0 0; color: var(--ink-soft); font-size: 10px; }
#contact-form { display: grid; gap: 19px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#contact-form label { display: grid; gap: 8px; }
#contact-form label > span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  border: 1px solid #deddea;
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: #fbfaff;
  font: 500 13px/1.45 var(--body);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
#contact-form input,
#contact-form select { height: 50px; padding: 0 14px; }
#contact-form textarea { min-height: 150px; padding: 14px; resize: vertical; }
#contact-form input::placeholder,
#contact-form textarea::placeholder { color: #9b9eb3; }
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(82,101,232,.12);
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.form-footer > p { max-width: 210px; margin: 0; color: var(--ink-soft); font-size: 9px; }
.form-footer .button { min-width: 168px; cursor: pointer; }
.form-footer .button:disabled { cursor: wait; opacity: .65; transform: none; }
.contact-card .button:hover .button-label { transform: none; }
.form-status {
  min-height: 0;
  padding: 0;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 700;
}
.form-status:not(:empty) { min-height: 44px; padding: 12px 14px; }
.form-status.success { color: #17633a; background: #e6f8ed; }
.form-status.error { color: #8b2922; background: #fff0ee; }
.form-trap {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}
.support-strip {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 110px;
  padding: 27px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 22px;
  color: white;
  background: var(--blue);
}
.support-strip p { margin: 0; font-size: 12px; opacity: .72; }
.support-strip a { font-family: var(--display); font-size: 15px; font-weight: 600; }
.support-strip a:hover { color: var(--yellow); }

.privacy-page {
  background:
    radial-gradient(circle at 90% 10%, rgba(97,201,255,.28), transparent 27%),
    radial-gradient(circle at 7% 36%, rgba(255,213,74,.25), transparent 23%),
    var(--cream);
}
.privacy-page .site-header { position: absolute; }
.privacy-page .site-header.is-scrolled { position: fixed; }
.privacy-main {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 115px;
}
.privacy-hero {
  max-width: 850px;
  margin-bottom: 78px;
}
.privacy-hero h1 {
  margin: 26px 0;
  font-size: clamp(68px, 9vw, 118px);
}
.privacy-hero > p {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 17px;
}
.privacy-hero .button { cursor: pointer; }
.privacy-content {
  padding: 20px 54px 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(75,81,130,.09);
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.privacy-updated {
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.privacy-content > section {
  padding: 38px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.privacy-content > section:last-child { border-bottom: 0; }
.privacy-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}
.privacy-content section:nth-of-type(2n) .privacy-number { color: var(--ink); background: var(--yellow); }
.privacy-content section:nth-of-type(3n) .privacy-number { color: white; background: var(--coral); }
.privacy-content h2 {
  margin: 3px 0 14px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.privacy-content p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 13px;
}
.privacy-content p:last-child { margin-bottom: 0; }
.privacy-content a,
.text-button {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.text-button {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}
.privacy-content code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #f1f0fa;
  font-size: .92em;
}

.site-footer {
  padding: 65px max(20px, calc((100% - 1160px) / 2)) 28px;
  color: white;
  background: var(--ink);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .brand-copy small { color: rgba(255,255,255,.54); }
.footer-main > p { color: rgba(255,255,255,.55); font-size: 12px; }
.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  font-size: 12px;
  font-weight: 700;
}
.footer-main nav a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: 10px;
}
.footer-utility {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-utility button {
  padding: 0;
  border: 0;
  cursor: pointer;
  color: inherit;
  background: transparent;
  font: inherit;
}
.footer-bottom a:hover,
.footer-utility button:hover { color: white; }

.consent-banner {
  width: min(1040px, calc(100% - 32px));
  padding: 24px;
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 18px;
  left: 0;
  margin: auto;
  display: grid;
  grid-template-columns: 54px minmax(250px, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(82,101,232,.22);
  border-radius: 25px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 75px rgba(24,32,74,.26);
  animation: consent-in .42s ease both;
  backdrop-filter: blur(18px);
}
.consent-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 22px;
}
.consent-copy .kicker { margin-bottom: 5px; font-size: 9px; }
.consent-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -.025em;
  line-height: 1.15;
  outline: none;
}
.consent-copy p {
  max-width: 590px;
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}
.consent-copy a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.consent-button {
  min-width: 154px;
  min-height: 50px;
  padding-inline: 17px;
  cursor: pointer;
  border: 2px solid var(--blue);
  border-radius: 14px;
  box-shadow: none;
}
.consent-reject { color: var(--blue-dark); background: white; }
.consent-reject:hover { color: white; background: var(--blue-dark); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes rise-in { to { opacity: 1; transform: none; } from { opacity: 0; transform: translateY(18px); } }
@keyframes header-in { from { transform: translateY(-100px); } }
@keyframes scroll-dot { 50% { transform: translateY(9px); opacity: .25; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes float-card { 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes consent-in { from { opacity: 0; transform: translateY(28px); } }

@media (max-width: 980px) {
  .hero { min-height: 760px; }
  .hero-art { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(255,250,241,.97), rgba(255,250,241,.82) 45%, rgba(255,250,241,.14) 78%); }
  .hero-content { margin-top: 90px; }
  h1 { font-size: clamp(70px, 12vw, 105px); }
  .feature { grid-template-columns: 1fr; gap: 60px; }
  .feature-art { width: min(620px, 100%); margin: auto; }
  .support { gap: 30px; }
  .support-hero { grid-template-columns: 1fr; gap: 55px; }
  .support-intro { max-width: 650px; }
  .support-intro h1 { font-size: clamp(76px, 13vw, 112px); }
  .support-details { grid-template-columns: repeat(3, 1fr); }
  .support-details > div { align-items: start; grid-template-columns: 1fr; }
  .contact-card { width: min(720px, 100%); margin: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 24px); height: 68px; margin-top: 12px; }
  .site-header.is-scrolled { height: 62px; }
  .brand img { width: 45px; height: 45px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 7px; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 86px 12px auto;
    padding: 22px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-header.is-scrolled .nav-links { inset-block-start: 78px; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links > a:not(.button) { padding: 12px; }
  .nav-links .button { margin-top: 6px; }
  .hero {
    min-height: 830px;
    height: auto;
    padding: 130px 0 240px;
    align-items: flex-start;
  }
  .hero-art { object-position: 65% bottom; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255,250,241,.98) 0%, rgba(255,250,241,.92) 46%, rgba(255,250,241,.06) 78%),
      linear-gradient(90deg, rgba(255,250,241,.4), transparent 60%);
  }
  .hero-content { margin-top: 0; }
  h1 { font-size: clamp(66px, 19vw, 96px); }
  .hero-content > p { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 360px; }
  .hero-notes { max-width: 420px; gap: 10px 18px; }
  .scroll-cue { display: none; }
  .section { width: min(100% - 28px, 1160px); padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section h2 { font-size: clamp(46px, 14vw, 66px); }
  .asset-grid { grid-template-columns: 1fr; }
  .asset-content p { min-height: 0; }
  .feature-art { min-height: 500px; }
  .feature-card { min-width: 175px; padding: 12px; }
  .card-blue { left: -2%; }
  .card-yellow { right: -2%; }
  .promise-card { min-height: 490px; padding: 60px 25px; border-radius: 30px; }
  .support { grid-template-columns: 1fr; }
  .support-bubble { min-height: 370px; }
  .support-hero {
    width: min(100% - 28px, 1160px);
    padding: 125px 0 75px;
  }
  .support-intro h1 { font-size: clamp(66px, 19vw, 94px); }
  .support-details { grid-template-columns: 1fr; }
  .support-details > div { grid-template-columns: 44px 1fr; }
  .contact-card { padding: 30px 24px; border-radius: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .support-strip {
    width: calc(100% - 28px);
    margin-bottom: 75px;
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
  .privacy-main { width: min(100% - 28px, 1080px); padding: 130px 0 75px; }
  .privacy-hero { margin-bottom: 55px; }
  .privacy-hero h1 { font-size: clamp(60px, 18vw, 90px); }
  .privacy-content { padding: 12px 24px 20px; border-radius: 28px; }
  .privacy-content > section { grid-template-columns: 1fr; gap: 17px; padding: 30px 0; }
  .privacy-content h2 { font-size: 25px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main nav { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-utility { align-items: flex-start; flex-direction: column; gap: 8px; }
  .consent-banner {
    width: calc(100% - 20px);
    padding: 19px;
    bottom: 10px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    border-radius: 21px;
  }
  .consent-icon { width: 42px; height: 42px; border-radius: 13px; font-size: 18px; }
  .consent-copy h2 { font-size: 21px; }
  .consent-actions { grid-column: 1 / -1; }
  .consent-button { min-width: 0; padding-inline: 11px; font-size: 11px; }
}

@media (max-width: 440px) {
  .brand-copy small { display: none; }
  .hero { min-height: 780px; padding-bottom: 210px; }
  .hero-content { width: calc(100% - 28px); }
  .hero-notes { display: grid; }
  .feature-art { min-height: 430px; }
  .feature-card { min-width: 154px; grid-template-columns: 32px 1fr; }
  .feature-card .feature-icon { width: 32px; height: 32px; }
  .feature-card small { display: none; }
  .card-blue { top: 7%; }
  .card-yellow { top: 46%; }
  .card-coral { bottom: 5%; }
  .message { max-width: 235px; font-size: 13px; }
  .consent-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
