:root {
  --bg: #04080b;
  --bg-2: #071014;
  --panel: rgba(12, 21, 26, 0.78);
  --panel-solid: #0c151a;
  --panel-2: #101d24;
  --border: rgba(132, 255, 224, 0.14);
  --border-2: rgba(255, 255, 255, 0.09);
  --text: #f2f7f7;
  --muted: #9fb0b2;
  --soft: #d2dddd;
  --green: #15d38d;
  --green-2: #00ffc2;
  --red: #ff4967;
  --cyan: #20d9ff;
  --blue: #1d7dff;
  --amber: #ffd36a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 255, 194, 0.10), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(255, 73, 103, 0.10), transparent 30rem),
    linear-gradient(180deg, #05090c 0%, #030506 52%, #05090c 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 85%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad { padding: 96px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: linear-gradient(180deg, rgba(4,8,11,.92), rgba(4,8,11,.62), transparent);
  z-index: -1;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #06100c;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--green-2), #a8ffe5 45%, var(--cyan));
  box-shadow: 0 12px 32px rgba(0, 255, 194, .18);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1rem; letter-spacing: -0.03em; }
.brand-copy small { color: var(--muted); font-size: .72rem; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-size: .92rem;
  transition: .2s ease;
}
.nav a:hover { color: var(--text); }
.nav .nav-cta {
  margin-left: 8px;
  color: #06100c;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-2), #c8ffef);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,255,194,.14);
}
.nav-toggle { display: none; }

.hero { padding-top: 54px; padding-bottom: 84px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}
.hero-bg-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .22;
  pointer-events: none;
}
.hero-bg-orb-one { background: var(--green-2); left: -180px; top: 120px; }
.hero-bg-orb-two { background: var(--red); right: -160px; top: 180px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-2);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(0,255,194,.95);
}
.eyebrow.center { justify-content: center; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 5.8vw, 5.35rem);
  line-height: .93;
  letter-spacing: -0.065em;
}
h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(135deg, #fff 0%, var(--green-2) 48%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
h2 {
  font-size: clamp(2.1rem, 4.1vw, 4.2rem);
  line-height: .98;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}
h3 { letter-spacing: -0.035em; }
p { color: var(--muted); line-height: 1.7; }
.hero-subtitle { font-size: 1.08rem; line-height: 1.58; color: var(--soft); max-width: 660px; }
.hero-note {
  margin: 0 0 22px;
  padding-left: 16px;
  border-left: 2px solid rgba(0,255,194,.42);
  max-width: 620px;
  line-height: 1.58;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #04110d;
  background: linear-gradient(135deg, var(--green-2), #d7fff2);
  box-shadow: 0 18px 40px rgba(0,255,194,.18);
}
.btn-secondary, .btn-price {
  background: rgba(255,255,255,.055);
  color: var(--text);
  border-color: var(--border-2);
}
.btn-secondary:hover, .btn-price:hover { border-color: rgba(0,255,194,.35); background: rgba(0,255,194,.08); }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--border-2);
  color: var(--muted);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  font-size: .85rem;
}

.chart-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(6, 12, 15, .82);
  box-shadow: var(--shadow);
}
.chart-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.10), transparent 24%, transparent 68%, rgba(0,255,194,.08));
}
.chart-window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.035);
}
.chart-window-top span {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22);
}
.chart-window-top span:nth-child(1) { background: var(--red); }
.chart-window-top span:nth-child(2) { background: var(--amber); }
.chart-window-top span:nth-child(3) { background: var(--green); }
.chart-window-top p { margin: 0 0 0 8px; font-size: .82rem; color: var(--muted); }
.hero-window { transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.hero-window picture { display: block; aspect-ratio: 1800 / 914; }
.hero-window img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.chart-badge {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
}
.chart-badge-green { right: 11%; bottom: 11%; color: #06100c; background: var(--green-2); }
.chart-badge-red { right: 12%; top: 17%; color: #fff; background: var(--red); }

.logo-strip { border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); background: rgba(255,255,255,.025); }
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.strip-grid div { padding: 24px; border-left: 1px solid var(--border-2); }
.strip-grid div:last-child { border-right: 1px solid var(--border-2); }
.strip-grid strong { display: block; letter-spacing: -0.03em; }
.strip-grid span { display: block; color: var(--muted); margin-top: 7px; font-size: .88rem; }

.two-col { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.section-copy p { font-size: 1.04rem; max-width: 620px; }
.pain-list { display: grid; gap: 12px; margin-top: 28px; }
.pain-list div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.035);
}
.pain-list b { color: var(--green-2); }
.pain-list span { color: var(--soft); }
.mini-card {
  padding: 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.mini-card img { border-radius: 16px; opacity: .86; }
.mini-card-label { margin: 0 0 10px; color: var(--muted); font-size: .9rem; }

.section-heading { text-align: center; max-width: 820px; margin: 0 auto 42px; }
.section-heading p { margin-left: auto; margin-right: auto; max-width: 640px; }

.comparison {
  position: relative;
  height: clamp(360px, 58vw, 660px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}
.comparison-image { position: absolute; inset: 0; }
.comparison-image img { width: 100%; height: 100%; object-fit: cover; }
.comparison-before { z-index: 1; }
.comparison-after { z-index: 2; clip-path: inset(0 0 0 52%); }
.comparison-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  background: rgba(255,255,255,.10);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
}
.comparison-after span { left: auto; right: 18px; background: rgba(0,255,194,.16); border-color: rgba(0,255,194,.28); }
.comparison input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}
.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 2px;
  background: var(--green-2);
  box-shadow: 0 0 20px rgba(0,255,194,.55);
  z-index: 3;
}
.comparison-line::after {
  content: "↔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #04110d;
  font-weight: 900;
  background: var(--green-2);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  overflow: hidden;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.feature-card img { width: 100%; height: 210px; object-fit: cover; border-bottom: 1px solid var(--border-2); }
.feature-card div { padding: 22px; }
.feature-card h3 { margin: 7px 0 10px; font-size: 1.28rem; }
.feature-card p { margin: 0; font-size: .95rem; }
.feature-kicker { color: var(--green-2); text-transform: uppercase; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }

.mtf-section .chart-window img { width: 100%; aspect-ratio: 1500 / 710; object-fit: cover; }
.clean-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.clean-list li { color: var(--soft); padding-left: 28px; position: relative; }
.clean-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-2); font-weight: 900; }

.tabs { border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; background: var(--panel); box-shadow: var(--shadow); }
.tab-buttons { display: flex; gap: 8px; padding: 12px; border-bottom: 1px solid var(--border-2); background: rgba(255,255,255,.035); }
.tab-buttons button {
  border: 1px solid transparent;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.tab-buttons button.active { color: #04110d; background: var(--green-2); }
.tab-panels { position: relative; }
.tab-panels img { display: none; width: 100%; aspect-ratio: 1400 / 745; object-fit: cover; }
.tab-panels img.active { display: block; }

.no-robot-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0,255,194,.10), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.no-robot-card p { margin-bottom: 0; }
.no-robot-points { display: grid; grid-template-columns: 1fr; gap: 12px; }
.no-robot-points span {
  padding: 13px 15px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid var(--border-2);
  color: var(--soft);
}

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.price-card.popular {
  border-color: rgba(0,255,194,.5);
  background: linear-gradient(180deg, rgba(0,255,194,.12), rgba(255,255,255,.045));
  box-shadow: 0 22px 60px rgba(0,255,194,.12);
  transform: translateY(-8px);
}
.popular-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #06100c;
  background: var(--green-2);
  font-weight: 900;
  font-size: .72rem;
}
.price-top { display: flex; justify-content: space-between; align-items: start; gap: 14px; }
.price-top h3 { margin: 0; font-size: 1.45rem; }
.price-top span { color: var(--muted); font-size: .85rem; }
.price { margin: 24px 0 18px; color: var(--text); font-size: 2rem; font-weight: 900; letter-spacing: -0.06em; }
.price-card ul { padding: 0; margin: 0 0 22px; list-style: none; display: grid; gap: 10px; }
.price-card li { color: var(--soft); font-size: .92rem; }
.price-card li::before { content: "✓"; color: var(--green-2); font-weight: 900; margin-right: 8px; }
.price-card .btn { margin-top: auto; width: 100%; }
.pricing-note { max-width: 760px; margin: 24px auto 0; text-align: center; font-size: .9rem; }

.pricing-grid-sales { gap: 18px; }
.sales-card {
  overflow: hidden;
  padding: 26px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.028)),
    radial-gradient(circle at 20% 0%, rgba(0,255,194,.08), transparent 36%);
}
.sales-card.silver { border-color: rgba(255,255,255,.20); }
.sales-card.gold {
  border-color: rgba(0,255,194,.56);
  box-shadow: 0 24px 70px rgba(0,255,194,.16), inset 0 1px 0 rgba(255,255,255,.12);
}
.sales-card.lifetime {
  border-color: rgba(255,206,105,.36);
  background:
    linear-gradient(180deg, rgba(255,206,105,.10), rgba(255,255,255,.03)),
    radial-gradient(circle at 20% 0%, rgba(0,255,194,.06), transparent 36%);
}
.sales-top { align-items: flex-start; margin-top: 6px; }
.plan-label {
  margin: 0 0 8px;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .13em;
}
.duration-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255,255,255,.045);
  font-size: .72rem !important;
  font-weight: 850;
  white-space: nowrap;
}
.sales-ribbon {
  margin: -8px 0 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sales-ribbon.best { background: linear-gradient(90deg, var(--green-2), #a7ffe7); }
.lifetime-ribbon { color: #1b1200; background: linear-gradient(90deg, #ffd36d, #fff2b9); }
.monthly-box {
  display: grid;
  gap: 3px;
  margin: -2px 0 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(0,0,0,.20);
}
.monthly-box span { color: var(--muted); font-size: .78rem; font-weight: 800; }
.monthly-box strong { color: var(--text); font-size: 1.06rem; letter-spacing: -.03em; }
.monthly-box em {
  display: inline-block;
  width: max-content;
  color: rgba(235,248,244,.48);
  font-style: normal;
  font-size: .86rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.monthly-box.highlight { border-color: rgba(0,255,194,.25); background: rgba(0,255,194,.07); }
.lifetime-box strong { color: #ffe39a; }
.saving-badge {
  margin-bottom: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(0,255,194,.22);
  border-radius: 14px;
  color: var(--green-2);
  background: rgba(0,255,194,.075);
  font-size: .84rem;
  font-weight: 850;
  line-height: 1.35;
}
.saving-badge.muted { color: var(--soft); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.045); }
.feature-list { gap: 9px !important; }
.feature-list li { font-size: .88rem !important; line-height: 1.38; }
.sales-card .btn { min-height: 48px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { padding: 24px; border: 1px solid var(--border-2); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.step-card b { color: var(--green-2); font-size: .9rem; }
.step-card h3 { margin: 12px 0 8px; }
.step-card p { margin: 0; font-size: .92rem; }

.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 54px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
summary { cursor: pointer; padding: 18px 20px; font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { margin: 0; padding: 0 20px 20px; }

.final-cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,255,194,.24);
  background:
    linear-gradient(rgba(2,5,7,.84), rgba(2,5,7,.9)),
    url("assets/images/hero-all-features.webp") center / cover;
  box-shadow: var(--shadow);
}
.final-cta-card h2 { margin-bottom: 12px; }
.final-cta-card p { max-width: 680px; margin-bottom: 0; }
.final-cta-card .btn { flex-shrink: 0; }

.site-footer { padding: 46px 0; border-top: 1px solid var(--border-2); background: rgba(0,0,0,.20); }
.footer-grid { display: grid; grid-template-columns: 1.05fr .48fr .72fr 1.05fr; gap: 28px; align-items: start; }
.footer-brand { margin-bottom: 16px; }
.footer-grid p { margin-bottom: 0; font-size: .9rem; }
.footer-links { display: grid; gap: 10px; color: var(--muted); }
.footer-links b { color: var(--text); margin-bottom: 3px; }
.footer-links a:hover { color: var(--green-2); }
.footer-disclaimer b { display: block; margin-bottom: 10px; }

.legal-main { padding: 72px 0 96px; }
.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}
.legal-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}
.legal-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}
.legal-card p { margin-bottom: 14px; }
.legal-card a { color: var(--green-2); }
.legal-meta { color: var(--muted); font-size: .9rem; }
.legal-list { display: grid; gap: 10px; padding-left: 18px; color: var(--soft); line-height: 1.7; }
.legal-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

.reveal { opacity: 1; transform: translateY(0); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1020px) {
  .hero-grid, .two-col, .faq-grid { grid-template-columns: 1fr; }
  .hero-window { transform: none; }
  .strip-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reverse-mobile .chart-window { order: 2; }
  .reverse-mobile .section-copy { order: 1; }
}

@media (max-width: 760px) {
  .container, .site-header { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 72px 0; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--border-2);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }
  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    padding: 14px;
    border: 1px solid var(--border-2);
    border-radius: 18px;
    background: rgba(5,10,13,.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; }
  .nav a { padding: 13px; }
  .nav .nav-cta { margin-left: 0; text-align: center; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); line-height: .98; letter-spacing: -0.045em; }
  h2 { letter-spacing: -0.05em; }
  .hero { padding-top: 46px; padding-bottom: 68px; }
  .hero-subtitle, .hero-note { font-size: .98rem; line-height: 1.55; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { flex: 1 1 calc(50% - 10px); text-align: center; }
  .hero-window picture { aspect-ratio: 900 / 821; }
  .hero-window img { min-height: 0; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-left: 0; border-right: 0 !important; border-bottom: 1px solid var(--border-2); }
  .features-grid, .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
  .feature-card img { height: 230px; }
  .price-card.popular { transform: none; }
  .no-robot-card { grid-template-columns: 1fr; padding: 24px; }
  .tab-buttons { overflow-x: auto; }
  .tab-buttons button { white-space: nowrap; }
  .comparison { height: 430px; }
  .final-cta-card { display: grid; padding: 26px; }
  .final-cta-card .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 24px; }
  .legal-main { padding: 46px 0 72px; }
}


.framework-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.framework-card, .fit-card {
  padding: 24px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.framework-card b { color: var(--green-2); font-size: .85rem; letter-spacing: .08em; }
.framework-card h3 { margin: 14px 0 10px; }
.framework-card p { margin: 0; font-size: .94rem; }
.fit-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 34px; align-items: start; }
.fit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-card h3 { margin: 0 0 14px; }
.fit-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.fit-card li { color: var(--soft); line-height: 1.5; padding-left: 26px; position: relative; }
.fit-card.good li::before { content: "✓"; color: var(--green-2); position: absolute; left: 0; font-weight: 900; }
.fit-card.bad li::before { content: "×"; color: var(--red); position: absolute; left: 0; font-weight: 900; }
.mobile-sticky-cta { display: none; }
@media (max-width: 1020px) {
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid, .fit-columns { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .framework-grid { grid-template-columns: 1fr; }
  .mobile-sticky-cta {
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60;
    display: flex; align-items: center; justify-content: center; min-height: 52px;
    border-radius: 999px; color: #04110d; font-weight: 900;
    background: linear-gradient(135deg, var(--green-2), #d7fff2);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }
  .site-footer { padding-bottom: 92px; }
}


/* Single angle landing page: stop-entry-feeling */
.angle-hero { padding-top: 54px; overflow: hidden; }
.angle-hero-grid { display: grid; grid-template-columns: .92fr .78fr; gap: 46px; align-items: center; }
.angle-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.angle-proof-card { padding: 22px; border: 1px solid var(--border-2); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.angle-proof-card b { color: var(--green-2); display: block; margin-bottom: 8px; }
.angle-story-card { padding: 30px; border: 1px solid rgba(0,255,194,.22); border-radius: var(--radius); background: linear-gradient(135deg, rgba(0,255,194,.10), rgba(255,255,255,.035)); box-shadow: var(--shadow); }
.angle-story-card ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.angle-story-card li { color: var(--soft); padding-left: 28px; position: relative; line-height: 1.6; }
.angle-story-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-2); font-weight: 900; }
@media (max-width: 1020px) { .angle-hero-grid { grid-template-columns: 1fr; } .angle-proof-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .angle-hero { padding-top: 96px; } .angle-hero h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); } }

/* Stop-entry-feeling landing visual: chart mockup, not 4:5 ad creative */
.angle-chart-window img { width: 100%; aspect-ratio: 1600 / 889; object-fit: cover; }
.angle-visual .chart-window { max-width: 620px; margin-left: auto; }
@media (max-width: 1020px) { .angle-visual .chart-window { margin: 0 auto; } }


/* Conversion polish for stop-entry-feeling */
.included-section { padding-top: 58px; padding-bottom: 58px; }
.included-card {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: center;
  padding: 32px; border: 1px solid rgba(0,255,194,.20); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,255,194,.08), rgba(255,255,255,.035));
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
}
.included-card h2 { font-size: clamp(1.9rem, 3vw, 3.25rem); margin-bottom: 12px; }
.included-card p { margin-bottom: 0; }
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.included-grid div { padding: 16px; border: 1px solid var(--border-2); border-radius: var(--radius-sm); background: rgba(0,0,0,.20); }
.included-grid b { display: block; color: var(--green-2); margin-bottom: 7px; font-size: .82rem; }
.included-grid span { color: var(--soft); line-height: 1.5; }
@media (min-width: 761px) {
  .angle-hero.section-pad { padding-bottom: 64px; }
  #problem.section-pad, #cara-kerja.section-pad, .demo-section.section-pad, .pricing-section.section-pad, #faq.section-pad { padding-top: 70px; padding-bottom: 70px; }
}
@media (max-width: 1020px) { .included-card, .included-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .included-section { padding-top: 44px; padding-bottom: 44px; }
  .included-card { padding: 22px; }
}

/* Feature explanation section for angle page */
.angle-features-section { padding-top: 64px; padding-bottom: 64px; }
.angle-feature-grid .feature-card p { font-size: .92rem; }
@media (max-width: 760px) {
  .site-header { background: rgba(4,8,11,.88); border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0 0 18px 18px; padding-left: 10px; padding-right: 10px; }
  .angle-features-section { padding-top: 50px; padding-bottom: 50px; }
  .angle-chart-window img { min-height: 260px; object-fit: cover; }
}


/* Mobile polish for included section */
.included-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.included-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.22);
}
.included-item b {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #04110d;
  background: var(--green-2);
  font-size: .78rem;
  font-weight: 950;
  flex-shrink: 0;
}
.included-item span { color: var(--soft); line-height: 1.45; font-size: .95rem; }
@media (max-width: 1020px) { .included-list { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .included-section { padding-top: 30px; padding-bottom: 30px; }
  .included-card { display: block; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .included-card h2 { font-size: clamp(2rem, 9.5vw, 2.8rem); line-height: 1.02; letter-spacing: -.055em; margin-bottom: 18px; }
  .included-card p { font-size: 1.02rem; line-height: 1.58; margin-bottom: 22px; }
  .included-list { gap: 10px; }
  .included-item { padding: 14px; border-radius: 16px; background: rgba(255,255,255,.045); }
  .included-item b { width: 30px; height: 30px; font-size: .72rem; }
  .included-item span { font-size: .94rem; }
  .pricing-section.section-pad { padding-top: 42px; }
}


/* UX conversion polish: compact compliance, stronger proof, readable mobile */
.landing-safety-section, .no-robot-section { display: none; }
.landing-demo-section { padding-top: 70px; padding-bottom: 76px; }
.value-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.value-proof-grid div {
  padding: 16px 18px;
  border: 1px solid rgba(0,255,194,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.value-proof-grid b { display:block; color:#fff; font-size:.98rem; margin-bottom:5px; }
.value-proof-grid span { color: var(--soft); font-size:.94rem; line-height:1.5; }
.footer-disclaimer p { font-size: .82rem; line-height: 1.55; color: rgba(255,255,255,.55); max-width: 360px; }
.footer-disclaimer b { font-size: .86rem; color: rgba(255,255,255,.82); }
.pricing-note { font-size: .98rem; }
.feature-list li, .clean-list li, .pain-list span { font-size: .98rem; }

@media (max-width: 1020px) {
  .value-proof-grid { grid-template-columns: 1fr; }
  .landing-demo-section { padding-top: 54px; padding-bottom: 58px; }
}
@media (max-width: 760px) {
  h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); line-height: .98; letter-spacing: -.055em; }
  h2 { font-size: clamp(2rem, 8.7vw, 2.85rem); line-height: 1.03; letter-spacing: -.055em; }
  p, .hero-subtitle, .hero-note, .section-heading p { font-size: 1rem; line-height: 1.62; }
  .section-pad { padding-top: 58px; padding-bottom: 58px; }
  .comparison { height: min(430px, 86vw); border-radius: 22px; }
  .comparison-image span { top: 12px; left: 12px; font-size: .72rem; padding: 7px 9px; }
  .comparison-after span { right: 12px; left: auto; }
  .comparison-line::after { width: 44px; height: 44px; font-size: 1.05rem; }
  .value-proof-grid { margin-top: 14px; gap: 10px; }
  .value-proof-grid div { padding: 14px; border-radius: 16px; }
  .value-proof-grid b { font-size: .94rem; }
  .value-proof-grid span { font-size: .9rem; }
  .price-card { padding: 22px; }
  .price { font-size: clamp(2.1rem, 10vw, 3rem); }
  .feature-list li { font-size: .96rem; line-height: 1.48; }
  .footer-disclaimer p { font-size: .76rem; line-height: 1.45; }
}


/* Flow fix: early product proof + clean mobile value bullets */
.value-proof-grid {
  align-items: stretch;
}
.value-proof-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-areas: "icon title" "icon body";
  column-gap: 12px;
  row-gap: 4px;
  padding: 18px 18px;
  border: 1px solid rgba(0,255,194,.2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.value-proof-card .proof-icon {
  grid-area: icon;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #03110e;
  background: var(--green);
  font-weight: 900;
  line-height: 1;
}
.value-proof-card h3 {
  grid-area: title;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.value-proof-card p {
  grid-area: body;
  margin: 0;
  color: var(--soft);
  font-size: .94rem;
  line-height: 1.5;
}
/* Override older value-proof div rules if cached/order conflicts */
.value-proof-grid > div { display: none; }
.landing-depth-section .strip-grid div {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025);
  padding: 18px;
}
.landing-depth-section .strip-grid strong { color: var(--green); font-size: 1.1rem; }
.landing-depth-section .strip-grid span { line-height: 1.48; }
@media (max-width: 760px) {
  .landing-demo-section { padding-top: 44px; padding-bottom: 50px; }
  .value-proof-card {
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    padding: 14px 14px;
    border-radius: 16px;
  }
  .value-proof-card .proof-icon { width: 25px; height: 25px; font-size: .82rem; }
  .value-proof-card h3 { font-size: .98rem; line-height: 1.2; }
  .value-proof-card p { font-size: .91rem; line-height: 1.46; }
  .landing-depth-section .strip-grid { gap: 12px; }
  .landing-depth-section .strip-grid div { padding: 16px; }
}
