:root {
  --paper: #f5f3ef;
  --paper-blue: #e8f0f1;
  --white: #fff;
  --ink: #132936;
  --ink-deep: #0d202b;
  --text: #4e646d;
  --line: #cbd4d5;
  --copper: #b96d4c;
  --copper-light: #e5a184;
  --gold: #c7a56d;
  --heading: "Lato", sans-serif;
  --body: "Source Sans 3", system-ui, sans-serif;
  --container: 1280px;
  --page-pad: clamp(20px, 4vw, 56px);
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html.lenis { scroll-behavior: auto; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--copper-light); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 300; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 14px; background: var(--copper); color: white; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: white;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  background: rgb(13 32 43 / 16%);
  backdrop-filter: blur(8px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled { color: var(--ink); background: rgb(245 243 239 / 96%); border-color: var(--line); }
.header-inner { width: min(calc(100% - 2 * var(--page-pad)), var(--container)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; line-height: 1; }
.brand strong { font-family: var(--heading); font-size: 25px; font-weight: 900; letter-spacing: .05em; }
.brand span { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav a { font-size: 14px; font-weight: 700; text-decoration: none; }
.nav-cta { min-height: 44px; padding: 10px 17px; display: inline-flex; align-items: center; border: 1px solid rgb(255 255 255 / 32%); border-radius: 8px; }
.site-header.is-scrolled .nav-cta { color: white; background: var(--copper); border-color: var(--copper); }
.menu-button { display: none; width: 46px; height: 46px; padding: 0; border: 0; color: inherit; background: transparent; }
.menu-button span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; }

.hero { position: relative; min-height: max(760px, 100svh); overflow: hidden; color: white; background: var(--ink-deep); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 48%; animation: hero-settle 1.4s cubic-bezier(.22,1,.36,1) both; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(10 29 39 / 96%) 0%, rgb(10 29 39 / 87%) 34%, rgb(10 29 39 / 42%) 62%, rgb(10 29 39 / 12%) 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgb(255 255 255 / 26%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 26%) 1px, transparent 1px); background-size: 72px 72px; }
.hero-inner { position: relative; z-index: 2; width: min(calc(100% - 2 * var(--page-pad)), var(--container)); min-height: max(760px, 100svh); margin: 0 auto; padding: calc(var(--header-height) + 70px) 0 72px; display: flex; align-items: center; }
.hero-copy { width: 100%; min-width: 0; max-width: 760px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: var(--copper-light); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 38px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #9d5138; }
h1, h2 { font-family: var(--heading); font-weight: 300; letter-spacing: -.04em; text-wrap: balance; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.35rem, 6vw, 5.25rem); line-height: .99; }
.hero-lead { max-width: 610px; margin: 26px 0 0; color: rgb(255 255 255 / 78%); font-size: clamp(1.05rem, 1.6vw, 1.18rem); line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 50px; padding: 13px 21px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--copper); }
.button-primary:hover { background: #cc7b57; }
.button-secondary { color: white; border-color: rgb(255 255 255 / 36%); background: rgb(19 41 54 / 28%); backdrop-filter: blur(6px); }
.button-secondary:hover { background: rgb(255 255 255 / 10%); border-color: rgb(255 255 255 / 62%); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: #234855; }
.hero-context { position: absolute; z-index: 3; right: var(--page-pad); bottom: 28px; display: flex; gap: 8px; }
.hero-context span { padding: 8px 12px; border: 1px solid rgb(255 255 255 / 24%); border-radius: 999px; color: rgb(255 255 255 / 80%); background: rgb(13 32 43 / 52%); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; }

.section { padding: clamp(80px, 9vw, 122px) var(--page-pad); }
.section h2 { margin: 0; font-size: clamp(2.45rem, 4.6vw, 4rem); line-height: 1.06; }
.audience-heading, .audience-grid, .decision-heading, .decision-panel, .process-intro, .process-flow, .plans-heading, .plan-grid, .plans-note, .contact-inner { width: min(100%, var(--container)); margin-inline: auto; }

.included,
.about,
.faq {
  width: 100%;
  margin-inline: 0;
  padding-inline: max(var(--page-pad), calc((100vw - var(--container)) / 2));
}

.audience { background: var(--paper); }
.audience-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 8vw, 110px); align-items: end; }
.audience-heading > div { padding-left: 24px; border-left: 2px solid var(--copper); }
.audience-heading p { margin: 0; color: var(--text); }
.audience-heading span { display: block; margin-top: 20px; color: #8b503b; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.audience-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-grid article { padding: 28px clamp(18px, 2.4vw, 30px); border-right: 1px solid var(--line); }
.audience-grid article:nth-child(3n + 1) { padding-left: 0; }
.audience-grid article:nth-child(3n) { padding-right: 0; border-right: 0; }
.audience-grid article:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
.audience-index { margin: 0 0 30px !important; color: var(--copper) !important; font-size: 11px !important; font-weight: 700; letter-spacing: .16em; }
.audience-grid h3 { margin: 0; font-size: 21px; }
.audience-grid p { margin: 10px 0 0; color: var(--text); font-size: 15px; line-height: 1.6; }

.included { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(52px, 8vw, 110px); background: white; }
.included-intro { align-self: start; }
.included-intro > p:not(.eyebrow) { max-width: 510px; color: var(--text); }
.included-intro .button { margin-top: 18px; }
.included-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid var(--line); }
.included-list li { min-height: 190px; padding: 25px 26px; display: grid; grid-template-columns: 28px 1fr; gap: 14px; border-bottom: 1px solid var(--line); }
.included-list li:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); }
.included-list li span { color: var(--copper); font-size: 12px; font-weight: 700; }
.included-list h3 { margin: 0; font-size: 20px; line-height: 1.3; }
.included-list p { margin: 9px 0 0; color: var(--text); font-size: 15px; }

.technology {
  width: 100%;
  margin-inline: 0;
  padding-inline: max(var(--page-pad), calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(56px, 8vw, 118px);
  color: white;
  background: #172e39;
}
.technology-copy { align-self: center; }
.technology-copy > p:last-child { max-width: 590px; color: rgb(255 255 255 / 66%); }
.technology-system { position: relative; border-top: 1px solid rgb(255 255 255 / 18%); border-bottom: 1px solid rgb(255 255 255 / 18%); }
.technology-system::before { content: "SISTEMA ATIVO"; position: absolute; top: -28px; right: 0; color: var(--copper-light); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.technology-row { min-height: 230px; padding: 34px 0; display: grid; grid-template-columns: 18px 1fr; gap: 20px; align-items: start; }
.technology-row + .technology-row { border-top: 1px solid rgb(255 255 255 / 18%); }
.technology-status { width: 10px; height: 10px; margin-top: 8px; border: 2px solid #87d7cb; border-radius: 50%; box-shadow: 0 0 0 5px rgb(135 215 203 / 10%); }
.technology-label { margin: 0 0 10px; color: var(--copper-light); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.technology-row h3 { margin: 0; font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 300; line-height: 1.08; }
.technology-row div > p:last-child { max-width: 650px; margin: 14px 0 0; color: rgb(255 255 255 / 62%); font-size: 15px; }

.decision-room { color: white; background: var(--ink-deep); }
.decision-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 8vw, 110px); align-items: end; }
.decision-heading > p { margin: 0; color: rgb(255 255 255 / 64%); }
.decision-panel { margin-top: 58px; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; border: 1px solid rgb(255 255 255 / 15%); border-radius: 28px; background: #0a1c25; }
.decision-image { position: relative; min-height: 560px; overflow: hidden; isolation: isolate; background: #0a1c25; }
.decision-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -24px;
  background: url("./assets/lex-hero-madeira.webp") center / cover no-repeat;
  filter: blur(18px);
  opacity: .24;
  transform: scale(1.08);
}
.decision-image img {
  position: absolute;
  inset: 0 auto 0 50%;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: .84;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.decision-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, #0a1c25 100%); pointer-events: none; }
.decision-list { padding: 55px 48px; display: flex; flex-direction: column; justify-content: center; }
.decision-list article { padding: 26px 0; display: grid; grid-template-columns: 40px 1fr; gap: 12px; border-top: 1px solid rgb(255 255 255 / 16%); }
.decision-list article:first-child { border-top: 0; }
.decision-list span { color: var(--copper-light); font-size: 12px; font-weight: 700; }
.decision-list h3 { margin: 0; font-size: 22px; }
.decision-list p { margin: 8px 0 0; color: rgb(255 255 255 / 62%); font-size: 15px; }

.process { background: var(--paper-blue); }
.process-intro { max-width: 860px; margin-left: auto; margin-right: auto; text-align: center; }
.process-intro .eyebrow { justify-content: center; }
.process-flow { position: relative; margin-top: 64px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; list-style: none; }
.process-flow::before { content: ""; position: absolute; top: 23px; left: 5%; right: 5%; height: 2px; background: var(--copper); opacity: .5; }
.process-flow li { position: relative; padding-top: 78px; }
.process-flow span { position: absolute; z-index: 2; top: 0; left: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: 12px; font-weight: 700; }
.process-flow h3 { margin: 0; font-size: 22px; }
.process-flow p { margin: 10px 0 0; color: var(--text); }

.plans { background: white; }
.plans-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 8vw, 110px); align-items: end; }
.plans-heading > p { margin: 0; color: var(--text); }
.plan-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.plan { position: relative; min-height: 580px; padding: clamp(28px, 3vw, 42px); display: flex; flex-direction: column; background: var(--paper); }
.plan + .plan { border-left: 1px solid var(--line); }
.plan-featured { color: white; background: var(--ink); }
.plan-badge { position: absolute; top: 0; right: 0; margin: 0; padding: 8px 13px; color: var(--ink); background: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan-for { min-height: 32px; margin: 0 0 22px; color: var(--copper); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.plan-featured .plan-for { color: var(--copper-light); }
.plan h3 { margin: 0; font-family: var(--heading); font-size: clamp(2rem, 2.8vw, 2.8rem); font-weight: 300; }
.price { min-height: 90px; margin: 25px 0; font-family: var(--heading); font-size: clamp(3.8rem, 5vw, 5rem); font-weight: 300; line-height: 1; }
.price sup { margin-right: 5px; font-family: var(--body); font-size: 13px; font-weight: 700; vertical-align: top; }
.price small { color: var(--text); font-family: var(--body); font-size: 13px; }
.plan-featured .price small { color: rgb(255 255 255 / 60%); }
.price-custom { padding-top: 18px; font-size: 2.7rem; }
.plan ul { margin: 0 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plan-featured ul { border-color: rgb(255 255 255 / 18%); }
.plan li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text); font-size: 15px; }
.plan-featured li { color: rgb(255 255 255 / 72%); border-color: rgb(255 255 255 / 18%); }
.plan li::before { content: "✓"; margin-right: 10px; color: var(--copper); }
.plan > a { margin-top: auto; padding-top: 15px; display: flex; justify-content: space-between; border-top: 1px solid currentColor; font-weight: 700; text-decoration: none; }
.plans-note { margin-top: 24px; color: var(--text); font-size: 14px; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); color: white; background: var(--ink); }
.about-statement > p:last-child { margin: 28px 0 0; color: var(--copper-light); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.about-copy { align-self: end; }
.about-copy > p { color: rgb(255 255 255 / 70%); }
.about-copy dl { margin: 34px 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgb(255 255 255 / 18%); }
.about-copy dl div { padding: 20px 18px 20px 0; border-bottom: 1px solid rgb(255 255 255 / 12%); }
.about-copy dt { color: var(--copper-light); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.about-copy dd { margin: 8px 0 0; font-weight: 700; }
.about-copy dd a { color: inherit; overflow-wrap: anywhere; text-underline-offset: 3px; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 100px); background: white; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 44px 23px 0; position: relative; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--copper); font-family: var(--heading); font-size: 28px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 740px; margin: 0; padding: 0 44px 24px 0; color: var(--text); }

.contact { background: #83c1d3; }
.contact-inner { display: flex; align-items: end; justify-content: space-between; gap: 46px; }
.contact-inner > div { max-width: 820px; }
.contact-inner p:not(.eyebrow) { max-width: 640px; color: #244954; }
.button-large { min-width: 220px; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 112px) var(--page-pad) 30px;
  color: white;
  background: var(--ink-deep);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(34vw, 460px);
  height: 3px;
  background: var(--copper);
}
.footer-main {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.45fr .72fr .9fr 1.15fr;
  gap: clamp(38px, 5vw, 76px);
  padding-bottom: clamp(58px, 7vw, 84px);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}
.footer-brand { align-content: start; }
.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  text-decoration: none;
  line-height: 1;
}
.footer-wordmark strong {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 3.4vw, 3.55rem);
  font-weight: 900;
  letter-spacing: .035em;
}
.footer-wordmark span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.footer-brand > p {
  max-width: 360px;
  margin: 27px 0 22px;
  color: rgb(255 255 255 / 68%);
  font-size: 16px;
  line-height: 1.65;
}
.footer-address {
  margin: 0;
  color: var(--copper-light);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}
.footer-label {
  margin: 0 0 23px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-column nav { display: grid; gap: 12px; align-content: start; }
.footer-column nav a {
  width: fit-content;
  color: rgb(255 255 255 / 72%);
  font-size: 15px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-column nav a:hover,
.footer-column nav a:focus-visible {
  color: white;
  transform: translateX(3px);
}
.footer-services {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: rgb(255 255 255 / 60%);
  font-size: 15px;
  list-style: none;
}
.footer-contact {
  align-content: start;
  display: grid;
}
.footer-contact > p:not(.footer-label) {
  margin: 0 0 24px;
  color: rgb(255 255 255 / 66%);
  font-size: 15px;
  line-height: 1.6;
}
.footer-whatsapp {
  min-height: 52px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--copper);
  color: white;
  background: var(--copper);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.footer-whatsapp span { font-size: 18px; font-weight: 400; }
.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  color: var(--ink-deep);
  background: var(--gold);
  border-color: var(--gold);
}
.footer-phone {
  width: fit-content;
  margin-top: 17px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.footer-email {
  width: fit-content;
  margin-top: 8px;
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.footer-phone:hover,
.footer-phone:focus-visible,
.footer-email:hover,
.footer-email:focus-visible { color: var(--gold); }
.footer-registry {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(170px, 230px) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}
.footer-registry > img { width: min(100%, 210px); height: auto; }
.footer-registry > div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; }
.footer-registry p { margin: 0; display: grid; gap: 5px; }
.footer-registry span { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-registry strong { font-size: 14px; }
.footer-legal {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgb(255 255 255 / 42%);
  font-size: 12px;
}
.footer-legal p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: white; background: #159c91; box-shadow: 0 12px 30px rgb(9 45 52 / 24%); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 180ms ease, transform 180ms ease; }
.whatsapp-float.is-float-visible { opacity: 1; pointer-events: auto; transform: none; }
.whatsapp-float svg { width: 27px; fill: currentColor; }

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 560ms ease-out var(--reveal-delay, 0ms),
    transform 560ms cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.motion-ready .decision-image.reveal { transform: translateY(12px) scale(.985); }
.motion-ready .decision-image.reveal.is-visible { transform: none; }
.audience-grid .reveal:nth-child(2),
.included-list .reveal:nth-child(2),
.decision-list .reveal:nth-child(2),
.process-flow .reveal:nth-child(2),
.plan-grid .reveal:nth-child(2) { --reveal-delay: 55ms; }
.audience-grid .reveal:nth-child(3),
.included-list .reveal:nth-child(3),
.decision-list .reveal:nth-child(3),
.process-flow .reveal:nth-child(3),
.plan-grid .reveal:nth-child(3) { --reveal-delay: 110ms; }
.audience-grid .reveal:nth-child(4),
.included-list .reveal:nth-child(4),
.process-flow .reveal:nth-child(4) { --reveal-delay: 165ms; }
@keyframes hero-settle { from { transform: scale(1.035); } to { transform: scale(1); } }

@media (max-width: 1024px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 13px; }
  .hero-media img { object-position: 62% center; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid article { border-bottom: 1px solid var(--line); }
  .audience-grid article:nth-child(odd) { padding-left: 0; padding-right: 28px; border-right: 1px solid var(--line); }
  .audience-grid article:nth-child(even) { padding-left: 28px; padding-right: 0; border-right: 0; }
  .audience-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
  .included { grid-template-columns: 1fr; }
  .technology { grid-template-columns: 1fr; }
  .decision-panel { grid-template-columns: 1fr; }
  .decision-image { min-height: 430px; }
  .decision-image::after { background: linear-gradient(0deg, #0a1c25, transparent 45%); }
  .plan { padding: 28px; }
}

@media (max-width: 820px) {
  .site-header { background: rgb(13 32 43 / 60%); }
  .menu-button { position: relative; display: block; color: white; }
  .site-header.is-scrolled .menu-button { color: var(--ink); }
  .menu-button::before,
  .menu-button::after { content: ""; position: absolute; right: 3px; width: 25px; height: 1px; background: currentColor; }
  .menu-button::before { top: 17px; }
  .menu-button::after { bottom: 17px; }
  .menu-button span:not(.sr-only) { display: none; }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; padding: 24px var(--page-pad) 30px; display: none; align-items: stretch; flex-direction: column; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 9px 0; font-size: 16px; }
  .nav-cta { justify-content: center; color: white !important; background: var(--copper); border-color: var(--copper); }
  .hero { min-height: 760px; }
  .hero-inner { min-height: 760px; align-items: end; padding-bottom: 104px; }
  .hero-overlay { background: linear-gradient(180deg, rgb(10 29 39 / 38%) 0%, rgb(10 29 39 / 58%) 38%, rgb(10 29 39 / 96%) 100%); }
  .hero-media img { object-position: 50% center; }
  .hero-copy { max-width: 650px; }
  .hero-context { right: var(--page-pad); left: var(--page-pad); justify-content: flex-start; overflow: hidden; }
  .audience-heading, .decision-heading, .plans-heading, .about, .faq { grid-template-columns: 1fr; }
  .audience-heading > div { padding-left: 0; padding-top: 20px; border-left: 0; border-top: 2px solid var(--copper); }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .process-flow::before { display: none; }
  .process-flow li { padding: 12px 0 12px 68px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan { min-height: auto; }
  .plan + .plan { border-left: 0; border-top: 1px solid var(--line); }
  .contact-inner { align-items: start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.3fr .7fr; }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
  .footer-contact { max-width: 540px; }
  .footer-registry { grid-template-columns: 180px 1fr; }
  .footer-registry > div { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --page-pad: 20px; }
  body { font-size: 16px; }
  .brand span { display: none; }
  .hero { min-height: 720px; }
  .hero-inner { min-height: 720px; padding-top: 120px; padding-bottom: 116px; }
  .hero h1 { max-width: 100%; overflow-wrap: break-word; font-size: clamp(2.55rem, 11.4vw, 3.15rem); line-height: 1.02; }
  .hero-lead { font-size: 1rem; line-height: 1.6; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-context { gap: 5px; }
  .hero-context span { padding: 7px 8px; font-size: 9px; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .section h2 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .audience-grid, .included-list, .process-flow { grid-template-columns: 1fr; }
  .audience-grid article, .audience-grid article:nth-child(odd), .audience-grid article:nth-child(even) { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-grid article:last-child { border-bottom: 0; }
  .audience-index { margin-bottom: 18px !important; }
  .included-list li, .included-list li:nth-child(odd) { min-height: auto; padding: 21px 0; border-right: 0; }
  .technology-row { min-height: auto; }
  .decision-panel { border-radius: 18px; }
  .decision-image { min-height: 330px; }
  .decision-list { padding: 22px; }
  .decision-list article { grid-template-columns: 32px 1fr; }
  .process-intro { text-align: left; }
  .process-intro .eyebrow { justify-content: flex-start; }
  .plan { padding: 28px 22px; }
  .about-copy dl { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 17px; }
  .button-large { min-width: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-contact { grid-column: auto; }
  .footer-wordmark { align-items: flex-start; flex-direction: column; gap: 8px; }
  .footer-brand > p { margin-top: 23px; }
  .footer-contact { max-width: none; }
  .footer-registry { grid-template-columns: 1fr; }
  .footer-registry > img { width: 190px; }
  .footer-legal { flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

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