/* ATRIA — Landing Page Styles
   Sistema de tokens + layout responsivo via container queries.
   Tema padrão = claro. Porte fiel do protótipo Claude Design (site/landing-styles.css).
   Fonte canônica de design: design.md (raiz do projeto).
*/

/* ── Inter (local) ──────────────────────────── */
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ── Urbanist (local) ───────────────────────── */
@font-face { font-family: 'Urbanist'; src: url('fonts/Urbanist-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Urbanist'; src: url('fonts/Urbanist-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Urbanist'; src: url('fonts/Urbanist-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Urbanist'; src: url('fonts/Urbanist-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
/* 800 (Black no protótipo) reusa o Bold local — Urbanist Bold cobre o peso display .strong */
@font-face { font-family: 'Urbanist'; src: url('fonts/Urbanist-Bold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }

/* Logo oficial = SVG vetorizado da Kelso (não precisamos da fonte Kelso). */

/* ── Page shell ─────────────────────────────── */
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.atria {
  /* Brand tokens */
  --navy: #0D2144;
  --navy-deep: #08142E;
  --navy-mid: #0E2350;
  --navy-soft: #15346B;
  --teal: #1A7A8A;
  --teal-hover: #21909F;
  --teal-soft: #5DA8B5;
  --slate-blue: #475569;
  --sky: #0EA5E9;
  --sky-soft: #7DD3FC;
  --sand: #F7F4EF;
  --offwhite: #F8FAFC;
  --white: #FFFFFF;
  --slate: #64748B;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-600: #475569;
  --slate-800: #1E293B;

  /* Surface roles */
  --bg-page: var(--offwhite);
  --bg-section: var(--white);
  --bg-section-warm: var(--sand);
  --bg-section-dark: var(--navy);
  --bg-section-deep: var(--navy-deep);
  --bg-card: var(--white);
  --bg-card-dark: var(--navy-mid);
  --fg: var(--navy);
  --fg-muted: var(--slate-600);
  --fg-subtle: var(--slate);
  --border-soft: var(--slate-200);

  /* Type */
  --font-display: 'Urbanist', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg-page);

  container-type: inline-size;
  container-name: page;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.atria *,
.atria *::before,
.atria *::after { box-sizing: border-box; }

.atria p, .atria h1, .atria h2, .atria h3, .atria h4, .atria figure, .atria ul, .atria ol { margin: 0; padding: 0; }
.atria ul, .atria ol { list-style: none; }
.atria :where(button) { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.atria a { color: inherit; text-decoration: none; }
.atria img { max-width: 100%; }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ── Logo (SVG oficial) ─────────────────────── */
.nav__logo { display: inline-flex; }
.nav__logo img { display: block; height: 28px; width: auto; }
.footer__logo { display: block; height: 34px; width: auto; }

/* ── Type scale ─────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
}
.atria-on-dark .eyebrow { color: var(--sky-soft); }

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5.6cqi, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display .strong { font-weight: 800; }
.display .accent { color: var(--sky); font-weight: 800; }

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4cqi, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.h2 em { font-style: normal; }

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.6cqi, 22px);
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.18cqi, 17px);
  line-height: 1.75;
  color: var(--fg-muted);
  text-wrap: pretty;
}
.body strong { color: var(--fg); font-weight: 600; }
.atria-on-dark .body { color: rgba(255,255,255,0.78); }
.atria-on-dark .body strong { color: #fff; }

.caption {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
}

/* ── Layout primitives ──────────────────────── */
.section {
  position: relative;
  padding: clamp(64px, 7cqi, 120px) clamp(20px, 5cqi, 96px);
  overflow: hidden;
  background: var(--bg-section);
  color: var(--fg);
}
.section--warm { background: var(--bg-section-warm); }
.section--white { background: var(--bg-section); }
.section--offwhite { background: var(--offwhite); }
.section--navy { background: var(--bg-section-dark); color: #fff; }
.section--navy-deep { background: var(--bg-section-deep); color: #fff; }
.section--teal { background: var(--teal); color: #fff; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-inner--center { text-align: center; }
.measure { max-width: 760px; }
.measure-880 { max-width: 880px; }
.measure-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary { background: var(--teal); color: #fff; border: 0; }
.btn--primary:hover { background: #fff; color: var(--navy); }
.btn--primary:active { background: var(--sky); color: var(--navy); }

.on-teal .btn--primary { background: var(--navy); color: #fff; }
.on-teal .btn--primary:hover { background: #fff; color: var(--navy); }
.on-light .btn--primary { background: var(--teal); color: #fff; }
.on-light .btn--primary:hover { background: var(--navy); color: #fff; }
.on-teal .btn--primary:active,
.on-light .btn--primary:active { background: var(--sky); color: var(--navy); }

.btn--primary.btn--hover-navy:hover { background: var(--navy); color: #fff; }
.btn--primary.btn--hover-fade:hover { background: var(--offwhite); color: #fff; }

.btn--ghost-light, .btn--ghost-dark {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}
.on-light .btn--ghost-light,
.on-light .btn--ghost-dark { color: var(--navy); border-color: var(--navy); }
.btn--ghost-light:hover,
.btn--ghost-dark:hover { background: rgba(71, 85, 105, 0.25); }
.btn--ghost-light:active,
.btn--ghost-dark:active { background: rgba(71, 85, 105, 0.85); color: #fff; }
.on-light .btn--ghost-light:active,
.on-light .btn--ghost-dark:active { border-color: transparent; }

.btn--link { background: transparent; color: var(--teal); padding-left: 0; padding-right: 0; }
.btn--link:hover { color: var(--sky); }
.atria-on-dark .btn--link { color: var(--sky-soft); }
.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Header / Nav ───────────────────────────── */
.nav {
  position: relative;
  z-index: 5;
  padding: 24px clamp(20px, 5cqi, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-on-dark { color: #fff; }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
}
.nav__links a { opacity: 0.85; }
.nav__links a:hover { opacity: 1; color: var(--sky); }
.nav__cta { display: flex; gap: 12px; align-items: center; }
@container page (max-width: 760px) { .nav__links { display: none; } }

/* ── Grid helpers ───────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 4cqi, 80px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4cqi, 32px); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 1.6cqi, 24px); }
.stack { display: flex; flex-direction: column; gap: clamp(16px, 2cqi, 28px); }
.row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.row--cta { gap: 14px; margin-top: 28px; }
.row--center { justify-content: center; }

@container page (max-width: 980px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@container page (max-width: 760px) {
  .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: clamp(20px, 2.4cqi, 32px);
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease;
}
.card--dark { background: var(--bg-card-dark); border-color: rgba(255,255,255,0.08); color: #fff; }
.card--feature { border-top: 3px solid var(--teal); border-radius: 0 0 14px 14px; }
.card__icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(26,122,138,0.10);
  color: var(--teal);
  margin-bottom: 20px;
}
.atria-on-dark .card__icon { background: rgba(14,165,233,0.14); color: var(--sky-soft); }
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.card__body { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: var(--fg-muted); }
.atria-on-dark .card__body { color: rgba(255,255,255,0.72); }

/* ── Decorative atoms ───────────────────────── */
.dotfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse at 70% 50%, #000 35%, transparent 80%);
}
.section-rule {
  display: inline-block;
  width: 56px; height: 2px;
  background: var(--teal);
  margin-bottom: 24px;
}
.atria-on-dark .section-rule { background: var(--sky); }
.corner-mark { position: absolute; pointer-events: none; }
.media { border-radius: 14px; overflow: hidden; position: relative; }
.media img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════════
   HERO A — Sóbrio editorial
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.hero__campo { position: absolute; inset: 0; opacity: 0.45; }
.hero__triade { position: absolute; top: clamp(80px, 8cqi, 140px); right: clamp(40px, 6cqi, 120px); opacity: 0.95; width: 200px; height: auto; }
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(64px, 9cqi, 160px) clamp(20px, 5cqi, 96px) clamp(80px, 10cqi, 180px);
}
.hero .display { color: #fff; margin-top: 28px; font-size: clamp(38px, 6.6cqi, 84px); max-width: 1080px; }
.hero .eyebrow { color: var(--sky-soft); }
.hero__sub { margin-top: 32px; max-width: 640px; font-size: clamp(16px, 1.35cqi, 19px); }

/* Selo de credencial Meta */
.meta-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--sky-soft); font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em; line-height: 1.4; margin-top: 36px;
}
.meta-badge svg { flex-shrink: 0; }
.meta-badge strong { font-weight: 600; color: #fff; }
.meta-badge .muted { color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════════
   01b — NÚMEROS DE IMPACTO
═══════════════════════════════════════════════ */
.impacto {
  background: var(--navy-mid);
  color: #fff;
  padding: clamp(36px, 4cqi, 56px) clamp(20px, 5cqi, 96px);
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.impacto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: stretch; max-width: 1280px; margin: 0 auto; }
.impacto-cell { padding: 12px clamp(20px, 2.5cqi, 40px); border-left: 1px solid rgba(26,122,138,0.30); }
.impacto-cell:first-child { border-left: none; padding-left: 0; }
.impacto-cell__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 2.2cqi, 30px); letter-spacing: -0.015em;
  color: #fff; line-height: 1.05;
}
.impacto-cell__label {
  font-family: var(--font-body); font-weight: 400;
  font-size: 11px; color: var(--sky-soft); margin-top: 10px;
  letter-spacing: 0.04em; line-height: 1.45;
}
@container page (max-width: 760px) {
  .impacto-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .impacto-cell { padding: 14px 16px; }
  .impacto-cell:nth-child(odd) { border-left: none; padding-left: 0; }
  .impacto-cell:nth-child(3), .impacto-cell:nth-child(4) { border-top: 1px solid rgba(26,122,138,0.30); padding-top: 24px; }
}

/* ════════════════════════════════════════════
   02 — A DOR (transição Linha Condutora)
═══════════════════════════════════════════════ */
.dor__media { position: relative; }
.dor__media .media { aspect-ratio: 4/5; min-height: 460px; }
.linha-transition { position: absolute; right: -60px; bottom: -80px; width: 280px; pointer-events: none; }
@container page (max-width: 760px) { .linha-transition { right: -20px; bottom: -50px; width: 180px; } }

/* ════════════════════════════════════════════
   03 — SOLUÇÃO (watermark Ponto)
═══════════════════════════════════════════════ */
.solucao__watermark {
  position: absolute; right: -6%; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; opacity: 0.55; width: 620px;
}
@container page (max-width: 980px) { .solucao__watermark { display: none; } }

/* ════════════════════════════════════════════
   04 — COMO FUNCIONA
═══════════════════════════════════════════════ */
.como-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3cqi, 56px); position: relative; margin-top: clamp(56px, 6cqi, 96px); }
.como-step { position: relative; padding: 36px 28px 32px; background: #fff; border: 1px solid var(--border-soft); border-radius: 14px; }
.como-bignum {
  position: absolute; top: -28px; right: 24px;
  font-family: var(--font-display); font-weight: 200; font-size: 84px;
  line-height: 1; color: var(--navy); opacity: 0.06; letter-spacing: -0.04em; pointer-events: none;
}
.como-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,122,138,0.10); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.como-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.45cqi, 20px); line-height: 1.25; letter-spacing: -0.005em; color: var(--fg); }
.como-body { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--fg-muted); margin-top: 12px; }
.como-connector { position: absolute; right: -40px; top: 60px; width: 32px; height: 16px; color: var(--slate-300); pointer-events: none; }
@container page (max-width: 760px) {
  .como-grid { grid-template-columns: 1fr; gap: 24px; }
  .como-connector { right: 50%; transform: translateX(50%) rotate(90deg); top: auto; bottom: -28px; }
}

/* ════════════════════════════════════════════
   05 — CASO (depoimento)
═══════════════════════════════════════════════ */
.caso__media .media { aspect-ratio: 4/5; min-height: 480px; }
.quote {
  margin-top: 36px; padding: 24px 28px;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid #fff;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.quote p {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: 20px; line-height: 1.4; color: #fff; letter-spacing: -0.005em;
}
.quote cite { display: block; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.8); font-style: normal; }
.quote cite strong { color: #fff; font-weight: 600; }

/* ════════════════════════════════════════════
   06 — PILARES
═══════════════════════════════════════════════ */
.pilar { min-height: 240px; }
.pilar__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.pilar__n { font-family: var(--font-display); font-weight: 300; font-size: 22px; color: var(--slate-300); }

/* ════════════════════════════════════════════
   07 — PARA QUEM
═══════════════════════════════════════════════ */
.persona { display: flex; flex-direction: column; gap: 16px; min-height: 360px; }
.persona__headline { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.55cqi, 22px); letter-spacing: -0.005em; line-height: 1.25; color: var(--fg); }
.persona__tags-wrap { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-soft); }
.persona__tags { font-family: var(--font-body); font-size: 11px; color: var(--fg-subtle); line-height: 1.6; letter-spacing: 0.02em; }

/* ════════════════════════════════════════════
   08 — CTA FINAL
═══════════════════════════════════════════════ */
.cta-final .section-inner { text-align: center; max-width: 880px; }
.cta-final__campo { position: absolute; inset: 0; opacity: 0.35; }

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--navy);
  color: #fff;
  padding: clamp(64px, 6cqi, 96px) clamp(20px, 5cqi, 96px) 32px;
  position: relative;
  overflow: hidden;
}
.footer__triade { position: absolute; top: 48px; right: clamp(24px, 5cqi, 96px); opacity: 0.95; width: 92px; height: auto; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.footer__tagline { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.7); max-width: 280px; line-height: 1.6; }
.footer__lgpd { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.65); max-width: 460px; margin-top: 16px; }
.footer__col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sky-soft); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.78); display: inline-flex; align-items: center; gap: 8px; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: clamp(48px, 5cqi, 72px); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.55); flex-wrap: wrap; gap: 16px;
  max-width: 1280px; margin-left: auto; margin-right: auto;
}
@container page (max-width: 760px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Modal ──────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 20, 46, 0.78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; z-index: 100;
  animation: modal-fade-in 200ms ease-out;
}
.modal-overlay[hidden] { display: none; }
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; color: var(--navy);
  border-radius: 16px; width: min(560px, 100%);
  max-height: calc(100vh - 48px); overflow: auto;
  padding: 40px; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: modal-pop 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
@keyframes modal-pop { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--slate-600); }
.modal__close:hover { background: var(--slate-200); }
.modal__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); }
.modal__title { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.15; letter-spacing: -0.015em; margin-top: 10px; }
.modal__sub { font-family: var(--font-body); font-size: 14px; color: var(--slate-600); line-height: 1.6; margin-top: 12px; }
.modal__form { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-600); }
.field input {
  border: 1px solid var(--slate-200); border-radius: 8px; padding: 12px 14px;
  font: inherit; font-size: 14px; color: var(--navy); background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,122,138,0.15); }
.modal__legal { font-size: 11px; color: var(--slate); margin-top: 8px; line-height: 1.5; }
.modal__success { text-align: center; padding: 20px 0; }
.modal__success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; }

/* Tiny screen overrides */
@container page (max-width: 760px) {
  .nav { padding: 20px 16px; }
  .section { padding: 64px 20px; }
  .footer { padding: 64px 20px 32px; }
  .btn { width: 100%; }
  .row--cta { flex-direction: column; align-items: stretch; }
  .row--center.row--cta { align-items: stretch; }
  .modal { padding: 28px 20px; border-radius: 14px; }
}
