/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #1e293b; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== Design tokens ===== */
:root {
  --pink:     #E0287A;
  --purple:   #6B21A8;
  --dark:     #080C1E;
  --mid-dark: #12082A;
  --text:     #1e293b;
  --muted:    #64748b;
  --border:   #e2e8f0;
  --surface:  #F8FAFC;
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --shadow:    0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
}

/* ===== Utilities ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.grad { background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* pill badge */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.badge-pink  { background: rgba(224,40,122,.12); border: 1px solid rgba(224,40,122,.3); color: var(--pink); }
.badge-live  { background: rgba(224,40,122,.12); border: 1px solid rgba(224,40,122,.3); color: #f472b6; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, opacity .15s; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; box-shadow: 0 8px 28px rgba(224,40,122,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(224,40,122,.45); }
.btn-outline { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.25); }
.btn-outline:hover { background: rgba(255,255,255,.14); border-color: rgba(224,40,122,.5); }
.btn-outline-dark { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--pink); color: var(--pink); }

/* check items */
.check-row { display: flex; flex-wrap: wrap; gap: 20px; }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #94a3b8; }
.check-icon { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: rgba(34,197,94,.15); display: flex; align-items: center; justify-content: center; }

/* ===== Animations ===== */
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.35} }
.pulse { animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes scroll-ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo-fallback { display: none; font-size: 20px; font-weight: 900; color: var(--text); letter-spacing: -.03em; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: #475569; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login { display: none; font-size: 14px; font-weight: 600; color: #475569; padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--border); transition: border-color .15s, color .15s; }
.nav-login:hover { border-color: var(--pink); color: var(--pink); }

@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-login  { display: inline-flex; }
}

/* ===== HERO (home) ===== */
.hero {
  background: linear-gradient(160deg, #100624 0%, #0d0f26 55%, #080C1E 100%);
  position: relative; overflow: hidden;
  padding: 64px 0 0;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,40,122,.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 40px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,33,168,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 2; padding-bottom: 64px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; padding-bottom: 80px; }
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; color: #fff; }
.hero-h1 .line-sales  { color: var(--pink); }
.hero-h1 .line-rev    { -webkit-text-fill-color: transparent; background: linear-gradient(135deg, #a855f7, #7C2288); -webkit-background-clip: text; background-clip: text; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: #94a3b8; line-height: 1.65; max-width: 500px; }
.hero-device-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hero-device-pills span.label { font-size: 12px; color: #64748b; font-weight: 500; }
.dpill { padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.dpill-active { background: rgba(224,40,122,.18); border: 1px solid rgba(224,40,122,.45); color: #f9a8d4; }
.dpill-muted  { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); color: #cbd5e1; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-wave { display: block; width: 100%; margin-bottom: -4px; position: relative; z-index: 2; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #100624 0%, #0d0f26 55%, #080C1E 100%);
  position: relative; overflow: hidden;
  padding: 72px 0 88px;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; left: -80px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,40,122,.16) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,33,168,.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1.08; margin-bottom: 16px; }
.page-hero p.lead { font-size: clamp(15px, 2vw, 18px); color: #94a3b8; line-height: 1.65; max-width: 560px; }
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero-wave { display: block; width: 100%; margin-bottom: -4px; position: relative; z-index: 2; margin-top: 88px; }

/* ===== SHOWCASE (home hero device mock) ===== */
.showcase-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; position: relative; }
.store-backdrop {
  background: linear-gradient(150deg, #1a1035, #12082a, #0a0d20);
  border-radius: 24px; padding: 28px 24px 0;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  width: 100%; max-width: 420px; overflow: hidden; position: relative;
}
.store-shelf-row { display: grid; grid-template-columns: 52px 1fr 72px; gap: 12px; align-items: end; margin-bottom: 20px; }
.shelf-left { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.shelf-bar  { height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; }
.shelf-items { display: flex; gap: 3px; }
.shelf-item { border-radius: 3px; }
.counter-right { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.plant-pot { width: 100%; display: flex; justify-content: center; margin-bottom: 4px; }
.till-unit { background: rgba(30,30,46,.9); border-radius: 8px; padding: 10px 8px; border: 1px solid rgba(255,255,255,.1); width: 100%; }
.till-card { width: 28px; height: 18px; border-radius: 4px; background: linear-gradient(135deg,rgba(224,40,122,.45),rgba(107,33,168,.55)); margin: 0 auto 5px; }
.till-line { height: 2px; background: rgba(255,255,255,.12); border-radius: 1px; margin: 0 4px 3px; }
.counter-surface { height: 14px; background: linear-gradient(180deg,#92400e,#78350f); border-radius: 6px; width: 100%; }

.tv-column { display: flex; flex-direction: column; align-items: center; }
.tv-wall-arm { width: 3px; height: 14px; background: rgba(255,255,255,.22); border-radius: 2px; margin-bottom: 4px; }
.tv-frame { background: #0a0a16; border: 3px solid #1c1c30; border-radius: 10px; padding: 5px; box-shadow: 0 0 0 1px #08081a, 0 20px 60px rgba(0,0,0,.8), 0 0 40px rgba(224,40,122,.1); width: 100%; }
.tv-statusbar { background: #0d0d1e; border-radius: 5px 5px 0 0; padding: 5px 10px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.05); }
.tv-statusbar-left  { display: flex; align-items: center; gap: 6px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.tv-live-text { font-size: 9px; font-weight: 700; color: #e2e8f0; letter-spacing: .07em; }
.tv-brand-text { font-size: 9px; font-weight: 800; color: var(--pink); }
.tv-screen { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 0 0 5px 5px; background: #0f0f1c; }
.slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .75s ease; display: flex; flex-direction: column; overflow: hidden; }
.slide.active { opacity: 1; }

.s1 { background: #111827; flex-direction: column; }
.s1-header { background: linear-gradient(135deg, #E0287A, #be185d); padding: 10px 14px 8px; display: flex; align-items: center; justify-content: space-between; }
.s1-header-tag { font-size: 8px; font-weight: 800; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .12em; }
.s1-header-day { font-size: 8px; font-weight: 700; color: rgba(255,255,255,.7); }
.s1-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 12px 14px 8px; text-align: center; }
.s1-product { font-size: 11px; font-weight: 700; color: #9ca3af; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.s1-name { font-size: 20px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.s1-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.s1-price { font-size: 54px; font-weight: 900; color: #E0287A; line-height: 1; letter-spacing: -.02em; }
.s1-was { font-size: 13px; color: #6b7280; text-decoration: line-through; font-weight: 500; }
.s1-saving { background: #E0287A; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .06em; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; }
.s1-ring { position: absolute; width: 130px; height: 130px; border-radius: 50%; border: 16px solid rgba(224,40,122,.08); top: 50%; left: 50%; transform: translate(-50%, -54%); }
.s1-footer { background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.06); padding: 8px 14px; display: flex; align-items: center; justify-content: space-between; }
.s1-footer-note { font-size: 9px; color: #6b7280; font-weight: 500; }
.s1-footer-cta  { font-size: 9px; font-weight: 800; color: #E0287A; text-transform: uppercase; letter-spacing: .08em; }

.s2 { background: #fffbf5; flex-direction: column; }
.s2-top { background: linear-gradient(135deg, #f59e0b, #ef4444); padding: 14px 14px 12px; position: relative; overflow: hidden; }
.s2-circle1 { position: absolute; top: -24px; right: -24px; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.15); }
.s2-circle2 { position: absolute; bottom: -14px; left: 20px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); }
.s2-season { font-size: 8px; font-weight: 800; color: rgba(255,255,255,.8); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 3px; position: relative; z-index: 1; }
.s2-headline { font-size: 24px; font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -.01em; position: relative; z-index: 1; }
.s2-body { flex: 1; display: flex; flex-direction: column; padding: 12px 14px 10px; }
.s2-offer-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.s2-pct   { font-size: 60px; font-weight: 900; color: #111827; line-height: 1; letter-spacing: -.04em; }
.s2-off   { font-size: 22px; font-weight: 900; color: #374151; }
.s2-desc  { font-size: 12px; font-weight: 600; color: #6b7280; margin-bottom: 12px; }
.s2-items { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }
.s2-item { display: flex; align-items: center; gap: 7px; background: #f9fafb; border-radius: 8px; padding: 6px 10px; }
.s2-item-dot { width: 7px; height: 7px; border-radius: 50%; background: #f59e0b; flex-shrink: 0; }
.s2-item span { font-size: 10px; font-weight: 700; color: #374151; }
.s2-expiry { margin-top: 8px; font-size: 9px; color: #9ca3af; font-weight: 500; text-align: center; }

.s3 { background: #fff; flex-direction: column; }
.s3-sponsor-bar { background: #f1f5f9; padding: 5px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e2e8f0; }
.s3-sponsor-label { font-size: 8px; font-weight: 600; color: #94a3b8; letter-spacing: .06em; text-transform: uppercase; }
.s3-powered { font-size: 7px; font-weight: 700; color: #E0287A; }
.s3-brand-block { background: linear-gradient(135deg, #1e3a5f, #0f2744); padding: 18px 14px 16px; display: flex; flex-direction: column; align-items: flex-start; position: relative; overflow: hidden; }
.s3-brand-deco { position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.06); }
.s3-industry { font-size: 8px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; position: relative; z-index: 1; }
.s3-brand-name { font-size: 22px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 4px; position: relative; z-index: 1; }
.s3-brand-tag { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.6); position: relative; z-index: 1; }
.s3-body { flex: 1; display: flex; flex-direction: column; padding: 12px 14px 10px; }
.s3-headline { font-size: 15px; font-weight: 800; color: #111827; line-height: 1.3; margin-bottom: 8px; }
.s3-detail-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.s3-detail { display: flex; align-items: center; gap: 7px; }
.s3-detail-icon { width: 18px; height: 18px; border-radius: 5px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s3-detail span { font-size: 10px; color: #475569; font-weight: 500; }
.s3-cta-btn { margin-top: auto; background: #1e3a5f; border-radius: 8px; padding: 9px 12px; text-align: center; }
.s3-cta-text { font-size: 11px; font-weight: 800; color: #fff; letter-spacing: .04em; }

.s4 { background: #0f172a; flex-direction: column; }
.s4-top { padding: 14px 14px 10px; flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.s4-bg-text { position: absolute; bottom: -10px; right: -8px; font-size: 80px; font-weight: 900; color: rgba(255,255,255,.03); line-height: 1; letter-spacing: -.04em; white-space: nowrap; user-select: none; }
.s4-eyebrow { font-size: 8px; font-weight: 800; color: #fbbf24; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; position: relative; z-index: 1; }
.s4-main { font-size: 32px; font-weight: 900; color: #fff; line-height: 1.0; letter-spacing: -.02em; position: relative; z-index: 1; }
.s4-main em { color: #fbbf24; font-style: normal; display: block; }
.s4-time { margin-top: 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); position: relative; z-index: 1; }
.s4-divider { height: 1px; background: rgba(255,255,255,.08); margin: 0 14px; }
.s4-bottom { background: linear-gradient(135deg, #92400e, #b45309); padding: 12px 14px; }
.s4-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.s4-item { background: rgba(255,255,255,.12); border-radius: 7px; padding: 7px 8px; text-align: center; }
.s4-item-name { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.s4-item-price { font-size: 14px; font-weight: 900; color: #fff; line-height: 1; }
.s4-item-was   { font-size: 8px; color: rgba(255,255,255,.45); text-decoration: line-through; }
.s4-bar { background: rgba(255,255,255,.12); border-radius: 6px; padding: 6px 10px; text-align: center; font-size: 9px; font-weight: 700; color: #fef3c7; letter-spacing: .06em; }

.slide-body { padding: 16px; display: flex; flex-direction: column; height: 100%; }
.slide-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; z-index: 10; }
.dot { height: 4px; border-radius: 2px; transition: width .3s, background .3s; background: rgba(255,255,255,.3); width: 8px; }
.dot.active-dot { width: 18px; background: var(--pink); }
.tv-stand-neck { width: 56px; height: 6px; background: #1c1c30; margin: 0 auto; border-radius: 0 0 4px 4px; }
.tv-stand-base { width: 88px; height: 5px; background: #14141e; margin: 0 auto; border-radius: 3px; }

.badge-float { position: absolute; backdrop-filter: blur(16px); border-radius: 14px; padding: 10px 16px; }
.badge-earn { bottom: -20px; left: -16px; background: rgba(8,12,30,.95); border: 1px solid rgba(34,197,94,.4); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.badge-earn-label { font-size: 10px; color: #94a3b8; font-weight: 600; margin-bottom: 2px; }
.badge-earn-val   { font-size: 20px; font-weight: 900; color: #22c55e; }
.badge-live-feed { top: -14px; right: -14px; background: rgba(224,40,122,.12); border: 1px solid rgba(224,40,122,.4); }
.badge-live-feed-row  { display: flex; align-items: center; gap: 6px; }
.badge-live-feed-text { font-size: 11px; font-weight: 700; color: #f9a8d4; }
.badge-live-slide-label { font-size: 10px; color: #64748b; margin-top: 3px; }

/* ===== TICKER ===== */
.ticker-wrap { background: #fdf2f8; border-top: 1px solid #fce7f3; border-bottom: 1px solid #fce7f3; padding: 9px 0; overflow: hidden; }
.ticker-track { display: flex; animation: scroll-ticker 22s linear infinite; width: max-content; }
.ticker-track span { white-space: nowrap; padding: 0 40px; font-size: 12.5px; font-weight: 600; color: #9d174d; }

/* ===== SECTION: TWO WAYS ===== */
.two-ways { background: linear-gradient(180deg, var(--dark) 0%, #130a2a 100%); padding: 88px 0 100px; position: relative; overflow: hidden; }
.two-ways::before { content: ''; position: absolute; top: 50%; left: 10%; transform: translateY(-50%); width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(224,40,122,.16) 0%, transparent 70%); filter: blur(60px); pointer-events: none; }
.two-ways::after { content: ''; position: absolute; top: 50%; right: 10%; transform: translateY(-50%); width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(107,33,168,.2) 0%, transparent 70%); filter: blur(60px); pointer-events: none; }

.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.section-title-light { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.2; }
.section-title-dark  { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--text); letter-spacing: -.02em; line-height: 1.2; }

.ways-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 52px; }
@media (min-width: 768px) { .ways-grid { grid-template-columns: 1fr 1fr; } }

.way-card { background: rgba(255,255,255,.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); padding: 36px; transition: border-color .2s; }
.way-card-pink:hover   { border-color: rgba(224,40,122,.35); }
.way-card-purple:hover { border-color: rgba(107,33,168,.4); }
.way-card-label { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; display: inline-block; margin-bottom: 18px; }
.wcl-pink   { background: rgba(224,40,122,.14); border: 1px solid rgba(224,40,122,.35); color: #f472b6; }
.wcl-purple { background: rgba(107,33,168,.18); border: 1px solid rgba(107,33,168,.4);  color: #c084fc; }
.way-card h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.flow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.flow-step { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; }
.flow-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; }
.fi-pink   { background: rgba(224,40,122,.2); }
.fi-purple { background: rgba(107,33,168,.25); }
.flow-step p { font-size: 10px; color: #cbd5e1; font-weight: 600; line-height: 1.4; }
.flow-arrow { flex-shrink: 0; opacity: .7; }
.way-stat { border-radius: var(--radius-sm); padding: 14px 18px; }
.ws-pink   { background: rgba(224,40,122,.08); border: 1px solid rgba(224,40,122,.2); }
.ws-purple { background: rgba(107,33,168,.1);  border: 1px solid rgba(107,33,168,.25); }
.way-stat p { font-size: 13px; color: #f9a8d4; }
.way-stat p strong { color: #fff; }
.earnings-chart { border-radius: var(--radius-sm); padding: 14px 16px; background: rgba(107,33,168,.1); border: 1px solid rgba(107,33,168,.25); }
.ec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.ec-label { font-size: 12px; font-weight: 600; color: #c084fc; }
.ec-date  { font-size: 10px; color: #475569; }
.ec-bars  { display: flex; align-items: flex-end; gap: 4px; height: 40px; margin-bottom: 10px; }
.ec-bar   { flex: 1; border-radius: 2px 2px 0 0; }
.ec-footer { display: flex; justify-content: space-between; align-items: center; }
.ec-total-label { font-size: 11px; color: #64748b; }
.ec-total-val   { font-size: 20px; font-weight: 800; color: #fff; }
.ec-trend       { font-size: 12px; color: #22c55e; }
.wave { display: block; width: 100%; margin-bottom: -4px; position: relative; z-index: 2; }

/* ===== FEATURES ===== */
.features { background: #fff; padding: 88px 0; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 52px; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feat-card { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; background: #fff; transition: transform .2s, box-shadow .2s; }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feat-preview { padding: 24px 20px; display: flex; align-items: center; justify-content: center; min-height: 130px; }
.feat-body    { padding: 20px; border-top: 1px solid var(--border); }
.feat-body h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feat-body p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.mini-phone { background: #1e1e2e; border-radius: 16px; padding: 9px; border: 2px solid #2d2d4e; width: 90px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.mini-phone-screen { background: #0f1729; border-radius: 9px; overflow: hidden; }
.mini-phone-header { background: #080d18; padding: 4px 8px; display: flex; justify-content: space-between; align-items: center; }
.mini-phone-logo   { font-size: 7px; font-weight: 800; color: var(--pink); }
.mini-phone-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 5px; }
.mpg-item { border-radius: 6px; padding: 6px 4px; text-align: center; }
.mpg-icon  { width: 14px; height: 14px; margin: 0 auto 3px; }
.mpg-label { font-size: 6px; font-weight: 600; }

.mini-cal { background: #1e1e2e; border-radius: 12px; padding: 10px; width: 110px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.mc-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.mc-month  { font-size: 8px; font-weight: 700; color: #e2e8f0; }
.mc-grid   { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.mc-cell   { font-size: 6px; text-align: center; padding: 2px 0; color: #94a3b8; border-radius: 2px; }
.mc-cell.hl { background: linear-gradient(135deg,var(--pink),var(--purple)); color: #fff; font-weight: 700; }
.mc-cell.sm { background: rgba(224,40,122,.15); color: #f472b6; font-weight: 600; }

.mini-tv { background: #1a1a2e; border-radius: 7px; padding: 6px; border: 2px solid #2d2d4e; width: 130px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.mini-tv-screen { background: #0f1729; border-radius: 3px; padding: 10px 8px; text-align: center; border: 1px solid rgba(224,40,122,.25); }
.mini-tv-offer  { font-size: 8px; font-weight: 800; color: var(--pink); text-transform: uppercase; margin-bottom: 2px; }
.mini-tv-title  { font-size: 9px; font-weight: 700; color: #fff; }

.mini-analytics { background: #1e1e2e; border-radius: 12px; padding: 10px; width: 120px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.ma-title { font-size: 7px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.ma-stats { display: flex; justify-content: space-between; margin-bottom: 6px; }
.ma-stat  { text-align: center; }
.ma-val   { font-size: 11px; font-weight: 800; }
.ma-key   { font-size: 5px; color: #64748b; margin-top: 1px; }
.ma-bars  { display: flex; align-items: flex-end; gap: 2px; height: 24px; }
.ma-bar   { flex: 1; border-radius: 2px 2px 0 0; }

/* ===== SHOWCASE STRIP ===== */
.showcase-strip { background: linear-gradient(135deg, #fdf2f8, #f5f3ff); border-radius: 24px; padding: 40px; border: 1px solid rgba(224,40,122,.1); margin-bottom: 48px; }
.strip-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 768px) { .strip-inner { grid-template-columns: 160px 1fr auto 1fr; gap: 24px; } }
.strip-headline { font-size: clamp(28px, 4vw, 46px); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; color: var(--text); }
.strip-headline .l-create  { color: var(--text); }
.strip-headline .l-update  { color: var(--pink); }
.strip-headline .l-display { color: var(--purple); }
.strip-sub { font-size: 16px; color: var(--muted); font-weight: 500; margin-top: 10px; }
.strip-signal { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.signal-dots  { display: flex; gap: 5px; }
.signal-dot   { width: 6px; height: 6px; border-radius: 50%; }
.strip-specs { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.strip-spec  { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 8px; padding: 9px 12px; }
.spec-check  { width: 18px; height: 18px; border-radius: 50%; background: rgba(34,197,94,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strip-spec span { font-size: 12px; font-weight: 600; color: #475569; }

/* ===== BUSINESSES ===== */
.businesses { background: var(--surface); padding: 64px 0; }
.businesses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
@media (min-width: 640px)  { .businesses-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .businesses-grid { grid-template-columns: repeat(6, 1fr); } }
.biz-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px 14px; text-align: center; transition: border-color .2s, transform .2s; cursor: default; }
.biz-card:hover { border-color: var(--pink); transform: translateY(-2px); }
.biz-card.featured { background: linear-gradient(135deg,rgba(224,40,122,.06),rgba(107,33,168,.06)); border: 2px solid rgba(224,40,122,.3); }
.biz-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.bi-pink   { background: linear-gradient(135deg,rgba(224,40,122,.12),rgba(107,33,168,.12)); }
.bi-purple { background: linear-gradient(135deg,rgba(107,33,168,.12),rgba(79,70,229,.12)); }
.bi-solid  { background: linear-gradient(135deg,var(--pink),var(--purple)); }
.biz-card p { font-size: 11px; font-weight: 700; color: var(--text); line-height: 1.35; }

/* ===== PARTNERSHIPS ===== */
.partnerships { padding: 88px 0; background: #fff; }
.partnership-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(224,40,122,.12); box-shadow: var(--shadow-lg); }
.pc-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pc-grid { grid-template-columns: 1fr 1fr; } }
.pc-left { background: linear-gradient(135deg, var(--dark), var(--mid-dark)); padding: 52px 44px; position: relative; overflow: hidden; }
.pc-left::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle,rgba(224,40,122,.15),transparent 70%); }
.pc-left-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }
.pc-left h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; letter-spacing: -.02em; }
.pc-left p  { font-size: 15px; color: #94a3b8; line-height: 1.7; margin-bottom: 32px; }
.pc-right { background: #fff; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.benefit-card { border-radius: var(--radius); padding: 20px; }
.bc-pink   { background: #fdf2f8; border: 1px solid rgba(224,40,122,.1); }
.bc-purple { background: #f5f3ff; border: 1px solid rgba(107,33,168,.1); }
.bc-green  { background: #f0fdf4; border: 1px solid rgba(34,197,94,.1); }
.bc-orange { background: #fff7ed; border: 1px solid rgba(249,115,22,.1); }
.benefit-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.benefit-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.benefit-card p  { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ===== CTA ===== */
.cta-section { background: var(--surface); padding: 64px 0; }
.cta-card { border-radius: var(--radius-lg); padding: 52px 48px; background: linear-gradient(135deg,rgba(224,40,122,.06),rgba(107,33,168,.08)); border: 1px solid rgba(107,33,168,.14); display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 768px) { .cta-card { grid-template-columns: 1fr auto; } }
.cta-h  { font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: var(--pink); letter-spacing: -.02em; line-height: 1; margin-bottom: 10px; }
.cta-sub { font-size: 17px; color: #475569; margin-bottom: 4px; }
.cta-sub em { color: var(--pink); font-style: normal; font-weight: 700; }
.cta-fine { font-size: 13px; color: #94a3b8; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.cta-demo-link { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: #475569; transition: color .15s; }
.cta-demo-link:hover { color: var(--pink); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }
.footer-brand-desc { font-size: 13px; color: #475569; line-height: 1.7; margin: 12px 0 18px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.social-btn:hover { background: rgba(224,40,122,.2); }
.footer-col h4 { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13px; color: #64748b; transition: color .15s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer-copy  { font-size: 12px; color: #475569; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: #475569; transition: color .15s; }
.footer-legal a:hover { color: #fff; }

svg.icon { width: 22px; height: 22px; }
svg.icon-sm { width: 16px; height: 16px; }
svg.icon-lg { width: 28px; height: 28px; }

/* ===================================================================
   NEW COMPONENTS for inner pages (Contact, Pricing, Partner, Academy,
   Blog, Privacy) — built on the same tokens as the home page above.
   =================================================================== */

/* generic content section on white */
.content-section { padding: 80px 0; background: #fff; }
.content-section.alt { background: var(--surface); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p.sub { margin-top: 12px; font-size: 16px; color: var(--muted); }

/* pricing */
.pricing-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 12px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 2px solid var(--pink); box-shadow: var(--shadow-lg); position: relative; }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--pink),var(--purple)); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 16px; border-radius: 999px; }
.price-card .tier-name { font-size: 22px; font-weight: 900; color: var(--text); letter-spacing: -.01em; margin-bottom: 6px; }
.price-card .tier-tag { font-size: 22px; font-weight: 800; background: linear-gradient(135deg,var(--pink),var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.price-card .tier-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.price-card li { font-size: 13px; color: #475569; font-weight: 500; padding-left: 26px; position: relative; }
.price-card li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: rgba(34,197,94,.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%2322c55e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* generic step list (academy certification path) */
.steps-list { display: grid; gap: 16px; margin-top: 12px; }
.step-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; }
.step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--pink),var(--purple)); color: #fff; font-weight: 900; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* guide cards on academy page */
.guide-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 12px; }
.guide-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: transform .2s, box-shadow .2s; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.guide-card .icon-badge { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,rgba(224,40,122,.14),rgba(107,33,168,.14)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 24px; }
.guide-card h3 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.guide-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }

/* blog cards */
.post-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 12px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card .post-tag { font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.post-card h3 { font-size: 18px; font-weight: 800; color: var(--text); line-height: 1.35; margin-bottom: 10px; }
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--pink); }
.post-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.post-card .read-more { font-size: 13px; font-weight: 700; color: var(--pink); }

/* article (blog post / guide detail) typography */
.article-wrap { padding: 72px 0 96px; background: #fff; }
.article { max-width: 720px; margin: 0 auto; }
.article .back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 28px; }
.article .back-link:hover { color: var(--pink); }
.article .kicker { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }
.article h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--text); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 32px; }
.article h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-top: 40px; margin-bottom: 14px; letter-spacing: -.01em; }
.article p { font-size: 16px; color: #334155; line-height: 1.8; margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px 22px; color: #334155; font-size: 16px; line-height: 1.8; }
.article li { margin-bottom: 6px; }
.article blockquote { margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--pink); background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0; color: var(--muted); font-style: italic; font-size: 15px; }
.article strong { color: var(--text); }

/* contact page */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1.1fr 0.9fr; align-items: start; margin-top: 12px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: grid; gap: 16px; }
.contact-methods .item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.contact-methods .item .label { color: var(--pink); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.contact-methods .item a { color: var(--text); font-weight: 600; }
.contact-methods .item a:hover { color: var(--pink); }
form.newsletter { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
form.newsletter input { flex: 1; min-width: 200px; padding: 13px 18px; border-radius: 999px; border: 1.5px solid var(--border); background: #fff; color: var(--text); font-family: inherit; font-size: 14px; }
form.newsletter input:focus { outline: none; border-color: var(--pink); }
form.newsletter button { padding: 13px 24px; border-radius: 999px; border: none; background: linear-gradient(135deg,var(--pink),var(--purple)); color: #fff; font-weight: 700; cursor: pointer; font-size: 14px; }
