@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0870b7;
  --orange: #dd860b;
  --purple: #642682;
  --green: #3aa334;
  --ink: #111111;
  --paper: #f7f5ef;
  --white: #ffffff;
  --muted: #626262;
  --line: rgba(17, 17, 17, 0.17);
  --danger: #b3261e;
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.1);
  --radius-large: 32px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --shell: min(1240px, calc(100% - 48px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.dialog-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

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

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

button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

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

.site-header {
  width: var(--shell);
  min-height: 90px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  position: relative;
  display: block;
  width: 230px;
  aspect-ratio: 5.3425 / 1;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: -116.8%;
  left: -4.92%;
  width: 109.9%;
  max-width: none;
}

.site-header .button { justify-self: end; white-space: nowrap; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover { transform: translateY(-3px); box-shadow: 4px 5px 0 var(--ink); }
.button:active { transform: translateY(0); box-shadow: 1px 2px 0 var(--ink); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(8, 112, 183, 0.35); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 10px 18px; font-size: 0.88rem; }
.button-dark { color: var(--white); background: var(--purple); }
.button-primary { color: var(--white); background: var(--blue); }
.button[disabled] { cursor: wait; opacity: 0.66; transform: none; box-shadow: none; }

.hero {
  padding: 26px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: start;
  gap: 24px;
}

.spot-panel {
  --film-foreground: #ffffff;
  position: sticky;
  top: 20px;
  min-height: 720px;
  padding: clamp(34px, 5vw, 74px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--film-foreground);
  background: var(--blue);
  border-radius: var(--radius-large);
  isolation: isolate;
  transition: background-color 130ms linear, color 130ms linear;
}

.spot-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 12px;
  background: linear-gradient(90deg, var(--blue) 0 25%, var(--orange) 25% 50%, var(--purple) 50% 75%, var(--green) 75%);
}

.film-copy { position: relative; left: -12px; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }

.film-ball {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  background: #ffd11a;
  border: 2px solid rgba(17,17,17,0.15);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(17,17,17,0.18);
  pointer-events: none;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.kinetic-title {
  width: 100%;
  margin: 0;
  max-width: 820px;
  display: grid;
  justify-items: center;
  gap: 0.04em;
  font-size: clamp(2.9rem, 4.05vw, 3.65rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.film-line { display: flex; justify-content: center; align-items: baseline; gap: 0 0.24em; white-space: nowrap; }
.film-word { display: inline-flex; white-space: nowrap; transition: color 140ms ease; }
.film-word.is-hit { animation: film-word-pop 220ms cubic-bezier(.34,1.56,.64,1); }

@keyframes film-word-pop {
  0%, 100% { transform: scale(1); }
  42% { transform: scale(1.075); }
}

.hero-subtitle {
  max-width: 600px;
  margin: 32px auto 0;
  color: currentColor;
  opacity: 0.82;
  font-size: clamp(1.08rem, 1.9vw, 1.38rem);
}

.hero-form-panel, [data-form-mount] { min-width: 0; scroll-margin-top: 24px; }

.form-shell {
  padding: clamp(26px, 3.4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.form-heading > p:last-child { margin: 16px 0 26px; color: var(--muted); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.83rem;
  font-weight: 700;
}

.field label span { color: var(--muted); font-weight: 400; }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(17,17,17,0.24);
  border-radius: 12px;
  outline: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea { min-height: 116px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8a8a8a; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,112,183,0.11); }
.consultation-form.was-validated :is(input, select, textarea):invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(179,38,30,0.1); }

.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.83rem;
  cursor: pointer;
}

.privacy-check input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--blue); }
.privacy-check button { padding: 0; color: var(--blue); background: transparent; border: 0; text-decoration: underline; cursor: pointer; }
.captcha-slot { min-height: 78px; margin-bottom: 14px; overflow: hidden; }
.form-message { min-height: 25px; margin: 0 0 12px; color: var(--danger); font-size: 0.85rem; }
.form-message.is-success { color: var(--green); }
.button-submit { width: 100%; }
.form-meta { margin: 14px 0 0; text-align: center; color: #454545; font-size: 0.96rem; font-weight: 600; line-height: 1.5; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

.form-success { padding: 42px 10px 18px; text-align: center; }
.success-mark { width: 62px; height: 62px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 1.8rem; font-weight: 700; }
.form-success h3 { margin: 0; font-size: 1.7rem; }
.form-success p { max-width: 420px; margin: 12px auto 0; color: var(--muted); }

.problem-section, .process-section { padding: 96px 0; }

.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading-centered { margin-inline: auto; text-align: center; }
.section-heading h2, .reason-statement h2, .closing-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.section-heading > p:last-child, .closing-copy > p { max-width: 680px; color: var(--muted); font-size: 1.05rem; }

.problem-heading { max-width: 980px; }
.problem-heading .eyebrow { margin-bottom: 22px; font-size: clamp(0.88rem, 1.15vw, 1.02rem); letter-spacing: 0.11em; }
.problem-heading h2 { font-size: inherit; line-height: 1; letter-spacing: normal; }
.problem-title-context { margin-bottom: 12px; display: block; color: var(--muted); font-size: clamp(1.08rem, 1.55vw, 1.36rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.4; }
.problem-title-focus { max-width: 18ch; display: block; font-size: clamp(2.45rem, 4.25vw, 4.35rem); font-weight: 700; letter-spacing: -0.052em; line-height: 1.02; text-wrap: balance; }

.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.problem-card { min-height: 290px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; gap: 44px; border: 2px solid var(--ink); border-radius: var(--radius-medium); transition: transform 180ms ease, box-shadow 180ms ease; }
.problem-card:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: 6px 7px 0 var(--ink); }
.problem-card h3 { min-height: 5.1em; margin: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; font-size: 1.3rem; line-height: 1.2; text-wrap: balance; }
.problem-card-title-line { display: block; }
.problem-card p { margin: 0; font-size: 0.9rem; }
.card-index { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; }
.problem-blue { background: #d9ecf8; }
.problem-orange { background: #f8e7ca; }
.problem-purple { background: #ebdef0; }
.problem-green { background: #dff0dc; }

.reason-section { padding: 110px 0; color: var(--white); background: var(--blue); }
.reason-layout { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(42px, 8vw, 118px); align-items: center; }
.reason-statement .eyebrow { max-width: 620px; margin-bottom: 24px; font-size: clamp(1rem, 1.3vw, 1.16rem); letter-spacing: 0.08em; line-height: 1.4; }
.reason-statement h2 { max-width: 15ch; font-size: clamp(2.32rem, 3.95vw, 4.15rem); font-weight: 400; line-height: 1.02; }
.reason-statement h2 strong { font-weight: 700; }
.reason-copy h3 { max-width: 15ch; margin: 0 0 16px; font-size: clamp(1.55rem, 2.25vw, 2.2rem); line-height: 1.08; letter-spacing: -0.035em; }
.reason-copy p { max-width: 540px; margin: 0; color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; }
.reason-copy .lead-copy { color: var(--white); font-size: 1.45rem; font-weight: 700; line-height: 1.35; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 22px; padding-bottom: 4px; border-bottom: 2px solid var(--white); font-weight: 700; }
.text-link:hover span { transform: translateX(5px); }
.text-link span { transition: transform 160ms ease; }

.process-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); border-radius: var(--radius-large); overflow: hidden; }
.process-list li { min-height: 270px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 52px; background: var(--white); }
.process-list li + li { border-left: 2px solid var(--ink); }
.process-number { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-weight: 700; }
.process-list li:nth-child(1) .process-number { background: var(--orange); }
.process-list li:nth-child(2) .process-number { background: var(--purple); }
.process-list li:nth-child(3) .process-number { background: var(--green); }
.process-list h3 { margin: 0 0 9px; font-size: 1.35rem; }
.process-list p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.services-section { padding: 110px 0; color: var(--ink); background: #e8f2f8; }
.services-heading { max-width: 1180px; margin-bottom: 50px; }
.services-title-line { display: block; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.service-card { min-height: 260px; padding: 26px; display: flex; flex-direction: column; color: var(--white); border-radius: var(--radius-medium); }
.service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: span 3; }
.service-card:nth-child(5) { grid-column: span 3; }
.service-card span { font-size: 0.74rem; font-weight: 700; }
.service-card h3 { margin: auto 0 9px; font-size: 1.45rem; }
.service-card p { margin: 0; color: rgba(255,255,255,0.78); }
.service-blue { background: var(--blue); }
.service-orange, .service-green { color: var(--ink); }
.service-orange { background: var(--orange); }
.service-purple { background: var(--purple); }
.service-green { background: var(--green); }
.service-orange p, .service-green p { color: rgba(17,17,17,0.76); }
.service-dark { color: var(--ink); border: 2px solid var(--blue); background: var(--white); }
.service-dark p { color: var(--muted); }

.closing-section { padding: 60px 0 110px; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 24px; align-items: stretch; }
.closing-copy { min-height: 100%; padding: clamp(38px, 4vw, 58px); display: flex; flex-direction: column; color: var(--white); background: var(--purple); border-radius: var(--radius-large); }
.closing-copy .eyebrow { margin-bottom: clamp(28px, 4vw, 52px); }
.closing-copy h2 { max-width: 9ch; margin: 0 0 28px; font-size: clamp(2.75rem, 4vw, 4.1rem); line-height: 0.98; letter-spacing: -0.045em; text-wrap: balance; }
.closing-copy > p { max-width: 390px; margin: 0; color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.65; }
.closing-facts { margin-top: auto; padding-top: 42px; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(255,255,255,0.24); }
.closing-facts span { padding: 8px 12px; color: var(--white); border: 1px solid rgba(255,255,255,0.42); border-radius: 999px; font-size: 0.72rem; font-weight: 650; }

.site-footer { padding: 26px 0; color: var(--white); background: var(--blue); }
.footer-compact { min-height: 76px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; gap: clamp(22px, 4vw, 58px); align-items: center; }
.footer-company { padding-right: clamp(22px, 3vw, 44px); display: flex; flex-direction: column; gap: 4px; border-right: 1px solid rgba(255,255,255,0.24); white-space: nowrap; }
.footer-company strong { font-size: 0.95rem; }
.footer-company span { color: rgba(255,255,255,0.66); font-size: 0.72rem; }
.footer-contact-list { min-width: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px clamp(18px, 2.5vw, 34px); }
.footer-contact-list a { color: rgba(255,255,255,0.86); font-size: 0.82rem; font-weight: 600; text-underline-offset: 4px; }
.footer-contact-list a:hover { color: var(--white); text-decoration: underline; }
.footer-social-icons { display: flex; gap: 8px; }
.footer-social-icons a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.36); border-radius: 50%; transition: color 160ms ease, background-color 160ms ease, transform 160ms ease; }
.footer-social-icons a:hover { color: var(--blue); background: var(--white); transform: translateY(-2px); }
.footer-social-icons svg { width: 19px; height: 19px; fill: currentColor; stroke: none; }
.footer-social-icons svg rect, .footer-social-icons svg circle:not(.icon-dot) { fill: none; stroke: currentColor; stroke-width: 2; }
.footer-social-icons .icon-dot { fill: currentColor; }
.footer-link { padding: 0; color: var(--white); background: transparent; border: 0; cursor: pointer; font: inherit; font-size: 0.78rem; font-weight: 700; white-space: nowrap; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.48); text-underline-offset: 4px; }
.footer-link:hover { text-decoration-color: var(--white); }

.privacy-dialog { width: min(680px, calc(100% - 28px)); max-height: min(760px, calc(100dvh - 28px)); padding: 0; color: var(--ink); background: var(--white); border: 2px solid var(--ink); border-radius: 24px; box-shadow: 10px 12px 0 var(--ink); }
.privacy-dialog::backdrop { background: rgba(17,17,17,0.72); backdrop-filter: blur(4px); }
.dialog-header { padding: 28px 30px 20px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.dialog-header h2 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.05; }
.dialog-close { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.dialog-content { padding: 22px 30px; overflow: auto; color: var(--muted); }
.dialog-content a { color: var(--blue); text-decoration: underline; }
.dialog-actions { padding: 18px 30px 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px; border-top: 1px solid var(--line); }
.dialog-actions > a { color: var(--blue); font-weight: 700; text-decoration: underline; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2,0.7,0.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); }
  .spot-panel { min-height: 680px; }
  .kinetic-title { font-size: clamp(2.85rem, 4.25vw, 3.65rem); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card { min-height: 240px; }
  .problem-card h3 { display: block; }
  .problem-card-title-line { display: inline; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .site-header { grid-template-columns: 230px 1fr; min-height: 82px; }
  .field input::placeholder, .field textarea::placeholder { font-size: 0.9rem; }
  .hero { padding-top: 12px; grid-template-columns: 1fr; }
  .spot-panel { position: relative; top: auto; min-height: 600px; }
  .hero-form-panel { margin-top: -68px; padding-inline: 18px; position: relative; z-index: 2; }
  .reason-layout, .closing-section { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; flex-direction: row; justify-content: flex-start; gap: 24px; }
  .process-list li + li { border-left: 0; border-top: 2px solid var(--ink); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(n) { grid-column: span 1; }
  .service-card:last-child { grid-column: 1 / -1; }
  .closing-copy { min-height: 0; }
  .footer-compact { grid-template-columns: auto 1fr auto; }
  .footer-contact-list { justify-content: flex-start; }
  .footer-link { grid-column: 2; justify-self: start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); --radius-large: 24px; }
  .site-header { width: calc(100% - 24px); grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .brand { width: min(180px, 100%); }
  .site-header .button { min-width: 0; min-height: 44px; width: auto; padding: 10px 15px; font-size: 0.84rem; }
  .hero { width: 100%; padding-bottom: 62px; }
  .spot-panel { min-height: 540px; padding: 40px 24px; border-radius: 0 0 var(--radius-large) var(--radius-large); }
  .kinetic-title { font-size: clamp(2.08rem, 9vw, 2.4rem); line-height: 1; }
  .hero-subtitle { margin-top: 24px; }
  .film-copy { left: -4px; }
  .film-ball { width: 28px; height: 28px; }
  .hero-form-panel { margin-top: -56px; padding-inline: 12px; }
  .form-shell { padding: 26px 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .captcha-slot { width: 100%; min-height: 74px; }
  .captcha-slot > div { transform: scale(0.88); transform-origin: left top; }
  .problem-section, .process-section { padding: 74px 0; }
  .section-heading h2, .reason-statement h2, .closing-copy h2 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .problem-grid, .service-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 205px; }
  .problem-card h3 { min-height: 0; }
  .reason-section, .services-section { padding: 78px 0; }
  .reason-statement .eyebrow { font-size: 0.98rem; }
  .reason-statement h2 { font-size: clamp(2.1rem, 10.2vw, 2.8rem); }
  .reason-copy h3 { margin-bottom: 14px; }
  .services-title-line { display: inline; }
  .process-list li { padding: 26px 22px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .process-number { width: 44px; height: 44px; flex: 0 0 44px; }
  .service-card:nth-child(n) { grid-column: auto; min-height: 230px; }
  .closing-section { padding: 28px 0 78px; }
  .closing-copy { padding: 38px 26px; }
  .closing-copy .eyebrow { margin-bottom: 28px; font-size: 0.68rem; letter-spacing: 0.1em; white-space: nowrap; }
  .closing-copy h2 { max-width: 10ch; margin-bottom: 22px; font-size: clamp(2.65rem, 12vw, 3.45rem); }
  .closing-facts { margin-top: 38px; padding-top: 26px; }
  .site-footer { padding: 24px 0; }
  .footer-compact { min-height: 0; grid-template-columns: 1fr auto; gap: 18px 22px; }
  .footer-company { grid-column: 1 / -1; padding: 0 0 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.24); }
  .footer-contact-list { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-social-icons { grid-column: 1; }
  .footer-link { grid-column: 2; justify-self: end; align-self: center; }
  .dialog-header, .dialog-content, .dialog-actions { padding-left: 20px; padding-right: 20px; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
  .dialog-actions .button { width: 100%; }
}

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

.thank-you-page { min-height: 100dvh; background: var(--green); }
.thank-you-main { min-height: 100dvh; display: grid; place-items: center; padding: 24px; }
.thank-you-card { position: relative; width: min(840px, 100%); padding: clamp(34px, 7vw, 82px); overflow: hidden; background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius-large); box-shadow: 10px 12px 0 var(--ink); }
.thank-you-brand { margin-bottom: 54px; }
.thank-you-card h1 { max-width: 700px; margin: 0; font-size: clamp(2.8rem, 7vw, 6rem); line-height: 0.98; letter-spacing: -0.06em; }
.thank-you-card > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 1.05rem; }
.thank-you-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.thank-you-link { color: var(--ink); border-color: var(--ink); }
.thank-you-palette { position: absolute; top: 0; right: 0; bottom: 0; width: 16px; display: grid; grid-template-rows: repeat(4, 1fr); }
.thank-you-palette span:nth-child(1) { background: var(--blue); }
.thank-you-palette span:nth-child(2) { background: var(--orange); }
.thank-you-palette span:nth-child(3) { background: var(--purple); }
.thank-you-palette span:nth-child(4) { background: var(--green); }

@media (max-width: 620px) {
  .thank-you-main { padding: 12px; }
  .thank-you-card { padding: 36px 24px 44px; }
  .thank-you-brand { margin-bottom: 42px; }
  .thank-you-actions { align-items: stretch; flex-direction: column; }
  .thank-you-actions .button { width: 100%; }
}
