/* ============================================================
   MoriCRM — institutional site (LIGHT theme)
   Warm cream canvas · forest-green anchor (from the logo) · brass & seal accents.
   ============================================================ */

:root {
  /* light canvas */
  --bg: #f7f1e1;          /* main warm cream */
  --bg-ink: #f1e8d2;      /* slightly deeper cream for alternating sections */
  --surf: #fffdf8;        /* bright card surface */
  --surf2: #f4ecd9;
  --rule: #e6dabf;        /* hairlines on light */
  --rule-strong: #d4c4a2;

  /* brightest surfaces (product screens) */
  --paper: #fffdf8;
  --paper-warm: #f3ebd7;
  --paper-shadow: #e9ddc0;
  --paper-rule: #d8c9a5;

  /* ink — primary text on light */
  --ink: #211a12;
  --ink-soft: #4a3e2e;
  --ink-mute: #7c6a50;

  /* fg — now ALSO dark (former dark sections are light now; footer uses its own light colors) */
  --fg: #211a12;
  --fg-soft: #4d4131;
  --fg-mute: #7c6a50;
  --fg-fade: #9a8665;

  /* accents */
  --seal: #c8362a;
  --seal-deep: #9e2a20;
  --seal-light: #e84a3a;
  --brass: #c89556;
  --brass-deep: #9c7235;
  --shiso: #7a9456;
  --shiso-deep: #5e7a3f;
  --amber: #e3a93f;

  /* forest — the logo green, used as the dark anchor (footer, accents) */
  --forest: #1e3a2b;
  --forest-soft: #2d5740;
  --green-tint: #eaf0e1;  /* pale green section wash */

  /* footer (on forest green) light text */
  --on-forest: #f3ead6;
  --on-forest-soft: rgba(243, 234, 214, 0.66);
  --on-forest-mute: rgba(243, 234, 214, 0.46);

  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --jp: "Noto Serif JP", "Newsreader", serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.ital { font-style: italic; }
.seal { color: var(--seal); }
.brass { color: var(--brass-deep); }
.shiso { color: var(--shiso-deep); }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 28px;
  padding: 18px 28px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--rule);
  box-shadow: 0 8px 30px -22px rgba(40, 30, 15, 0.45);
  padding: 12px 28px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-logo {
  width: 36px; height: 36px; border-radius: 9px; display: block; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(30, 58, 43, 0.12), 0 8px 20px -10px rgba(30, 58, 43, 0.45);
  transition: transform 0.3s var(--ease);
}
.nav__brand:hover .brand-logo { transform: rotate(-3deg) scale(1.05); }
.nav__word {
  font-family: var(--serif); font-style: italic; font-size: 23px;
  font-weight: 500; letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
  position: relative; padding: 4px 0; transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--seal); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  border-radius: 3px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--seal); color: #fff;
  box-shadow: 0 10px 30px -10px rgba(200, 54, 42, 0.5);
}
.btn--primary:hover {
  background: var(--seal-light);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(232, 74, 58, 0.55);
}
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  border-color: var(--rule-strong); color: var(--ink);
  background: rgba(30, 58, 43, 0.02);
  padding: 10px 18px; font-size: 14px;
}
.btn--ghost:hover { border-color: var(--forest); color: var(--forest); }

.btn--quiet { color: var(--ink-soft); border-color: transparent; }
.btn--quiet:hover { color: var(--ink); }
.btn--quiet::after {
  content: "→"; margin-left: 2px; transition: transform 0.3s var(--ease);
}
.btn--quiet:hover::after { transform: translateX(4px); }

:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   shared section heads
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass-deep); font-weight: 600;
}
.eyebrow--ink { color: var(--seal-deep); }
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--seal);
  box-shadow: 0 0 0 4px rgba(200, 54, 42, 0.14);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200, 54, 42, 0.14); }
  50% { box-shadow: 0 0 0 7px rgba(200, 54, 42, 0.03); }
}
@media (prefers-reduced-motion: reduce) { .eyebrow__dot { animation: none; } }

.sec-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.sec-title {
  font-family: var(--serif); font-weight: 500; line-height: 1.06;
  font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em;
  margin-top: 16px; color: var(--ink);
}
.sec-lede {
  margin-top: 20px; font-size: 19px; line-height: 1.6; color: var(--ink-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 80px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, #fffefa 0%, var(--bg) 46%, #f1e6cf 100%);
}
.hero__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(64px); opacity: 0.55; }
.orb--brass {
  width: 620px; height: 620px; top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(200, 149, 86, 0.30), transparent 62%);
}
.orb--seal {
  width: 560px; height: 560px; bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(200, 54, 42, 0.16), transparent 62%);
}
.orb--shiso {
  width: 520px; height: 520px; top: 10%; left: -120px;
  background: radial-gradient(circle, rgba(30, 58, 43, 0.16), transparent 62%);
}
.orb--soft { opacity: 0.4; }

.hero__kanji {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--jp); font-size: min(56vw, 760px); line-height: 1;
  color: rgba(30, 58, 43, 0.05); font-weight: 700;
  user-select: none; z-index: 0;
}

.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem); line-height: 0.98;
  letter-spacing: -0.03em; margin: 22px 0 0; color: var(--ink);
}
.hero__title .seal { display: inline-block; }
.hero__title-sub { display: block; color: var(--ink-mute); font-style: italic; }
.hero__lede {
  margin-top: 26px; font-size: 19px; line-height: 1.62; color: var(--ink-soft);
  max-width: 30em;
}
.hero__lede em { color: var(--ink); font-style: italic; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; align-items: center; }
.hero__actions--center { justify-content: center; }
.hero__note {
  margin-top: 20px; font-family: var(--mono); font-size: 12.5px;
  letter-spacing: 0.04em; color: var(--ink-mute);
}

/* hero stage / phone */
.hero__stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 540px; }

.phone {
  position: relative; width: 290px; aspect-ratio: 9 / 19;
  border-radius: 38px; padding: 11px;
  background: linear-gradient(150deg, #2a2620, #131009);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.10) inset,
    0 50px 90px -34px rgba(40, 30, 15, 0.45),
    0 0 0 1px rgba(30, 25, 18, 0.10);
}
.phone__notch {
  position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; background: #0a0807; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  background: var(--paper); position: relative;
}
.phone--lg { width: 320px; }
.phone--wa { width: 300px; }

/* parallax + tilt composition via CSS vars */
.hero__stage, .prod__device, .wa__phone { perspective: 1400px; }
[data-parallax] { transform: translate3d(0, var(--py, 0px), 0); }
.hero__kanji[data-parallax], .final__kanji[data-parallax] {
  transform: translate(-50%, calc(-50% + var(--py, 0px)));
}
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.18s var(--ease);
  transform: translate3d(0, var(--py, 0px), 0)
             rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

/* floating whatsapp chip in hero — light WA bubble */
.wa-chip {
  position: absolute; bottom: 36px; left: -6px; width: 234px; z-index: 4;
}
.wa-chip__bubble {
  background: #d9fdd3; color: #111b21; border-radius: 12px 12px 12px 3px;
  padding: 11px 13px 7px; font-size: 13px; line-height: 1.42;
  box-shadow: 0 24px 50px -22px rgba(40, 30, 15, 0.4);
}
.wa-chip__bubble b { color: #111b21; }
.wa-chip__meta {
  display: flex; align-items: center; gap: 4px; justify-content: flex-end;
  font-size: 10.5px; color: #667781; margin-top: 3px;
}

/* ---------- recreated client cashback screen (already light) ---------- */
.cli {
  height: 100%; overflow: hidden; background: var(--paper);
  color: var(--ink); padding: 30px 18px 18px; font-family: var(--sans);
}
.cli__brand {
  display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-soft);
  font-family: var(--serif);
}
.cli__kanji { font-family: var(--jp); font-size: 17px; color: var(--forest); }
.cli__brand em { font-style: italic; }
.cli__label {
  margin-top: 16px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
  color: var(--seal); font-weight: 600;
}
.cli__hello {
  font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-soft); margin-top: 3px;
}
.cli__amount {
  font-family: var(--serif); font-weight: 500; color: var(--seal);
  font-size: 52px; line-height: 1; letter-spacing: -0.03em; margin-top: 2px;
  display: flex; align-items: baseline; gap: 4px;
}
.cli__amount--lg { font-size: 58px; }
.cli__rs { font-size: 0.42em; font-style: italic; }
.cli__sub {
  font-family: var(--serif); font-style: italic; font-size: 12px;
  color: var(--ink-mute); margin-top: 4px;
}
.cli__dist {
  margin-top: 16px; background: var(--paper-shadow); border-radius: 6px; padding: 12px 13px;
}
.cli__dist-head { font-family: var(--mono); font-size: 8px; letter-spacing: 0.14em; color: var(--ink-mute); font-weight: 600; }
.cli__dist-row { display: flex; align-items: center; gap: 9px; margin-top: 7px; }
.cli__pct { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--seal); }
.cli__mono { font-family: var(--mono); font-size: 13px; color: var(--ink); font-weight: 600; }
.cli__urg {
  margin-left: auto; font-family: var(--mono); font-size: 8px; letter-spacing: 0.12em;
  color: var(--seal-deep); font-weight: 700;
}
.cli__until { font-family: var(--serif); font-style: italic; font-size: 10px; color: var(--ink-mute); margin-top: 3px; }
.cli__banner {
  margin-top: 12px; background: var(--seal); color: #fbeede; border-radius: 6px; padding: 12px 13px;
}
.cli__banner-k { font-family: var(--mono); font-size: 8px; letter-spacing: 0.16em; font-weight: 700; opacity: 0.92; }
.cli__banner-t { font-family: var(--serif); font-size: 14px; line-height: 1.28; margin-top: 4px; }
.cli__banner-t em { font-style: italic; }
.cli__tabs { display: flex; gap: 16px; margin-top: 16px; border-bottom: 1px solid var(--paper-rule); padding-bottom: 8px; }
.cli__tab { font-family: var(--serif); font-size: 13px; color: var(--ink-mute); }
.cli__tab.is-active { color: var(--ink); font-style: italic; position: relative; }
.cli__tab.is-active::after { content:""; position:absolute; left:0; right:0; bottom:-9px; height:2px; background: var(--seal); }
.cli__how { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; color: var(--ink-mute); font-weight: 600; margin-top: 14px; }
.cli__tier { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--paper-rule); }
.cli__tier b { font-family: var(--serif); font-style: italic; font-size: 20px; min-width: 38px; }
.cli__tier span { font-size: 11px; color: var(--ink-soft); }
.cli__tier i { display: block; font-style: italic; font-size: 9.5px; color: var(--ink-mute); }
.cli--full { padding-top: 32px; }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1.5px solid var(--rule-strong); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-cue span { width: 3px; height: 8px; border-radius: 2px; background: var(--brass-deep); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ============================================================
   HOOK (bright white)
   ============================================================ */
.hook {
  background: var(--paper); color: var(--ink);
  padding: 130px 0; text-align: center; position: relative;
}
.hook__big {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6.4vw, 5rem); line-height: 1.04; margin: 22px 0 0;
}
.hook__big span { display: block; }
.hook__turn {
  max-width: 620px; margin: 40px auto 0; font-size: 20px; line-height: 1.62; color: var(--ink-soft);
}
.hook__turn strong { color: var(--seal); font-weight: 600; }

/* ============================================================
   MECÂNICA (cream)
   ============================================================ */
.mech { position: relative; padding: 130px 0; overflow: hidden; background: var(--bg); }
.mech__atmos, .wa__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.mech .wrap, .wa .wrap { position: relative; z-index: 1; }

.decay {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  align-items: end; max-width: 920px; margin: 0 auto;
  min-height: 340px; position: relative; padding-top: 20px;
}
.decay__track {
  position: absolute; left: 0; right: 0; bottom: 92px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--rule-strong) 0 8px, transparent 8px 16px);
}
.decay__step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.decay__bar {
  width: 100%; max-width: 130px; height: var(--h); min-height: 60px;
  background: linear-gradient(180deg, var(--seal-light), var(--seal-deep));
  border-radius: 8px 8px 0 0; position: relative;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 14px;
  box-shadow: 0 18px 40px -16px rgba(200, 54, 42, 0.5);
  transform-origin: bottom; transform: scaleY(0); transition: transform 1s var(--ease);
}
.decay__bar--brass { background: linear-gradient(180deg, var(--brass), var(--brass-deep)); box-shadow: 0 18px 40px -16px rgba(156, 114, 53, 0.45); }
.decay__bar--shiso { background: linear-gradient(180deg, var(--shiso), var(--shiso-deep)); box-shadow: 0 18px 40px -16px rgba(94, 122, 63, 0.45); }
.reveal.in .decay__bar { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) { .decay__bar { transform: scaleY(1); } }
.decay__pct { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 30px; color: #fff; }
.decay__days { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink); margin-top: 16px; font-weight: 500; }
.decay__cap { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.decay__foot {
  text-align: center; margin-top: 54px; font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--ink-soft);
}

/* ============================================================
   PRODUTO (warm cream)
   ============================================================ */
.prod { background: var(--paper-warm); color: var(--ink); padding: 130px 0; position: relative; }
.prod__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start;
}
.prod__device { display: flex; flex-direction: column; align-items: center; gap: 16px; position: sticky; top: 110px; }
.prod__device figcaption {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-mute); text-align: center;
}
.prod__steps { display: flex; flex-direction: column; gap: 38px; }
.step { border-left: 2px solid var(--paper-rule); padding-left: 24px; position: relative; }
.step__n {
  font-family: var(--mono); font-size: 13px; color: var(--seal); font-weight: 600;
  letter-spacing: 0.1em;
}
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin-top: 6px; color: var(--ink); }
.step p { margin-top: 8px; font-size: 16px; color: var(--ink-soft); max-width: 38ch; }

/* mini browser mock — kept DARK on purpose (premium product-shot contrast) */
.browser {
  margin-top: 8px; border-radius: 10px; overflow: hidden; background: #14110d;
  border: 1px solid #2c2620;
  box-shadow: 0 40px 80px -34px rgba(40, 30, 15, 0.45);
}
.browser__bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #221d18;
  border-bottom: 1px solid #2a241d;
}
.browser__bar > span:not(.browser__url) { width: 10px; height: 10px; border-radius: 50%; background: #3a3128; }
.browser__url {
  margin-left: 12px; font-family: var(--mono); font-size: 11px; color: #7a6d5a;
  background: #0e0c0a; padding: 5px 12px; border-radius: 20px; flex: 1;
}
.browser__body { padding: 8px 0; }
.commrow {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 18px; border-bottom: 1px solid #2a241d;
}
.commrow:last-child { border-bottom: none; }
.commrow__who b { font-family: var(--serif); font-size: 16px; color: #f0e7d6; display: block; }
.commrow__who span { font-family: var(--mono); font-size: 11px; color: #7a6d5a; }
.commrow__status { text-align: right; }
.tick {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  font-weight: 600; text-transform: uppercase; color: var(--brass);
}
.tick.shiso { color: var(--shiso); }
.tick.read { color: #53bdeb; }
.commrow__status i { font-family: var(--serif); font-style: italic; font-size: 11px; color: #5a4f3e; }

/* ============================================================
   WHATSAPP (pale green)
   ============================================================ */
.wa { position: relative; padding: 130px 0; overflow: hidden; background: var(--green-tint); }
.wa__grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: center; }
.wa .sec-title, .wa .eyebrow { color: var(--ink); }
.wa .eyebrow { color: var(--shiso-deep); }
.wa__list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.wa__list li { display: flex; align-items: center; gap: 12px; font-size: 17px; color: var(--ink-soft); }
.wa__list svg { color: var(--shiso-deep); flex-shrink: 0; }
.wa .sec-lede { color: var(--ink-soft); }
.wa__phone { display: flex; justify-content: center; }

/* WhatsApp LIGHT theme inside the phone */
.wa-screen { background: #efeae2; }
.wa-top {
  display: flex; align-items: center; gap: 10px; padding: 30px 16px 12px;
  background: #f6f3ee; border-bottom: 1px solid #e3ddd2;
}
.wa-top__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--jp); color: #f3ead6; font-size: 19px;
}
.wa-top__id b { color: #111b21; font-size: 15px; font-family: var(--sans); font-weight: 600; display: block; }
.wa-top__id span { color: #667781; font-size: 11px; }
.wa-thread {
  padding: 16px 12px; min-height: 380px;
  background-image: radial-gradient(rgba(30, 40, 30, 0.025) 1px, transparent 1px);
  background-size: 18px 18px;
}
.wa-day {
  text-align: center; font-size: 10px; color: #54656f; background: #ffffff;
  width: max-content; margin: 0 auto 14px; padding: 4px 11px; border-radius: 8px;
  font-family: var(--mono); letter-spacing: 0.1em; box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.wa-msg {
  background: #d9fdd3; color: #111b21; border-radius: 10px 0 10px 10px;
  padding: 9px 11px 6px; margin-left: auto; max-width: 88%; font-size: 13.5px; line-height: 1.5;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}
.wa-msg p { margin-bottom: 9px; }
.wa-msg p:last-of-type { margin-bottom: 2px; }
.wa-msg b { color: #111b21; }
.wa-msg a { color: #027eb5; word-break: break-all; }
.wa-msg__meta { display: flex; align-items: center; gap: 4px; justify-content: flex-end; font-size: 10.5px; color: #667781; }

/* ============================================================
   RECURSOS bento (cream + white cards)
   ============================================================ */
.feat { background: var(--bg); color: var(--ink); padding: 130px 0; position: relative; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surf); border: 1px solid var(--rule); border-radius: 14px;
  padding: 30px 26px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card--wide { grid-column: span 2; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(30, 58, 43, 0.28);
  border-color: var(--forest);
}
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--green-tint); color: var(--forest); margin-bottom: 18px;
}
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; color: var(--ink); }
.card p { margin-top: 8px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   STATS (warm cream, forest-green numbers)
   ============================================================ */
.stats { background: var(--paper-warm); padding: 110px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding: 0 8px; }
.stat__n {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--forest); line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat__k { margin-top: 14px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   PREÇOS (cream)
   ============================================================ */
.price { background: var(--bg); color: var(--ink); padding: 130px 0; position: relative; }
.plan {
  position: relative; max-width: 460px; margin: 0 auto; background: var(--surf);
  border: 1px solid var(--rule); border-radius: 18px; padding: 44px 40px;
  box-shadow: 0 50px 100px -56px rgba(30, 58, 43, 0.4); overflow: hidden;
}
.plan__seal {
  position: absolute; top: -30px; right: -10px; font-family: var(--jp);
  font-size: 180px; color: rgba(30, 58, 43, 0.05); line-height: 1; pointer-events: none; user-select: none;
}
.plan__head { text-align: center; border-bottom: 1px dashed var(--paper-rule); padding-bottom: 26px; }
.plan__price {
  font-family: var(--serif); font-weight: 500; font-size: 72px; color: var(--ink);
  line-height: 1; margin-top: 14px; letter-spacing: -0.03em;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.plan__cur { font-size: 0.4em; font-style: italic; color: var(--ink-mute); }
.plan__per { font-size: 0.28em; color: var(--ink-mute); font-family: var(--sans); font-style: normal; }
.plan__trial { margin-top: 12px; font-family: var(--serif); font-style: italic; color: var(--seal); font-size: 15px; }
.plan__list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.plan__list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--ink-soft); }
.plan__list svg { color: var(--shiso-deep); flex-shrink: 0; }
.plan__foot { text-align: center; margin-top: 18px; font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ink-mute); }

/* ============================================================
   FINAL CTA (pale green)
   ============================================================ */
.final {
  position: relative; padding: 160px 0; overflow: hidden; text-align: center;
  background: radial-gradient(120% 100% at 50% 120%, #e3ecdb 0%, var(--green-tint) 50%, #f4efe2 100%);
}
.final__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.final__kanji {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--jp); font-size: min(50vw, 640px); line-height: 1;
  color: rgba(30, 58, 43, 0.06); font-weight: 700; user-select: none; z-index: 0;
}
.final__inner { position: relative; z-index: 2; }
.final__title {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.06; color: var(--ink);
}
.final__lede { max-width: 540px; margin: 24px auto 0; font-size: 19px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   FOOTER (forest green — the anchor)
   ============================================================ */
.foot { background: var(--forest); padding: 70px 0 36px; }
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.foot__brand { display: flex; flex-direction: column; gap: 14px; }
.foot__lockup { display: flex; align-items: center; gap: 12px; }
.foot__brand .brand-logo {
  width: 40px; height: 40px; border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(243, 234, 214, 0.18);
}
.foot__brand .nav__word { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--on-forest); }
.foot__brand p { color: var(--on-forest-soft); font-size: 14px; max-width: 30ch; margin-top: 4px; }
.foot__col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-forest-mute); margin-bottom: 16px; }
.foot__col a { display: block; color: var(--on-forest-soft); font-size: 15px; padding: 5px 0; transition: color 0.25s var(--ease); }
.foot__col a:hover { color: var(--amber); }
.foot__base {
  display: flex; justify-content: space-between; align-items: center; margin-top: 50px;
  padding-top: 24px; border-top: 1px solid rgba(243, 234, 214, 0.14); color: var(--on-forest-mute); font-size: 13px;
}
.foot__jp { font-family: var(--jp); color: var(--on-forest-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__stage { min-height: 480px; order: 2; }
  .prod__grid, .wa__grid { grid-template-columns: 1fr; gap: 48px; }
  .prod__device { position: static; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--wide { grid-column: span 2; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .nav__links { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav.is-stuck { padding: 10px 20px; }
  .hero { padding: 120px 0 70px; }
  .hero__actions .btn { width: 100%; }
  .hero__stage { min-height: 440px; }
  .wa-chip { right: -6px; left: auto; bottom: 18px; width: 200px; }
  .bento { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .stats__grid { grid-template-columns: 1fr; gap: 36px; }
  .foot__grid { grid-template-columns: 1fr; gap: 32px; }
  .foot__base { flex-direction: column; gap: 10px; text-align: center; }
  .decay { gap: 8px; }
  .decay__pct { font-size: 22px; }
  .decay__days { font-size: 10px; }
  .decay__cap { display: none; }
  .plan { padding: 36px 26px; }
  .hook, .mech, .prod, .wa, .feat, .price { padding: 90px 0; }
}
