/* ─────────────────────────────────────────────────────────
   CALISTENIA PARA ELAS — REDESIGN
   Atlético / Editorial · Preto + Creme + Vermelho energia
   ───────────────────────────────────────────────────────── */

:root {
  --ink:        #0c0c0c;
  --ink-2:      #1a1a1a;
  --ink-3:      #2a2a2a;
  --cream:      #f3eee6;
  --cream-2:    #ebe4d8;
  --paper:      #fafaf7;
  --line:       rgba(12,12,12,0.12);
  --line-on-dark: rgba(255,255,255,0.14);
  --red:        #dc2f5a;
  --red-deep:   #b62347;
  --muted:      #6c6c6c;
  --muted-dark: #8a8a8a;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --pad-x: clamp(20px, 5vw, 80px);
  --max:   1440px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.is-loading, html.is-loading body { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.55;
  font-weight: 400;
}

img { display: block; max-width: 100%; height: auto; }

.mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.04em; }
.dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); margin-right: 9px;
  box-shadow: 0 0 0 0 rgba(220,47,90,0.5);
  animation: dotPulse 2s ease-in-out infinite;
  vertical-align: 1px;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,47,90,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(220,47,90,0); }
}

::selection { background: var(--red); color: var(--cream); }

/* ─────────────────────────────────────────────────────────
   INTRO LOADER
   ───────────────────────────────────────────────────────── */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.intro.is-done { transform: translateY(-100%); transition: transform 1s var(--ease-out) 0.2s; }
.intro__bars {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}
.intro__bars span {
  background: var(--ink);
  border-right: 1px solid rgba(255,255,255,0.04);
}
.intro.is-done .intro__bars span {
  transform: translateY(-100%);
  transition: transform 0.9s var(--ease-out);
}
.intro.is-done .intro__bars span:nth-child(1){ transition-delay: 0.00s; }
.intro.is-done .intro__bars span:nth-child(2){ transition-delay: 0.06s; }
.intro.is-done .intro__bars span:nth-child(3){ transition-delay: 0.12s; }
.intro.is-done .intro__bars span:nth-child(4){ transition-delay: 0.18s; }
.intro.is-done .intro__bars span:nth-child(5){ transition-delay: 0.24s; }

.intro__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 30px; text-align: center;
}
.intro__tag {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.3em; color: rgba(255,255,255,0.7);
}
.intro__counter {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.intro__words {
  position: relative; height: 24px;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.4em; color: var(--red);
}
.intro__words span {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%) translateY(10px);
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
}
.intro__words span.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px var(--pad-x) 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__inner {
  pointer-events: auto;
  background: rgba(243, 238, 230, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 8px 8px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: var(--max); margin: 0 auto;
  transition: background 0.3s, border-color 0.3s;
}
.nav.is-dark .nav__inner {
  background: rgba(12,12,12,0.7);
  border-color: var(--line-on-dark);
  color: var(--cream);
}
.nav__logo {
  display: flex; align-items: baseline; gap: 8px;
  text-decoration: none; color: inherit;
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.03em;
}
.nav__logo-mark { font-size: 22px; }
.nav__logo-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; opacity: 0.6; }
.nav__center {
  display: flex; gap: 28px; font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
}
.nav__center a {
  color: inherit; text-decoration: none; position: relative;
  padding: 4px 0; opacity: 0.78; transition: opacity 0.2s;
}
.nav__center a:hover { opacity: 1; }
.nav__center a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__center a:hover::after { transform: scaleX(1); }

.nav__cta {
  position: relative;
  background: var(--ink); color: var(--cream);
  border-radius: 100px;
  padding: 12px 22px; text-decoration: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.35s var(--ease-out), background 0.3s;
  will-change: transform;
}
.nav.is-dark .nav__cta { background: var(--cream); color: var(--ink); }
.nav__cta:hover { background: var(--red); color: var(--cream); }

.nav__progress {
  position: relative; height: 1px; max-width: var(--max); margin: 6px auto 0;
  background: transparent;
}
.nav__progress span {
  display: block; height: 100%; width: 0;
  background: var(--red);
  transition: width 0.1s linear;
}

@media (max-width: 880px) {
  .nav__center { display: none; }
  .nav__inner { padding-left: 18px; }
}

/* ─────────────────────────────────────────────────────────
   GLOBAL HELPERS
   ───────────────────────────────────────────────────────── */
.section-head {
  padding: 0 var(--pad-x);
  max-width: var(--max);
  margin: 0 auto 60px;
}
.section-head--center { text-align: center; }
.section-head--light { color: var(--cream); }
.section-head__num {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--red);
  padding: 6px 0;
  margin-bottom: 18px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.section-head__title em {
  font-style: normal; color: var(--red);
}
.section-head__desc {
  margin-top: 22px;
  max-width: 620px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}
.section-head--center .section-head__desc { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 30px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.22em; font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer; border: none;
  will-change: transform;
  white-space: nowrap;
}
.btn span { position: relative; z-index: 2; }
.btn svg  { position: relative; z-index: 2; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--ink); color: var(--cream);
  box-shadow: 0 14px 40px rgba(12,12,12,0.18);
}
.btn--primary:hover { background: var(--red); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--big     { padding: 22px 40px; font-size: 13px; }
.btn--massive { padding: 26px 48px; font-size: 14px; letter-spacing: 0.18em; }

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  padding: 100px var(--pad-x) 60px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 1;
}
.hero__img {
  position: absolute; inset: -10% 0 -10% 0;
  width: 100%; height: 120%;
  object-fit: cover; object-position: center 30%;
  will-change: transform;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out);
}
.hero.is-ready .hero__img { transform: scale(1); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 100%, rgba(12,12,12,0.85) 0%, rgba(12,12,12,0.35) 50%, rgba(12,12,12,0.2) 100%),
    linear-gradient(180deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0.25) 35%, rgba(12,12,12,0.7) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
}

.hero__meta {
  position: absolute; top: 90px; left: var(--pad-x); right: var(--pad-x);
  z-index: 3;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
}
.hero__meta span:first-child {
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.hero__content {
  position: relative; z-index: 3;
  max-width: var(--max); margin: 0 auto;
  width: 100%;
}
.hero__kicker {
  display: inline-flex; align-items: center;
  font-size: 12px; letter-spacing: 0.3em;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11.5vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin-bottom: 36px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .reveal {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero.is-ready .hero__title .line:nth-child(1) .reveal { transition-delay: 0.05s; transform: translateY(0); }
.hero.is-ready .hero__title .line:nth-child(2) .reveal { transition-delay: 0.18s; transform: translateY(0); }
.hero.is-ready .hero__title .line:nth-child(3) .reveal { transition-delay: 0.31s; transform: translateY(0); }
.hero__num {
  font-style: normal; color: var(--red);
  display: inline-block;
  font-feature-settings: "ss01";
}

.hero__sub {
  max-width: 640px;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(243,238,230,0.85);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.hero.is-ready .hero__sub { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.hero.is-ready .hero__actions { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.hero__actions .btn--primary { background: var(--cream); color: var(--ink); }
.hero__actions .btn--primary:hover { background: var(--red); color: var(--cream); }
.hero__actions .btn--ghost { color: var(--cream); border-color: rgba(255,255,255,0.3); }
.hero__actions .btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero__chips {
  position: relative; z-index: 3;
  display: flex; gap: 20px; flex-wrap: wrap;
  margin: 40px auto 30px;
  max-width: var(--max);
  width: 100%;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
}
.hero__chips .chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex: 1; min-width: 220px;
}
.hero__chips .chip i {
  display: inline-block; width: 10px; height: 10px;
  border: 1.5px solid var(--red);
  border-bottom-width: 0; border-left-width: 0;
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
  background: var(--ink); color: var(--cream);
  padding: 20px 0;
}
.marquee--hero {
  position: relative; z-index: 3;
  margin-top: 30px;
  border-bottom: none;
  background: transparent;
  border-color: rgba(255,255,255,0.18);
}
.marquee__track {
  display: flex; gap: 36px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee__track--rev { animation-direction: reverse; animation-duration: 32s; }
.marquee__track > span:nth-child(odd) { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee--dark { background: var(--ink); padding: 28px 0; }
.marquee--dark .marquee__track > span:nth-child(odd) { color: var(--cream); }
.marquee--dark .marquee__track > span:nth-child(even) { color: var(--red); }

/* ─────────────────────────────────────────────────────────
   PAIN
   ───────────────────────────────────────────────────────── */
.pain {
  background: var(--cream);
  padding: 140px 0 120px;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  border-top: 1px solid var(--line);
}
.pain-card {
  position: relative;
  padding: 50px 36px 90px;
  border-right: 1px solid var(--line);
  transition: background 0.4s var(--ease-out), color 0.4s;
  overflow: hidden;
}
.pain-card:last-child { border-right: none; }
.pain-card:hover { background: var(--ink); color: var(--cream); }
.pain-card__num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em;
  color: var(--red); margin-bottom: 50px;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin-bottom: 22px;
}
.pain-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  transition: color 0.4s;
  max-width: 38ch;
}
.pain-card:hover p { color: rgba(243,238,230,0.78); }
.pain-card__line {
  position: absolute; bottom: 0; left: 36px; right: 36px;
  height: 1px; background: currentColor; opacity: 0.15;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.pain-card:hover .pain-card__line { transform: scaleX(1); }

.pain__transition {
  max-width: 1000px; margin: 100px auto 0;
  padding: 0 var(--pad-x);
}
.text-fill {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  font-weight: 400;
  text-align: center;
}
.text-fill em { font-style: normal; color: var(--red); }
.text-fill span.word {
  display: inline-block;
  color: rgba(12,12,12,0.18);
  transition: color 0.45s var(--ease-out);
  white-space: pre;
}
.text-fill span.word.is-on { color: var(--ink); }

@media (max-width: 880px) {
  .pain__grid { grid-template-columns: 1fr; }
  .pain-card { border-right: none; border-bottom: 1px solid var(--line); }
  .pain-card:last-child { border-bottom: none; }
}

/* ─────────────────────────────────────────────────────────
   TEAM
   ───────────────────────────────────────────────────────── */
.team {
  background: var(--ink); color: var(--cream);
  padding: 140px 0 130px;
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  align-items: start;
}
.team__photo {
  position: sticky; top: 110px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.team__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.team__photo:hover img { transform: scale(1.04); }
.team__photo-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(12,12,12,0.7);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 9px 14px;
  font-size: 10.5px; letter-spacing: 0.28em;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  display: inline-flex; align-items: center;
}

.team__story p {
  font-size: clamp(15.5px, 1.25vw, 18px);
  line-height: 1.75;
  color: rgba(243,238,230,0.78);
  margin-bottom: 22px;
}
.team__story strong {
  color: var(--cream); font-weight: 600;
}
.team-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--line-on-dark);
}
.team-member:last-of-type { border-bottom: 1px solid var(--line-on-dark); margin-bottom: 26px; }
.team-member__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.005em;
  min-width: 130px;
}
.team-member p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.team__pullquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px) !important;
  line-height: 1.1 !important;
  color: var(--cream) !important;
  letter-spacing: -0.005em;
  margin-top: 30px !important;
  padding-top: 30px;
  border-top: 1px solid var(--line-on-dark);
}
.team__pullquote em { font-style: normal; color: var(--red); }

@media (max-width: 880px) {
  .team__grid { grid-template-columns: 1fr; }
  .team__photo { position: relative; top: 0; }
  .team-member { grid-template-columns: 1fr; gap: 8px; }
}

/* ─────────────────────────────────────────────────────────
   ANTES / DEPOIS
   ───────────────────────────────────────────────────────── */
.ba {
  background: var(--cream);
  padding: 140px 0 120px;
}
.ba__stage {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: end;
}
.ba__slider {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  cursor: ew-resize;
  user-select: none;
  background: var(--ink-3);
}
.ba__img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.ba__img img {
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba__img--before {
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba__label {
  position: absolute; top: 24px;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.3em;
  border-radius: 100px;
}
.ba__img--before .ba__label { left: 24px; }
.ba__img--after  .ba__label { right: 24px; background: var(--cream); color: var(--ink); }

.ba__handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
  will-change: left;
}
.ba__handle-line {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(220,47,90,0) 0%, var(--red) 30%, var(--red) 70%, rgba(220,47,90,0) 100%);
  opacity: 0.55;
}
.ba__handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(12,12,12,0.25);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.ba__slider:hover .ba__handle-knob { transform: translate(-50%,-50%) scale(1.08); background: var(--red); color: var(--cream); border-color: var(--red); }

.ba__caption .mono {
  display: inline-block; font-size: 11px; letter-spacing: 0.3em;
  color: var(--red); margin-bottom: 12px;
}
.ba__caption h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  font-weight: 400;
}
.ba__caption p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--muted);
  max-width: 32ch;
}

@media (max-width: 900px) {
  .ba__stage { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   BENEFITS
   ───────────────────────────────────────────────────────── */
.benefits {
  background: var(--cream);
  padding: 140px 0 130px;
  border-top: 1px solid var(--line);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.benefit {
  padding: 60px 36px 50px 0;
  border-right: 1px solid var(--line);
  padding-right: 36px;
}
.benefit:nth-child(2) { padding-left: 36px; padding-right: 36px; }
.benefit:last-child { border-right: none; padding-left: 36px; padding-right: 0; }
.benefit__num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--red); letter-spacing: 0.3em;
  margin-bottom: 60px;
}
.benefit h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin-bottom: 24px;
}
.benefit h3 em { font-style: normal; color: var(--red); }
.benefit p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--muted); max-width: 38ch;
}

@media (max-width: 880px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit { border-right: none; border-bottom: 1px solid var(--line); padding: 50px 0 !important; }
  .benefit:last-child { border-bottom: none; }
}

/* ─────────────────────────────────────────────────────────
   FASES — SCROLLYTELLING
   ───────────────────────────────────────────────────────── */
.phases {
  background: var(--ink); color: var(--cream);
  padding: 140px 0 0;
  /* overflow: hidden removed — it breaks position: sticky on .phases__sticky */
}
.phases__visual { overflow: clip; }
.phases__intro {
  max-width: var(--max); margin: 0 auto 80px;
  padding: 0 var(--pad-x);
}
.phases__intro .section-head__title em { color: var(--red); }
.phases__intro .section-head__desc { color: rgba(243,238,230,0.7); }
.phases__intro .section-head__num { color: var(--red); }

.phases__pin {
  position: relative;
  height: 300vh;
}
.phases__sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

.phases__visual {
  position: relative;
  background: var(--ink-2);
  overflow: hidden;
}
.phases__images { position: absolute; inset: 0; }
.phases__img {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s var(--ease-out), transform 1.4s var(--ease-out);
}
.phases__img.is-active { opacity: 1; transform: scale(1); }
.phases__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.phases__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(12,12,12,0.45) 0%, rgba(12,12,12,0) 50%, rgba(12,12,12,0.5) 100%);
  pointer-events: none;
}

.phases__counter {
  position: absolute; top: 30px; left: 30px;
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  z-index: 2;
  display: flex; align-items: baseline; gap: 10px;
  font-feature-settings: 'tnum';
}
.phases__counter-current { color: var(--red); }
.phases__counter-sep, .phases__counter-total {
  color: rgba(255,255,255,0.4);
  font-size: 0.4em;
}
.phases__progress {
  position: absolute; bottom: 30px; left: 30px; right: 30px;
  display: flex; gap: 8px; z-index: 2;
}
.phases__progress span {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.18);
  position: relative; overflow: hidden;
}
.phases__progress span.is-active::after {
  content: ''; position: absolute; inset: 0;
  background: var(--red);
  transform-origin: left;
  animation: phaseFill 0.6s var(--ease-out) forwards;
}
@keyframes phaseFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.phases__panels { position: relative; }
.phases__panel {
  position: absolute; inset: 0;
  padding: 60px clamp(30px,5vw,80px);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.9s var(--ease-out);
  pointer-events: none;
}
.phases__panel.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.phases__week {
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--red); margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-on-dark);
  width: fit-content;
}
.phases__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 28px;
}
.phases__panel h3 em { font-style: normal; color: var(--red); }
.phases__panel p {
  font-size: 17px; line-height: 1.6;
  color: rgba(243,238,230,0.8);
  margin-bottom: 26px;
  max-width: 38ch;
}
.phases__panel ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 40ch;
}
.phases__panel li {
  position: relative;
  font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: 0.05em;
  color: rgba(243,238,230,0.85);
  padding-left: 24px;
}
.phases__panel li::before {
  content: '→'; position: absolute; left: 0; color: var(--red);
}

@media (max-width: 880px) {
  .phases__pin { height: auto; }
  .phases__sticky {
    position: relative; top: 0; height: auto;
    grid-template-columns: 1fr; gap: 0;
  }
  .phases__visual { height: 60vh; }
  .phases__panels { position: relative; height: auto; }
  .phases__panel { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; padding: 60px var(--pad-x); border-bottom: 1px solid var(--line-on-dark); }
  .phases__panel:not(.is-active) { display: none; } /* still managed by JS */
}

/* ─────────────────────────────────────────────────────────
   MID CTA
   ───────────────────────────────────────────────────────── */
.midcta {
  background: var(--cream);
  padding: 130px var(--pad-x);
  text-align: center;
}
.midcta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 20px;
}
.midcta__title em { font-style: normal; color: var(--red); }
.midcta__sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ─────────────────────────────────────────────────────────
   INCLUDES
   ───────────────────────────────────────────────────────── */
.includes {
  background: var(--paper);
  padding: 140px 0 130px;
  border-top: 1px solid var(--line);
}
.includes__list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.include {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 30px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding 0.4s var(--ease-out);
  cursor: default;
}
.include:last-child { border-bottom: 1px solid var(--line); }
.include::after {
  content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--red);
  transition: width 0.5s var(--ease-out);
}
.include:hover { padding-left: 14px; }
.include:hover::after { width: 100%; }
.include__num {
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--red);
  padding-top: 4px;
}
.include__body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin-bottom: 10px;
}
.include__body p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--muted); max-width: 65ch;
}
.include__arrow {
  font-family: var(--font-display);
  font-size: 36px;
  align-self: center;
  color: var(--ink);
  transform: translateX(-10px); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.include:hover .include__arrow { transform: translateX(0); opacity: 1; }

/* ─────────────────────────────────────────────────────────
   TESTI
   ───────────────────────────────────────────────────────── */
.testi {
  background: var(--cream);
  padding: 140px 0 130px;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.5s var(--ease-out), background 0.5s, color 0.5s;
}
.testi-card:hover { transform: translateY(-6px); background: var(--ink); color: var(--cream); border-color: var(--ink); }
.testi-card__quote {
  font-family: var(--font-display);
  font-size: 60px; line-height: 0.6;
  color: var(--red);
  height: 30px;
}
.testi-card p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--muted);
  transition: color 0.5s;
  flex: 1;
}
.testi-card:hover p { color: rgba(243,238,230,0.78); }
.testi-card footer {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  transition: border-color 0.5s;
}
.testi-card:hover footer { border-color: var(--line-on-dark); }
.testi-card__name {
  font-family: var(--font-display);
  font-size: 20px;
}
.testi-card__tag {
  font-size: 10.5px; letter-spacing: 0.3em;
  color: var(--red);
}

@media (max-width: 880px) {
  .testi__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   FINAL CTA / PRICING
   ───────────────────────────────────────────────────────── */
.final {
  position: relative;
  padding: 140px 0 120px;
  color: var(--cream);
  overflow: hidden;
}
.final__bg {
  position: absolute; inset: 0; z-index: 0;
}
.final__bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  will-change: transform;
  filter: grayscale(0.4) contrast(1.05);
}
.final__bg-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.85) 0%, rgba(12,12,12,0.72) 50%, rgba(12,12,12,0.92) 100%);
}
.final__inner {
  position: relative; z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.final .section-head__num {
  border-color: var(--cream);
  color: var(--red);
}
.final__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 18px 0 40px;
}
.final__title em { font-style: normal; color: var(--red); }
.final__copy {
  max-width: 720px; margin: 0 auto;
}
.final__copy p {
  font-size: 17px; line-height: 1.6;
  color: rgba(243,238,230,0.82);
  margin-bottom: 16px;
}
.final__strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px) !important;
  color: var(--cream) !important;
  line-height: 1.1 !important;
  margin: 28px 0 !important;
  letter-spacing: -0.005em;
}

.final__price {
  margin-top: 70px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}

.price-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; letter-spacing: 0.3em;
  padding: 10px 18px;
  background: var(--red);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(220,47,90,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.price-box {
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 38px 48px;
  border-radius: 4px;
  min-width: 440px;
  text-align: left;
}
.price-box__row {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 6px;
}
.price-box__label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: rgba(243,238,230,0.5);
  min-width: 36px;
}
.price-box__old {
  text-decoration: line-through;
  color: rgba(243,238,230,0.6);
  font-size: 22px;
}
.price-box__new {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.005em;
}
.price-box__new em {
  font-style: normal; color: var(--red);
}
.price-box__cash {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em;
  color: rgba(243,238,230,0.7);
}

.final .btn--massive {
  background: var(--cream); color: var(--ink);
  box-shadow: 0 24px 60px rgba(220,47,90,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.final .btn--massive:hover { background: var(--red); color: var(--cream); }

.final__urgency {
  display: flex; gap: 30px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  color: rgba(243,238,230,0.85);
  margin-top: 6px;
}
.final__urgency strong { color: var(--red); margin-right: 6px; }
.final__urgency em { font-style: normal; color: var(--red); font-weight: 700; }

.final__trust {
  display: flex; gap: 30px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(243,238,230,0.6);
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%; max-width: 600px;
}

@media (max-width: 600px) {
  .price-box { min-width: 0; width: 100%; padding: 30px 24px; }
  .final__urgency, .final__trust { flex-direction: column; gap: 12px; }
}

/* ─────────────────────────────────────────────────────────
   GUARANTEE
   ───────────────────────────────────────────────────────── */
.guarantee {
  background: var(--cream);
  padding: 120px var(--pad-x);
}
.guarantee__card {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--paper);
  padding: 60px;
  border: 1px solid var(--line);
  position: relative;
}
.guarantee__card::before {
  content: ''; position: absolute; top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--red); border-left: 2px solid var(--red);
}
.guarantee__card::after {
  content: ''; position: absolute; bottom: -1px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--red); border-right: 2px solid var(--red);
}
.guarantee__seal {
  width: 180px; height: 180px;
  color: var(--ink);
  animation: spin 22s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.guarantee__text h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin: 14px 0 18px;
}
.guarantee__text h3 em { font-style: normal; color: var(--red); }
.guarantee__text p {
  font-size: 16px; line-height: 1.65; color: var(--muted);
  margin-bottom: 10px;
}
.guarantee__text strong { color: var(--ink); font-weight: 700; }
.guarantee__finish {
  font-family: var(--font-mono);
  font-size: 12px !important; letter-spacing: 0.18em;
  color: var(--red) !important;
  text-transform: uppercase;
  margin-top: 16px !important;
}

@media (max-width: 800px) {
  .guarantee__card { grid-template-columns: 1fr; padding: 40px 28px; gap: 30px; text-align: center; }
  .guarantee__seal { margin: 0 auto; }
}

/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */
.faq {
  background: var(--paper);
  padding: 140px 0 130px;
  border-top: 1px solid var(--line);
}
.faq__list {
  list-style: none;
  max-width: 1000px; margin: 0 auto;
  padding: 0 var(--pad-x);
}
.faq-item {
  border-top: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.4s;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item.is-open { background: var(--cream); }
.faq-item__q {
  width: 100%; background: none; border: none;
  display: grid; grid-template-columns: 50px 1fr 36px;
  gap: 24px;
  align-items: center;
  padding: 28px 14px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: padding 0.4s var(--ease-out);
}
.faq-item__q:hover { padding-left: 22px; }
.faq-item__qnum {
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--red);
}
.faq-item__qtxt {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.faq-item__ico {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-out);
}
.faq-item__ico::before, .faq-item__ico::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}
.faq-item__ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-item__ico { background: var(--red); border-color: var(--red); transform: rotate(180deg); }
.faq-item.is-open .faq-item__ico::before,
.faq-item.is-open .faq-item__ico::after { background: var(--cream); }
.faq-item.is-open .faq-item__ico::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-item__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.faq-item__a > p {
  overflow: hidden;
  font-size: 16px; line-height: 1.7; color: var(--muted);
  padding: 0 14px 0 88px;
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__a > p { padding: 0 14px 28px 88px; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 100px var(--pad-x) 40px;
}
.footer__top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer__logo {
  font-family: var(--font-display);
  line-height: 0.85;
  font-size: clamp(50px, 6vw, 90px);
  margin-bottom: 24px;
}
.footer__logo span { display: block; }
.footer__logo em { font-style: normal; color: var(--red); display: block; }
.footer__brand p {
  max-width: 60ch;
  font-size: 15.5px; line-height: 1.65;
  color: rgba(243,238,230,0.7);
}
.footer__cta {
  display: flex; flex-direction: column; gap: 18px;
  align-items: flex-start;
}
.footer__cta .btn--primary {
  background: var(--cream); color: var(--ink);
}
.footer__cta .btn--primary:hover { background: var(--red); color: var(--cream); }
.footer__cta .mono {
  font-size: 11px; letter-spacing: 0.18em; color: rgba(243,238,230,0.55);
}
.footer__bottom {
  max-width: var(--max); margin: 36px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 10.5px; letter-spacing: 0.28em;
  color: rgba(243,238,230,0.4);
}

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   FLOAT CTA
   ───────────────────────────────────────────────────────── */
.float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  background: var(--ink); color: var(--cream);
  text-decoration: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 18px 48px rgba(12,12,12,0.3), 0 0 0 1px rgba(255,255,255,0.06) inset;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), background 0.3s, color 0.3s;
  will-change: transform;
}
.float-cta.is-visible { opacity: 1; transform: translateY(0); }
.float-cta:hover { background: var(--red); }

@media (max-width: 600px) {
  .float-cta { left: 16px; right: 16px; bottom: 16px; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────
   CUSTOM CURSOR
   ───────────────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9000;
  width: 14px; height: 14px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s, border-color 0.25s;
  display: none;
}
.cursor.is-on { display: block; }
.cursor.is-hover {
  width: 56px; height: 56px;
  background: var(--cream);
  border-color: var(--cream);
}
@media (pointer: coarse) {
  .cursor { display: none !important; }
}

/* ─────────────────────────────────────────────────────────
   PRINT / REDUCED MOTION
   ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__img { transform: scale(1) !important; }
}
