*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0b0b16; --ink-soft: #36364a; --ink-muted: #767690;
  --bg: #ffffff; --bg-soft: #f5f5fa; --bg-subtle: #ececf6;
  --accent: #2756ff; --accent-dark: #1640e8; --accent-light: #ecefff; --accent-mid: #b8c4ff;
  --green: #0fa860; --green-light: #e8faf3;
  --amber: #f59e0b; --amber-light: #fff8e7;
  --red: #ef4444; --red-light: #fef2f2;
  --border: #e0e0ec; --border-soft: #ebebf5;
  --sh-sm: 0 1px 4px rgba(11,11,30,.05), 0 2px 10px rgba(11,11,30,.04);
  --sh-md: 0 4px 20px rgba(11,11,30,.08), 0 1px 4px rgba(11,11,30,.04);
  --sh-lg: 0 12px 48px rgba(11,11,30,.12), 0 2px 8px rgba(11,11,30,.05);
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 28px;
  --fh: 'Sora', sans-serif; --fb: 'DM Sans', sans-serif;
  --w: 1160px; --sp: 108px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: var(--w); margin: 0 auto; padding: 0 28px; }
h1, h2, h3 { font-family: var(--fh); font-weight: 700; color: var(--ink); line-height: 1.14; }
h1 { font-size: clamp(34px, 4.8vw, 58px); letter-spacing: -.038em; }
h2 { font-size: clamp(27px, 3.4vw, 40px); letter-spacing: -.028em; }
h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }
p { color: var(--ink-soft); font-size: 16px; line-height: 1.78; }
a { text-decoration: none; color: inherit; }

.eyebrow { display: inline-block; font-family: var(--fb); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 16px; background: var(--accent-light); color: var(--accent); }
.eyebrow-red   { background: var(--red-light); color: var(--red); }
.eyebrow-green { background: var(--green-light); color: var(--green); }
.eyebrow-dark  { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 13px 24px; border-radius: var(--r-sm); font-family: var(--fb); font-size: 15px; font-weight: 500; border: none; cursor: pointer; transition: all .17s ease; white-space: nowrap; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-xl { padding: 17px 36px; font-size: 17px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(39,86,255,.32); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent-mid); }
.btn-outline:hover { background: var(--accent-light); border-color: var(--accent); }

.section-head { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); animation: fadeIn .4s ease both; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14.5px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border); padding: 8px 28px 20px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 13px 0; font-size: 15px; color: var(--ink-soft); border-bottom: 1px solid var(--bg-soft); }
.mobile-nav a:last-child { border-bottom: none; }

/* HERO */
.hero { padding: 96px 0 88px; background: var(--bg); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 900px 600px at 78% 15%, rgba(39,86,255,.048) 0%, transparent 65%), radial-gradient(ellipse 500px 400px at 4% 85%, rgba(39,86,255,.028) 0%, transparent 65%); }
.hero-grid { display: grid; grid-template-columns: 52% 48%; gap: 52px; align-items: start; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; background: var(--red-light); color: var(--red); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 50px; margin-bottom: 28px; animation: fadeUp .5s .1s ease both; }
.hero h1 { margin-bottom: 24px; animation: fadeUp .5s .18s ease both; line-height: 1.1; }
br.hero-br { display: none; }
@media (min-width: 769px) { br.hero-br { display: block; } }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--ink-soft); max-width: 500px; margin-bottom: 16px; line-height: 1.7; animation: fadeUp .5s .26s ease both; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; animation: fadeUp .5s .34s ease both; }
.hero-hint { margin-top: 10px; font-size: 13px; color: var(--ink-muted); animation: fadeUp .5s .38s ease both; }
.hero-stats { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 0; animation: fadeUp .5s .44s ease both; }
.hero-stat { padding-right: 36px; border-right: 1px solid var(--border); margin-right: 36px; }
.hero-stat:last-child { padding-right: 0; border-right: none; margin-right: 0; }
.hero-stat strong { display: block; font-family: var(--fh); font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.022em; margin-bottom: 2px; white-space: nowrap; }
.hero-stat span { font-size: 13px; color: var(--ink-muted); white-space: nowrap; }
.hero-visual { position: relative; animation: fadeUp .55s .2s ease both; padding-top: 10px; }

/* HERO MOCK */
.hero-mock { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; user-select: none; }
.hm-topbar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 11px 16px; display: flex; align-items: center; gap: 10px; }
.hm-dots { display: flex; gap: 6px; }
.hm-dot { width: 10px; height: 10px; border-radius: 50%; }
.hm-dot-r { background: #ff5f57; } .hm-dot-y { background: #febc2e; } .hm-dot-g { background: #28c840; }
.hm-topbar-title { font-family: var(--fh); font-size: 12px; font-weight: 600; color: var(--ink-muted); margin-left: 8px; letter-spacing: .01em; }
.hm-body { display: grid; grid-template-columns: 180px 1fr; height: 380px; }
.hm-sidebar { background: #fafafa; border-right: 1px solid var(--border); padding: 16px 0; display: flex; flex-direction: column; gap: 2px; }
.hm-sidebar-label { font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-muted); padding: 6px 16px 4px; }
.hm-nav-item { display: flex; align-items: center; gap: 8px; padding: 7px 14px; font-size: 12px; color: var(--ink-muted); border-radius: 6px; margin: 0 6px; cursor: default; }
.hm-nav-item.active { background: var(--accent-light); color: var(--accent); font-weight: 600; }
.hm-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.hm-main { padding: 18px; overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.hm-header { display: flex; align-items: center; justify-content: space-between; }
.hm-title { font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--ink); }
.hm-badge { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 50px; background: var(--green-light); color: var(--green); }
.hm-section-label { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.hm-rule-builder { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.hm-condition { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hm-condition:last-child { margin-bottom: 0; }
.hm-cond-label { font-size: 10px; font-weight: 600; color: var(--ink-muted); width: 28px; flex-shrink: 0; }
.hm-cond-field { background: #fff; border: 1px solid var(--border); border-radius: 5px; padding: 5px 9px; font-size: 11px; color: var(--ink-soft); font-weight: 500; }
.hm-cond-op { font-size: 10px; color: var(--ink-muted); }
.hm-cond-val { background: var(--accent-light); border: 1px solid var(--accent-mid); border-radius: 5px; padding: 5px 9px; font-size: 11px; color: var(--accent); font-weight: 600; }
.hm-connector { display: flex; align-items: center; gap: 6px; margin: 6px 0 6px 8px; }
.hm-connector-line { width: 1px; height: 10px; background: var(--border); }
.hm-connector-label { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: var(--accent-light); padding: 2px 6px; border-radius: 3px; }
.hm-effect { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.hm-effect-icon { width: 30px; height: 30px; border-radius: 6px; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hm-effect-icon svg { width: 14px; height: 14px; color: var(--green); }
.hm-effect-label { font-size: 12px; color: var(--ink-soft); }
.hm-effect-label strong { color: var(--ink); font-weight: 600; display: block; font-size: 13px; margin-bottom: 1px; }
.hm-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.hm-metric { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.hm-metric-val { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.hm-metric-val.green { color: var(--green); } .hm-metric-val.blue { color: var(--accent); }
.hm-metric-label { font-size: 10px; color: var(--ink-muted); margin-top: 2px; }

/* CAMPAIGNS LIST VIEW (hero mockup) */
.hm-period { font-size: 10.5px; color: var(--ink-muted); background: var(--bg-soft); border: 1px solid var(--border); padding: 4px 10px; border-radius: 50px; font-weight: 500; }
.hm-camp-summary { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; padding: 12px 14px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; }
.hm-summary-stat { text-align: left; }
.hm-summary-stat strong { font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--ink); display: block; letter-spacing: -.02em; }
.hm-summary-stat strong.green { color: var(--green); }
.hm-summary-stat strong.blue { color: var(--accent); }
.hm-summary-stat span { font-size: 9.5px; color: var(--ink-muted); margin-top: 2px; display: block; letter-spacing: .02em; }
.hm-camp-list { display: flex; flex-direction: column; gap: 6px; flex: 1; min-height: 0; }
.hm-camp-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: #fff; border: 1px solid var(--border); border-radius: 8px; gap: 10px; transition: border-color .15s; }
.hm-camp-item:hover { border-color: var(--accent-mid); }
.hm-camp-info { flex: 1; min-width: 0; overflow: hidden; }
.hm-camp-name { font-family: var(--fh); font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-camp-meta { font-size: 10px; color: var(--ink-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-camp-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hm-camp-status { font-size: 8.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 3px 8px; border-radius: 50px; }
.hm-camp-status.running { background: var(--green-light); color: var(--green); }
.hm-camp-status.scheduled { background: var(--amber-light); color: var(--amber); }
.hm-camp-status.ended { background: var(--bg-subtle); color: var(--ink-muted); }
.hm-camp-metric { font-family: var(--fh); font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; min-width: 48px; text-align: right; }
.hm-camp-metric.muted { color: var(--ink-muted); font-weight: 500; }

.float-pill { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px 16px; box-shadow: var(--sh-md); display: flex; align-items: center; gap: 10px; z-index: 2; animation: floatUp 4s ease-in-out infinite; }
.fp-top { top: -16px; right: -14px; } .fp-bottom { bottom: -16px; left: -16px; animation-delay: 2s; }
.fp-icon { width: 32px; height: 32px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fp-icon-g { background: var(--green-light); } .fp-icon-b { background: var(--accent-light); }
.fp-text strong { display: block; font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.fp-text span { font-size: 11.5px; color: var(--ink-muted); }

/* PROBLEM */
.problem { padding: var(--sp) 0; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prob-card-wide { grid-column: auto; max-width: none; justify-self: auto; }
.prob-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px 28px; position: relative; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.prob-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--r-md) var(--r-md) 0 0; background: var(--border-soft); transition: background .2s; }
.prob-card:hover::after { background: var(--red); }
.prob-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.prob-num { font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
.prob-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.28; }
.prob-card p { font-size: 14.5px; line-height: 1.7; }

/* CAPABILITIES */
.capabilities { padding: var(--sp) 0; }
.cap-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cap-list { display: flex; flex-direction: column; gap: 13px; }
.cap-item { display: flex; gap: 18px; padding: 24px 22px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); transition: box-shadow .18s, background .18s; }
.cap-item:hover { box-shadow: var(--sh-md); background: #fff; }
.cap-num { font-family: var(--fh); font-size: 13px; font-weight: 700; color: var(--accent); flex-shrink: 0; padding-top: 2px; min-width: 22px; }
.cap-item h3 { font-size: 16px; margin-bottom: 6px; }
.cap-item p { font-size: 13.5px; line-height: 1.68; }
.cap-visual { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 14px; }

/* HOW IT WORKS */
.how { padding: var(--sp) 0; background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-bottom: 52px; }
.steps::before { content: ''; position: absolute; top: 34px; left: calc(16.7% + 18px); right: calc(16.7% + 18px); height: 1px; background: var(--accent-mid); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 22px; position: relative; z-index: 1; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 20px; font-weight: 700; margin-bottom: 26px; box-shadow: 0 4px 16px rgba(39,86,255,.32); flex-shrink: 0; transition: transform .2s; }
.step:hover .step-num { transform: scale(1.06); }
.step h3 { margin-bottom: 9px; font-size: 17px; }
.step p { font-size: 14px; line-height: 1.7; }
.how-screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.how-screen { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-sm); background: #fff; transition: box-shadow .2s, transform .2s; }
.how-screen:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.how-screen-label { padding: 11px 15px; font-size: 13px; font-weight: 500; color: var(--ink-soft); border-top: 1px solid var(--border); }

/* USE CASES */
.use-cases { padding: var(--sp) 0; }
.uc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.uc-content h2 { margin-bottom: 14px; }
.uc-content > p { margin-bottom: 30px; }
.uc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.uc-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); transition: box-shadow .18s, background .18s; }
.uc-item:hover { box-shadow: var(--sh-md); background: #fff; }
.uc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.uc-item strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.uc-item span { font-size: 13px; color: var(--ink-muted); line-height: 1.58; }
.uc-visual { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 84px; align-self: start; }

/* PRICING */
.pricing { padding: var(--sp) 0; background: var(--bg-soft); }
.pricing-box { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 64px 60px; text-align: center; box-shadow: var(--sh-md); }
.pricing-box > p { max-width: 460px; margin: 0 auto 40px; font-size: 17px; line-height: 1.72; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; align-items: stretch; }
.pricing-item { padding: 26px 22px; text-align: left; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); transition: border-color .18s, box-shadow .18s; display: flex; flex-direction: column; gap: 0; }
.pricing-item:hover { border-color: var(--accent-mid); box-shadow: var(--sh-sm); }
.pricing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-bottom: 14px; }
.pricing-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.pricing-item span { font-size: 13px; color: var(--ink-muted); line-height: 1.65; }
.pricing-ctas { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.pricing-note { margin-top: 0; font-size: 13px; color: var(--ink-muted); }

/* FINAL CTA */
.final { padding: var(--sp) 0; background: var(--ink); position: relative; overflow: hidden; }
.final::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 680px 440px at 12% 50%, rgba(39,86,255,.25) 0%, transparent 62%), radial-gradient(ellipse 520px 420px at 88% 58%, rgba(39,86,255,.17) 0%, transparent 62%); }
.final-inner { text-align: center; position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.final h2 { color: #fff; margin-bottom: 16px; font-size: clamp(28px, 3.8vw, 44px); }
.final p { color: rgba(255,255,255,.56); font-size: 17px; margin-bottom: 36px; line-height: 1.72; }
.final-ctas { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.final .btn-primary { padding: 17px 36px; font-size: 17px; }
.final-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.32); }

/* FOOTER */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.07); padding: 32px 0 28px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.footer-brand { max-width: 280px; }
.footer-logo { margin-bottom: 12px; display: flex; align-items: center; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.36); line-height: 1.65; }
.footer-cols { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.27); margin-bottom: 4px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.48); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-copy { width: 100%; padding-top: 20px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: rgba(255,255,255,.26); }
.footer-shuru-link { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-shuru-link:hover { color: #fff; }

/* RULE BUILDER */
.rb-ui { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; user-select: none; }
.rb-header { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 14px 18px; }
.rb-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.rb-badge-live { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--green-light); color: var(--green); padding: 2px 8px; border-radius: 50px; }
.rb-campaign-name { font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--ink); }
.rb-meta { font-size: 11.5px; color: var(--ink-muted); }
.rb-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.rb-label { font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.rb-cond { display: flex; align-items: center; gap: 7px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 7px 11px; margin-bottom: 2px; }
.rb-tag { font-size: 9.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; }
.rb-tag.if { background: var(--accent-light); color: var(--accent); }
.rb-tag.and { background: #fff3e0; color: #e65100; font-size: 9px; padding: 2px 6px; }
.rb-field { font-size: 12px; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--border); border-radius: 5px; padding: 3px 9px; flex-shrink: 0; }
.rb-op { font-size: 11px; color: var(--ink-muted); flex-shrink: 0; }
.rb-val { font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent-light); border: 1px solid var(--accent-mid); border-radius: 5px; padding: 3px 9px; flex-shrink: 0; }
.rb-branch-line { display: flex; align-items: center; gap: 6px; padding: 2px 0 2px 18px; margin-bottom: 2px; }
.rb-and-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.rb-effect-row { display: flex; align-items: center; gap: 10px; background: var(--green-light); border: 1px solid #c8f0dc; border-radius: 8px; padding: 10px 12px; }
.rb-effect-icon { width: 28px; height: 28px; border-radius: 6px; background: #0fa860; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.rb-effect-text strong { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.rb-effect-text span { font-size: 11.5px; color: var(--ink-muted); }
.rb-metrics-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 2px; }
.rb-metric-chip { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; text-align: center; }
.rb-metric-chip.green .rbm-val { color: var(--green); }
.rb-metric-chip.blue .rbm-val { color: var(--accent); }
.rbm-val { display: block; font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.rbm-label { font-size: 10px; color: var(--ink-muted); margin-top: 1px; display: block; }
.rb-sub-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow: hidden; }
.rb-sub-title { font-size: 11px; font-weight: 600; color: var(--ink-muted); padding: 10px 14px; border-bottom: 1px solid var(--border-soft); background: var(--bg-soft); }
.rb-coupon-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; border-bottom: 1px solid var(--border-soft); font-size: 12px; }
.rb-coupon-row:last-child { border-bottom: none; }
.rb-code { font-family: 'Courier New', monospace; font-size: 12px; color: var(--ink); letter-spacing: .04em; }
.rb-coupon-used { font-size: 10px; font-weight: 600; color: var(--ink-muted); background: var(--bg-subtle); padding: 2px 7px; border-radius: 4px; }
.rb-coupon-active { font-size: 10px; font-weight: 600; color: var(--green); background: var(--green-light); padding: 2px 7px; border-radius: 4px; }

/* CAMPAIGN VARIANTS */
.cv-ui { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; display: flex; user-select: none; }
.cv-left { flex: 1; padding: 16px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.cv-section-label { font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.cv-variant { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 9px; border: 1.5px solid var(--border); background: var(--bg-soft); cursor: default; }
.cv-variant:has(.best) { border-color: var(--accent); background: var(--accent-light); }
.cv-var-radio { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; position: relative; background: #fff; }
.cv-var-radio.selected::after { content: ''; position: absolute; inset: 2px; background: var(--ink-muted); border-radius: 50%; }
.cv-var-radio.best::after { background: var(--accent); }
.cv-var-body { flex: 1; }
.cv-var-pct { font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--ink); }
.cv-var-pct.best-pct { color: var(--accent); }
.cv-var-detail { font-size: 11px; color: var(--ink-muted); margin-top: 1px; }
.cv-var-tag { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 50px; flex-shrink: 0; }
.cv-var-tag.active { background: var(--green-light); color: var(--green); }
.cv-var-tag.best-tag { background: var(--accent); color: #fff; }
.cv-var-tag.draft { background: var(--bg-subtle); color: var(--ink-muted); }
.cv-stats-row { display: flex; gap: 10px; margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--border-soft); }
.cv-stat { flex: 1; }
.cv-stat-val { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.cv-stat-val.green { color: var(--green); }
.cv-stat-lbl { font-size: 10px; color: var(--ink-muted); margin-top: 1px; }
.cv-right { width: 160px; padding: 16px; flex-shrink: 0; }
.cv-product-card { display: flex; flex-direction: column; gap: 10px; }
.cv-product-img { border-radius: 10px; overflow: hidden; aspect-ratio: 1; background: linear-gradient(135deg, #ecefff 0%, #dde4ff 100%); display: flex; align-items: center; justify-content: center; }
.cv-product-img-inner { width: 60%; height: 60%; background: linear-gradient(145deg, #b8c4ff 0%, #2756ff 100%); border-radius: 8px; opacity: .7; }
.cv-product-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.cv-product-price-row { display: flex; align-items: center; gap: 6px; }
.cv-orig-price { font-size: 11px; color: var(--ink-muted); text-decoration: line-through; }
.cv-sale-price { font-size: 14px; font-weight: 700; color: var(--ink); font-family: var(--fh); }
.cv-best-deal-banner { font-size: 10px; font-weight: 600; color: var(--accent); background: var(--accent-light); border: 1px solid var(--accent-mid); padding: 3px 7px; border-radius: 4px; text-align: center; }
.cv-coupon-applied { display: flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 500; color: var(--green); }
.cv-cta-btn { width: 100%; padding: 9px; background: var(--accent); color: #fff; border: none; border-radius: 7px; font-size: 12px; font-weight: 600; font-family: var(--fb); cursor: default; }

/* HOW IT WORKS SCREENS */
.hs-inner { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 148px; }
.hs-blue { background: var(--accent-light); }
.hs-green { background: var(--green-light); }
.hs-neutral { background: var(--bg-soft); }
.hs-chip-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hs-chip { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 7px; border-radius: 5px; flex-shrink: 0; }
.hs-chip-if { background: var(--accent); color: #fff; }
.hs-chip-val { background: #fff; color: var(--accent); border: 1px solid var(--accent-mid); font-size: 11px; padding: 3px 8px; border-radius: 5px; font-weight: 600; }
.hs-chip-field { font-size: 11.5px; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--border); padding: 3px 8px; border-radius: 5px; }
.hs-chip-op { font-size: 11px; color: var(--ink-muted); }
.hs-and-row { display: flex; align-items: center; gap: 6px; padding-left: 4px; }
.hs-and-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-mid); flex-shrink: 0; }
.hs-and-label { font-size: 9.5px; font-weight: 700; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; background: var(--accent-light); border: 1px solid var(--accent-mid); padding: 1px 6px; border-radius: 3px; }
.hs-effect-strip { display: flex; align-items: center; gap: 6px; background: var(--green-light); border: 1px solid #c8f0dc; border-radius: 6px; padding: 7px 10px; font-size: 11.5px; color: #0a6e3e; margin-top: 4px; }
.hs-activate-card { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #c8f0dc; border-radius: 10px; padding: 12px 14px; }
.hs-activate-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.hs-activate-text { flex: 1; }
.hs-activate-text strong { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.hs-activate-text span { font-size: 11px; color: var(--ink-muted); }
.hs-activate-badge { font-size: 10px; font-weight: 700; color: var(--green); background: #fff; border: 1px solid #c8f0dc; padding: 3px 8px; border-radius: 50px; flex-shrink: 0; }
.hs-timeline-row { display: flex; align-items: center; padding: 0 8px; margin-top: 4px; }
.hs-tl-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--border); background: #fff; flex-shrink: 0; }
.hs-tl-dot.done { background: var(--green); border-color: var(--green); }
.hs-tl-dot.active { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.hs-tl-line { flex: 1; height: 2px; background: var(--green); margin: 0 2px; }
.hs-timeline-labels { display: flex; justify-content: space-between; padding: 0 4px; font-size: 10px; color: var(--ink-muted); }
.hs-metrics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.hs-metric-block { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 9px 10px; }
.hs-met-val { font-family: var(--fh); font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.hs-met-val.green { color: var(--green); } .hs-met-val.blue { color: var(--accent); }
.hs-met-label { font-size: 10px; color: var(--ink-muted); margin-top: 1px; }
.hs-met-trend { font-size: 10px; margin-top: 2px; }
.hs-met-trend.up { color: var(--green); }
.hs-met-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 4px; overflow: hidden; }
.hs-met-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.hs-sparkline { margin-top: 4px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  :root { --sp: 84px; }
  .uc-visual { position: static; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .prob-card-wide { grid-column: 1 / -1; max-width: none; justify-self: auto; }
  .cap-layout { grid-template-columns: 1fr; gap: 36px; }
  .cap-visual { position: static; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step { flex-direction: row; text-align: left; gap: 20px; }
  .step-num { margin-bottom: 0; flex-shrink: 0; }
  .how-screens { grid-template-columns: 1fr; }
  .uc-layout { grid-template-columns: 1fr; gap: 44px; }
  .pricing-box { padding: 48px 40px; }
  .hm-body { height: 320px; }
}

@media (max-width: 768px) {
  :root { --sp: 68px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn-primary { padding: 10px 18px; font-size: 14px; }
  .hero { padding: 58px 0 52px; }
  .float-pill { display: none; }
  .hero-stats { gap: 0; }
  .hero-stat { padding-right: 20px; margin-right: 20px; }
  .hero-stat strong { font-size: 18px; }
  .problem-grid { grid-template-columns: 1fr; }
  .prob-card-wide { max-width: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-box { padding: 36px 24px; }
  .footer-cols { gap: 28px; }
  .footer-inner { flex-direction: column; }
  .hm-body { grid-template-columns: 1fr; }
  .hm-sidebar { display: none; }
  .cv-ui { flex-direction: column; }
  .cv-right { width: 100%; }
  .footer-copy { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .final-ctas { flex-direction: column; }
  .pricing-ctas { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr; gap: 0; }
  .hero-stat { padding-right: 0; border-right: none; margin-right: 0; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-stat strong { font-size: 15px; white-space: normal; }
}

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