/* palette: bg=#FAF8FF fg=#1A1430 accent=#6C45F4 */
/* fonts: display="Syne" body="DM Sans" mono="Space Mono" */

:root {
  --bg: #FAF8FF;          /* dominant soft violet-white background */
  --bg-alt: #F0EBFE;      /* alternating section background */
  --bg-deep: #150F2B;     /* dark inverted band */
  --fg: #1A1430;          /* primary ink (deep violet-black) */
  --fg-soft: #2E2552;     /* slightly lighter foreground */
  --muted: #6B6388;       /* secondary text */
  --accent: #6C45F4;      /* electric violet accent */
  --accent-deep: #4A28C4; /* darker accent for hover */
  --teal: #18C2A8;        /* biomorphic secondary blob tone */
  --coral: #FF7A8A;       /* warm blob accent */
  --border: rgba(26, 20, 48, 0.10);
  --border-soft: rgba(26, 20, 48, 0.06);
  --serif: 'Syne', ui-sans-serif, sans-serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 4px 24px -4px rgba(48, 30, 110, 0.10);
  --shadow-hover: 0 18px 50px -12px rgba(48, 30, 110, 0.22);
  --radius-lg: 40px;
  --radius-md: 28px;
  --radius-sm: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-tight { padding: clamp(56px, 8vw, 100px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.lead { font-size: clamp(17px, 2vw, 19px); line-height: 1.78; color: var(--fg-soft); max-width: 56ch; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px -8px rgba(108, 69, 244, 0.55); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px rgba(108, 69, 244, 0.7); background: var(--accent-deep); }
.btn--ghost { border: 1.5px solid var(--border); color: var(--fg); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }
.btn--light { background: #fff; color: var(--fg); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
  font-size: 15px;
}
.arrow-link span { transition: transform 0.35s var(--ease); }
.arrow-link:hover span { transform: translateX(6px); }

/* ---------- decorative blobs ---------- */
.blob {
  position: absolute;
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat 18s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%; }
  33% { transform: translate(20px, -28px) scale(1.08) rotate(8deg); border-radius: 60% 40% 45% 55% / 45% 60% 40% 55%; }
  66% { transform: translate(-18px, 16px) scale(0.96) rotate(-6deg); border-radius: 40% 60% 55% 45% / 60% 40% 55% 45%; }
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 6px 30px -12px rgba(48, 30, 110, 0.18);
  background: rgba(250, 248, 255, 0.92);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 50% 50% 50% 12px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: grid; place-items: center;
  color: #fff; font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 18px -6px rgba(108, 69, 244, 0.6);
}
.brand__name small { display: block; font-family: var(--mono); font-weight: 400; font-size: 9px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }

.nav { display: none; align-items: center; gap: 36px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--fg-soft); transition: color 0.3s; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); border-radius: 2px; transition: width 0.35s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 14px; }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 28px 40px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__blob-1 { width: 520px; height: 520px; background: var(--accent); top: -120px; right: -80px; opacity: 0.40; }
.hero__blob-2 { width: 460px; height: 460px; background: var(--teal); bottom: -160px; left: -120px; opacity: 0.34; animation-delay: -6s; }
.hero__blob-3 { width: 320px; height: 320px; background: var(--coral); top: 30%; left: 40%; opacity: 0.22; animation-delay: -11s; }
.hero__inner { position: relative; z-index: 2; display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); position: relative; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; }
.hero__meta div strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.hero__meta div span { font-size: 13px; color: var(--muted); }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 46% 54% / 56% 44% 58% 42%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__chip {
  position: absolute;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
}
.hero__chip--a { bottom: 28px; left: -14px; }
.hero__chip--b { top: 32px; right: -10px; }
.hero__chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(24,194,168,0.18); }
.hero__chip strong { font-family: var(--serif); font-weight: 700; }
@media (max-width: 1023px) { .hero__chip--a { left: 6px; } .hero__chip--b { right: 6px; } }

/* ---------- generic section head ---------- */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 22px; }
.section-head .lead { margin: 0; }
.section-head.center .lead { margin: 0 auto; }

/* ---------- logos / trust strip ---------- */
.trust { padding: 36px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 46px; }
.trust span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--muted); }
.trust em { font-style: normal; font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--fg-soft); letter-spacing: -0.01em; }

/* ---------- services grid ---------- */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.card__icon {
  width: 58px; height: 58px;
  border-radius: 50% 50% 46% 54% / 56% 44% 58% 42%;
  display: grid; place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(108,69,244,0.16), rgba(24,194,168,0.16));
  color: var(--accent);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 23px; margin-bottom: 12px; letter-spacing: -0.01em; }
.card p { font-size: 15.5px; color: var(--muted); line-height: 1.7; }
.card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block; }

/* ---------- manifesto ---------- */
.manifesto { background: var(--bg-deep); color: #fff; overflow: hidden; }
.manifesto .blob { opacity: 0.4; filter: blur(80px); }
.manifesto__b1 { width: 420px; height: 420px; background: var(--accent); top: -120px; left: -80px; }
.manifesto__b2 { width: 380px; height: 380px; background: var(--teal); bottom: -150px; right: -100px; animation-delay: -7s; }
.manifesto__inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; text-align: center; }
.manifesto .eyebrow { color: var(--teal); }
.manifesto .eyebrow::before { background: var(--teal); }
.manifesto blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.manifesto blockquote em { font-style: normal; color: var(--teal); }
.manifesto__cite { margin-top: 36px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }

/* ---------- timeline ---------- */
.timeline { position: relative; max-width: 920px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--teal));
  border-radius: 2px;
}
@media (min-width: 768px) { .timeline::before { left: 50%; transform: translateX(-1px); } }
.tl-item { position: relative; padding-left: 76px; margin-bottom: 44px; }
@media (min-width: 768px) {
  .tl-item { width: 50%; padding-left: 0; }
  .tl-item:nth-child(odd) { left: 0; padding-right: 56px; text-align: right; }
  .tl-item:nth-child(even) { left: 50%; padding-left: 56px; }
}
.tl-node {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50% 50% 46% 54% / 56% 44% 58% 42%;
  left: 0; top: 0;
  background: #fff;
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 17px; color: var(--accent);
  box-shadow: var(--shadow-card);
  z-index: 2;
}
@media (min-width: 768px) {
  .tl-item:nth-child(odd) .tl-node { left: auto; right: -28px; }
  .tl-item:nth-child(even) .tl-node { left: -28px; }
}
.tl-card { background: #fff; border-radius: var(--radius-md); padding: 28px 30px; box-shadow: var(--shadow-card); border: 1px solid var(--border-soft); }
.tl-card .step-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.tl-card h3 { font-size: 22px; margin: 8px 0 12px; }
.tl-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ---------- split feature ---------- */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } .split--rev .split__media { order: -1; } }
.split__media {
  border-radius: 46% 54% 50% 50% / 54% 50% 50% 46%;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-hover);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.04; margin-bottom: 22px; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--fg-soft); }
.feature-list .tick {
  flex: 0 0 26px; width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: grid; place-items: center;
  color: #fff;
}
.feature-list .tick svg { width: 13px; height: 13px; }

/* ---------- stats band ---------- */
.stats { background: var(--bg-alt); }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 20px; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; background: linear-gradient(135deg, var(--accent), var(--teal)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { display: block; margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 34px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  position: relative;
}
.quote__mark { font-family: var(--serif); font-size: 76px; line-height: 0.6; color: var(--accent); opacity: 0.18; height: 30px; }
.quote p { font-size: 17px; line-height: 1.7; color: var(--fg-soft); margin-bottom: 24px; }
.quote__who { display: flex; align-items: center; gap: 14px; }
.avatar--mono {
  width: 48px; height: 48px;
  border-radius: 50% 50% 46% 54% / 56% 44% 58% 42%;
  display: grid; place-items: center;
  color: #fff; font-family: var(--serif); font-weight: 700; font-size: 16px;
  flex: 0 0 auto;
}
.quote__who strong { display: block; font-size: 15px; }
.quote__who span { font-size: 13px; color: var(--muted); }
.placeholder-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; opacity: 0.55; margin-top: 10px; }

/* ---------- team / principles ---------- */
.team { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .team { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { background: #fff; border-radius: var(--radius-md); padding: 32px 30px; box-shadow: var(--shadow-card); border: 1px solid var(--border-soft); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.member .avatar--mono { width: 64px; height: 64px; font-size: 22px; margin-bottom: 22px; }
.member h3 { font-size: 21px; margin-bottom: 4px; }
.member .role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--accent); margin-bottom: 16px; }
.member p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; text-align: left; font-family: var(--serif); font-size: clamp(18px, 2.4vw, 23px); font-weight: 600; letter-spacing: -0.01em; }
.faq-q .pm { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s, color 0.3s; }
.faq-item[data-open="true"] .pm { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 0 28px; font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 70ch; }

/* ---------- cta band ---------- */
.cta { background: var(--bg-deep); color: #fff; overflow: hidden; text-align: center; }
.cta .blob { opacity: 0.45; filter: blur(80px); }
.cta__b1 { width: 420px; height: 420px; background: var(--accent); top: -130px; right: -60px; }
.cta__b2 { width: 360px; height: 360px; background: var(--teal); bottom: -150px; left: -70px; animation-delay: -5s; }
.cta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.03; margin-bottom: 22px; }
.cta h2 em { font-style: normal; color: var(--teal); }
.cta p { color: rgba(255,255,255,0.72); font-size: 18px; margin: 0 auto 36px; max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }
.contact-info { display: grid; gap: 26px; align-content: start; }
.info-block { display: flex; gap: 16px; align-items: flex-start; }
.info-block .ic { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50% 50% 46% 54% / 56% 44% 58% 42%; background: linear-gradient(135deg, rgba(108,69,244,0.16), rgba(24,194,168,0.16)); display: grid; place-items: center; color: var(--accent); }
.info-block .ic svg { width: 20px; height: 20px; }
.info-block h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-block p { font-size: 16px; color: var(--fg-soft); }
.info-block a { color: var(--fg-soft); }
.info-block a:hover { color: var(--accent); }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-card); border: 1px solid var(--border-soft); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 9px; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(108,69,244,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; gap: 22px; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-consent { font-size: 12.5px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.form-consent a { color: var(--accent); text-decoration: underline; }

/* ---------- footer ---------- */
.footer { background: var(--bg-alt); padding: 80px 0 40px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { font-size: 15px; color: var(--muted); max-width: 38ch; line-height: 1.7; }
.footer__col h5 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.footer__col a { display: block; font-size: 14.5px; color: var(--fg-soft); padding: 6px 0; transition: color 0.3s, transform 0.3s; }
.footer__col a:hover { color: var(--accent); transform: translateX(4px); }
.footer__bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 13px; color: var(--muted); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { font-size: 13px; color: var(--muted); }
.footer__legal a:hover { color: var(--accent); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .blob, .hero__visual img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- legal / article pages ---------- */
.page-hero { padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 70px); position: relative; overflow: hidden; }
.page-hero .blob { opacity: 0.3; }
.page-hero__b1 { width: 380px; height: 380px; background: var(--accent); top: -150px; right: -90px; }
.page-hero h1 { position: relative; z-index: 2; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; margin-bottom: 18px; }
.page-hero .lead { position: relative; z-index: 2; }
.prose { max-width: 780px; margin: 0 auto; padding-bottom: clamp(60px, 9vw, 120px); }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 48px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.prose p { font-size: 16px; line-height: 1.8; color: var(--fg-soft); margin-bottom: 18px; }
.prose ul { padding-left: 22px; margin-bottom: 18px; }
.prose li { font-size: 16px; line-height: 1.8; color: var(--fg-soft); margin-bottom: 8px; }
.prose strong { color: var(--fg); }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 8px; }

/* ---------- thanks ---------- */
.thanks { min-height: 86vh; display: flex; align-items: center; text-align: center; overflow: hidden; position: relative; }
.thanks .blob { opacity: 0.4; }
.thanks__b1 { width: 460px; height: 460px; background: var(--teal); top: -160px; left: -100px; }
.thanks__b2 { width: 400px; height: 400px; background: var(--accent); bottom: -160px; right: -90px; animation-delay: -6s; }
.thanks__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.thanks__badge { width: 88px; height: 88px; border-radius: 50% 50% 46% 54% / 56% 44% 58% 42%; background: linear-gradient(135deg, var(--accent), var(--teal)); display: grid; place-items: center; margin: 0 auto 32px; color: #fff; box-shadow: var(--shadow-hover); }
.thanks__badge svg { width: 40px; height: 40px; }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; margin-bottom: 20px; }
.thanks p { color: var(--muted); font-size: 18px; margin-bottom: 32px; }

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(21, 15, 43, 0.42); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 34px 36px; max-width: 480px; border-radius: var(--radius-md); box-shadow: 0 30px 80px -20px rgba(21,15,43,0.5); border: 1px solid var(--border-soft); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 22px; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border-radius: 9999px; border: 1.5px solid var(--border); cursor: pointer; font-size: 14px; font-weight: 600; transition: transform 0.3s, background 0.3s, color 0.3s; }
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }
@media (max-width: 540px) { .cookie-popup__actions { flex-direction: column; } }
