/* =============================================
   SLINER — AI Writing Engine
   CSS — Light Blue Theme
   ============================================= */

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

:root {
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --surface: #ffffff;
  --surface2: #f8fafc;
  --border: #e2e8f0;
  --border2: #cbd5e1;
  --text: #0f172a;
  --text2: #475569;
  --text3: #94a3b8;
  --accent: #2563eb;
  --accent2: #1d4ed8;
  --accent-glow: rgba(37, 99, 235, 0.12);
  --green: #22c55e;
  --blue: #2563eb;
  --red: #ef4444;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announce-bar {
  background: linear-gradient(90deg, #eff6ff, #dbeafe, #eff6ff);
  border-bottom: 1px solid #bfdbfe;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--accent);
  position: relative; z-index: 100;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.announce-bar strong { color: #f0d875; }
.announce-bar code {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.announce-dot {
  width: 6px; height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky; top: 0; z-index: 99;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.navbar.scrolled { background: rgba(255,255,255,0.95); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: #0a0a0b;
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text2);
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 400;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.btn-ghost {
  color: var(--text2) !important;
  border: 1px solid var(--border) !important;
}
.btn-ghost:hover { color: var(--text) !important; border-color: var(--border2) !important; }
.btn-nav {
  background: var(--accent) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.btn-nav:hover { background: #1d4ed8 !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text2);
  border-radius: 2px; transition: all 0.3s;
  display: block;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 16px; border-top: 1px solid var(--border);
}
.mobile-menu a {
  text-decoration: none; color: var(--text2);
  padding: 10px 12px; border-radius: 8px;
  font-size: 15px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--text); background: var(--surface); }
.mobile-menu .btn-nav {
  background: var(--accent) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  text-align: center;
  margin-top: 4px;
}
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px 80px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px; color: var(--text2);
  margin-bottom: 32px;
  animation: fadeUp 0.6s var(--ease) both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s var(--ease) both;
}
.hero-title em {
  font-style: italic;
  color: var(--accent2);
}
.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 2px;
  animation: lineGrow 0.8s 0.7s var(--ease) both;
}
@keyframes lineGrow { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.hero-sub {
  font-size: 20px; color: var(--text2);
  max-width: 540px; margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeUp 0.6s 0.2s var(--ease) both;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.3s var(--ease) both;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 0 30px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(37,99,235,0.4);
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}
.btn-secondary {
  color: var(--text2);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  border: 1px solid var(--border2);
  transition: all 0.25s var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { color: var(--text); border-color: var(--accent2); background: var(--surface); }
.btn-secondary span { transition: transform 0.2s; }
.btn-secondary:hover span { transform: translateX(4px); }

/* Stats bar */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s var(--ease) both;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--text3); margin-top: 2px; }
.stat-divider {
  width: 1px; height: 48px; background: var(--border);
}

/* Demo window */
.hero-demo {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  animation: fadeUp 0.8s 0.5s var(--ease) both;
  text-align: left;
}
.demo-chrome {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.chrome-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.chrome-url {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text3);
}
.demo-body {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.demo-left {
  border-right: 1px solid var(--border);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.demo-right { padding: 28px; }
.demo-label {
  font-size: 11px; font-weight: 500;
  color: var(--text3); text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.demo-input-box {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px; color: var(--text);
  min-height: 60px;
}
.cursor-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.demo-options { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px; color: var(--text3);
  cursor: pointer; transition: all 0.2s;
}
.opt-chip.active {
  background: rgba(37,99,235,0.1);
  border-color: var(--accent2);
  color: var(--accent);
}
.demo-generate {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  align-self: flex-start;
  margin-top: auto;
}
.demo-generate:hover { transform: translateY(-1px); opacity: 0.9; }
.gen-icon { font-size: 16px; }
.demo-output { display: flex; flex-direction: column; gap: 10px; }
.output-line { border-radius: 4px; }
.line-h1 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--text); line-height: 1.3;
}
.line-sub { font-size: 13px; color: var(--accent2); }
.line-body {
  font-size: 13px; color: var(--text2); line-height: 1.6;
}
.line-body.short {
  height: 12px; background: var(--surface2); border-radius: 4px; width: 90%;
}
.line-body.short2 {
  height: 12px; background: var(--surface2); border-radius: 4px; width: 70%;
}
.output-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(126,200,153,0.1);
  border: 1px solid rgba(126,200,153,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 12px; color: var(--green);
  align-self: flex-start;
  margin-right: 6px;
}

/* =============================================
   FOUNDER SECTION
   ============================================= */
.founder-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.founder-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 60px; align-items: center;
}
.founder-left { display: flex; flex-direction: column; gap: 32px; }
.founder-stat-block { display: flex; flex-direction: column; gap: 24px; }
.fstat {}
.fnum {
  display: block;
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.flabel { font-size: 13px; color: var(--text3); }
.founder-badge-build {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px; color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.founder-right { display: flex; flex-direction: column; gap: 28px; }
.founder-avatar-wrap { position: relative; display: inline-block; width: fit-content; }
.founder-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: #ffffff;
}
.founder-verified {
  position: absolute; bottom: 0; right: -4px;
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
  border: 2px solid var(--bg2);
}
.founder-quote {
  font-size: 18px; line-height: 1.7;
  color: var(--text2);
  font-style: normal;
  border-left: 3px solid var(--accent2);
  padding-left: 24px;
}
.founder-quote strong { color: var(--text); }
.founder-name {
  display: flex; flex-direction: column; gap: 4px;
}
.founder-name strong { font-size: 16px; color: var(--text); }
.founder-name span { font-size: 13px; color: var(--text3); }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg3);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-size: 13px; color: var(--text3);
  padding: 0 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =============================================
   FEATURES
   ============================================= */
.features {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px; color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-large { grid-column: span 2; }
.feat-wide { grid-column: span 2; }
.feat-accent {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: rgba(37,99,235,0.25);
}
.feat-tag {
  font-size: 11px; font-weight: 500;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.feat-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.feat-visual {
  margin-top: 8px; flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.feat-cta {
  font-size: 13px; color: var(--accent2);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.feat-cta:hover { color: var(--accent); gap: 8px; }

/* Voice bars */
.voice-demo { gap: 10px; }
.voice-bar {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text3);
}
.vb-label { min-width: 120px; }
.vb-fill {
  height: 6px; border-radius: 3px;
  background: var(--surface2);
  flex: 1;
  position: relative; overflow: hidden;
}
.vb-fill::after {
  content: ''; position: absolute; inset-block: 0; left: 0;
  width: inherit;
  background: var(--border2);
  border-radius: 3px;
}
.voice-bar.active .vb-label { color: var(--accent2); }
.voice-bar.active .vb-fill { background: linear-gradient(90deg, var(--accent2), var(--accent)); }

/* Platform icons */
.platform-icons {
  flex-direction: row; gap: 12px; flex-wrap: wrap; align-items: center;
}
.pi {
  width: 48px; height: 48px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: all 0.2s;
}
.pi:hover { background: var(--surface); border-color: var(--accent2); transform: scale(1.1); }

/* SEO meter */
.seo-meter { flex-direction: row; align-items: center; gap: 20px; }
.seo-score { font-size: 12px; color: var(--text3); }
.seo-ring { position: relative; width: 80px; height: 80px; }
.seo-ring svg { width: 80px; height: 80px; }
.seo-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--accent);
}

/* Code snippet */
.code-snippet {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  overflow: auto;
}
.code-snippet pre { margin: 0; }
.code-snippet code {
  font-family: var(--font-mono);
  font-size: 13px; line-height: 1.7;
  color: var(--text2);
}
.c-green { color: var(--green); }
.c-gray { color: var(--text3); }
.c-yellow { color: var(--accent); }
.c-str { color: var(--blue); }

/* Calendar */
.calendar-vis { gap: 8px; }
.cal-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-day {
  font-size: 11px; color: var(--text3);
  text-align: center; padding: 4px;
  font-weight: 500;
}
.cal-event {
  border-radius: 6px; padding: 6px 8px;
  font-size: 11px; font-weight: 500;
  text-align: center;
}
.cal-event.blog { background: rgba(37,99,235,0.15); color: var(--accent2); }
.cal-event.email { background: rgba(126,181,200,0.15); color: var(--blue); }
.cal-event.social { background: rgba(126,200,153,0.15); color: var(--green); }
.cal-event.empty { background: var(--surface2); }

/* Repurpose flow */
.repurpose-flow {
  flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap;
}
.rf-source {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: var(--accent2);
}
.rf-arrow { font-size: 20px; color: var(--text3); }
.rf-outputs { display: flex; flex-wrap: wrap; gap: 6px; }
.rf-outputs span {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px; color: var(--text2);
}

/* Analytics bars */
.analytics-bars {
  flex-direction: row; align-items: flex-end;
  gap: 8px; height: 80px;
}
.ab-bar {
  flex: 1; height: var(--h);
  background: var(--surface2);
  border-radius: 4px 4px 0 0;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
  transition: background 0.2s;
}
.ab-bar span {
  position: absolute; bottom: -18px;
  font-size: 10px; color: var(--text3);
}
.ab-bar.high { background: linear-gradient(180deg, var(--accent2), rgba(37,99,235,0.3)); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.testimonials .section-header { margin-bottom: 64px; }
.testi-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.25s;
}
.testi-card:hover { border-color: var(--border2); }
.testi-featured {
  border-color: rgba(37,99,235,0.3);
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
}
.testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; color: var(--text2); line-height: 1.7; }
.testi-card p strong { color: var(--text); }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--surface2), var(--bg3));
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500; color: var(--text3);
}
.testi-author strong { display: block; font-size: 14px; color: var(--text); }
.testi-author span { font-size: 12px; color: var(--text3); }

/* =============================================
   PRICING
   ============================================= */
.pricing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px;
}
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 56px;
}
.ptog-label {
  font-size: 14px; color: var(--text3); cursor: pointer;
  transition: color 0.2s;
}
.ptog-label.active { color: var(--text); }
.save-badge {
  background: rgba(126,200,153,0.15);
  border: 1px solid rgba(126,200,153,0.3);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 11px; color: var(--green);
  margin-left: 6px;
}
.ptog-switch {
  width: 48px; height: 26px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 13px;
  cursor: pointer; position: relative;
  transition: background 0.3s;
}
.ptog-switch.on { background: var(--accent2); }
.ptog-knob {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.ptog-switch.on .ptog-knob { transform: translateX(22px); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-popular {
  border-color: var(--accent2);
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  transform: scale(1.03);
}
.price-popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #ffffff;
  border-radius: 100px; padding: 4px 16px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
}
.price-name {
  font-size: 13px; font-weight: 500;
  color: var(--text3); text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-amount { display: flex; align-items: baseline; gap: 4px; }
.price-currency { font-size: 20px; color: var(--text2); }
.price-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 900;
  color: var(--text); letter-spacing: -0.03em;
}
.price-period { font-size: 14px; color: var(--text3); }
.price-desc { font-size: 14px; color: var(--text2); line-height: 1.5; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 8px 0; }
.price-features li { font-size: 14px; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.price-features li.disabled { color: var(--text3); }
.price-cta {
  display: block; text-align: center;
  text-decoration: none;
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--text2);
  transition: all 0.25s;
  margin-top: auto;
}
.price-cta:hover { color: var(--text); border-color: var(--accent2); }
.price-cta-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #ffffff !important;
  border-color: transparent !important;
}
.price-cta-primary:hover { opacity: 0.9; }

/* =============================================
   FAQ
   ============================================= */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 17px; font-weight: 500;
  color: var(--text); cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent2); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text3);
  transition: all 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent2); color: var(--accent2); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-a p {
  padding-bottom: 24px;
  font-size: 15px; color: var(--text2);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-bg-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  color: var(--surface2);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-content h2 em { font-style: italic; color: var(--accent2); }
.cta-content h2 span { color: var(--accent); }
.cta-content p { font-size: 18px; color: var(--text2); margin-bottom: 40px; }
.btn-large { padding: 18px 36px !important; font-size: 17px !important; }
.cta-note { font-size: 13px; color: var(--text3); margin-top: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: var(--text3);
  line-height: 1.6;
  margin-top: 16px;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-title {
  font-size: 12px; font-weight: 500;
  color: var(--text3); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 4px;
}
.fl-col a {
  text-decoration: none; font-size: 14px;
  color: var(--text2);
  transition: color 0.2s;
}
.fl-col a:hover { color: var(--accent2); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text3);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 72px 20px 60px; }
  .hero-stats { padding: 20px; gap: 0; }
  .stat-item { padding: 0 20px; }
  .stat-num { font-size: 22px; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-left { border-right: none; border-bottom: 1px solid var(--border); }
  .founder-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .founder-left { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-large, .feat-wide { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-popular { transform: none; }
  .price-popular:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80px; height: 1px; }
  .section-title { font-size: 32px; }
  .cta-content h2 { font-size: 32px; }
  .footer-links { grid-template-columns: 1fr; }
  .announce-dot { display: none; }
}

/* ===== LOGO BRAND ===== */



