:root {
  --ink: #08090e;
  --ink-soft: #10121b;
  --paper: #f2f0ea;
  --paper-deep: #e7e4dc;
  --white: #ffffff;
  --muted: #999ba6;
  --line-dark: rgba(255, 255, 255, .12);
  --line-light: rgba(8, 9, 14, .15);
  --blue: #69a9ff;
  --violet: #8e6dff;
  --green: #82e0b7;
  --coral: #ff9478;
  --amber: #ffd36e;
  --max: 1440px;
  --side: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
strong { font-weight: 600; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #06070b;
  transition: clip-path 1.05s cubic-bezier(.77, 0, .18, 1);
  clip-path: inset(0 0 0 0);
}
.intro.is-finished { clip-path: inset(0 0 100% 0); }
.intro-mark { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.intro-mark svg { width: 100px; overflow: visible; }
.intro-line {
  fill: none;
  stroke: var(--paper);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: introDraw 1.2s .15s cubic-bezier(.65, 0, .35, 1) forwards;
}
.line-b { animation-delay: .38s; stroke: var(--blue); }
.intro-core {
  fill: var(--paper);
  opacity: 0;
  transform-origin: center;
  animation: coreIn .45s 1.15s ease forwards;
}
.intro-mark span {
  opacity: 0;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 600;
  animation: wordIn .6s 1.25s ease forwards;
}
@keyframes introDraw { to { stroke-dashoffset: 0; } }
@keyframes coreIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes wordIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 92px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, height .35s;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(8, 9, 14, .88);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 650; letter-spacing: 0; }
.brand-symbol { width: 35px; height: 35px; overflow: visible; }
.brand-symbol path, .contact-symbol path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-symbol path:nth-child(2), .contact-symbol path:nth-child(2) { stroke: var(--blue); }
.brand-symbol circle, .contact-symbol circle { fill: currentColor; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); font-size: 13px; }
.main-nav > a:not(.nav-cta) { color: #babcc5; transition: color .25s; }
.main-nav > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta { border: 1px solid var(--line-dark); padding: 12px 16px; display: flex; gap: 20px; transition: background .25s, color .25s; }
.nav-cta:hover { background: var(--paper); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px var(--side) 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 42%, rgba(76, 111, 255, .08), transparent 28%),
    linear-gradient(115deg, #08090e 0%, #090a10 60%, #0a0b12 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-copy { width: min(880px, 72vw); position: relative; z-index: 2; }
.eyebrow { margin: 0 0 28px; text-transform: uppercase; letter-spacing: 0; font-size: 11px; font-weight: 600; color: #9da0ab; }
.eyebrow span { color: var(--blue); padding: 0 5px; }
.hero h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(64px, 9vw, 142px);
  line-height: .86;
  font-weight: 520;
}
.hero h1 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; color: var(--blue); }
.hero-actions { margin-top: 46px; display: flex; align-items: center; gap: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 222px;
  padding: 17px 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--blue); color: #07101e; }
.button-primary:hover { background: var(--white); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { background: var(--blue); color: var(--ink); }
.text-link { padding: 10px 0; font-size: 13px; color: #b7bac4; border-bottom: 1px solid #41434d; }
.text-link span { margin-left: 16px; color: var(--white); }
.scroll-cue {
  position: absolute;
  bottom: 40px;
  right: var(--side);
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 9px;
  color: #777a86;
}
.scroll-cue i { position: relative; width: 42px; height: 42px; border: 1px solid var(--line-dark); border-radius: 50%; }
.scroll-cue i::after { content: "↓"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--paper); font-style: normal; animation: bob 1.8s infinite; }
@keyframes bob { 50% { transform: translateY(3px); } }

.hero-orbit { position: absolute; width: min(54vw, 760px); aspect-ratio: 1; right: -8vw; top: 50%; transform: translateY(-50%); z-index: -1; opacity: .8; }
.orbit { position: absolute; inset: 12%; border: 1px solid rgba(105,169,255,.24); border-radius: 50%; transform: rotateX(68deg) rotateZ(-25deg); }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 28px 7px rgba(105,169,255,.45); }
.orbit::before { top: 50%; left: -4px; }
.orbit::after { top: 50%; right: -4px; }
.orbit-two { inset: 24%; transform: rotateY(65deg) rotateZ(35deg); border-color: rgba(142,109,255,.35); }
.orbit-two::before, .orbit-two::after { background: var(--violet); }
.orbit-core { position: absolute; width: 16%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; top: 42%; left: 42%; box-shadow: 0 0 100px 30px rgba(68, 92, 255, .2); }

.hero-mark {
  position: absolute;
  right: var(--side);
  top: 50%;
  width: min(34vw, 440px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(-48%);
  z-index: 2;
  color: rgba(255,255,255,.08);
}
.hero-mark::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(105,169,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(105,169,255,.1);
}
.hero-mark svg {
  width: 58%;
  overflow: visible;
}
.hero-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-mark path:nth-child(2) { stroke: rgba(105,169,255,.22); }
.hero-mark circle { fill: rgba(255,255,255,.14); }
.hero-mark span {
  position: absolute;
  bottom: 14%;
  color: rgba(242,240,234,.18);
  font-size: 13px;
  font-weight: 650;
}

.section-pad { padding: 130px var(--side); }
.section-number { padding-bottom: 20px; border-bottom: 1px solid var(--line-light); text-transform: uppercase; letter-spacing: 0; font-size: 10px; font-weight: 650; color: #777973; }
.section-number.light { color: #6d707c; border-color: var(--line-dark); }
.statement { background: var(--paper); color: var(--ink); }
.statement-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; padding: 80px 0 10px; }
.statement-kicker { max-width: 240px; margin: 8px 0 0; font-size: 13px; line-height: 1.6; color: #71726d; }
.display-title { margin: 0; font-size: clamp(43px, 5.6vw, 88px); line-height: .99; font-weight: 500; }
.display-title span { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; color: #757772; }
.statement-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 840px; margin: 62px 0 0 auto; color: #51524e; font-size: 16px; line-height: 1.72; }
.statement-columns p { margin: 0; }

.products { position: relative; background: #0a0b11; overflow: hidden; }
.products::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  right: -34%;
  top: 8%;
  border-radius: 50%;
  background: rgba(58, 80, 255, .11);
  filter: blur(100px);
  pointer-events: none;
}
.products-heading { position: relative; padding: 80px 0 75px; max-width: 900px; }
.products-heading .display-title span { color: var(--blue); }
.product-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.product-card {
  min-height: 330px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,.015);
  transition: background .3s, transform .3s;
}
.product-card:hover { background: rgba(255,255,255,.045); transform: translateY(-7px); }
.product-featured { grid-column: span 2; background: rgba(105,169,255,.075); }
.product-number { font: 10px "SFMono-Regular", Consolas, monospace; color: #858894; }
.product-card h3 { margin: auto 0 18px; font-size: clamp(32px, 4vw, 58px); font-weight: 500; }
.product-tag { margin: 0 0 34px; color: #9699a5; font-size: 13px; }
.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: fit-content;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  color: var(--paper);
  font-size: 12px;
  font-weight: 650;
  transition: background .25s, color .25s;
}
.product-link:hover { background: var(--paper); color: var(--ink); }

.format-hero { min-height: 92vh; }
.format-lead {
  margin: 38px 0 0;
  width: min(650px, 100%);
  color: #a9abb4;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}
.format-console {
  position: absolute;
  right: var(--side);
  top: 50%;
  width: min(38vw, 500px);
  transform: translateY(-42%);
  border: 1px solid rgba(105,169,255,.24);
  background: rgba(10, 12, 20, .86);
  box-shadow: 0 40px 100px rgba(0,0,0,.36), 0 0 120px rgba(66,91,255,.08);
  backdrop-filter: blur(18px);
  z-index: 2;
}
.console-topbar { height: 48px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; padding: 0 18px; border-bottom: 1px solid var(--line-dark); color: #666a77; font: 10px "SFMono-Regular", Consolas, monospace; }
.console-topbar > span:nth-child(2) { text-align: center; }
.console-topbar > span:last-child { text-align: right; }
.traffic { display: flex; gap: 7px; }
.traffic i { display: block; width: 8px; height: 8px; border-radius: 50%; background: #30333f; }
.traffic i:first-child { background: #574362; }
.format-checklist { display: grid; gap: 12px; padding: 34px; }
.format-checklist span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.1);
  color: #d8dae2;
  font-size: 14px;
}
.format-checklist b { color: var(--blue); font: 10px "SFMono-Regular", Consolas, monospace; }
.format-strip { background: var(--paper); color: var(--ink); }
.format-intro { padding-top: 80px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 70px; align-items: end; }
.format-intro .display-title span { color: #777873; }
.format-points { display: grid; gap: 12px; }
.format-points span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  color: #3f403c;
  font-weight: 600;
}
.packages { position: relative; background: #0a0b11; overflow: hidden; }
.packages::before {
  content: "";
  position: absolute;
  width: 820px;
  height: 820px;
  right: -32%;
  top: 10%;
  border-radius: 50%;
  background: rgba(105,169,255,.1);
  filter: blur(100px);
}
.package-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.package-card {
  min-height: 430px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,.015);
  transition: background .3s, transform .3s;
}
.package-card:hover { background: rgba(255,255,255,.045); transform: translateY(-7px); }
.package-featured { background: rgba(105,169,255,.08); }
.package-card h3 { margin: 70px 0 24px; font-size: clamp(28px, 3vw, 46px); line-height: 1; font-weight: 500; }
.package-card ul { margin: 0 0 34px; padding: 22px 0 0; border-top: 1px solid var(--line-dark); list-style: none; color: #b8bac4; font-size: 13px; line-height: 1.6; }
.package-card li { padding: 7px 0; }
.package-card li::before { content: "✓"; margin-right: 10px; color: var(--blue); }
.package-card .product-link { margin-top: auto; }
.process { background: var(--paper); color: var(--ink); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); margin-top: 80px; }
.process-step {
  min-height: 290px;
  padding: 34px 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.process-step span { font: 10px "SFMono-Regular", Consolas, monospace; color: #858680; }
.process-step h3 { margin: 80px 0 16px; font-size: 24px; font-weight: 550; }
.process-step p { margin: 0; color: #686965; font-size: 14px; line-height: 1.62; }
.quote {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #08090e;
}
.quote::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(105,169,255,.16), transparent 65%); }
.quote .eyebrow, .quote h2, .quote .button, .quote-copy { position: relative; }
.quote h2 { margin: 8px 0 28px; font-size: clamp(55px, 8vw, 120px); line-height: .9; font-weight: 480; }
.quote h2 em { font-family: Georgia, serif; font-weight: 400; color: var(--blue); }
.quote-copy { max-width: 620px; margin: 0 0 38px; color: #a5a8b4; font-size: 16px; line-height: 1.7; }

.sales-page { background: #07080d; }
.sales-hero {
  position: relative;
  min-height: 100vh;
  padding: 170px var(--side) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 70px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(130,224,183,.12), transparent 26%),
    radial-gradient(circle at 60% 54%, rgba(105,169,255,.16), transparent 34%),
    linear-gradient(120deg, #07080d 0%, #0b0d16 52%, #081018 100%);
}
.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}
.sales-hero-bg {
  position: absolute;
  width: min(52vw, 740px);
  aspect-ratio: 1;
  right: -12vw;
  top: 18%;
  z-index: -1;
  border: 1px solid rgba(105,169,255,.16);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(105,169,255,.08), 0 0 160px rgba(130,224,183,.08);
}
.sales-hero-copy { min-width: 0; max-width: 930px; position: relative; z-index: 2; }
.sales-hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(58px, 7.4vw, 120px);
  line-height: .88;
  font-weight: 560;
  text-wrap: balance;
}
.sales-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: #bec2cc;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}
.sales-actions { margin-top: 40px; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.whatsapp-button { background: #82e0b7; color: #06100c; box-shadow: 0 18px 60px rgba(130,224,183,.16); }
.whatsapp-button:hover { background: var(--white); color: var(--ink); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  color: #cfd2db;
  background: rgba(255,255,255,.035);
  font-size: 12px;
  font-weight: 650;
}
.pc-status-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(9,11,18,.78);
  box-shadow: 0 42px 120px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
}
.pc-card-header { display: flex; align-items: center; gap: 16px; padding-bottom: 26px; border-bottom: 1px solid var(--line-dark); }
.pc-card-header .brand-symbol { color: var(--paper); flex: 0 0 auto; }
.pc-card-header strong { display: block; font-size: 18px; }
.pc-card-header span { display: block; margin-top: 5px; color: #7f8490; font-size: 11px; }
.pc-meter { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin: 30px 0; color: #7d818c; font-size: 11px; font-weight: 700; }
.pc-meter i { height: 8px; border-radius: 999px; background: linear-gradient(90deg, #323642, var(--blue), var(--green)); box-shadow: 0 0 24px rgba(130,224,183,.28); }
.pc-meter b { color: var(--green); }
.pc-checks { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.pc-checks li {
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.1);
  color: #d5d8e1;
  font-size: 13px;
  line-height: 1.45;
}
.pc-checks li::before { content: "✓"; color: var(--green); margin-right: 10px; }
.mini-whatsapp {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: rgba(130,224,183,.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}
.pain-section { background: var(--paper); color: var(--ink); }
.pain-heading { max-width: 980px; padding: 80px 0 70px; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.pain-card {
  min-height: 300px;
  padding: 34px 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.pain-card > span, .sales-step > span { font: 10px "SFMono-Regular", Consolas, monospace; color: #858680; }
.pain-card h3 { margin: 82px 0 14px; font-size: 25px; font-weight: 600; }
.pain-card p { margin: 0; color: #646560; font-size: 14px; line-height: 1.62; }
.sales-proof, .sales-packages, .faq-section { position: relative; background: #0a0b11; overflow: hidden; }
.sales-proof::before, .sales-packages::before, .faq-section::before {
  content: "";
  position: absolute;
  width: 850px;
  height: 850px;
  right: -34%;
  top: 4%;
  border-radius: 50%;
  background: rgba(105,169,255,.1);
  filter: blur(100px);
}
.proof-layout {
  position: relative;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
}
.proof-layout .display-title span, .sales-package-heading .display-title span { color: var(--blue); }
.proof-list { display: grid; gap: 12px; }
.proof-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
  color: #d9dce5;
  font-size: 14px;
}
.proof-list span::before { content: "✓"; color: var(--green); margin-right: 12px; }
.sales-package-heading { position: relative; max-width: 980px; padding: 80px 0 75px; }
.sales-package-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.sales-package {
  min-height: 520px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,.018);
  transition: transform .25s, background .25s;
}
.sales-package:hover { transform: translateY(-7px); background: rgba(255,255,255,.045); }
.featured-sale { background: linear-gradient(180deg, rgba(130,224,183,.13), rgba(105,169,255,.06)); }
.package-label { color: var(--green); font: 11px "SFMono-Regular", Consolas, monospace; text-transform: uppercase; }
.sales-package h3 { margin: 64px 0 18px; font-size: clamp(34px, 4vw, 56px); line-height: .95; font-weight: 560; }
.sales-package p { margin: 0 0 26px; color: #9fa3ae; line-height: 1.62; font-size: 14px; }
.sales-package ul { margin: 0 0 30px; padding: 22px 0 0; border-top: 1px solid var(--line-dark); list-style: none; color: #c5c8d1; font-size: 13px; line-height: 1.6; }
.sales-package li { padding: 7px 0; }
.sales-package li::before { content: "✓"; color: var(--green); margin-right: 10px; }
.sales-package li strong {
  color: var(--green);
  font-weight: 800;
}
.sales-package:not(.featured-sale) li strong {
  color: var(--coral);
}
.sales-package .product-link { margin-top: auto; }
.sales-process { background: var(--paper); color: var(--ink); }
.sales-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); margin-top: 80px; }
.sales-step { min-height: 300px; padding: 34px 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.sales-step h3 { margin: 78px 0 14px; font-size: 24px; font-weight: 600; }
.sales-step p { margin: 0; color: #63645f; font-size: 14px; line-height: 1.62; }
.faq-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); margin-top: 80px; }
.faq-item { min-height: 230px; padding: 34px 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.018); }
.faq-item h3 { margin: 0 0 28px; font-size: 28px; font-weight: 560; }
.faq-item p { margin: 0; color: #a9acb6; font-size: 14px; line-height: 1.7; }
.final-whatsapp {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #08090e;
}
.final-whatsapp::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130,224,183,.16), transparent 65%);
}
.final-whatsapp .eyebrow, .final-whatsapp h2, .final-whatsapp .button, .final-whatsapp .quote-copy { position: relative; }
.final-whatsapp h2 { margin: 8px 0 28px; font-size: clamp(54px, 8vw, 118px); line-height: .9; font-weight: 480; }
.final-whatsapp h2 em { font-family: Georgia, serif; font-weight: 400; color: var(--green); }
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 18px;
  background: var(--green);
  color: #06100c;
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
  font-size: 13px;
  font-weight: 800;
}

.contact { position: relative; min-height: 680px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #08090e; }
.contact::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(79,100,255,.16), transparent 65%); }
.contact-symbol { position: absolute; width: min(60vw, 700px); color: rgba(255,255,255,.025); }
.contact-symbol svg { width: 100%; }
.contact-symbol path { stroke-width: 1; }
.contact-symbol path:nth-child(2) { stroke: rgba(105,169,255,.08); }
.contact-symbol circle { fill: rgba(255,255,255,.06); }
.contact .eyebrow, .contact h2, .contact .button { position: relative; }
.contact h2 { margin: 8px 0 40px; font-size: clamp(55px, 8vw, 120px); line-height: .9; font-weight: 480; }
.contact h2 em { font-family: Georgia, serif; font-weight: 400; color: var(--blue); }

.product-page .hero { min-height: 78vh; }
.product-page .hero-copy { width: min(900px, 88vw); }
.product-page .hero h1 { font-size: clamp(58px, 8vw, 130px); }
.product-panel {
  position: absolute;
  right: var(--side);
  top: 50%;
  width: min(36vw, 460px);
  transform: translateY(-42%);
  padding: 34px;
  border: 1px solid var(--line-dark);
  background: rgba(10, 12, 20, .82);
  backdrop-filter: blur(18px);
}
.product-panel span { display: block; margin-bottom: 50px; color: var(--blue); font: 11px "SFMono-Regular", Consolas, monospace; }
.product-panel p { margin: 0; color: #a5a8b4; line-height: 1.7; }
.page-section { background: var(--paper); color: var(--ink); }
.page-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.page-copy { max-width: 820px; color: #52534f; font-size: 18px; line-height: 1.75; }

footer { min-height: 170px; padding: 0 var(--side); display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: center; gap: 30px; border-top: 1px solid var(--line-dark); color: #6f727e; font-size: 10px; }
.footer-brand { color: var(--paper); font-size: 17px; }
.footer-brand .brand-symbol { width: 28px; height: 28px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a:hover { color: var(--paper); }
.copyright { text-align: right; }

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

@media (max-width: 1120px) {
  .hero-copy { width: 88vw; }
  .hero-mark { width: min(46vw, 360px); opacity: .72; }
  .products-heading { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-panel { position: relative; right: auto; top: auto; width: min(720px, 100%); margin-top: 56px; transform: none; }
  .format-console { position: relative; right: auto; top: auto; width: min(720px, 100%); margin-top: 56px; transform: none; }
  .format-intro { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .sales-hero { grid-template-columns: 1fr; gap: 54px; }
  .sales-hero-copy { max-width: 900px; }
  .pc-status-card { width: min(720px, 100%); }
  .pain-grid, .sales-steps { grid-template-columns: repeat(2, 1fr); }
  .proof-layout { grid-template-columns: 1fr; gap: 52px; }
  .sales-package-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .sales-hero {
    grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
    gap: 44px;
  }
  .sales-hero h1 {
    font-size: clamp(62px, 6.4vw, 86px);
    line-height: .94;
  }
  .sales-lead {
    max-width: 590px;
    font-size: clamp(17px, 1.45vw, 20px);
  }
  .pc-status-card {
    padding: 26px;
  }
}

@media (max-width: 760px) {
  :root { --side: 22px; }
  .site-header { height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    padding: 120px var(--side) 40px;
    background: #08090e;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.77,0,.18,1);
  }
  .site-header.scrolled { backdrop-filter: none; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a { font-size: 24px; }
  .nav-cta { margin-top: auto; width: 100%; font-size: 14px !important; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 860px; padding-top: 130px; justify-content: flex-start; }
  .hero h1 { font-size: clamp(56px, 17vw, 86px); line-height: .9; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-orbit { width: 100vw; right: -43vw; top: 44%; opacity: .55; }
  .hero-mark { position: relative; right: auto; top: auto; width: min(72vw, 300px); margin-top: 54px; transform: none; }
  .scroll-cue { display: none; }
  .section-pad { padding-top: 90px; padding-bottom: 90px; }
  .statement-grid, .products-heading { grid-template-columns: 1fr; padding-top: 55px; padding-bottom: 65px; }
  .display-title { font-size: 46px; }
  .statement-columns { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-featured { grid-column: span 1; }
  .product-card { min-height: 280px; }
  .format-console { width: 100%; }
  .format-checklist { padding: 22px; }
  .format-checklist span { min-height: 50px; font-size: 13px; }
  .format-points { grid-template-columns: 1fr; }
  .package-card { min-height: 360px; }
  .package-card h3 { margin-top: 54px; }
  .process-list { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-step h3 { margin-top: 48px; }
  .quote-copy { font-size: 15px; }
  .sales-hero { min-height: auto; padding-top: 128px; padding-bottom: 72px; }
  .sales-hero h1 { font-size: clamp(48px, 14vw, 74px); line-height: .92; }
  .sales-lead { font-size: 16px; margin-top: 28px; }
  .sales-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .sales-actions .button, .sales-actions .text-link { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr; }
  .pc-status-card { padding: 22px; }
  .pc-card-header { align-items: flex-start; }
  .pc-meter { grid-template-columns: 1fr; gap: 8px; }
  .pc-checks li { padding: 14px; }
  .pain-heading, .sales-package-heading { padding-top: 55px; padding-bottom: 60px; }
  .pain-grid, .sales-steps, .faq-grid { grid-template-columns: 1fr; }
  .pain-card, .sales-step { min-height: auto; }
  .pain-card h3, .sales-step h3 { margin-top: 44px; }
  .proof-layout { padding-top: 55px; }
  .proof-list span { min-height: 54px; }
  .sales-package { min-height: 430px; }
  .sales-package h3 { margin-top: 48px; }
  .faq-grid { margin-top: 55px; }
  .faq-item { min-height: auto; }
  .faq-item h3 { font-size: 24px; }
  .final-whatsapp { min-height: 620px; padding-left: var(--side); padding-right: var(--side); }
  .floating-whatsapp {
    left: 18px;
    right: 18px;
    bottom: 16px;
    justify-content: center;
  }
  .contact { min-height: 600px; }
  .product-panel { padding: 24px; }
  footer { padding-top: 45px; padding-bottom: 45px; grid-template-columns: 1fr 1fr; }
  footer > p { text-align: right; }
  .footer-links { order: 3; }
  .copyright { order: 4; }
}

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