@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/urbanist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #0d0e10;
  --blue-dark: #08090a;
  --blue-deep: #050607;
  --paper: #fffef9;
  --tomato: #35373b;
  --tomato-dark: #1c1e21;
  --tomato-surface: #1c1e21;
  --mustard: #c3c0b8;
  --basil: #5d5f64;
  --graphite: #17191c;
  --slate: #595b60;
  --mist: #f4f1e9;
  --white: #fffef9;
  --line: rgb(13 14 16 / 0.15);
  --line-inverse: rgb(255 255 255 / 0.18);
  --shadow: 0 1.5rem 4rem rgb(5 6 7 / 0.16);
  --font-display: "Urbanist", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-editorial: "Instrument Serif", Georgia, serif;
  --shell: min(73rem, calc(100vw - 3rem));
  --section-space: clamp(5.5rem, 10vw, 8.5rem);
  --radius-sm: 0.7rem;
  --radius: 1.1rem;
  --radius-lg: 1.65rem;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  color: var(--graphite);
  background: var(--mist);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 0.2rem solid var(--blue-deep);
  outline-offset: 0.18rem;
}

::selection {
  color: var(--white);
  background: var(--tomato);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--graphite);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-inverse);
  content: "";
}

.header-inner {
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 1.27rem;
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark em {
  font-family: var(--font-editorial);
  font-size: 1.24em;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2rem);
}

.header-nav a {
  position: relative;
  color: rgb(255 255 255 / 0.75);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--mustard);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 3.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 780;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-0.15rem);
}

.button:active {
  transform: translateY(0);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.6;
  transform: none;
}

.button-small {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border-color: rgb(255 255 255 / 0.28);
  color: var(--white);
  font-size: 0.76rem;
}

.button-small:hover {
  border-color: var(--mustard);
  background: rgb(255 255 255 / 0.06);
}

.button-primary {
  color: var(--white);
  background: var(--tomato-surface);
  box-shadow: 0 0.8rem 1.8rem rgb(216 214 206 / 0.18);
}

.button-primary:hover {
  background: var(--tomato-dark);
  box-shadow: 0 1rem 2rem rgb(216 214 206 / 0.22);
}

.button-secondary {
  border-color: var(--line);
  color: var(--blue);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.button-paper {
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 0.9rem 2.2rem rgb(5 6 7 / 0.2);
}

.button-paper:hover {
  color: var(--white);
  background: var(--blue-deep);
}

.whatsapp-mark {
  width: 1.22rem;
  height: 1.22rem;
  flex: 0 0 auto;
}

.whatsapp-mark svg,
.whatsapp-mark path {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: min(56rem, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(8.5rem, 14vw, 11rem) 0 clamp(5.5rem, 9vw, 8rem);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 17%, rgb(195 192 184 / 0.12), transparent 28rem),
    linear-gradient(120deg, var(--blue-dark), var(--blue) 58%, #23262a);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.hero-copy {
  max-width: 46rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.3rem;
  color: var(--mustard);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 0.14rem;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--basil);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  max-width: 45rem;
  margin-bottom: 1.6rem;
  font-size: clamp(3.15rem, 6.25vw, 5.9rem);
  font-weight: 820;
  letter-spacing: -0.063em;
}

h1 em,
h2 em {
  color: var(--mustard);
  font-family: var(--font-editorial);
  font-weight: 400;
}

h1 em {
  display: block;
  margin-top: 0.03em;
  font-size: 0.96em;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 42rem;
  margin: 0;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  width: min(100%, 24rem);
  margin-top: 2.2rem;
}

.hero-actions .button {
  width: 100%;
  min-height: 4rem;
}

.hero-actions > p,
.final-action > p {
  margin: 0.75rem 0 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.73rem;
  font-weight: 650;
  text-align: center;
}

.final-action > p {
  color: var(--white);
}

.ticket-wrap {
  position: relative;
  width: min(100%, 24rem);
  justify-self: end;
  filter: drop-shadow(0 2.3rem 2.7rem rgb(4 18 28 / 0.34));
  transform: rotate(1.4deg);
}

.ticket {
  position: relative;
  overflow: hidden;
  padding: 2.15rem 1.6rem 1.55rem;
  color: var(--graphite);
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.7rem), 97% 100%, 94% calc(100% - 0.7rem), 91% 100%, 88% calc(100% - 0.7rem), 85% 100%, 82% calc(100% - 0.7rem), 79% 100%, 76% calc(100% - 0.7rem), 73% 100%, 70% calc(100% - 0.7rem), 67% 100%, 64% calc(100% - 0.7rem), 61% 100%, 58% calc(100% - 0.7rem), 55% 100%, 52% calc(100% - 0.7rem), 49% 100%, 46% calc(100% - 0.7rem), 43% 100%, 40% calc(100% - 0.7rem), 37% 100%, 34% calc(100% - 0.7rem), 31% 100%, 28% calc(100% - 0.7rem), 25% 100%, 22% calc(100% - 0.7rem), 19% 100%, 16% calc(100% - 0.7rem), 13% 100%, 10% calc(100% - 0.7rem), 7% 100%, 4% calc(100% - 0.7rem), 0 100%);
}

.ticket::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.55rem;
  background: var(--tomato);
  content: "";
}

.ticket-punches {
  position: absolute;
  top: 0.68rem;
  right: 0.8rem;
  left: 0.8rem;
  height: 0.75rem;
  background: radial-gradient(circle, var(--blue) 0 0.15rem, transparent 0.17rem) 0 50% / 1rem 1rem repeat-x;
  opacity: 0.85;
}

.ticket-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0 1rem;
  border-bottom: 1px dashed rgb(23 33 40 / 0.32);
}

.ticket-head div {
  display: grid;
  gap: 0.18rem;
}

.ticket-head span,
.ticket-footer span {
  color: var(--slate);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.ticket-head strong {
  font-family: var(--font-display);
  font-size: 1.17rem;
  letter-spacing: -0.03em;
}

.ticket-head .ticket-number {
  padding: 0.22rem 0.35rem;
  border: 1px solid rgb(23 33 40 / 0.28);
  border-radius: 0.25rem;
  color: var(--graphite);
  font-size: 0.56rem;
}

.ticket-note {
  margin: 1rem 0;
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.5;
}

.ticket-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticket-list li {
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgb(23 33 40 / 0.13);
}

.ticket-index {
  color: var(--tomato);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 850;
}

.ticket-list li > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.ticket-list strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.25;
}

.ticket-list small {
  color: var(--slate);
  font-size: 0.6rem;
  line-height: 1.35;
}

.ticket-status {
  padding: 0.22rem 0.38rem;
  border-radius: 999px;
  color: #23654f;
  background: rgb(93 95 100 / 0.11);
  font-size: 0.5rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticket-destination {
  background: linear-gradient(90deg, transparent, rgb(93 95 100 / 0.08));
}

.status-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0.2rem solid rgb(93 95 100 / 0.22);
  border-radius: 50%;
  background: var(--basil);
  background-clip: padding-box;
}

.ticket-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0 0.7rem;
  border-top: 1px dashed rgb(23 33 40 / 0.32);
}

.ticket-footer strong {
  color: var(--basil);
  font-family: var(--font-editorial);
  font-size: 1.12rem;
  font-weight: 400;
}

.hero-route {
  position: absolute;
  right: -2rem;
  bottom: 8%;
  width: 48%;
  height: 8rem;
  border-top: 1px dashed rgb(255 255 255 / 0.22);
  transform: rotate(-8deg);
}

.hero-route span {
  position: absolute;
  top: -0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 0.16rem solid var(--blue);
  border-radius: 50%;
  background: var(--mustard);
}

.hero-route span:nth-child(1) { left: 5%; }
.hero-route span:nth-child(2) { left: 35%; }
.hero-route span:nth-child(3) { left: 65%; }
.hero-route span:nth-child(4) { right: 5%; background: var(--basil); }

.section {
  padding-block: var(--section-space);
}

.problem {
  background: var(--mist);
}

.section-intro h2,
.method h2,
.next-step h2,
.faq h2,
.final-cta h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.55rem, 5.1vw, 4.7rem);
  font-weight: 790;
  letter-spacing: -0.057em;
}

.section-intro h2 em,
.next-step h2 em,
.faq h2 em {
  color: var(--tomato);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.72fr) minmax(0, 1.6fr);
  align-items: start;
  gap: clamp(2rem, 8vw, 7rem);
}

.split-intro .eyebrow {
  margin-top: 0.55rem;
}

.split-intro > div {
  max-width: 51rem;
}

.split-intro > div > p {
  max-width: 46rem;
  margin: 0;
  color: var(--slate);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.diagnosis-card {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
}

.diagnosis-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: auto;
  color: var(--basil);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.diagnosis-top span:last-child {
  color: rgb(13 14 16 / 0.32);
  font-size: 0.78rem;
}

.diagnosis-card h3 {
  max-width: 15rem;
  margin: 4rem 0 1rem;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-weight: 780;
  letter-spacing: -0.045em;
}

.diagnosis-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.91rem;
}

.diagnosis-card-accent {
  color: var(--white);
  background: var(--tomato-surface);
}

.diagnosis-card-accent .diagnosis-top,
.diagnosis-card-accent p {
  color: var(--white);
}

.diagnosis-card-accent .diagnosis-top span:last-child {
  color: var(--white);
}

.card-route {
  position: absolute;
  right: -1.25rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border: 1px dashed rgb(13 14 16 / 0.14);
  border-radius: 50%;
}

.diagnosis-card-accent .card-route {
  border-color: rgb(255 255 255 / 0.24);
}

.method {
  color: var(--white);
  background: var(--blue);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 10vw, 8rem);
}

.method-intro {
  position: sticky;
  top: 7rem;
}

.method h2 {
  max-width: 33rem;
}

.method h2 em {
  display: block;
}

.method-intro > p:not(.eyebrow) {
  max-width: 30rem;
  margin: 0;
  color: rgb(255 255 255 / 0.65);
}

.method-seal {
  width: 5.4rem;
  height: 5.4rem;
  display: grid;
  place-content: center;
  margin-top: 3rem;
  border: 1px solid rgb(195 192 184 / 0.52);
  border-radius: 50%;
  color: var(--mustard);
  text-align: center;
  transform: rotate(-7deg);
}

.method-seal span {
  font-family: var(--font-editorial);
  font-size: 1.9rem;
  line-height: 0.9;
}

.method-seal small {
  margin-top: 0.25rem;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-inverse);
  list-style: none;
}

.method-list li {
  min-height: 9.8rem;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) 2.4rem;
  align-items: center;
  gap: 1.25rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line-inverse);
}

.method-number {
  align-self: start;
  padding-top: 0.28rem;
  color: var(--mustard);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.method-list h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.04em;
}

.method-list p {
  max-width: 31rem;
  margin: 0;
  color: rgb(255 255 255 / 0.62);
  font-size: 0.9rem;
}

.method-check {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(93 95 100 / 0.9);
  border-radius: 50%;
  color: #8bd0b8;
  font-size: 0.85rem;
}

.next-step {
  color: var(--graphite);
  background: #dfe8e7;
}

.next-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4.7rem);
  border-radius: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--white);
  box-shadow: 0 1.4rem 4rem rgb(13 14 16 / 0.08);
}

.next-heading h2 {
  max-width: 33rem;
  margin-bottom: 0;
}

.conversation-path {
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversation-path li {
  position: relative;
  min-height: 6.3rem;
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  align-items: start;
  gap: 1.1rem;
  padding-bottom: 1.35rem;
}

.conversation-path li:not(:last-child)::after {
  position: absolute;
  top: 2.7rem;
  bottom: 0;
  left: 1.34rem;
  border-left: 1px dashed rgb(13 14 16 / 0.25);
  content: "";
}

.conversation-path li > span {
  position: relative;
  z-index: 1;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 850;
}

.conversation-path p {
  margin: 0.35rem 0 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.conversation-path strong {
  color: var(--graphite);
}

.next-action {
  width: min(100%, 24rem);
  grid-column: 2;
  margin-top: -1.2rem;
}

.next-action .button {
  width: 100%;
}

.next-action small {
  display: block;
  margin-top: 0.65rem;
  color: var(--slate);
  font-size: 0.67rem;
  text-align: center;
}

.faq {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 7rem;
}

.faq-intro h2 {
  margin-bottom: 1rem;
}

.faq-intro > p:last-child {
  max-width: 22rem;
  margin: 0;
  color: var(--slate);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 5.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 760;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  border-color: var(--tomato);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 42rem;
  margin: -0.3rem 3.5rem 1.75rem 0;
  color: var(--slate);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 7.5rem);
  color: var(--white);
  background: var(--tomato-surface);
}

.final-cta::before {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border: 1px dashed rgb(255 255 255 / 0.25);
  border-radius: 50%;
  content: "";
}

.final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 10vw, 8rem);
}

.final-cta .eyebrow {
  color: var(--white);
}

.final-copy h2 {
  max-width: 49rem;
  margin-bottom: 1.5rem;
}

.final-copy > p:last-child {
  max-width: 44rem;
  margin: 0;
  color: var(--white);
}

.final-action .button {
  width: 100%;
  min-height: 4rem;
}

.site-footer {
  padding: 3.5rem 0;
  color: rgb(255 255 255 / 0.72);
  background: var(--blue-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto;
  align-items: start;
  gap: 2rem 4rem;
}

.wordmark-footer {
  color: var(--white);
}

.footer-grid > div > p {
  max-width: 24rem;
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.4rem;
}

.footer-grid nav a,
.footer-grid nav button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: rgb(255 255 255 / 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.74rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
}

.footer-grid nav a:hover,
.footer-grid nav button:hover {
  color: var(--white);
  text-decoration-color: var(--mustard);
}

.footer-grid > small {
  grid-column: 1 / -1;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-inverse);
  color: rgb(255 255 255 / 0.62);
  font-size: 0.67rem;
}

.consent[hidden] {
  display: none;
}

.consent {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgb(5 6 7 / 0.36), transparent);
}

.consent-card {
  width: min(69rem, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-inline: auto;
  padding: 1.4rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 1.2rem;
  color: var(--white);
  background: rgb(8 9 10 / 0.97);
  box-shadow: 0 1.2rem 4rem rgb(5 6 7 / 0.38);
  backdrop-filter: blur(1rem);
}

.consent-label {
  margin: 0 0 0.25rem;
  color: var(--mustard);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consent-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.28rem;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.consent-card p {
  max-width: 50rem;
  margin: 0;
  color: rgb(255 255 255 / 0.69);
  font-size: 0.72rem;
  line-height: 1.55;
}

.consent-card .consent-links {
  margin-top: 0.45rem;
  color: rgb(255 255 255 / 0.58);
}

.consent-card a {
  color: var(--white);
}

.consent-feedback:not(:empty) {
  margin-top: 0.45rem;
  color: var(--mustard);
}

.consent-feedback[data-state="error"] {
  color: #ffb7aa;
}

.consent-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.55rem;
}

.consent-actions .button {
  min-height: 3rem;
  padding: 0.7rem 1rem;
  font-size: 0.73rem;
}

.consent-close {
  grid-column: 1 / -1;
  min-height: 2.5rem;
  padding: 0.35rem 0.7rem;
  border: 0;
  color: rgb(255 255 255 / 0.63);
  background: transparent;
  cursor: pointer;
  font-size: 0.65rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.legal-page {
  background: var(--mist);
}

.legal-header {
  color: var(--white);
  background: var(--blue);
}

.legal-header-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(255 255 255 / 0.78);
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-back:hover {
  color: var(--white);
}

.legal-main {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.legal-main > .eyebrow {
  color: var(--basil);
}

.legal-main > h1 {
  max-width: 54rem;
  margin-bottom: 1.2rem;
  color: var(--blue);
  font-size: clamp(3.25rem, 7vw, 6.5rem);
}

.legal-main > h1 em {
  display: inline;
  color: var(--tomato);
}

.legal-intro {
  max-width: 46rem;
  margin: 0;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.52fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
  margin-top: clamp(4rem, 8vw, 6.5rem);
}

.legal-index {
  position: sticky;
  top: 2rem;
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-index span,
.legal-index a {
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.legal-index span {
  color: var(--basil);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.legal-index a {
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-index a:hover {
  color: var(--tomato);
}

.legal-content {
  border-top: 1px solid var(--line);
}

.legal-content section {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0 1.2rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 2rem;
}

.legal-content section > span {
  grid-row: 1 / span 3;
  padding-top: 0.28rem;
  color: var(--tomato);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.legal-content h2 {
  grid-column: 2;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 780;
  letter-spacing: -0.04em;
}

.legal-content p {
  grid-column: 2;
  max-width: 47rem;
  margin: 0;
  color: var(--slate);
  font-size: 0.91rem;
}

.legal-content p + p {
  margin-top: 0.85rem;
}

.legal-content strong {
  color: var(--graphite);
}

.legal-content code {
  padding: 0.12rem 0.3rem;
  border-radius: 0.3rem;
  color: var(--blue);
  background: rgb(13 14 16 / 0.08);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.84em;
}

.legal-footer {
  margin-top: 0;
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.is-visible {
  animation: reveal-in 650ms var(--ease-out) both;
}

.js .ticket-wrap.reveal {
  opacity: 1;
  transform: rotate(1.4deg);
}

.js .ticket-wrap.reveal.is-visible {
  animation: ticket-in 820ms var(--ease-out) both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticket-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem) rotate(4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1.4deg);
  }
}

:is(a, button, summary):focus-visible {
  box-shadow:
    0 0 0 0.18rem var(--white),
    0 0 0 0.42rem var(--blue-deep);
}

@media (max-width: 62rem) {
  :root {
    --shell: min(100% - 2.5rem, 47rem);
  }

  .header-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .method-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 43rem;
  }

  .ticket-wrap {
    width: min(100%, 25rem);
    justify-self: center;
  }

  .hero-route {
    width: 86%;
  }

  .method-intro,
  .faq-intro {
    position: static;
  }

  .method-seal {
    display: none;
  }

  .method-list {
    margin-top: 0.5rem;
  }

  .next-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .next-action {
    grid-column: 1;
    margin-top: 0;
  }

  .final-action {
    max-width: 32rem;
  }

  .consent-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .consent-actions {
    grid-template-columns: 1fr 1fr;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-index span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 47rem) {
  :root {
    --shell: calc(100vw - 2rem);
    --section-space: 5rem;
  }

  .header-inner {
    min-height: 4.7rem;
    gap: 0.75rem;
  }

  .wordmark {
    font-size: 1.08rem;
  }

  .button-small {
    min-height: 2.6rem;
    padding-inline: 0.8rem;
    font-size: 0.68rem;
  }

  .hero {
    padding: 7.9rem 0 5rem;
  }

  .hero-grid {
    gap: 3.3rem;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.35rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions .button,
  .next-action .button,
  .final-action .button {
    width: 100%;
  }

  .ticket-wrap {
    width: min(94%, 23rem);
  }

  .split-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .split-intro .eyebrow {
    margin-top: 0;
  }

  .section-intro h2,
  .method h2,
  .next-step h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .diagnosis-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .diagnosis-card {
    min-height: 18rem;
  }

  .method-list li {
    grid-template-columns: 2rem minmax(0, 1fr) 2.25rem;
    gap: 0.8rem;
  }

  .next-card {
    padding: 2rem 1.25rem;
  }

  .conversation-path li {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .conversation-path li > span {
    width: 2.5rem;
    height: 2.5rem;
  }

  .conversation-path li:not(:last-child)::after {
    top: 2.5rem;
    left: 1.24rem;
  }

  .faq-grid {
    gap: 2.2rem;
  }

  .faq-list summary {
    gap: 0.8rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid nav {
    justify-content: flex-start;
  }

  .consent {
    padding: 0.6rem;
  }

  .consent-card {
    max-height: calc(100svh - 1.2rem);
    overflow-y: auto;
    padding: 1.1rem;
  }

  .consent-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .consent-close {
    grid-column: 1;
  }

  .legal-header-inner {
    min-height: 4.7rem;
  }

  .legal-back {
    font-size: 0.68rem;
  }

  .legal-main > h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .legal-layout {
    margin-top: 3.5rem;
  }

  .legal-content section {
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 0 0.75rem;
  }
}

@media (max-width: 23rem) {
  :root {
    --shell: calc(100vw - 1.5rem);
  }

  .header-inner .button-small span:last-child {
    display: none;
  }

  .button-small {
    padding-inline: 0.72rem;
  }

  .hero {
    padding-top: 6.7rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.9rem;
  }

  .hero h1 {
    margin-bottom: 1.05rem;
    font-size: 2.45rem;
  }

  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .hero-actions .button {
    min-height: 3.7rem;
  }

  .button {
    padding-inline: 1rem;
    font-size: 0.82rem;
  }

  .ticket {
    padding-inline: 1.15rem;
  }

  .ticket-list li {
    gap: 0.55rem;
  }

  .ticket-status {
    display: none;
  }

  .ticket-list li {
    grid-template-columns: 1.4rem minmax(0, 1fr) auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .ticket-wrap.reveal {
    opacity: 1;
    transform: none;
  }
}
