@font-face {
  font-family: "Inter Jainara";
  src: url("/assets/fonts/Inter18pt-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter Jainara";
  src: url("/assets/fonts/Inter18pt-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter Jainara";
  src: url("/assets/fonts/Inter18pt-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #070716;
  --ink-soft: #101722;
  --ink-green: #071b20;
  --teal: #2f9ca1;
  --teal-dark: #21777b;
  --aqua: #31f6ff;
  --gold: #ffc352;
  --gold-deep: #eea00e;
  --paper: #ffffff;
  --mist: #f1f5f4;
  --mist-dark: #dce7e5;
  --copy: #333640;
  --copy-light: #d9e1e3;
  --border: rgba(47, 156, 161, 0.2);
  --shadow-sm: 0 12px 35px rgba(7, 7, 22, 0.08);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.32);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --max-width: 1180px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--copy);
  font-family: "Inter Jainara", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  color: var(--paper);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.brand-role {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.095em;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 195, 82, 0.65);
  border-radius: 999px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: 790px;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 90px) 0 94px;
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(7, 7, 22, 0.78) 0%, rgba(7, 7, 22, 0.15) 38%, rgba(7, 7, 22, 0.1) 61%, rgba(7, 7, 22, 0.75) 100%),
    url("/assets/images/bg-hero-desktop.webp");
  background-position: center;
  background-size: cover;
  color: var(--paper);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, var(--ink));
  content: "";
  pointer-events: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: url("/assets/images/noise.gif");
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(49, 246, 255, 0.12);
  filter: blur(110px);
  transform: translate(-50%, -50%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(270px, 29vw, 430px);
}

.hero-copy {
  max-width: 490px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--aqua);
}

.hero h1 {
  max-width: 590px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(46px, 5.1vw, 74px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--aqua);
  font-style: normal;
  font-weight: 600;
}

.hero-subtitle {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.45;
}

.hero-card {
  max-width: 380px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 7, 22, 0.56);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(13px);
}

.hero-card-title {
  margin-bottom: 25px;
  color: var(--paper);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.38;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 12px 28px rgba(238, 160, 14, 0.2);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.button:hover {
  box-shadow: 0 16px 38px rgba(238, 160, 14, 0.3);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.button[aria-disabled="true"] {
  cursor: wait;
  filter: saturate(0.75);
}

.button svg,
.sticky-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-card .button {
  width: 100%;
}

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.availability > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(49, 246, 255, 0.1);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: 50%;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 14px); }
}

.kicker {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.pain-copy h2,
.about-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(35px, 4vw, 54px);
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: #676b72;
}

.testimonials {
  overflow: hidden;
  background: var(--paper);
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 500ms cubic-bezier(0.22, 0.68, 0, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc((100% - 40px) / 3);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 389 / 220;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.carousel-arrow {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-arrow:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd2d1;
  cursor: pointer;
  transition: background 180ms ease, width 180ms ease;
}

.carousel-dot[aria-current="true"] {
  width: 28px;
  background: var(--teal);
}

.pain-section {
  overflow: hidden;
  background: var(--mist);
}

.pain-section::before {
  position: absolute;
  top: -140px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(47, 156, 161, 0.08);
  content: "";
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}

.pain-copy {
  position: relative;
  z-index: 1;
}

.pain-copy h2 {
  max-width: 690px;
  font-size: clamp(33px, 3.3vw, 48px);
  line-height: 1.15;
}

.pain-copy > p:not(.kicker) {
  max-width: 610px;
  margin-bottom: 12px;
  color: #555b61;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  color: var(--teal-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}

.pain-image {
  position: relative;
  margin: 0;
}

.pain-image::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 42%;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
}

.pain-image img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg) 4px var(--radius-lg) 4px;
  box-shadow: var(--shadow-lg);
}

.treatments {
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--copy-light);
}

.treatments::before {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("/assets/images/noise.gif");
  content: "";
  pointer-events: none;
}

.treatment-heading {
  position: relative;
  max-width: 850px;
}

.treatment-heading h2,
.treatments .kicker {
  color: var(--paper);
}

.treatments .kicker {
  color: var(--aqua);
}

.treatment-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.treatment-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(47, 156, 161, 0.23);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  color: var(--copy);
  transition: border-color 200ms ease, transform 200ms ease;
}

.treatment-card:hover {
  border-color: rgba(49, 246, 255, 0.68);
  transform: translateY(-5px);
}

.treatment-card-featured {
  border-color: rgba(49, 246, 255, 0.35);
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: rgba(255, 255, 255, 0.84);
}

.card-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(47, 156, 161, 0.32);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.treatment-card-featured .card-number {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--paper);
}

.treatment-card h3 {
  margin-bottom: 13px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.treatment-card-featured h3 {
  color: var(--paper);
}

.treatment-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.treatment-outro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
  margin-top: 46px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.treatment-outro > p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.treatment-outro .button {
  min-width: 260px;
}

.audience {
  overflow: hidden;
  background: var(--ink-green);
}

.section-heading.light h2 {
  color: var(--paper);
}

.audience .kicker {
  color: var(--aqua);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  color: var(--paper);
  isolation: isolate;
}

.audience-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 7, 22, 0.03) 5%, rgba(7, 7, 22, 0.93) 92%);
  content: "";
}

.audience-card-one { background-image: url("/assets/images/img-01-1.webp"); }
.audience-card-two { background-image: url("/assets/images/img-02-1.webp"); }
.audience-card-three { background-image: url("/assets/images/img-03-1.webp"); }

.audience-card > span {
  display: inline-grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.audience-card h3 {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.25;
}

.about {
  overflow: hidden;
  background: var(--paper);
}

.about::after {
  position: absolute;
  z-index: 0;
  right: -180px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(47, 156, 161, 0.055);
  border-radius: 50%;
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.77fr) minmax(0, 1.23fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.about-image {
  margin: 0;
}

.image-frame {
  position: relative;
  padding: 14px 14px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 4px 4px;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  left: -18px;
  width: 56%;
  height: 56%;
  border-radius: var(--radius-lg) 0 0 0;
  background: var(--teal);
  content: "";
}

.image-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px) calc(var(--radius-lg) - 10px) 0 0;
}

.about-image figcaption {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.about-copy {
  max-width: 650px;
}

.about-copy > p:not(.kicker) {
  margin-bottom: 16px;
  color: #535961;
  font-size: 17px;
}

.credentials {
  display: grid;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.credentials li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 600;
}

.credentials li span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 156, 161, 0.12);
  color: var(--teal-dark);
  font-size: 12px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.instagram-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(49, 246, 255, 0.13), transparent 33%),
    linear-gradient(135deg, #071b20, #070716 68%);
  color: var(--paper);
}

.final-cta::after {
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background-image: url("/assets/images/noise.gif");
  content: "";
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
}

.final-cta .kicker {
  color: var(--aqua);
}

.final-cta h2 {
  margin-right: auto;
  margin-left: auto;
  color: var(--paper);
}

.final-cta-inner > p:not(.kicker):not(.availability) {
  max-width: 670px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.button-large {
  min-width: 310px;
  min-height: 64px;
  font-size: 17px;
}

.centered-availability {
  justify-content: center;
}

.site-footer {
  padding: 54px 0 28px;
  background: #04040d;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 7px;
  color: var(--paper);
  font-size: 19px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
  display: none;
}

.contact-status {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
  max-width: min(390px, calc(100% - 44px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  color: var(--paper);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.consent-banner {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1060px;
  margin: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 7, 22, 0.97);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.79);
  font-size: 13px;
  line-height: 1.5;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  margin: 0;
}

.consent-banner a {
  color: var(--paper);
}

.consent-actions {
  display: flex;
  gap: 10px;
}

.consent-actions button {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.consent-deny {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--paper);
}

.consent-grant {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.procedures-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.procedures-dialog::backdrop {
  background: rgba(4, 4, 13, 0.84);
  backdrop-filter: blur(7px);
}

.dialog-shell {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.dialog-shell > h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 50px);
}

.dialog-intro {
  max-width: 700px;
  color: #62676d;
}

.procedure-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0;
}

.procedure-list article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--mist);
}

.procedure-list h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}

.procedure-list p {
  margin: 0;
  color: #555c61;
  font-size: 14px;
}

.legal-page {
  min-height: 100vh;
  background: var(--mist);
}

.legal-header {
  position: static;
  background: var(--ink);
}

.legal-main {
  padding: 80px 0 110px;
}

.legal-card {
  max-width: 860px;
  margin: auto;
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 60px);
}

.legal-card h2 {
  margin: 42px 0 12px;
  font-size: 24px;
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-updated {
  color: #71767b;
  font-size: 13px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 0.68, 0, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid {
    gap: 26vw;
  }

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

  .treatment-card {
    min-height: 235px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: 760px;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 260px;
  }

  .hero-copy,
  .hero-card {
    max-width: 430px;
  }

  .hero-card {
    justify-self: end;
  }

  .testimonial-card {
    min-width: calc((100% - 20px) / 2);
  }

  .split-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .pain-image {
    width: min(100%, 550px);
    margin-left: auto;
  }

  .about-image {
    width: min(100%, 455px);
    margin: auto;
  }

  .about-copy {
    max-width: none;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 330px;
  }

  .treatment-outro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .treatment-outro > div {
    width: min(100%, 360px);
  }

  .consent-banner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  html {
    scroll-padding-bottom: 86px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding: 72px 0;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-role {
    font-size: 8.5px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 820px;
    align-items: stretch;
    padding: calc(var(--header-height) + 42px) 0 62px;
    background-image:
      linear-gradient(to bottom, rgba(7, 7, 22, 0.76) 0%, rgba(7, 7, 22, 0.08) 28%, rgba(7, 7, 22, 0.12) 52%, rgba(7, 7, 22, 0.98) 81%),
      url("/assets/images/bg-hero-mobile.webp");
    background-position: center top;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
  }

  .hero-copy {
    max-width: 360px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, 13vw, 59px);
  }

  .hero-subtitle {
    max-width: 320px;
    font-size: 17px;
  }

  .hero-card {
    width: 100%;
    max-width: none;
    padding: 22px;
    background: rgba(7, 7, 22, 0.72);
  }

  .hero-card-title {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .pain-copy h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .testimonial-card {
    min-width: 100%;
  }

  .carousel-controls {
    margin-top: 26px;
  }

  .pain-copy h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .pain-image::before {
    top: -10px;
    right: -10px;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 24px;
  }

  .treatment-outro .button,
  .button-large {
    width: 100%;
    min-width: 0;
  }

  .audience-card {
    min-height: 310px;
  }

  .about-grid {
    gap: 60px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-links {
    flex-direction: column;
    gap: 11px;
  }

  .sticky-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(7, 7, 22, 0.94);
    backdrop-filter: blur(12px);
  }

  .sticky-cta .button {
    width: 100%;
    min-height: 54px;
  }

  .consent-banner {
    right: 12px;
    bottom: 88px;
    left: 12px;
    max-height: calc(100vh - 112px);
    overflow: auto;
    padding: 16px;
  }

  .consent-actions {
    flex-direction: column-reverse;
  }

  .consent-actions button {
    width: 100%;
  }

  .contact-status {
    right: 14px;
    bottom: 88px;
    left: 14px;
    max-width: none;
  }

  .procedure-list {
    grid-template-columns: 1fr;
  }

  .dialog-shell {
    padding: 26px 20px 30px;
  }

  .legal-main {
    padding: 48px 0 80px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
