@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo.woff2') format('woff2');
  font-weight: 400 900;
  font-stretch: 62% 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Fallback';
  src: local('Arial');
  size-adjust: 97%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  --black: #000;
  --white: #fff;
  --paper: #f5f5f3;
  --bone: #d4d4d4;
  --ash: #9a9a9a;
  --smoke: #0e0e0e;
  --line: rgba(255, 255, 255, .14);
  --line-strong: rgba(255, 255, 255, .34);
  --teal: #37757b;
  --teal-deep: #26575e;
  --teal-soft: #94ccd0;
  --font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --pad: clamp(20px, 5vw, 72px);
  --max: 1320px;
  --radius: 26px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
html.is-locked, html.is-locked body { overflow: hidden; }
body {
  background: var(--black); color: var(--white);
  font-family: var(--font); font-size: clamp(16px, 1.05vw, 18px); line-height: 1.65;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
main { overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
::selection { background: var(--teal); color: var(--white); }
:focus-visible { outline: 2px solid var(--teal-soft); outline-offset: 4px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { display: inline-grid; place-items: center; flex: none; font-style: normal; line-height: 1; }
.ico svg { width: 1em; height: 1em; fill: currentColor; display: block; overflow: visible; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.depth { perspective: 1400px; }
[data-px] { will-change: transform; transform-style: preserve-3d; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(55, 117, 123, .7); animation: dot-pulse 2s infinite; }
@keyframes dot-pulse { 70% { box-shadow: 0 0 0 10px rgba(55, 117, 123, 0); } 100% { box-shadow: 0 0 0 0 rgba(55, 117, 123, 0); } }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 3000; padding: 10px 16px; background: var(--white); color: var(--black); font-weight: 700; transform: translateY(-200%); transition: transform .3s var(--ease); }
.skip-link:focus { transform: none; }

.section-title {
  font-weight: 900; font-stretch: 75%; text-transform: uppercase;
  font-size: clamp(40px, 6.4vw, 104px); line-height: .88; letter-spacing: -.01em; max-width: 13ch;
}
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vh, 70px); }

/* GRAIN */
.grain {
  position: fixed; inset: -50%; z-index: 900; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@media (hover: none), (pointer: coarse) { .grain { animation: none; opacity: .04; } }
@keyframes grain { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(-4%, 3%); } 50% { transform: translate(3%, -5%); } 75% { transform: translate(-5%, -2%); } }

/* MARK */
.mark {
  max-width: 100%;
  display: inline-grid; grid-template-columns: auto auto; grid-template-areas: "top cro" "bottom cro";
  align-items: start; column-gap: .12em;
  font-family: var(--font); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .8; color: var(--white);
}
.mark__top { grid-area: top; display: flex; align-items: flex-start; gap: .04em; }
.mark__dr { font-size: .24em; font-weight: 700; font-stretch: 100%; text-transform: none; letter-spacing: 0; margin-top: .3em; color: var(--teal-soft); }
.mark__first { font-size: 1em; letter-spacing: -.005em; }
.mark__bottom { grid-area: bottom; display: flex; gap: .14em; font-size: .52em; margin-top: .08em; white-space: nowrap; }
.mark__neto { color: transparent; -webkit-text-stroke: 2px var(--white); }
.mark__cro {
  grid-area: cro; writing-mode: vertical-rl; transform: rotate(180deg);
  align-self: stretch; text-align: center;
  padding-right: .22em; border-right: .035em solid var(--teal);
  font-size: .13em; font-weight: 700; font-stretch: 100%; letter-spacing: .32em; color: var(--teal-soft); line-height: 1;
}
.mark--hero { font-size: clamp(76px, 12.5vw, 196px); }
.mark--intro { font-size: clamp(80px, 22vw, 240px); }
.mark--modal { font-size: clamp(56px, 7vw, 96px); margin-bottom: 26px; }
.mark--footer { font-size: clamp(90px, 22vw, 360px); }

/* BUTTONS */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 28px; border-radius: 999px; border: 1px solid transparent;
  font-size: 15px; font-weight: 700; line-height: 1.25; text-align: center;
  transition: color .5s var(--ease), border-color .5s var(--ease), background-color .4s;
  will-change: transform;
}
.btn i { font-size: 1.1em; }
.btn::before { content: ''; position: absolute; inset: -2px; z-index: -1; border-radius: inherit; clip-path: circle(0% at 50% 110%); transition: clip-path .7s var(--ease); }
.btn:hover::before, .btn:focus-visible::before { clip-path: circle(150% at 50% 110%); }
.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal::before { background: var(--white); }
.btn--teal:hover, .btn--teal:focus-visible { color: var(--black); }
.btn--ghost, .btn--line { color: var(--white); border-color: var(--line-strong); }
.btn--ghost::before, .btn--line::before { background: var(--white); }
.btn--ghost:hover, .btn--line:hover, .btn--ghost:focus-visible, .btn--line:focus-visible { color: var(--black); border-color: var(--white); }

.more {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 10px 10px 20px; border-radius: 999px; border: 1px solid var(--line-strong);
  font-size: 14px; font-weight: 700; color: var(--white);
  transition: border-color .4s, background-color .4s;
}
.more i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--white); transition: transform .6s var(--ease); }
.more:hover { border-color: var(--teal); }
.more:hover i { transform: rotate(135deg); }
.more--dark { background: rgba(0, 0, 0, .55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.values .more { color: var(--black); border-color: rgba(0, 0, 0, .2); }

/* INTRO */
.no-js .intro { display: none; }
.intro { position: fixed; inset: 0; z-index: 2000; overflow: hidden; animation: intro-failsafe .01s 14s forwards; }
@keyframes intro-failsafe { to { visibility: hidden; opacity: 0; pointer-events: none; } }
.intro.is-out { pointer-events: none; }
.intro__paper {
  position: absolute; inset: 0; background: var(--white); color: #222;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; padding: 24px;
}
.intro__legacy {
  width: min(78vw, 440px); height: auto; opacity: 0; transform: scale(1.12); filter: blur(14px);
}
.intro.is-on .intro__legacy { animation: legacy-in 1.6s var(--ease) .2s forwards; }
@keyframes legacy-in { to { opacity: 1; transform: none; filter: blur(0); } }
.intro__rule { width: min(60vw, 320px); height: 2px; background: var(--teal); transform: scaleX(0); }
.intro.is-on .intro__rule { animation: rule-in 1.2s var(--ease-io) .9s forwards; }
@keyframes rule-in { to { transform: scaleX(1); } }
.intro__since { font-size: clamp(13px, 1.4vw, 16px); letter-spacing: .02em; color: #555; opacity: 0; transform: translateY(14px); }
.intro.is-on .intro__since { animation: since-in 1s var(--ease) 1.3s forwards; }
@keyframes since-in { to { opacity: 1; transform: none; } }
.intro.is-ink .intro__legacy { animation: legacy-out 1.2s var(--ease-io) forwards; }
@keyframes legacy-out { from { opacity: 1; transform: none; filter: blur(0); } to { opacity: 0; transform: scale(.7); filter: blur(10px); } }

.intro__ink {
  position: absolute; inset: 0; background: var(--black);
  display: grid; place-items: center;
  clip-path: circle(0% at 50% 50%);
}
.intro.is-ink .intro__ink { animation: ink-open 1.3s var(--ease-io) forwards; }
@keyframes ink-open { to { clip-path: circle(150% at 50% 50%); } }
.intro__ink .mark { opacity: 0; transform: scale(.9) rotateX(40deg); }
.intro.is-ink .intro__ink .mark { animation: mark-in 1.6s var(--ease) .5s forwards; }
@keyframes mark-in { to { opacity: 1; transform: none; } }
.intro .char { display: inline-block; transform: translateY(110%) rotate(12deg); opacity: 0; }
.intro .mark__first, .intro .mark__last, .intro .mark__neto { overflow: hidden; display: inline-block; padding: .14em .02em .04em; margin: -.14em -.02em -.04em; }
.intro.is-ink .char { animation: char-in 1s var(--ease) forwards; animation-delay: calc(.6s + var(--c) * 45ms); }
@keyframes char-in { to { transform: none; opacity: 1; } }
.intro .mark__cro { clip-path: inset(100% 0 0 0); }
.intro.is-ink .mark__cro { animation: cro-in 1s var(--ease-io) 1.4s forwards; }
@keyframes cro-in { to { clip-path: inset(0 0 0 0); } }
.intro.is-out .intro__ink { transition: transform 1.1s var(--ease-io), opacity .8s; transform: scale(1.6); opacity: 0; }

.intro__curtain { position: absolute; left: 0; right: 0; height: 50.5%; background: var(--black); transform: scaleY(0); pointer-events: none; }
.intro__curtain--top { top: 0; transform-origin: top; }
.intro__curtain--bottom { bottom: 0; transform-origin: bottom; }
.intro.is-out .intro__paper { visibility: hidden; }
.intro.is-out .intro__curtain { animation: curtain-out 1.1s var(--ease-io) .1s forwards; }
@keyframes curtain-out { 0% { transform: scaleY(1); } 100% { transform: scaleY(0); } }
.intro__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 3; }
.intro__progress span { display: block; height: 100%; background: var(--teal); transform: scaleX(0); transform-origin: left; }
.intro.is-on .intro__progress span { animation: progress 4.6s linear forwards; }
@keyframes progress { to { transform: scaleX(1); } }
.intro__skip {
  position: absolute; right: var(--pad); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 4;
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px;
  border: 1px solid rgba(128, 128, 128, .4); border-radius: 999px;
  font-size: 13px; color: #777; mix-blend-mode: difference; transition: opacity .4s;
}
.intro.is-out .intro__skip, .intro.is-out .intro__progress { opacity: 0; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; gap: 24px;
  padding: max(16px, env(safe-area-inset-top)) var(--pad) 16px;
  border-bottom: 1px solid transparent;
  transform: translateY(-120%);
  transition: transform .7s var(--ease), background-color .4s, padding .4s, border-color .4s;
}
body.is-ready .nav { transform: none; }
body.is-ready .nav.is-hidden { transform: translateY(-120%); }
.nav.is-scrolled { background-color: rgba(0, 0, 0, .72); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); padding-block: 11px; border-color: var(--line); }
.nav.is-open { background-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-color: transparent; }
.nav__brand { display: inline-flex; align-items: center; gap: 8px; margin-right: auto; text-transform: uppercase; line-height: 1; }
.nav__dr { font-size: 12px; font-weight: 700; text-transform: none; color: var(--teal-soft); align-self: flex-start; }
.nav__name { font-weight: 900; font-stretch: 62%; font-size: 26px; letter-spacing: .01em; white-space: nowrap; }
.nav__name em { font-style: normal; color: transparent; -webkit-text-stroke: 1px var(--white); }
.nav__cro { padding: 5px 8px; border: 1px solid var(--teal); border-radius: 6px; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--teal-soft); }
.nav__list { display: flex; gap: clamp(18px, 2.2vw, 34px); }
.nav__link { position: relative; font-size: 14px; font-weight: 500; color: var(--bone); transition: color .3s; }
.nav__link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__menu-foot { display: none; }
.nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; background: var(--teal); color: var(--white); font-size: 14px; font-weight: 700; transition: background-color .3s; }
.nav__cta:hover { background: var(--teal-deep); }
.nav__toggle { display: none; position: relative; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; }
.nav__toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--white); transition: transform .5s var(--ease), top .5s var(--ease); }
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 25px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
@media (max-width: 1020px) {
  .nav__toggle { display: block; }
  .nav__cta { padding: 11px 14px; }
  .nav__cta span { display: none; }
  .nav__menu {
    position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; gap: 44px;
    padding: 110px var(--pad) 48px; background: var(--black);
    clip-path: circle(0% at calc(100% - var(--pad) - 22px) 40px); visibility: hidden;
    transition: clip-path .9s var(--ease-io), visibility 0s .9s;
  }
  .nav.is-open .nav__menu { clip-path: circle(150% at calc(100% - var(--pad) - 22px) 40px); visibility: visible; transition: clip-path .9s var(--ease-io), visibility 0s; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: inline-block; font-size: clamp(42px, 12vw, 80px); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: 1.05; color: var(--white); opacity: 0; transform: translateY(60px) rotate(6deg); transition: transform .8s var(--ease), opacity .6s; }
  .nav__link::after { display: none; }
  .nav.is-open .nav__link { opacity: 1; transform: none; }
  .nav.is-open li:nth-child(1) .nav__link { transition-delay: .25s; }
  .nav.is-open li:nth-child(2) .nav__link { transition-delay: .31s; }
  .nav.is-open li:nth-child(3) .nav__link { transition-delay: .37s; }
  .nav.is-open li:nth-child(4) .nav__link { transition-delay: .43s; }
  .nav.is-open li:nth-child(5) .nav__link { transition-delay: .49s; }
  .nav__menu-foot { display: flex; flex-direction: column; gap: 8px; color: var(--ash); }
}
@media (max-width: 420px) { .nav__cro { display: none; } .nav__name { font-size: 21px; } .nav { gap: 12px; } }

/* HERO */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 100px; overflow: clip; perspective: 1400px; }
.hero__lines { position: absolute; inset: 0; display: flex; justify-content: space-evenly; pointer-events: none; }
.hero__lines span { width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .07), transparent); transform: scaleY(0); transform-origin: top; transition: transform 2s var(--ease-io); }
body.is-ready .hero__lines span { transform: none; }
body.is-ready .hero__lines span:nth-child(2) { transition-delay: .15s; }
body.is-ready .hero__lines span:nth-child(3) { transition-delay: .3s; }
body.is-ready .hero__lines span:nth-child(4) { transition-delay: .45s; }
.hero__bgword {
  position: absolute; right: -4vw; bottom: -6vw; pointer-events: none; user-select: none;
  font-weight: 900; font-stretch: 62%; font-size: clamp(180px, 40vw, 640px); line-height: .8;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
}
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.hero__copy { min-width: 0; }
.hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; font-size: 14px; color: var(--ash); }
.hero__mark .mark { opacity: 0; transform: translateY(40px); transition: opacity 1s, transform 1.4s var(--ease); }
body.is-ready .hero__mark .mark { opacity: 1; transform: none; }
.hero__title { max-width: 30ch; margin-top: 30px; font-size: clamp(18px, 1.6vw, 24px); font-weight: 700; line-height: 1.3; }
.hero__lead { max-width: 46ch; margin-top: 14px; color: var(--bone); }
.hero__eyebrow, .hero__title, .hero__lead, .hero__actions { opacity: 0; transform: translateY(26px); transition: opacity 1s, transform 1.2s var(--ease); }
body.is-ready .hero__eyebrow { opacity: 1; transform: none; transition-delay: .2s; }
body.is-ready .hero__title { opacity: 1; transform: none; transition-delay: .45s; }
body.is-ready .hero__lead { opacity: 1; transform: none; transition-delay: .55s; }
body.is-ready .hero__actions { opacity: 1; transform: none; transition-delay: .65s; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__visual { position: relative; justify-self: end; width: min(100%, 380px, 44svh); min-width: 300px; }
.hero__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--smoke);
  clip-path: inset(100% 0 0 0 round 26px); transition: clip-path 1.6s var(--ease-io) .15s, transform .6s var(--ease);
}
body.is-ready .hero__photo { clip-path: inset(0 0 0 0 round 26px); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transform: scale(1.25); transition: transform 2.4s var(--ease) .15s; }
body.is-ready .hero__photo img { transform: scale(1.02); }
.scan { position: absolute; left: 0; right: 0; top: 0; height: 30%; pointer-events: none; background: linear-gradient(to bottom, transparent, rgba(148, 204, 208, .18) 70%, rgba(148, 204, 208, .5) 100%); mix-blend-mode: screen; animation: scan 4.5s var(--ease-io) infinite; }
@keyframes scan { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(340%); } }
.hero__chips { display: grid; gap: 10px; margin-top: 18px; }
.chip {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 16px; background: rgba(0, 0, 0, .72); border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 600; line-height: 1.3;
  opacity: 0; transform: translateY(20px); transition: opacity 1s, transform 1.2s var(--ease);
}
body.is-ready .chip { opacity: 1; transform: none; }
body.is-ready .chip:nth-child(1) { transition-delay: 1s; }
body.is-ready .chip:nth-child(2) { transition-delay: 1.12s; }
body.is-ready .chip:nth-child(3) { transition-delay: 1.24s; }
.chip i { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; width: 28px; height: 46px; margin-left: -14px; border: 1px solid var(--line-strong); border-radius: 999px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--teal-soft); animation: wheel 1.8s var(--ease-io) infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(18px); opacity: 0; } }

/* SPLIT + REVEAL */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: .16em .02em .08em; margin: -.16em -.02em -.08em; }
.w > span { display: inline-block; }
.js [data-split] .w > span { transform: translateY(115%) rotate(8deg); transform-origin: left bottom; transition: transform 1.2s var(--ease); transition-delay: calc(var(--i) * 60ms); }
.js [data-split].is-in .w > span { transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(60px) rotateX(-30deg); transform-origin: 50% 0; transition: opacity 1s ease, transform 1.3s var(--ease); transition-delay: var(--d, .12s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* VALUES */
.values { position: relative; background: var(--paper); color: var(--black); padding: clamp(110px, 17vh, 200px) 0; overflow: clip; border-radius: 48px 48px 0 0; }
.values__floats { position: absolute; inset: 0; pointer-events: none; }
.float { position: absolute; width: clamp(110px, 13vw, 210px); mix-blend-mode: multiply; filter: grayscale(.2); }
.float--1 { left: 3%; top: 8%; }
.float--2 { right: 4%; top: 14%; }
.float--3 { left: 8%; bottom: 6%; }
.float--4 { right: 10%; bottom: 4%; }
.values .section-title { color: var(--black); }
.values__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; position: relative; }
.value {
  position: relative; padding: clamp(28px, 3vw, 44px); border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .25);
  transition: transform .6s var(--ease), box-shadow .6s;
}
.value:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: 0 50px 80px -30px rgba(0, 0, 0, .35); }
.value__icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 20px; background: var(--teal); color: var(--white); font-size: 26px; margin-bottom: 28px; transition: transform .6s var(--ease); }
.value:hover .value__icon { transform: rotate(-10deg) scale(1.06); }
.value { container-type: inline-size; }
.value h3 { font-weight: 900; font-stretch: 75%; text-transform: uppercase; font-size: clamp(20px, 2.1vw, 34px); font-size: min(36px, 10.5cqi); line-height: 1; margin-bottom: 14px; white-space: nowrap; }
.value p { color: #444; }

/* ABOUT */
.about { position: relative; padding: clamp(110px, 17vh, 210px) 0; overflow: clip; }
.about__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.about__media { position: relative; }
.about__photo { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--white); transition: transform .6s var(--ease); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.about__badge {
  position: absolute; right: -8%; bottom: 10%; width: clamp(120px, 12vw, 164px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; text-align: center; gap: 4px;
  background: var(--teal); color: var(--white); box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
}
.about__badge strong { font-weight: 900; font-stretch: 62%; font-size: clamp(38px, 3.6vw, 52px); line-height: .9; }
.about__badge span { font-size: 12px; font-weight: 600; line-height: 1.2; padding-inline: 16px; }
.about__lead { margin-top: 34px; font-size: clamp(17px, 1.3vw, 21px); color: var(--white); }
.about__copy p + p { margin-top: 14px; color: var(--bone); }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.about__stats li { display: flex; flex-direction: column; gap: 6px; padding: 22px 18px 0 0; }
.about__stats li + li { padding-left: 18px; border-left: 1px solid var(--line); }
.about__stats strong { font-weight: 900; font-stretch: 62%; font-size: clamp(44px, 4.4vw, 72px); line-height: .9; color: var(--teal-soft); }
.about__stats span { font-size: 14px; color: var(--ash); line-height: 1.4; white-space: nowrap; }

/* CASE */
.case { position: relative; height: 820vh; background: var(--black); }
.case__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.case__word {
  position: absolute; left: 50%; top: 50%; pointer-events: none; user-select: none; white-space: nowrap;
  font-weight: 900; font-stretch: 62%; text-transform: uppercase; font-size: clamp(140px, 34vw, 560px); line-height: .8;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .1);
  transform: translate(-50%, -50%); transition: -webkit-text-stroke-color .6s;
}
.case__word.is-after { -webkit-text-stroke-color: rgba(148, 204, 208, .22); }
.case__stage { position: absolute; inset: 0; perspective: 1000px; perspective-origin: 50% 45%; transform-style: preserve-3d; }
.case__frame {
  position: absolute; left: 50%; top: 47%;
  border-radius: 20px; overflow: hidden; background: var(--smoke);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .08);
  transform: translate(-50%, -50%); will-change: transform, opacity; backface-visibility: hidden;
}
.case__frame img { display: block; width: auto; height: auto; max-width: min(78vw, 820px); max-height: 60vh; max-height: 60svh; }
.case__hud { position: absolute; inset: 0; display: grid; grid-template-rows: auto 1fr auto; padding-top: 96px; padding-bottom: max(26px, env(safe-area-inset-bottom)); pointer-events: none; }
.case__hud > * { pointer-events: auto; }
.case__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.case__title { font-weight: 900; font-stretch: 75%; text-transform: uppercase; font-size: clamp(28px, 3.8vw, 58px); line-height: .9; max-width: 14ch; }
.case__meta { grid-row: 3; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.case__counter { display: flex; align-items: baseline; gap: 8px; font-weight: 900; font-stretch: 62%; line-height: .8; }
.case__current { font-size: clamp(64px, 8vw, 120px); display: inline-block; }
.case__current.is-flip { animation: flip .5s var(--ease); }
@keyframes flip { 0% { transform: translateY(40%) rotateX(-80deg); opacity: 0; } 100% { transform: none; opacity: 1; } }
.case__total { font-size: clamp(22px, 2vw, 30px); color: var(--ash); }
.case__label { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 180px; }
.case__phase { align-self: flex-start; padding: 6px 14px; border-radius: 999px; background: var(--teal); font-size: 13px; font-weight: 700; }
.case__caption { font-size: clamp(16px, 1.4vw, 20px); font-weight: 600; }
.case__ticks { display: flex; gap: 6px; }
.case__ticks li { width: clamp(16px, 2.6vw, 34px); height: 4px; border-radius: 2px; background: var(--line-strong); transition: background-color .4s, transform .4s; }
.case__ticks li.is-done { background: var(--white); }
.case__ticks li.is-current { background: var(--teal-soft); transform: scaleY(1.8); }
.case__cta { position: absolute; left: 50%; bottom: max(110px, 14vh); transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: opacity .6s, transform .8s var(--ease); white-space: nowrap; }
.case__cta.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }

/* PROCEDURES */
.procs { position: relative; padding: clamp(110px, 16vh, 200px) 0; }
.procs__intro { max-width: 52ch; margin: -30px 0 34px; color: var(--bone); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.filter { min-height: 44px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 14px; font-weight: 600; color: var(--bone); transition: background-color .3s, color .3s, border-color .3s; }
.filter:hover { border-color: var(--white); color: var(--white); }
.filter.is-active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.procs__groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); }
.procs__group { transition: opacity .5s, transform .6s var(--ease); }
.procs__group.is-hidden { display: none; }
.procs__group.is-entering { animation: group-in .7s var(--ease); }
@keyframes group-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.procs__group-title { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 6px; border-bottom: 1px solid var(--line-strong); font-size: 13px; font-weight: 700; letter-spacing: .02em; color: var(--teal-soft); }
.procs__group-title::before { content: ''; width: 18px; height: 2px; background: var(--teal); }
.proc {
  position: relative; width: 100%; display: grid; grid-template-columns: 48px 1fr 40px; align-items: center; gap: 18px;
  padding: 18px 4px; text-align: left; border-bottom: 1px solid var(--line); overflow: hidden;
}
.proc::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(55, 117, 123, .22), transparent); transform: translateX(-101%); transition: transform .6s var(--ease); }
.proc:hover::before, .proc:focus-visible::before { transform: none; }
.proc > * { position: relative; }
.proc__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; border: 1px solid var(--line-strong); color: var(--teal-soft); font-size: 18px; transition: background-color .4s, color .4s, border-color .4s; }
.proc:hover .proc__icon { background: var(--teal); border-color: var(--teal); color: var(--white); }
.proc__text { display: flex; flex-direction: column; gap: 3px; }
.proc__text strong { font-size: clamp(16px, 1.3vw, 19px); font-weight: 700; line-height: 1.3; }
.proc__text span { font-size: 14px; color: var(--ash); line-height: 1.45; }
.proc__go { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); font-size: 13px; transition: transform .6s var(--ease), background-color .4s, border-color .4s; }
.proc:hover .proc__go { transform: rotate(135deg); background: var(--teal); border-color: var(--teal); }

/* RATING */
.rating { position: relative; padding: clamp(70px, 10vh, 120px) 0 clamp(110px, 16vh, 190px); overflow: clip; border-top: 1px solid var(--line); }
.rating__marquee { overflow: hidden; margin-bottom: clamp(60px, 10vh, 120px); transform: rotate(-3deg) scale(1.06); will-change: transform; }
.rating__track { display: flex; align-items: center; gap: 3vw; width: max-content; animation: marquee 30s linear infinite; }
.rating__track span { font-weight: 900; font-stretch: 62%; text-transform: uppercase; font-size: clamp(56px, 9vw, 150px); line-height: 1; white-space: nowrap; }
.rating__track .is-outline { color: transparent; -webkit-text-stroke: 1px var(--white); }
.rating__track i { width: clamp(16px, 1.8vw, 28px); aspect-ratio: 1; border-radius: 50%; background: var(--teal); }
@keyframes marquee { to { transform: translateX(-50%); } }
.rating__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.rating__score { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.rating__score strong { font-weight: 900; font-stretch: 62%; font-size: clamp(150px, 20vw, 300px); line-height: .78; }
.rating__stars { display: flex; gap: 8px; color: var(--teal-soft); font-size: clamp(20px, 2vw, 28px); }
.rating__stars i { animation: star 2.4s var(--ease) infinite; animation-delay: calc(var(--s, 0) * .12s); }
.rating__stars i:nth-child(2) { --s: 1; } .rating__stars i:nth-child(3) { --s: 2; } .rating__stars i:nth-child(4) { --s: 3; } .rating__stars i:nth-child(5) { --s: 4; }
@keyframes star { 0%, 60%, 100% { transform: none; } 30% { transform: translateY(-6px) scale(1.2); } }
.rating__count { font-size: 15px; color: var(--ash); }
.rating__copy p { max-width: 50ch; margin-top: 30px; color: var(--bone); }

/* BOOK */
.book { position: relative; padding: clamp(110px, 16vh, 200px) 0; background: linear-gradient(to bottom, var(--black), #050909); }
.book__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.book__portrait { width: clamp(96px, 9vw, 130px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 30px; box-shadow: 0 0 0 1px var(--line-strong), 0 0 0 10px rgba(55, 117, 123, .18); }
.book__portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.book__copy > p { max-width: 42ch; margin-top: 26px; color: var(--bone); }
.lead {
  display: grid; gap: 22px; padding: clamp(26px, 3.4vw, 46px); border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .01));
  border: 1px solid var(--line-strong); box-shadow: 0 60px 120px rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.lead__field { display: grid; gap: 8px; }
.lead__field label, .lead__label { font-size: 13px; font-weight: 600; color: var(--ash); }
.lead input[type="text"], .lead select, .lead textarea {
  width: 100%; padding: 12px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  font-size: 17px; color: var(--white); transition: border-color .3s; -webkit-appearance: none; appearance: none;
}
.lead textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.lead select {
  padding-right: 26px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--white) 50%), linear-gradient(135deg, var(--white) 50%, transparent 50%);
  background-position: calc(100% - 10px) 55%, calc(100% - 5px) 55%; background-size: 5px 5px; background-repeat: no-repeat;
}
.lead select option { background: var(--black); color: var(--white); }
.lead input::placeholder, .lead textarea::placeholder { color: #5f5f5f; }
.lead input:focus, .lead select:focus, .lead textarea:focus { outline: none; border-color: var(--teal-soft); }
.lead [aria-invalid="true"] { border-color: #ff7b7b !important; }
.lead__options { display: flex; flex-wrap: wrap; gap: 8px; }
.lead__options label { position: relative; cursor: pointer; }
.lead__options input { position: absolute; opacity: 0; inset: 0; }
.lead__options span { display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 14px; color: var(--bone); transition: background-color .3s, border-color .3s, color .3s; }
.lead__options input:checked + span { background: var(--teal); border-color: var(--teal); color: var(--white); }
.lead__options input:focus-visible + span { outline: 2px solid var(--teal-soft); outline-offset: 3px; }
.lead__error { font-size: 14px; color: #ff9a9a; }
.lead__submit { width: 100%; margin-top: 4px; }

.book__region { display: flex; gap: 12px; align-items: flex-start; max-width: 46ch; margin-top: 18px; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); font-size: 14px; color: var(--bone); line-height: 1.5; }
.book__region .ico { width: 30px; height: 30px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 13px; }

/* FAQ */
.faq { position: relative; padding: clamp(100px, 15vh, 180px) 0; border-top: 1px solid var(--line); }
.faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.faq__head { position: sticky; top: 110px; display: grid; gap: 28px; justify-items: start; min-width: 0; }
.faq__head .section-title { font-size: clamp(38px, 4.2vw, 64px); }
.faq__list { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, .02); transition: border-color .4s, background-color .4s; }
.faq__item[open] { border-color: rgba(55, 117, 123, .7); background: rgba(55, 117, 123, .08); }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 64px; padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: clamp(16px, 1.2vw, 18px); line-height: 1.35; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ico { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); font-size: 13px; transition: transform .5s var(--ease), background-color .3s, border-color .3s; }
.faq__item[open] summary .ico { transform: rotate(135deg); background: var(--teal); border-color: var(--teal); }
.faq__item p { padding: 0 20px 20px; color: var(--bone); max-width: 62ch; animation: faq-in .6s var(--ease); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* FOOTER */
.footer { position: relative; padding-top: 70px; border-top: 1px solid var(--line); overflow: clip; }
.footer__top { display: flex; justify-content: center; }
.totop { position: relative; width: 84px; height: 84px; display: grid; place-items: center; border-radius: 50%; color: var(--white); transition: transform .6s var(--ease); }
.totop > svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.totop circle { fill: none; stroke-width: 2; }
.totop__track { stroke: var(--line-strong); }
.totop__ring { stroke: var(--teal-soft); stroke-dasharray: 289.03; stroke-dashoffset: 289.03; stroke-linecap: round; }
.totop i { font-size: 22px; animation: totop-bob 1.8s var(--ease-io) infinite; }
@keyframes totop-bob { 0%, 100% { transform: translateY(3px); } 50% { transform: translateY(-5px); } }
.totop::before { content: ''; position: absolute; inset: 10px; border-radius: 50%; background: var(--teal); transform: scale(0); transition: transform .5s var(--ease); }
.totop:hover::before { transform: scale(1); }
.totop i { position: relative; }
.totop:hover { transform: translateY(-6px); }
.footer__mark { display: flex; justify-content: center; margin-top: 40px; perspective: 1200px; }
.footer__mark .mark { color: transparent; }
.footer__mark .mark__first, .footer__mark .mark__last { -webkit-text-stroke: 1px rgba(255, 255, 255, .28); }
.footer__mark .mark__neto { -webkit-text-stroke: 1px rgba(148, 204, 208, .5); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 20px; align-items: stretch; margin-top: 50px; }
.footer__item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: 22px; border: 1px solid var(--line); color: var(--bone); transition: border-color .4s, background-color .4s; }
.footer__item:hover { border-color: var(--teal); background: rgba(55, 117, 123, .1); }
.footer__item i { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 18px; }
.footer__item strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 4px; }
.footer__social { display: flex; gap: 12px; align-items: center; }
.footer__social a { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); font-size: 22px; transition: background-color .4s, border-color .4s, transform .5s var(--ease); }
.footer__social a:hover { background: var(--teal); border-color: var(--teal); transform: rotate(-12deg) scale(1.08); }
.footer__credit { margin-top: 8px; font-size: 12px; }
.footer__credit a { color: var(--bone); border-bottom: 1px solid var(--teal); transition: color .3s; }
.footer__credit a:hover { color: var(--teal-soft); }
.footer__bottom { padding-top: 34px; padding-bottom: max(30px, env(safe-area-inset-bottom)); margin-top: 40px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ash); text-align: center; }

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 450;
  width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%;
  background: var(--teal); color: var(--white); font-size: 28px; box-shadow: 0 16px 40px rgba(0, 0, 0, .6);
  transform: scale(0) rotate(-90deg); transition: transform .8s var(--ease) 1s, background-color .3s;
}
body.is-ready .float-wa { transform: none; }
.float-wa::before, .float-wa::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--teal-soft); animation: ring 2.4s var(--ease) infinite; pointer-events: none; }
.float-wa::after { animation-delay: 1.2s; }
@keyframes ring { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }
.float-wa:hover { background: var(--teal-deep); transform: scale(1.08); transition-delay: 0s; }
html.is-modal .float-wa, html.in-case .float-wa { transform: scale(0); transition-delay: 0s; }

/* MODAL */
.modal { position: fixed; inset: 0; width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: transparent; color: var(--white); overflow: hidden; }
.modal::backdrop { background: rgba(0, 0, 0, 0); transition: background-color .5s; }
.modal.is-open::backdrop { background: rgba(0, 0, 0, .5); }
.modal__sheet {
  position: absolute; inset: 0; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  background: radial-gradient(120% 80% at 100% 0%, rgba(55, 117, 123, .22), transparent 60%), #050505;
  clip-path: circle(0% at var(--ox, 50%) var(--oy, 50%));
  transition: clip-path .85s var(--ease-io);
}
.modal.is-open .modal__sheet { clip-path: circle(150% at var(--ox, 50%) var(--oy, 50%)); }
.modal__body { width: 100%; max-width: 1080px; margin-inline: auto; padding: clamp(96px, 12vh, 130px) var(--pad) clamp(70px, 10vh, 110px); }
.modal__body > * { opacity: 0; transform: translateY(40px); transition: opacity .7s, transform .9s var(--ease); }
.modal.is-open .modal__body > * { opacity: 1; transform: none; }
.modal.is-open .modal__body > *:nth-child(1) { transition-delay: .3s; }
.modal.is-open .modal__body > *:nth-child(2) { transition-delay: .36s; }
.modal.is-open .modal__body > *:nth-child(3) { transition-delay: .42s; }
.modal.is-open .modal__body > *:nth-child(4) { transition-delay: .48s; }
.modal.is-open .modal__body > *:nth-child(n+5) { transition-delay: .54s; }
.modal__close {
  position: fixed; top: max(20px, env(safe-area-inset-top)); right: max(20px, var(--pad)); z-index: 5;
  width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transform: scale(0) rotate(-180deg); transition: transform .7s var(--ease) .25s, background-color .3s, border-color .3s;
}
.modal.is-open .modal__close { transform: none; }
.modal__close span { position: absolute; left: 18px; right: 18px; top: 50%; height: 2px; margin-top: -1px; background: var(--white); transition: transform .5s var(--ease); }
.modal__close span:first-child { transform: rotate(45deg); }
.modal__close span:last-child { transform: rotate(-45deg); }
.modal__close:hover { background: var(--teal); border-color: var(--teal); }
.modal__close:hover span:first-child { transform: rotate(135deg); }
.modal__close:hover span:last-child { transform: rotate(45deg); }
.modal__kicker { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 999px; background: rgba(55, 117, 123, .25); color: var(--teal-soft); font-size: 13px; font-weight: 700; margin-bottom: 22px; }
.modal__title { font-weight: 900; font-stretch: 75%; text-transform: uppercase; font-size: clamp(38px, 5.6vw, 84px); line-height: .9; margin-bottom: 28px; max-width: 16ch; }
.modal__sub { display: flex; align-items: center; gap: 10px; margin: 34px 0 14px; font-size: 18px; font-weight: 800; color: var(--white); }
.modal__sub i { color: var(--teal-soft); }
.modal__body p { max-width: 68ch; color: var(--bone); font-size: clamp(16px, 1.15vw, 18px); }
.modal__body p + p { margin-top: 14px; }
.modal__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0 clamp(28px, 4vw, 60px); }
.checklist { display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 36px; color: var(--bone); line-height: 1.5; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .1em; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.timeline { display: grid; gap: 0; border-left: 2px solid var(--teal); margin-left: 6px; }
.timeline li { position: relative; display: grid; gap: 2px; padding: 0 0 20px 24px; }
.timeline li::before { content: ''; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--black); border: 2px solid var(--teal-soft); }
.timeline strong { font-weight: 900; font-stretch: 75%; font-size: 22px; text-transform: uppercase; line-height: 1.1; }
.timeline span { color: var(--bone); }
.linklist { display: grid; gap: 2px; }
.linklist button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); text-align: left; color: var(--bone); font-weight: 600; transition: color .3s, padding .4s var(--ease); }
.linklist button:hover { color: var(--white); padding-left: 8px; }
.linklist i { color: var(--teal-soft); }
.modal__others { margin-top: 56px; padding-top: 10px; border-top: 1px solid var(--line); }
.modal__others ul { display: flex; flex-wrap: wrap; gap: 8px; }
.modal__others button { min-height: 44px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 14px; color: var(--bone); transition: background-color .3s, border-color .3s, color .3s; }
.modal__others button:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.modal--proc .btn { white-space: normal; }

.profile { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; max-width: 1240px; }
.profile__photo { position: sticky; top: 110px; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--black); }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15) brightness(.95); transform: scale(1.15); transition: transform 2s var(--ease) .3s; }
.modal.is-open .profile__photo img { transform: scale(1); }
.profile__duo { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(55, 117, 123, .75), rgba(0, 0, 0, .1) 60%); mix-blend-mode: color; pointer-events: none; }
.profile__photo figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 14px; border-radius: 12px; background: rgba(0, 0, 0, .7); font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--teal-soft); text-align: center; }
.profile__content .modal__title { font-size: clamp(28px, 3.4vw, 48px); }

.compare { position: relative; margin: 10px 0 20px; border-radius: 22px; overflow: hidden; background: var(--smoke); aspect-ratio: 3 / 2; user-select: none; touch-action: pan-y; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--white); pointer-events: none; }
.compare__handle i { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; margin: -26px 0 0 -26px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--white); box-shadow: 0 10px 30px rgba(0, 0, 0, .5); }
.compare__tag { position: absolute; top: 14px; padding: 6px 14px; border-radius: 999px; background: rgba(0, 0, 0, .7); font-size: 13px; font-weight: 700; pointer-events: none; }
.compare__tag--before { left: 14px; }
.compare__tag--after { right: 14px; background: var(--teal); }
.compare__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* CURSOR */
.cursor { position: fixed; left: 0; top: 0; z-index: 2500; pointer-events: none; }
.cursor__dot, .cursor__ring { position: fixed; left: 0; top: 0; border-radius: 50%; will-change: transform; }
.cursor__dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--teal-soft); }
.cursor__ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 1px solid rgba(148, 204, 208, .7); transition: width .4s var(--ease), height .4s var(--ease), margin .4s var(--ease), background-color .3s; }
.cursor.is-link .cursor__ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(55, 117, 123, .25); }
.cursor.is-hidden { opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1020px) {
  .hero__inner, .about__grid, .rating__grid, .book__grid, .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .faq__head { position: static; }
  .hero__scroll { display: none; }
  .hero__bgword { font-size: 60vw; }
  .hero { padding-top: 104px; padding-bottom: 70px; align-items: flex-start; }
  .hero__visual { justify-self: center; width: min(86vw, 420px); min-width: 0; margin-top: 10px; }
  .values__grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .about__copy { order: -1; }
  .about__media { width: min(84vw, 460px); margin-inline: auto; }
  .about__badge { right: -4%; }
  .procs__groups { grid-template-columns: minmax(0, 1fr); }
  .profile { grid-template-columns: 1fr; }
  .profile__photo { position: relative; top: 0; width: min(100%, 360px); aspect-ratio: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__social { justify-content: center; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .btn { width: 100%; padding: 16px 22px; }
  .hero__actions .btn { width: 100%; }
  .chip { font-size: 13px; padding: 10px 12px; }
  .chip i { flex-basis: 30px; height: 30px; }
  .float { width: 72px; opacity: .45; }
  .float--2, .float--4 { display: none; }
  .float--1 { left: auto; right: 4%; top: 2%; }
  .float--3 { left: auto; right: 6%; bottom: 2%; }
  .section-head { margin-bottom: 34px; }
  .procs__intro { margin-top: -14px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(var(--pad) * -1); padding: 0 var(--pad) 6px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: none; }
  .case__meta { gap: 14px; }
  .case__label { min-width: 0; }
  .case__caption { font-size: 15px; }
  .rating__score strong { font-size: 44vw; }
  .footer__item { padding: 18px; }
  .faq__item summary { padding: 14px 16px; }
  .faq__item p { padding: 0 16px 16px; }
  .about__stats { grid-template-columns: 1fr; }
  .about__stats li + li { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
  .about__stats li { flex-direction: row; align-items: center; gap: 18px; padding-bottom: 18px; }
  .case__frame img { max-height: 50svh; max-width: 86vw; }
  .case__head .more span { display: none; }
  .case__head .more { padding: 6px; }
  .case__ticks { width: 100%; }
  .case__ticks li { flex: 1; }
  .case__cta { bottom: 190px; }
  .proc { grid-template-columns: 42px 1fr 34px; gap: 14px; }
  .proc__icon { width: 42px; height: 42px; }
  .proc__go { width: 34px; height: 34px; }
  .modal__close { width: 52px; height: 52px; }
  .modal__close span { left: 15px; right: 15px; }
  .float-wa { width: 56px; height: 56px; font-size: 26px; }
}

@media (min-width: 641px) and (max-width: 1020px) {
  .mark--hero { font-size: 17vw; }
  .hero__visual { width: min(60vw, 400px); }
  .values__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value { padding: 22px; }
}
@media (max-height: 560px) and (orientation: landscape) {
  .case__hud { padding-top: 70px; }
  .case__title { font-size: 22px; }
  .case__current { font-size: 48px; }
  .case__ticks { display: none; }
  .case__frame img { max-height: 58svh; }
  .case__cta { bottom: 24px; }
  .hero { min-height: auto; }
}

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