/* =========================================================
   DIIA · homev2 · editorial light
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  /* paleta */
  --ink:        #0E1116;
  --ink-2:      #2A2F38;
  --muted:      #5B6472;
  --muted-2:   #8A93A1;
  --line:       #E7E4DD;
  --line-2:     #EFECE4;
  --bg:         #FBFAF7;       /* off-white levemente quente */
  --bg-2:       #F4F1EA;
  --bg-card:    #FFFFFF;

  --brand:      #4F46E5;       /* roxo elétrico (índigo 600) */
  --brand-2:    #6366F1;       /* índigo 500 */
  --brand-3:    #818CF8;       /* índigo 400 */
  --brand-soft: #EEF0FF;
  --brand-ink:  #2E2A8A;
  --accent:     #00D1B2;       /* turquesa pra detalhes */

  /* tipografia */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Geist", system-ui, -apple-system, sans-serif;
  --font-mono:    "Geist Mono", ui-monospace, monospace;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  /* sombras */
  --shadow-sm: 0 1px 2px rgba(14,17,22,.04), 0 1px 3px rgba(14,17,22,.03);
  --shadow:    0 6px 24px -10px rgba(14,17,22,.10), 0 2px 6px rgba(14,17,22,.04);
  --shadow-lg: 0 30px 60px -28px rgba(14,17,22,.18), 0 8px 20px -10px rgba(14,17,22,.08);

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; }

/* ---------- utilities ---------- */
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn span { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover span { transform: translateX(3px); }

.btn--solid {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--solid:hover { background: #000; box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--brand); }

.btn--text {
  background: transparent;
  color: var(--brand);
  border: none;
  padding: 11px 4px;
}
.btn--text:hover { color: var(--brand-ink); }

.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
}

.btn--white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--white:hover { background: var(--bg); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--block { width: 100%; justify-content: center; }

/* reveal on view — usa animation pra não depender de JS */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero faz reveal automático com animação CSS, não espera nada */
.hero .reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp .9s var(--ease) var(--d, 0ms) forwards;
}

/* reveals fora do hero: começam visíveis (sem JS funciona); JS aplica is-in pra animar */
.reveal:not(.hero .reveal) {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms);
}
/* quando o IO marca pra animar, começa escondido e volta */
.js-reveal {
  opacity: 0 !important;
  transform: translateY(14px) !important;
}
.js-reveal.is-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 247, .9);
}

.nav__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.nav__logo-mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--ink);
}
.nav__logo-mark i {
  font-style: normal;
  color: var(--brand);
}

.nav__logo-img {
  display: block;
  height: 34px;
  width: auto;
}

.nav__menu {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav__menu a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  transition: color .2s var(--ease);
  position: relative;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 920px) {
  .nav__menu,
  .nav__cta .btn--ghost {
    display: none;
  }
  .nav__wrap {
    grid-template-columns: auto 1fr;
    gap: 12px;
    justify-items: start;
  }
  .nav__cta {
    justify-self: end;
    width: auto;
  }
  .nav__cta-primary {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) var(--gutter) clamp(70px, 10vw, 130px);
  overflow: hidden;
  isolation: isolate;
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(79,70,229,.15);
  animation: pulse 2.4s var(--ease) infinite;
}
.hero__badge .sep { color: var(--muted-2); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(79,70,229,.15); }
  50%      { box-shadow: 0 0 0 8px rgba(79,70,229,.05); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 22ch;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144;
}
.hero__line {
  display: block;
  position: relative;
}
.hero__em {
  font-style: italic;
  color: var(--brand);
  position: relative;
  display: inline-block;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero__underline {
  position: absolute;
  left: 0; right: 0; bottom: -.08em;
  width: 100%;
  height: .35em;
  color: var(--brand-3);
  opacity: .7;
  pointer-events: none;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 40px;
  line-height: 1.55;
}
.hero__sub strong {
  color: var(--ink);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__strip {
  list-style: none;
  padding: 22px 28px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 760px;
}
.hero__strip li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.hero__strip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 2px;
}

@media (max-width: 640px) {
  .hero__strip { grid-template-columns: repeat(2, 1fr); padding: 18px 20px; }
  .hero__strip strong { font-size: 22px; }
}

/* orbs decorativos */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
  z-index: 1;
}
.hero__orb--a {
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%, rgba(99,102,241,.35), rgba(99,102,241,0) 65%);
}
.hero__orb--b {
  bottom: -200px;
  left: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at 50% 50%, rgba(0,209,178,.18), rgba(0,209,178,0) 65%);
}

/* grain noise overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .35;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* =========================================================
   SECTIONS GERAL
   ========================================================= */
.section {
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}

.section__head {
  margin-bottom: clamp(36px, 5vw, 60px);
  max-width: 720px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 16px;
  font-variation-settings: "opsz" 144;
}
.section__title em {
  font-style: italic;
  color: var(--brand);
}
.section__sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

.section__foot {
  margin-top: 36px;
  text-align: center;
}

/* =========================================================
   LOJA · CARDS
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), opacity .7s var(--ease);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,.04), rgba(0,209,178,.03));
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.card:hover {
  border-color: var(--brand-3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.card__icon svg { width: 22px; height: 22px; }
.card:hover .card__icon {
  transform: rotate(-4deg) scale(1.05);
  background: var(--brand);
  color: #fff;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
}

.card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  gap: 12px;
}
.card__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.card__price i {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--font-body);
}
.card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}

.card__flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.card--hot {
  border-color: var(--ink);
}
.card--hot .card__icon { margin-top: 8px; }

/* =========================================================
   3 PORTAS
   ========================================================= */
.section--portas {
  background: var(--bg-2);
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--portas > .section__head,
.section--portas > .portas {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.portas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .portas { grid-template-columns: 1fr; } }

.porta {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
  isolation: isolate;
  min-height: 460px;
}

.porta__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 110px;
  line-height: .8;
  color: var(--brand-soft);
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 0;
  transition: color .4s var(--ease), transform .5s var(--ease);
}
.porta:hover .porta__num {
  color: var(--brand);
  opacity: .12;
  transform: scale(1.1);
}

.porta__head { position: relative; z-index: 1; }

.porta__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.porta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}

.porta__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

.porta__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.porta__feats li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.porta__feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px;
  height: 1.5px;
  background: var(--brand);
}

.porta__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--brand);
  padding-top: 8px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.porta__cta span { transition: transform .3s var(--ease); }
.porta:hover .porta__cta span { transform: translateX(4px); }

.porta:hover {
  transform: translateY(-6px);
  border-color: var(--brand-3);
  box-shadow: var(--shadow-lg);
}

/* destaque porta 3 */
.porta--3 {
  background: linear-gradient(140deg, #5046E5 0%, #6366F1 50%, #2563EB 100%);
  border-color: transparent;
  color: #fff;
}
.porta--3 .porta__tag,
.porta--3 .porta__desc,
.porta--3 .porta__feats li { color: rgba(255,255,255,.78); }
.porta--3 .porta__title { color: #fff; }
.porta--3 .porta__feats li { color: rgba(255,255,255,.85); }
.porta--3 .porta__feats li::before { background: #fff; }
.porta--3 .porta__num { color: rgba(255,255,255,.10); }
.porta--3 .porta__cta { color: #fff; }
.porta--3:hover { border-color: transparent; }
.porta--3:hover .porta__num { color: rgba(255,255,255,.18); opacity: 1; }

.porta__flag {
  position: absolute;
  top: 18px;
  left: 30px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* =========================================================
   SETORES
   ========================================================= */
.setores {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .setores { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .setores { grid-template-columns: repeat(2, 1fr); } }

.setor {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  text-align: center;
}
.setor__icon {
  width: 26px;
  height: 26px;
  color: var(--brand);
  transition: transform .35s var(--ease);
}
.setor span {
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.setor:hover {
  transform: translateY(-3px);
  border-color: var(--brand-3);
  box-shadow: var(--shadow);
  background: #fff;
}
.setor:hover .setor__icon { transform: scale(1.1) rotate(-5deg); }

/* =========================================================
   PROVA · MÉTRICAS
   ========================================================= */
.section--prova { padding-top: clamp(50px, 7vw, 90px); }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .metrics { grid-template-columns: 1fr; } }

.metric {
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.metric:hover { transform: translateY(-4px); border-color: var(--brand-3); box-shadow: var(--shadow); }

.metric__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144;
}
.metric__num i {
  font-style: normal;
  font-size: .42em;
  color: var(--ink);
  margin-left: 4px;
  font-weight: 400;
}
.metric__desc {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  max-width: 36ch;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta {
  padding: 0 var(--gutter) clamp(70px, 9vw, 110px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.cta__box {
  position: relative;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #2563EB 100%);
  border-radius: 36px;
  padding: clamp(50px, 7vw, 88px) clamp(30px, 5vw, 80px);
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.16), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0,209,178,.22), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.cta__noise {
  position: absolute;
  inset: 0;
  opacity: .18;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta__box > * { position: relative; z-index: 1; }

.cta__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
  display: inline-block;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  font-variation-settings: "opsz" 144;
}
.cta__title em {
  font-style: italic;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  text-decoration-color: rgba(255,255,255,.4);
}
.cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  margin: 0 auto 36px;
  max-width: 48ch;
}
.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.cta__check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: #BDC1CA;
  padding: clamp(60px, 7vw, 90px) var(--gutter) 24px;
}
.footer__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 800px) {
  .footer__wrap { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}
.footer__logo i { color: var(--brand-3); font-style: normal; }

.footer__logo-img {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer__brand p { font-size: 14px; line-height: 1.55; max-width: 36ch; margin: 0 0 8px; }
.footer__loc { color: #6B7280; font-size: 13px; }
.footer__loc span { color: #4B5563; }

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6B7280;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #BDC1CA;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: #fff; }
.footer__highlight {
  color: var(--brand-3) !important;
  font-weight: 500;
}
.footer__highlight:hover { color: #fff !important; }

.footer__bottom {
  max-width: var(--maxw);
  margin: 24px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #6B7280;
}
.footer__made {
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}
