/* ============================================================
   Oliver Ótica — Variante 1 "Maré Clara"
   Helles Küstenlicht, editorial, Lens-Shape-Motiv.
   Fonts: Sentient (Display-Serif) + Supreme (Body-Sans), self-hosted.
   ============================================================ */

@font-face { font-family: 'Sentient'; src: url('fonts/Sentient-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sentient'; src: url('fonts/Sentient-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Sentient'; src: url('fonts/Sentient-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sentient'; src: url('fonts/Sentient-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Supreme'; src: url('fonts/Supreme-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Supreme'; src: url('fonts/Supreme-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Supreme'; src: url('fonts/Supreme-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Supreme'; src: url('fonts/Supreme-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  /* Palette — warmes Papier, Meerglas-Grün, Terracotta. Neutrals zum Marken-Hue getönt. */
  --paper:    oklch(0.972 0.014 90);   /* Seiten-BG, warmes Off-White */
  --paper-2:  oklch(0.945 0.020 88);   /* Sektions-Wechsel */
  --paper-3:  oklch(0.912 0.026 86);   /* Karten auf paper-2 */
  --ink:      oklch(0.305 0.030 70);   /* Text, warmes Dunkelbraun */
  --ink-soft: oklch(0.45 0.028 72);
  --ink-faint:oklch(0.58 0.024 74);
  --mar:      oklch(0.50 0.085 178);   /* Meerglas — Akzent */
  --mar-deep: oklch(0.40 0.075 182);
  --mar-tint: oklch(0.90 0.035 178);
  --sol:      oklch(0.66 0.135 55);    /* Terracotta/Sonne — Sekundärakzent */
  --sol-deep: oklch(0.56 0.13 48);
  --sol-tint: oklch(0.93 0.035 70);
  --line:     oklch(0.84 0.022 85);
  --hero-bg:  #f6f1e6;                 /* fixer Anker für Canvas-ClearColor — NICHT an --paper koppeln */

  --font-d: 'Sentient', Georgia, serif;
  --font-b: 'Supreme', -apple-system, sans-serif;

  /* Typo-Skala (~1.32) */
  --t-xs:  0.78rem;
  --t-sm:  0.92rem;
  --t-md:  1.06rem;
  --t-lg:  clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
  --t-xl:  clamp(1.9rem, 1.4rem + 2.2vw, 3.1rem);
  --t-2xl: clamp(2.4rem, 1.7rem + 3.2vw, 4.3rem);

  --s-xs: 0.5rem; --s-sm: 0.75rem; --s-md: 1rem; --s-lg: 1.5rem;
  --s-xl: 2rem; --s-2xl: 3rem; --s-3xl: 4.5rem; --s-4xl: clamp(4.5rem, 3rem + 6vw, 8rem);

  --wrap: 76rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: var(--t-md);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--mar-tint); color: var(--mar-deep); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- Header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-head.scrolled {
  background: color-mix(in oklch, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.1rem;
}
.brand {
  font-family: var(--font-d); font-weight: 700; font-size: 1.35rem;
  text-decoration: none; letter-spacing: -0.01em; line-height: 1;
  display: flex; align-items: baseline; gap: 0.45rem;
}
.brand em { font-style: italic; font-weight: 400; color: var(--mar-deep); }
.brand .dot { width: 0.5em; height: 0.28em; border: 1.5px solid var(--sol); border-radius: 50%; display: inline-block; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.nav a:not(.cta) {
  text-decoration: none; font-size: var(--t-sm); font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.01em;
  padding-block: 0.3rem; position: relative;
}
.nav a:not(.cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--mar); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav a:not(.cta):hover::after, .nav a[aria-current="page"]:not(.cta)::after { transform: scaleX(1); }
.nav a[aria-current="page"]:not(.cta) { color: var(--ink); }

.cta {
  font-family: var(--font-b); font-weight: 700; font-size: var(--t-sm);
  text-decoration: none; color: var(--paper);
  background: var(--mar-deep); border: 1.5px solid var(--mar-deep);
  padding: 0.7rem 1.5rem; border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
  display: inline-block;
}
.cta:hover { background: var(--mar); border-color: var(--mar); transform: translateY(-2px); }
.cta.ghost { background: transparent; color: var(--mar-deep); }
.cta.ghost:hover { background: var(--mar-tint); transform: translateY(-2px); }
.cta.sol { background: var(--sol-deep); border-color: var(--sol-deep); }
.cta.sol:hover { background: var(--sol); border-color: var(--sol); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  padding-top: clamp(6.5rem, 5.5rem + 3.5vw, 9rem);
  padding-bottom: var(--s-2xl);
}
#caustics { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.overline {
  font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sol-deep);
  display: flex; align-items: center; gap: 0.7rem;
}
.overline::before { content: ''; width: 2.2rem; height: 1.5px; background: var(--sol); }
h1 {
  font-family: var(--font-d); font-weight: 500; font-size: var(--t-2xl);
  line-height: 1.06; letter-spacing: -0.02em; margin-top: var(--s-lg);
  text-wrap: balance;
}
h1 em, h2 em { font-style: italic; color: var(--mar-deep); }
.lede {
  font-size: var(--t-lg); font-weight: 400; line-height: 1.5;
  color: var(--ink-soft); margin-top: var(--s-lg); max-width: 34ch;
}
.lede strong { color: var(--ink); font-weight: 700; }
.hero-ctas { display: flex; gap: var(--s-md); margin-top: var(--s-xl); flex-wrap: wrap; align-items: center; }
.hero-note { font-size: var(--t-xs); color: var(--ink-faint); margin-top: var(--s-md); }

/* Lens-Shape — das wiederkehrende Motiv */
.lens-frame { position: relative; max-width: 23rem; justify-self: end; width: 100%; }
.lens-frame img {
  border-radius: 48% 48% 48% 48% / 60% 60% 40% 40%;
  aspect-ratio: 4/4.1; object-fit: cover; object-position: 32% 22%; width: 100%;
}
.lens-frame::after {
  content: ''; position: absolute; inset: -0.9rem;
  border: 1.5px solid var(--sol); opacity: 0.55;
  border-radius: 48% 48% 48% 48% / 60% 60% 40% 40%;
  pointer-events: none;
}
.lens-frame .badge {
  position: absolute; bottom: 4%; left: -6%;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 0.8rem 1.3rem;
  font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.06em;
  box-shadow: 0 12px 30px oklch(0.4 0.04 80 / 0.14);
  display: flex; align-items: center; gap: 0.6rem;
}
.lens-frame .badge b { font-family: var(--font-d); font-size: 1.25rem; font-weight: 700; color: var(--mar-deep); letter-spacing: 0; }

/* Die Linse — außerhalb weich, innerhalb scharf */
.hero-stage { position: relative; }
.lens-on .hero-soft { filter: blur(1.7px) saturate(0.78) brightness(1.01); }
.hero-sharp {
  position: absolute; inset: 0; pointer-events: none;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem); /* repliziert .wrap-Padding, sonst Doppelbild-Versatz */
  clip-path: circle(170px at 68% 42%);
  will-change: clip-path;
}
.lens-ring {
  display: none; position: absolute; top: 0; left: 0; z-index: 5;
  width: 340px; height: 340px; border-radius: 50%;
  pointer-events: none; will-change: transform;
  border: 1.5px solid oklch(0.55 0.06 178 / 0.65);
  box-shadow:
    inset 0 0 0 1px oklch(1 0 0 / 0.5),
    inset -14px -18px 40px oklch(0.66 0.135 55 / 0.10),
    inset 14px 18px 40px oklch(1 0 0 / 0.35),
    0 24px 60px oklch(0.35 0.05 80 / 0.18);
}
.lens-ring::before { /* Spiegel-Glanz oben links */
  content: ''; position: absolute; top: 7%; left: 12%;
  width: 34%; height: 22%; border-radius: 50%;
  background: radial-gradient(ellipse at center, oklch(1 0 0 / 0.55), transparent 70%);
  transform: rotate(-24deg);
}
.lens-ring::after { /* Griff — macht die Lupe lesbar */
  content: ''; position: absolute; bottom: -9%; right: -3%;
  width: 3px; height: 18%; border-radius: 3px;
  background: oklch(0.55 0.06 178 / 0.55);
  transform: rotate(-38deg); transform-origin: top center;
}
.lens-on .lens-ring { display: block; }

/* Fokus-Reveal (blur→scharf) */
.focus-word { display: inline-block; filter: blur(0px); }
.js .focus-word { filter: blur(14px); opacity: 0; transform: translateY(0.2em); }
.js .focus-word.in { filter: blur(0); opacity: 1; transform: none; transition: filter 0.9s var(--ease-out), opacity 0.8s, transform 0.9s var(--ease-out); }

/* Scroll-Reveals */
.js .rv { opacity: 0; transform: translateY(26px); }
.js .rv.in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .rv-d1.in { transition-delay: 0.08s; } .js .rv-d2.in { transition-delay: 0.16s; } .js .rv-d3.in { transition-delay: 0.24s; }

/* ---------- Ticker (Marquee) ---------- */
.ticker {
  border-block: 1.5px solid var(--line); overflow: hidden;
  padding-block: 0.85rem; background: var(--paper);
  white-space: nowrap; position: relative; z-index: 2;
}
.ticker-track { display: inline-flex; gap: 3rem; animation: tick 38s linear infinite; will-change: transform; }
.ticker span {
  font-family: var(--font-d); font-style: italic; font-size: var(--t-md);
  color: var(--ink-faint); display: inline-flex; align-items: center; gap: 3rem;
}
.ticker i { font-style: normal; color: var(--sol); font-size: 0.7em; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.sect { padding-block: var(--s-4xl); }
.sect.tinted { background: var(--paper-2); }
.sect-head { max-width: 46rem; margin-bottom: var(--s-2xl); }
h2 {
  font-family: var(--font-d); font-weight: 500; font-size: var(--t-xl);
  line-height: 1.12; letter-spacing: -0.015em; margin-top: var(--s-md);
  text-wrap: balance;
}
.sect-head p { color: var(--ink-soft); margin-top: var(--s-md); max-width: 56ch; }

/* Pilares — asymmetrische Editorial-Liste, keine Karten */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1.5px solid var(--line); }
.pillar {
  padding: var(--s-xl) var(--s-lg) var(--s-xl) 0;
  border-bottom: 1.5px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-lg); align-items: start;
}
.pillar:nth-child(odd) { padding-right: var(--s-2xl); }
.pillar .n {
  font-family: var(--font-d); font-style: italic; font-size: var(--t-lg);
  color: var(--sol-deep); line-height: 1.3;
}
.pillar h3 { font-family: var(--font-b); font-weight: 700; font-size: var(--t-md); letter-spacing: 0.01em; }
.pillar p { color: var(--ink-soft); font-size: var(--t-sm); margin-top: 0.4rem; max-width: 42ch; }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split.rev > .split-media { order: 2; }
.split-media img { border-radius: 1.25rem; aspect-ratio: 4/3.4; object-fit: cover; }
.split-media.lens img { border-radius: 50% 50% 50% 50% / 42% 42% 58% 58%; aspect-ratio: 1; }
.split-body .overline { margin-bottom: 0; }
.split-body h2 { font-size: var(--t-xl); }
.split-body p { color: var(--ink-soft); margin-top: var(--s-md); }
.split-body .cta { margin-top: var(--s-lg); }

.checks { list-style: none; margin-top: var(--s-lg); display: grid; gap: 0.7rem; }
.checks li { display: flex; gap: 0.75rem; align-items: baseline; color: var(--ink-soft); }
.checks li::before { content: '◍'; color: var(--mar); font-size: 0.85em; }
.checks li strong { color: var(--ink); }

/* ---------- Planos ---------- */
.plans-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-md); align-items: end; }
.plan {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 1.1rem;
  padding: var(--s-lg); position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 20px 44px oklch(0.4 0.05 80 / 0.13); border-color: var(--mar); }
.plan .tier { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.plan .price { font-family: var(--font-d); font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.4rem); font-weight: 500; line-height: 1.05; margin-top: 0.5rem; }
.plan .price small { font-family: var(--font-b); font-size: 0.42em; font-weight: 500; color: var(--ink-faint); letter-spacing: 0.02em; }
.plan .adesao { font-size: var(--t-xs); color: var(--ink-faint); }
.plan .gist { font-size: var(--t-sm); color: var(--ink-soft); margin-top: 0.6rem; flex: 1; }
.plan a { margin-top: var(--s-md); font-size: var(--t-sm); font-weight: 700; color: var(--mar-deep); text-decoration: none; }
.plan a::after { content: ' →'; transition: margin-left 0.2s; }
.plan a:hover::after { margin-left: 0.3rem; }
.plan.hot { background: var(--mar-deep); border-color: var(--mar-deep); color: var(--paper); box-shadow: 0 24px 50px oklch(0.4 0.075 182 / 0.35); }
.plan.hot .tier { color: oklch(0.85 0.04 178); }
.plan.hot .adesao, .plan.hot .gist { color: oklch(0.88 0.03 178); }
.plan.hot a { color: var(--paper); }
.plan.hot .flag {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--sol); color: var(--paper); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.28rem 0.9rem; border-radius: 999px;
  white-space: nowrap;
}

/* Planos-Seite: Detail-Tabelle */
.plan-detail { border-top: 1.5px solid var(--line); }
.plan-row {
  display: grid; grid-template-columns: 0.9fr 1.2fr 1fr auto;
  gap: var(--s-lg); align-items: center;
  padding-block: var(--s-xl); border-bottom: 1.5px solid var(--line);
  transition: background 0.3s;
}
.plan-row:hover { background: color-mix(in oklch, var(--mar-tint) 30%, transparent); }
.plan-row .name { font-family: var(--font-d); font-size: var(--t-lg); font-weight: 500; }
.plan-row .name small { display: block; font-family: var(--font-b); font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sol-deep); margin-bottom: 0.3rem; }
.plan-row ul { list-style: none; display: grid; gap: 0.35rem; font-size: var(--t-sm); color: var(--ink-soft); }
.plan-row ul li::before { content: '— '; color: var(--mar); }
.plan-row .p { font-family: var(--font-d); font-size: 1.9rem; }
.plan-row .p small { font-family: var(--font-b); font-size: 0.45em; color: var(--ink-faint); display: block; }

/* ---------- Como funciona: Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-xl); }
.step { counter-increment: step; position: relative; padding-top: var(--s-lg); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-d); font-style: italic; font-size: var(--t-2xl);
  color: var(--mar-tint); position: absolute; top: -0.4em; left: -0.05em; z-index: -1;
  -webkit-text-stroke: 1px var(--mar);
  color: transparent;
}
.step h3 { font-family: var(--font-d); font-weight: 500; font-size: var(--t-lg); margin-top: var(--s-2xl); }
.step p { color: var(--ink-soft); font-size: var(--t-sm); margin-top: 0.6rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1.5px solid var(--line); max-width: 52rem; }
.faq details { border-bottom: 1.5px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-lg); padding-block: var(--s-lg);
  font-family: var(--font-d); font-size: var(--t-lg); font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-b); font-weight: 400; font-size: 1.6rem; color: var(--sol-deep); transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding-bottom: var(--s-lg); color: var(--ink-soft); max-width: 62ch; }

/* ---------- Lojas ---------- */
.lojas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.loja { border-radius: 1.25rem; overflow: hidden; border: 1.5px solid var(--line); background: var(--paper); }
.loja img { aspect-ratio: 16/10; object-fit: cover; }
.loja .body { padding: var(--s-lg); }
.loja h3 { font-family: var(--font-d); font-size: var(--t-lg); font-weight: 500; }
.loja p { font-size: var(--t-sm); color: var(--ink-soft); margin-top: 0.4rem; }
.loja .hours { font-size: var(--t-xs); color: var(--ink-faint); margin-top: var(--s-sm); letter-spacing: 0.04em; }

/* ---------- Banner CTA ---------- */
.banner {
  background: var(--mar-deep); color: var(--paper);
  border-radius: 1.75rem; padding: clamp(2.5rem, 5vw, 5rem);
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: var(--s-2xl); align-items: center;
  position: relative; overflow: hidden;
}
.banner::before {
  content: ''; position: absolute; right: -12%; top: -40%;
  width: 32rem; height: 32rem; border-radius: 50%;
  border: 1.5px solid oklch(0.62 0.07 180 / 0.5);
}
.banner::after {
  content: ''; position: absolute; right: -4%; bottom: -55%;
  width: 26rem; height: 26rem; border-radius: 50%;
  border: 1.5px solid oklch(0.62 0.07 180 / 0.35);
}
.banner h2 { color: var(--paper); }
.banner h2 em { color: oklch(0.87 0.05 85); }
.banner p { color: oklch(0.88 0.03 178); margin-top: var(--s-md); }
.banner .cta { background: var(--paper); color: var(--mar-deep); border-color: var(--paper); position: relative; z-index: 1; justify-self: start; }
.banner .cta:hover { background: oklch(0.93 0.02 90); }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); }
.contact-info dl { display: grid; gap: var(--s-lg); margin-top: var(--s-xl); }
.contact-info dt { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sol-deep); }
.contact-info dd { font-family: var(--font-d); font-size: var(--t-lg); margin-top: 0.25rem; }
form { display: grid; gap: var(--s-md); }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 0.7rem;
  padding: 0.85rem 1rem; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--mar);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--mar) 22%, transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-md); }

/* ---------- Footer ---------- */
.site-foot { background: var(--paper-2); border-top: 1.5px solid var(--line); padding-block: var(--s-2xl) var(--s-lg); margin-top: var(--s-4xl); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-xl); }
.foot-grid .brand { font-size: 1.5rem; }
.foot-grid p { font-size: var(--t-sm); color: var(--ink-soft); margin-top: var(--s-sm); max-width: 30ch; }
.foot-grid h4 { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: var(--s-sm); }
.foot-grid ul { list-style: none; display: grid; gap: 0.45rem; }
.foot-grid ul a { font-size: var(--t-sm); color: var(--ink-soft); text-decoration: none; }
.foot-grid ul a:hover { color: var(--mar-deep); }
.foot-base { display: flex; justify-content: space-between; gap: var(--s-md); border-top: 1.5px solid var(--line); margin-top: var(--s-xl); padding-top: var(--s-lg); font-size: var(--t-xs); color: var(--ink-faint); flex-wrap: wrap; }

/* Skip-Link */
.skip { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--ink); color: var(--paper); padding: 0.6rem 1rem; }
.skip:focus { left: 0.5rem; top: 0.5rem; }

/* Guide */
.guide-body { max-width: 46rem; }
.guide-body h2 { margin-top: var(--s-2xl); }
.guide-body h3 { font-family: var(--font-d); font-size: var(--t-lg); font-weight: 500; margin-top: var(--s-xl); }
.guide-body p, .guide-body li { color: var(--ink-soft); margin-top: var(--s-sm); }
.guide-body ul, .guide-body ol { padding-left: 1.2rem; }
.guide-body code { background: var(--paper-3); border-radius: 0.3rem; padding: 0.1rem 0.4rem; font-size: 0.9em; }
.swatches { display: flex; gap: var(--s-sm); flex-wrap: wrap; margin-top: var(--s-md); }
.swatch { width: 7.5rem; border-radius: 0.8rem; border: 1.5px solid var(--line); overflow: hidden; font-size: 0.7rem; }
.swatch i { display: block; height: 4rem; }
.swatch span { display: block; padding: 0.4rem 0.5rem; color: var(--ink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 60rem) {
  .hero-grid, .split, .contact-grid, .banner { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .plans-scale { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .plan.hot { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; gap: var(--s-2xl); }
  .lojas-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar:nth-child(odd) { padding-right: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .plan-row { grid-template-columns: 1fr; gap: var(--s-md); }
  .lens-frame { max-width: 26rem; }
  .lens-frame .badge { left: 4%; }

  .nav-toggle {
    display: block; background: none; border: 1.5px solid var(--line); border-radius: 999px;
    font: inherit; font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.14em;
    padding: 0.55rem 1.1rem; cursor: pointer; color: var(--ink);
  }
  .nav {
    position: fixed; inset: 0; background: var(--paper);
    flex-direction: column; justify-content: center; gap: var(--s-lg);
    font-size: 1.3rem; transform: translateY(-100%); transition: transform 0.45s var(--ease-out);
    z-index: 55;
  }
  .nav.open { transform: none; }
  .nav a:not(.cta) { font-size: 1.3rem; }
  .site-head .wrap { position: relative; z-index: 56; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .js .rv, .js .focus-word { opacity: 1; transform: none; filter: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
