:root {
  --ink: #0c0c0d;
  --ink-soft: #29292d;
  --muted: #6e6d6a;
  --bone: #f7f2ea;
  --bone-2: #efe9df;
  --white: #ffffff;
  --blue: #2457ff;
  --blue-soft: #e8edff;
  --coral: #ff684f;
  --coral-soft: #fff0ec;
  --mint: #bdf5d0;
  --line: rgba(12, 12, 13, 0.12);
  --shadow: 0 32px 80px rgba(35, 27, 18, 0.14);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bone);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--blue); color: #fff; }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
}

.container { width: var(--container); margin-inline: auto; }
.section-light { background: var(--bone); }
.section-muted { background: var(--bone-2); }
.section-dark { background: var(--ink); color: #fff; }
.section-coral { background: var(--coral); color: var(--ink); }

.topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--ink);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  background: rgba(247,242,234,.78);
  border-bottom: 1px solid rgba(12,12,13,.08);
}
.nav-shell {
  width: var(--container);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark { width: 40px; height: 40px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 20px; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; font-size: 12px; color: var(--muted); }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { text-decoration: none; font-size: 14px; color: rgba(12,12,13,.76); transition: color .2s ease; }
.primary-nav a:hover { color: var(--ink); }
.primary-nav .nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image: radial-gradient(rgba(12,12,13,.08) .65px, transparent .65px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .24;
  pointer-events: none;
}
.hero-glow-one { background: var(--blue); top: -280px; right: -170px; }
.hero-glow-two { background: var(--coral); top: 180px; left: -360px; opacity: .15; }
.hero-copy { position: relative; text-align: center; z-index: 2; }
.eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
.eyebrow-light { color: #7da0ff; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7.8vw, 106px);
  line-height: .92;
  letter-spacing: -.072em;
  font-weight: 760;
}
h1 em,
.section-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -.055em;
}
.hero-description {
  width: min(760px, 100%);
  margin: 0 auto 30px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  color: rgba(12,12,13,.68);
}
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 28px rgba(36,87,255,.22); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(36,87,255,.32); }
.button-link { background: rgba(255,255,255,.68); border: 1px solid var(--line); }
.hero-price {
  margin-top: 28px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(12,12,13,.08);
  box-shadow: 0 12px 30px rgba(30,20,10,.06);
}
.hero-price span { font-size: 13px; color: var(--muted); }
.hero-price strong { font-size: 28px; letter-spacing: -.04em; }
.hero-price small { font-size: 12px; font-weight: 700; color: var(--coral); }

.product-stage {
  position: relative;
  min-height: 690px;
  margin-top: 78px;
  z-index: 1;
}
.browser-window {
  position: absolute;
  left: 50%;
  top: 20px;
  width: min(880px, 78vw);
  height: 560px;
  transform: translateX(-50%) perspective(1300px) rotateX(1.5deg);
  border: 1px solid rgba(12,12,13,.14);
  border-radius: 28px;
  overflow: hidden;
  background: #f8f6f1;
  box-shadow: 0 50px 120px rgba(44,30,18,.22);
}
.browser-top {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(12,12,13,.08);
  background: rgba(255,255,255,.75);
}
.browser-top span { grid-column: 2; font-size: 11px; color: var(--muted); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c7c3bd; }
.browser-content { padding: 26px 30px 34px; height: calc(100% - 48px); }
.mock-site-nav { display: flex; justify-content: space-between; align-items: center; font-size: 10px; }
.mock-logo { font-weight: 800; letter-spacing: .12em; }
.mock-links { display: flex; gap: 18px; color: #65625d; }
.mock-hero {
  margin-top: 26px;
  height: calc(100% - 42px);
  display: grid;
  grid-template-columns: .92fr 1.25fr;
  gap: 26px;
  background: linear-gradient(135deg, #f4f1ea, #e3ded4);
  border-radius: 20px;
  overflow: hidden;
}
.mock-copy { padding: 58px 0 40px 48px; position: relative; z-index: 3; }
.mock-kicker { display: block; margin-bottom: 18px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.mock-copy h2 { max-width: 360px; margin-bottom: 16px; font-family: Georgia, serif; font-size: 43px; line-height: 1.02; letter-spacing: -.045em; font-weight: 500; }
.mock-copy p { max-width: 300px; color: #65615c; line-height: 1.5; font-size: 14px; }
.mock-button { display: inline-block; margin-top: 12px; padding: 13px 17px; border-radius: 9px; background: var(--blue); color: white; font-size: 12px; font-weight: 700; }
.mock-visual { position: relative; min-width: 0; overflow: hidden; background: linear-gradient(155deg, #d9d5cd, #f8f4ed 55%, #cabfae); }
.arch { position: absolute; border-radius: 4px; box-shadow: 0 28px 45px rgba(35,28,22,.22); }
.arch-back { width: 62%; height: 64%; top: 15%; right: 5%; background: #7b756c; transform: skewY(-5deg); }
.arch-front { width: 70%; height: 52%; right: 0; bottom: 12%; background: linear-gradient(135deg,#c7c2ba,#ece8e1); clip-path: polygon(17% 0,100% 12%,100% 100%,0 100%,0 22%); }
.arch-window { width: 42%; height: 34%; right: 8%; bottom: 17%; background: linear-gradient(135deg,#2e302f,#777a76); border: 9px solid #413d38; }
.arch-ground { width: 120%; height: 17%; left: -10%; bottom: -5%; background: #b8ae9f; transform: rotate(-4deg); }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(12,12,13,.08);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(35,28,20,.13);
}
.float-card strong { display: block; margin-bottom: 5px; font-size: 14px; }
.float-card span { display: block; font-size: 12px; color: var(--muted); }
.float-whatsapp { right: 5%; top: 140px; min-width: 260px; }
.float-whatsapp i { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: #22b35e; }
.whatsapp-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #1fc466; color: white; font-size: 23px; font-weight: 700; transform: rotate(-20deg); }
.float-speed { left: 2%; top: 500px; min-width: 280px; }
.check-icon { width: 38px; height: 38px; display: grid !important; place-items: center; border-radius: 50%; background: var(--mint); color: #10964b !important; font-size: 19px !important; font-weight: 800; }
.float-domain { right: 10%; top: 520px; min-width: 285px; }
.mini-pill { padding: 7px 9px; border-radius: 999px; background: var(--blue-soft); color: var(--blue) !important; font-weight: 800; }
.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 22px 10px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { font-size: 28px; letter-spacing: -.04em; }
.trust-strip span { color: var(--muted); font-size: 12px; }

.manifesto { padding: 140px 0; }
.manifesto-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.manifesto h2 { margin: 0; max-width: 760px; font-size: clamp(48px, 6vw, 86px); line-height: .98; letter-spacing: -.065em; }
.manifesto-copy { font-size: 21px; line-height: 1.5; color: rgba(255,255,255,.68); }
.manifesto-copy p:last-child { margin-bottom: 0; }

.features { padding: 140px 0; }
.section-heading { margin-bottom: 62px; }
.section-heading.centered { text-align: center; }
.section-heading h2 { margin-bottom: 20px; max-width: 950px; font-size: clamp(48px, 6.5vw, 82px); line-height: .98; letter-spacing: -.064em; }
.section-heading.centered h2 { margin-inline: auto; }
.section-heading > p:last-child { width: min(650px,100%); margin-bottom: 0; color: var(--muted); font-size: 19px; line-height: 1.55; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.bento-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.bento-card {
  grid-column: span 4;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(12,12,13,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(41,30,20,.06);
}
.bento-card h3 { margin: 0 0 12px; font-size: 27px; letter-spacing: -.04em; }
.bento-card p { max-width: 420px; margin: 0; color: var(--muted); line-height: 1.55; }
.bento-sections { padding-bottom: 140px; }
.bento-large { grid-column: span 8; display: grid; grid-template-columns: .85fr 1.15fr; }
.bento-wide { grid-column: span 8; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.bento-blue { background: var(--blue); color: #fff; }
.bento-blue p { color: rgba(255,255,255,.72); }
.bento-coral { background: var(--coral-soft); }
.card-number { display: inline-flex; margin-bottom: 64px; font-size: 12px; font-weight: 800; letter-spacing: .12em; opacity: .58; }
.device-stack { position: relative; min-height: 270px; }
.device { position: absolute; overflow: hidden; background: white; box-shadow: 0 22px 50px rgba(0,0,0,.2); }
.desktop-device { width: 92%; height: 225px; right: -22%; bottom: -65px; border-radius: 17px 17px 0 0; transform: rotate(-3deg); }
.device-bar { height: 25px; background: #efede9; }
.device-screen { height: 100%; padding: 24px; background: linear-gradient(135deg,#fbf8f3,#e8e2d9); }
.device-screen span, .phone-screen span { display: block; width: 42%; height: 10px; border-radius: 999px; background: #19191a; }
.device-screen i, .phone-screen i { display: block; width: 68%; height: 58px; margin-top: 18px; border-radius: 9px; background: #d8d1c8; }
.device-screen b, .phone-screen b { display: block; width: 30%; height: 18px; margin-top: 18px; border-radius: 999px; background: var(--blue); }
.phone-device { width: 110px; height: 220px; left: 14%; bottom: -25px; border: 5px solid #111; border-radius: 23px; transform: rotate(5deg); z-index: 2; }
.device-notch { width: 38px; height: 8px; margin: 7px auto 0; border-radius: 0 0 7px 7px; background: #111; }
.phone-screen { padding: 25px 12px; }
.section-stack { position: absolute; left: 30px; right: 30px; bottom: 20px; display: grid; gap: 5px; }
.section-stack i { height: 14px; border-radius: 6px; background: #efebe4; border: 1px solid #e1dbd1; }
.section-stack i:first-child { height: 36px; background: var(--blue-soft); }
.section-stack i:last-child { background: #d7f6df; }
.chat-demo { position: absolute; left: 30px; right: 30px; bottom: 28px; display: flex; align-items: center; justify-content: space-between; padding: 18px; border-radius: 16px; background: white; box-shadow: 0 14px 36px rgba(50,31,23,.12); }
.chat-demo span { font-size: 13px; }
.chat-demo b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #1fc466; color: white; }
.domain-demo, .mail-demo { position: absolute; left: 30px; right: 30px; bottom: 36px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: white; font-size: 20px; font-weight: 650; letter-spacing: -.03em; }
.domain-demo span { color: var(--blue); }
.mail-demo { font-size: 15px; color: var(--muted); }
.mail-demo strong { color: var(--ink); }
.revision-demo { display: grid; gap: 10px; position: relative; padding: 22px; border-radius: 20px; background: #f3efe9; }
.revision-demo span { padding: 11px 13px; border-radius: 10px; background: white; font-size: 13px; }
.revision-demo i { position: absolute; right: -8px; top: -12px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: #0b9645; font-style: normal; font-weight: 900; }

.structure { padding: 140px 0; }
.structure-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.structure-copy h2 { margin-bottom: 24px; font-size: clamp(48px,5.2vw,74px); line-height: 1; letter-spacing: -.06em; }
.structure-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.55; }
.text-link { display: inline-flex; gap: 10px; margin-top: 16px; text-decoration: none; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.structure-demo { position: relative; min-height: 0; }
.structure-browser { width: 88%; margin-left: auto; border-radius: 26px; overflow: hidden; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.structure-toolbar { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: #f5f3ef; border-bottom: 1px solid var(--line); }
.structure-toolbar i { width: 8px; height: 8px; border-radius: 50%; background: #c4c0ba; }
.structure-toolbar span { margin-left: auto; margin-right: auto; font-size: 10px; color: var(--muted); }
.structure-page { padding: 20px; display: grid; gap: 10px; }
.mini-section { min-height: 90px; display: grid; grid-template-columns: 42px 1fr; align-items: center; column-gap: 8px; padding: 16px; border-radius: 16px; background: #f4f1eb; }
.mini-section span { grid-row: span 2; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--blue); font-size: 11px; font-weight: 800; }
.mini-section strong { font-size: 18px; }
.mini-section small { color: var(--muted); }
.mini-hero { min-height: 180px; background: var(--blue); color: white; }
.mini-hero span { background: rgba(255,255,255,.15); color: white; }
.mini-hero small { color: rgba(255,255,255,.72); }
.mini-contact { background: var(--coral-soft); }
.structure-note { position: relative; left: auto; bottom: auto; width: 310px; margin-top: 18px; padding: 22px; border-radius: 20px; background: white; border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(41,30,20,.14); }
.structure-note span { display: block; margin-bottom: 7px; color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.structure-note strong { font-size: 18px; line-height: 1.25; }

.process { padding: 140px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.process-step { min-height: 330px; padding: 26px; border-top: 1px solid var(--line); }
.process-step > span { font-size: 12px; font-weight: 800; color: var(--blue); }
.process-icon { width: 76px; height: 76px; display: grid; place-items: center; margin: 62px 0 40px; border-radius: 24px; background: white; box-shadow: 0 20px 50px rgba(36,28,18,.08); font-size: 28px; }
.process-step h3 { margin-bottom: 12px; font-size: 24px; letter-spacing: -.04em; }
.process-step p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.timeline-note { margin-top: 54px; display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline-note span { max-width: 520px; color: var(--muted); text-align: right; }

.audience { padding: 140px 0; }
.audience-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.audience-main h2 { max-width: 800px; margin-bottom: 38px; font-size: clamp(48px,5.8vw,80px); line-height: .98; letter-spacing: -.065em; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-tags span { padding: 13px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.74); font-size: 14px; }
.not-for-card { padding: 34px; border-radius: var(--radius-lg); background: #1b1b1d; border: 1px solid rgba(255,255,255,.1); }
.not-for-card > span { color: rgba(255,255,255,.54); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.not-for-card ul { list-style: none; padding: 0; margin: 28px 0 30px; display: grid; gap: 15px; }
.not-for-card li { display: flex; gap: 10px; color: rgba(255,255,255,.84); }
.not-for-card li::before { content: "×"; color: var(--coral); font-weight: 900; }
.not-for-card a { color: #88a6ff; text-decoration: none; font-size: 14px; }

.comparison { padding: 140px 0; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-card { min-height: 600px; display: flex; flex-direction: column; padding: 42px; border-radius: var(--radius-xl); border: 1px solid var(--line); background: white; }
.comparison-card h3 { max-width: 480px; margin: 38px 0 16px; font-size: clamp(36px,3.8vw,54px); line-height: 1; letter-spacing: -.055em; }
.comparison-card > p { max-width: 520px; color: var(--muted); line-height: 1.55; }
.solution-label { font-size: 12px; font-weight: 800; letter-spacing: .13em; color: var(--blue); }
.comparison-card ul { list-style: none; padding: 0; margin: 38px 0; display: grid; gap: 13px; }
.comparison-card li { display: flex; gap: 10px; color: var(--ink-soft); }
.comparison-card li::before { content: "✓"; color: var(--blue); font-weight: 800; }
.solution-price { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); }
.solution-price strong { display: block; font-size: 42px; letter-spacing: -.055em; }
.solution-price span { font-size: 12px; font-weight: 700; color: var(--muted); }
.intelligent-card { background: var(--ink); color: #fff; border-color: var(--ink); }
.intelligent-card > p, .intelligent-card li, .intelligent-card .solution-price span { color: rgba(255,255,255,.65); }
.intelligent-card .solution-label { color: #8eabff; }
.intelligent-card li::before { color: var(--mint); }
.intelligent-card .solution-price { border-color: rgba(255,255,255,.12); }

.pricing { padding: 130px 0; }
.pricing-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.pricing-copy .eyebrow { color: var(--ink); opacity: .7; }
.pricing-copy h2 { margin-bottom: 22px; font-size: clamp(50px,6.2vw,84px); line-height: .97; letter-spacing: -.067em; }
.pricing-copy > p:last-child { max-width: 670px; color: rgba(12,12,13,.7); font-size: 19px; line-height: 1.55; }
.price-panel { padding: 40px; border-radius: var(--radius-xl); background: rgba(255,255,255,.82); box-shadow: 0 32px 70px rgba(105,35,20,.18); }
.price-panel > span { display: block; margin-bottom: 25px; color: var(--muted); font-size: 14px; }
.price-lockup { display: flex; align-items: baseline; gap: 12px; }
.price-lockup strong { font-size: clamp(62px,7vw,94px); line-height: .9; letter-spacing: -.07em; }
.price-lockup small { max-width: 60px; font-size: 12px; font-weight: 800; }
.price-panel > p { margin: 14px 0 28px; color: var(--muted); }
.button-dark { width: 100%; background: var(--ink); color: white; }
.button-ghost { width: 100%; margin-top: 10px; border: 1px solid var(--line); background: transparent; }
.price-disclaimer { display: block; margin-top: 20px; color: var(--muted); line-height: 1.45; }

.faq { padding: 140px 0; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading h2 { margin-bottom: 20px; font-size: clamp(44px,4.8vw,66px); line-height: 1; letter-spacing: -.06em; }
.faq-heading > p:last-child { color: var(--muted); line-height: 1.5; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 19px; font-weight: 650; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 24px; font-weight: 300; transition: transform .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details > div { padding: 0 50px 28px 0; }
.accordion p { margin: 0; color: var(--muted); line-height: 1.65; }

.final-cta { padding: 70px 0; }
.final-card { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding: 60px; border-radius: var(--radius-xl); background: white; box-shadow: 0 22px 60px rgba(35,27,18,.08); }
.final-card h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(40px,4.9vw,68px); line-height: 1; letter-spacing: -.06em; }
.final-actions { min-width: 270px; display: grid; gap: 13px; }
.final-actions span { text-align: center; color: var(--muted); font-size: 12px; }

.site-footer { padding: 70px 0 30px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 80px; padding-bottom: 50px; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.5); }
.footer-contact, .footer-links { display: grid; align-content: start; gap: 10px; }
.footer-contact strong, .footer-links strong { margin-bottom: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); }
.footer-contact a, .footer-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 12px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #1ec765;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 14px 34px rgba(20,130,68,.28);
}
.floating-whatsapp b { font-size: 15px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --container: min(100% - 30px, 760px); }
  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    right: 15px;
    bottom: auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bone);
    box-shadow: 0 30px 70px rgba(30,20,10,.18);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .25s ease;
  }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav a { padding: 15px; border-radius: 12px; }
  .primary-nav .nav-cta { margin-top: 6px; text-align: center; }
  .menu-toggle { position: relative; display: block; width: 44px; height: 44px; border: 0; border-radius: 50%; background: white; }
  .menu-toggle span:not(.sr-only) { position: absolute; left: 50%; top: 50%; width: 18px; height: 1.5px; margin: 0; background: var(--ink); transition: transform .2s ease; }
  .menu-toggle span:first-child { transform: translate(-50%, -4px); }
  .menu-toggle span:nth-child(2) { transform: translate(-50%, 4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translate(-50%, 0) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }
  .hero { padding-top: 90px; }
  .mock-copy { padding: 38px 0 28px 32px; min-width: 0; min-height: 0; }
  .mock-kicker { margin-bottom: 12px; }
  .mock-copy h2 { margin-bottom: 12px; font-size: 34px; }
  .mock-copy p { font-size: 12px; line-height: 1.45; }
  .mock-button { margin-top: 8px; padding: 11px 14px; }
  .mock-visual { min-height: 0; }
  .product-stage { min-height: 600px; }
  .browser-window { width: 100%; height: 510px; }
  .float-whatsapp { right: -10px; top: 350px; }
  .float-speed { left: -10px; top: 515px; }
  .float-domain { display: none; }
  .manifesto-grid, .structure-layout, .audience-layout, .pricing-layout, .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .manifesto-copy { max-width: 680px; }
  .bento-card { grid-column: span 6; }
  .bento-large, .bento-wide { grid-column: span 12; }
  .structure-demo { min-height: 0; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .comparison-grid { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .final-card { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
  :root { --container: min(100% - 24px, 560px); --radius-xl: 28px; --radius-lg: 24px; }
  .topbar { font-size: 10px; gap: 6px; }
  .topbar span:nth-child(n+4) { display: none; }
  .nav-shell { min-height: 64px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: 18px; }

  .hero { padding: 72px 0 60px; }
  h1 { font-size: clamp(48px,16vw,70px); }
  .hero-description { font-size: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-price { width: 100%; justify-content: center; }
  .product-stage { min-height: 470px; margin-top: 52px; }
  .browser-window { height: 380px; border-radius: 22px; }
  .browser-top { height: 38px; }
  .browser-content { padding: 14px; height: calc(100% - 38px); }
  .mock-links { display: none; }
  .mock-hero { grid-template-columns: 1.05fr .95fr; gap: 6px; margin-top: 14px; }
  .mock-copy { padding: 30px 0 24px 22px; }
  .mock-copy h2 { font-size: 24px; }
  .mock-copy p { font-size: 10px; max-width: 180px; }
  .mock-button { padding: 9px 10px; font-size: 9px; }
  .float-card { padding: 13px 14px; border-radius: 16px; }
  .float-card strong { font-size: 12px; }
  .float-card span { font-size: 10px; }
  .float-whatsapp { min-width: 210px; right: -6px; top: 285px; }
  .float-speed { min-width: 220px; left: -5px; top: 375px; }
  .whatsapp-icon { width: 34px; height: 34px; }
  .check-icon { width: 32px; height: 32px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .manifesto, .features, .structure, .process, .audience, .comparison, .faq { padding: 92px 0; }
  .manifesto h2, .section-heading h2, .structure-copy h2, .audience-main h2, .pricing-copy h2, .faq-heading h2 { font-size: clamp(42px,12vw,60px); }
  .manifesto-grid { gap: 35px; }
  .manifesto-copy { font-size: 18px; }
  .bento-grid { gap: 12px; }
  .bento-card, .bento-large, .bento-wide { grid-column: span 12; min-height: 0; display: block; }
  .bento-sections { padding-bottom: 30px; }
  .card-number { margin-bottom: 40px; }
  .device-stack { position: relative; inset: auto; height: 220px; margin-top: 24px; }
  .section-stack, .chat-demo, .domain-demo, .mail-demo { position: relative; left: auto; right: auto; bottom: auto; margin-top: 26px; }
  .revision-demo { margin-top: 26px; }
  .structure-demo { min-height: 0; }
  .structure-browser { width: 96%; }
  .structure-note { left: auto; bottom: auto; width: min(100%, 310px); margin-top: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-icon { margin: 35px 0 24px; }
  .timeline-note { display: grid; }
  .timeline-note span { text-align: left; }
  .comparison-card { min-height: 560px; padding: 28px; }
  .pricing { padding: 90px 0; }
  .price-panel { padding: 28px; }
  .price-lockup { display: block; }
  .price-lockup strong { font-size: 66px; }
  .price-lockup small { display: block; margin-top: 8px; }
  .accordion summary { font-size: 16px; }
  .final-cta { padding: 50px 0; }
  .final-card { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 50px; height: 50px; justify-content: center; padding: 0; border-radius: 50%; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
  .floating-whatsapp.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

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


@media (max-width: 360px) {
  .mock-copy { padding-left: 16px; }
  .mock-copy h2 { font-size: 22px; }
  .mock-copy p { font-size: 9px; }
  .mock-kicker { font-size: 8px; }
  .mock-button { padding: 8px 9px; font-size: 8px; }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .mock-copy { padding: 38px 0 28px 32px; min-width: 0; min-height: 0; }
  .mock-kicker { margin-bottom: 12px; }
  .mock-copy h2 { margin-bottom: 12px; font-size: 34px; }
  .mock-copy p { font-size: 12px; line-height: 1.45; }
  .mock-button { margin-top: 8px; padding: 11px 14px; }
  .mock-visual { min-height: 0; }
}
