/* ═══════════════════════════════════════════════════
   NovaCall Studio — Landing Page Styles
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #06061a;
  --bg-card: #0c0c2a;
  --bg-card-hover: #111140;
  --orange: #ff9f1c;
  --orange-glow: rgba(255, 159, 28, 0.15);
  --orange-subtle: rgba(255, 159, 28, 0.08);
  --white: #f0f0f5;
  --gray: rgba(240, 240, 245, 0.55);
  --gray-dim: rgba(240, 240, 245, 0.25);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

::selection { background: var(--orange); color: var(--bg); }

* { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; width: 100%; }
.orange { color: var(--orange); }
.dim { color: rgba(240,240,245,0.3); }

/* ── Animations ────────────────────────────────────── */

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
@keyframes floatSlow { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes orb1 { 0%,100% { transform:translate(0,0) scale(1); } 33% { transform:translate(30px,-50px) scale(1.1); } 66% { transform:translate(-20px,20px) scale(0.9); } }
@keyframes orb2 { 0%,100% { transform:translate(0,0) scale(1); } 33% { transform:translate(-40px,30px) scale(0.95); } 66% { transform:translate(25px,-40px) scale(1.05); } }
@keyframes mockupGlow { 0%,100% { box-shadow:0 0 60px rgba(255,159,28,0.1),0 20px 80px rgba(0,0,0,0.5); } 50% { box-shadow:0 0 80px rgba(255,159,28,0.2),0 20px 80px rgba(0,0,0,0.5); } }
@keyframes bounceIn { 0% { opacity:0; transform:scale(0.3); } 50% { transform:scale(1.05); } 70% { transform:scale(0.95); } 100% { opacity:1; transform:scale(1); } }
@keyframes pulse { 0%,100% { opacity:0.4; } 50% { opacity:1; } }

.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.8s cubic-bezier(0.16,1,0.3,1),transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal.d1 { transition-delay:0.1s; }
.reveal.d2 { transition-delay:0.2s; }
.reveal.d3 { transition-delay:0.3s; }
.reveal.d4 { transition-delay:0.4s; }
.reveal.d5 { transition-delay:0.5s; }

.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity 0.8s cubic-bezier(0.16,1,0.3,1),transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity 0.8s cubic-bezier(0.16,1,0.3,1),transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── Phone Scroll Indicator ────────────────────────── */

.phone-scroll {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  height: 280px;
  opacity: 0;
  translate: 32px 0;
  transition: opacity 0.5s, translate 0.5s;
}
.phone-scroll.visible { opacity: 1; translate: 0 0; }

.phone-track-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  border-radius: 1px;
}
.phone-track-fill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,159,28,0.6), var(--orange));
  border-radius: 1px;
  height: 0%;
  transition: height 0.15s;
}
.phone-icon {
  position: relative;
  width: 40px;
  height: 48px;
  border-radius: 12px;
  background: rgba(12,12,42,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,159,28,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,159,28,0.05);
  transition: transform 0.15s ease-out, border-color 0.3s;
  transform: translateY(0);
}
.phone-icon:hover { border-color: rgba(255,159,28,0.4); }
.phone-glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255,159,28,0.1);
  filter: blur(16px);
  z-index: -1;
  opacity: 0.5;
}
.phone-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.phone-dot-top { top: 0; background: rgba(255,255,255,0.1); }
.phone-dot-bottom { bottom: 0; background: rgba(255,159,28,0.3); }

/* ── Navbar ────────────────────────────────────────── */

.studio-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 20px 0;
  background: transparent;
}
.studio-nav.scrolled {
  background: rgba(6,6,26,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.studio-nav .container { display:flex; align-items:center; justify-content:space-between; }

.s-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.s-nav-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-weight: 900;
  font-size: 14px;
}
.s-nav-links { display:flex; align-items:center; gap:32px; }
.s-nav-link { color:rgba(240,240,245,0.5); font-size:14px; text-decoration:none; transition:color 0.3s; font-weight:500; }
.s-nav-link:hover { color:var(--white); }
.s-nav-actions { display:flex; align-items:center; gap:12px; }
.s-nav-cta {
  font-size: 14px;
  font-weight: 700;
  background: var(--orange);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.s-nav-cta:hover { filter:brightness(1.1); }

.s-nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.s-nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.s-nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.s-nav-burger.active span:nth-child(2) { opacity: 0; }
.s-nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

.s-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(6,6,26,0.95);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  margin-top: 12px;
  z-index: 99;
  position: relative;
}
.s-mobile-menu.open { display: flex; }
.s-mobile-link { color:rgba(240,240,245,0.6); text-decoration:none; font-size:16px; }
.s-mobile-cta { background:var(--orange); color:var(--bg); font-weight:700; text-align:center; padding:16px; border-radius:12px; text-decoration:none; min-height:44px; display:flex; align-items:center; justify-content:center; }

/* ── Hero ──────────────────────────────────────────── */

.s-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 48px;
}

.s-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.s-hero-orb-1 {
  top: 25%; left: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ff9f1c, transparent 70%);
  opacity: 0.2;
  animation: orb1 8s ease-in-out infinite;
}
.s-hero-orb-2 {
  bottom: 25%; right: 25%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6c5ce7, transparent 70%);
  opacity: 0.15;
  animation: orb2 10s ease-in-out infinite;
}

.s-hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.s-hero-content { text-align: center; max-width: 800px; margin: 0 auto; }

.s-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 32px;
  font-size: 13px;
  color: rgba(240,240,245,0.4);
}

.s-avatar-xs { width:20px; height:20px; border-radius:50%; object-fit:cover; border:1px solid rgba(255,159,28,0.3); }
.s-avatar-sm { width:24px; height:24px; border-radius:50%; object-fit:cover; border:1px solid rgba(255,159,28,0.4); }
.s-avatar-md { width:40px; height:40px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,159,28,0.3); }

.s-hero h1 {
  font-size: clamp(28px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.s-gradient-text {
  background: linear-gradient(90deg, #ff9f1c, #ff6b35, #ff9f1c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.s-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(240,240,245,0.5);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.s-hero-sub strong { color: rgba(240,240,245,0.7); }

.s-hero-aside {
  font-size: 14px;
  color: rgba(240,240,245,0.25);
  font-style: italic;
  margin-bottom: 40px;
}

.s-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.s-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.s-btn-primary:hover { filter:brightness(1.1); transform:scale(1.02); }
.s-btn-primary:active { transform:scale(0.98); }
.s-btn-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--orange);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.3s;
}
.s-btn-primary:hover .s-btn-glow { opacity: 0.4; }

.s-btn-ghost {
  color: rgba(240,240,245,0.5);
  font-weight: 500;
  font-size: 16px;
  padding: 16px 24px;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.s-btn-ghost:hover { color: var(--white); }
.s-bounce { display:inline-block; animation:pulse 2s infinite; }

/* ── Platform Mockup ───────────────────────────────── */

.s-mockup {
  max-width: 900px;
  margin: 64px auto 0;
  width: 100%;
}
.s-mockup-inner {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  animation: mockupGlow 4s ease-in-out infinite, floatSlow 6s ease-in-out infinite;
}

.s-chrome {
  background: #0a0a24;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-chrome-dots { display:flex; gap:6px; }
.s-dot { width:10px; height:10px; border-radius:50%; }
.s-dot.red { background:rgba(255,95,87,0.6); }
.s-dot.yellow { background:rgba(253,188,64,0.6); }
.s-dot.green { background:rgba(40,201,64,0.6); }
.s-chrome-url {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 16px;
  font-size: 12px;
  color: rgba(240,240,245,0.3);
  font-family: 'JetBrains Mono', monospace;
}

.s-mockup-body { display:flex; min-height:340px; background:var(--bg); }

.s-sidebar {
  width: 180px;
  background: #0a0a24;
  border-right: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.s-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
}
.s-sidebar-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-size: 10px;
  font-weight: 900;
}
.s-sidebar-item {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(240,240,245,0.3);
}
.s-sidebar-item.active {
  background: rgba(255,159,28,0.1);
  color: var(--orange);
  font-weight: 500;
}

.s-mockup-main { flex:1; padding:16px 24px; overflow:hidden; display:flex; flex-direction:column; gap:12px; }

.s-mockup-header { display:flex; align-items:center; justify-content:space-between; }
.s-mockup-title { font-size:14px; font-weight:700; }
.s-mockup-meta { font-size:10px; color:rgba(240,240,245,0.3); margin-top:2px; }
.s-badge-green { background:rgba(34,197,94,0.1); color:#4ade80; font-size:10px; padding:4px 10px; border-radius:50px; font-weight:500; }

.s-waveform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
}
.s-waveform {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 48px;
  margin-bottom: 10px;
}
.s-waveform-bar {
  flex: 1;
  border-radius: 50px;
  background: linear-gradient(to top, rgba(255,159,28,0.6), #ff9f1c);
  transition: height 1s cubic-bezier(0.16,1,0.3,1);
  height: 4%;
}
.s-waveform-bar.animated { /* height set by JS */ }

.s-waveform-controls { display:flex; align-items:center; gap:12px; }
.s-play-btn {
  width:28px; height:28px;
  border-radius:50%;
  background: var(--orange);
  display:flex; align-items:center; justify-content:center;
  color: var(--bg);
  font-size:10px;
  font-weight:700;
}
.s-time { font-size:10px; font-family:'JetBrains Mono',monospace; color:rgba(240,240,245,0.3); }
.s-speed { font-size:10px; color:rgba(240,240,245,0.3); margin-left:auto; }

.s-feedback-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

.s-scores-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
}
.s-score-header, .s-anno-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(240,240,245,0.6);
}
.s-score-row { margin-bottom: 8px; }
.s-score-row > span { display:inline-block; }
.s-score-label { font-size:10px; color:rgba(240,240,245,0.4); }
.s-score-val { font-size:10px; font-family:'JetBrains Mono',monospace; font-weight:700; float:right; }
.s-score-bar { height:4px; background:rgba(255,255,255,0.05); border-radius:50px; overflow:hidden; margin-top:2px; }
.s-score-fill {
  height: 100%;
  border-radius: 50px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.s-score-fill.green { background:#22c55e; }
.s-score-fill.orange { background:#f97316; }
.s-score-fill.animated { width: var(--w); }
.s-score-total {
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
}

.s-annotations { display:flex; flex-direction:column; gap:8px; }
.s-anno {
  border-radius: 8px;
  padding: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.s-anno.animated { opacity:1; transform:translateX(0); }
.s-anno-green { background:rgba(34,197,94,0.1); border:1px solid rgba(34,197,94,0.2); }
.s-anno-orange { background:rgba(249,115,22,0.1); border:1px solid rgba(249,115,22,0.2); }
.s-anno-red { background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.2); }
.s-anno-time { font-size:10px; font-family:'JetBrains Mono',monospace; }
.s-anno-green .s-anno-time { color:#4ade80; }
.s-anno-orange .s-anno-time { color:#fb923c; }
.s-anno-red .s-anno-time { color:#f87171; }
.s-anno p { font-size:11px; color:rgba(240,240,245,0.7); margin-top:4px; line-height:1.4; }

.s-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  margin: 32px auto 0;
}
.s-scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50px;
  animation: pulse 2s infinite;
}

/* ── Sections ──────────────────────────────────────── */

.s-section { padding: 96px 0; position: relative; }
.s-tag { display:block; font-size:12px; font-weight:700; color:var(--orange); text-transform:uppercase; letter-spacing:3px; margin-bottom:16px; }
.s-center { text-align:center; }

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.s-narrow { max-width: 720px; margin: 0 auto 80px; }
.s-prose { font-size:17px; color:rgba(240,240,245,0.5); line-height:1.7; }
.s-prose p { margin-bottom:20px; }
.s-prose em { color:rgba(240,240,245,0.7); font-style:normal; }
.s-prose .s-strong, .s-prose-sm .s-strong { color:rgba(240,240,245,0.7); font-weight:500; }
.s-prose-sm { font-size:14px; color:rgba(240,240,245,0.4); line-height:1.7; }
.s-prose-sm p { margin-bottom:16px; }
.s-prose-center { font-size:18px; color:rgba(240,240,245,0.4); line-height:1.7; max-width:640px; margin:0 auto; }
.s-prose-center strong { color:rgba(240,240,245,0.6); }
.s-aside { font-size:14px; color:rgba(240,240,245,0.25); font-style:italic; margin-top:8px; }
.s-dim { color:rgba(240,240,245,0.3); font-size:14px; }

/* ── Formation block ───────────────────────────────── */

.s-formation-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}
.s-formation-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.s-formation-grid h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}
.s-nope-list { display:flex; flex-direction:column; gap:12px; }
.s-nope {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.1);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(240,240,245,0.4);
  text-decoration: line-through;
}
.s-nope span { color:#f87171; font-weight:700; font-size:14px; text-decoration:none; }

/* ── Bridge ────────────────────────────────────────── */

.s-bridge { overflow:hidden; }
.s-bridge-glow {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, #ff9f1c, transparent 70%);
  opacity: 0.2;
  filter: blur(80px);
  pointer-events: none;
}
.s-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.s-signature span { font-size:14px; color:rgba(240,240,245,0.3); font-style:italic; }

/* ── For You ───────────────────────────────────────── */

.s-for-you-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:48px; }
.s-for-you-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s;
}
.s-for-you-card:hover { border-color: rgba(255,159,28,0.2); }
.s-for-you-card p { font-size:14px; color:rgba(240,240,245,0.6); line-height:1.6; }
.s-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,159,28,0.1);
  border: 1px solid rgba(255,159,28,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Features ──────────────────────────────────────── */

.s-features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.s-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.s-feature-card:hover { border-color:rgba(255,159,28,0.2); transform:translateY(-4px); }
.s-feature-top { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.s-feature-icon { font-size:28px; }
.s-feature-card h3 { font-size:17px; font-weight:700; margin-bottom:8px; letter-spacing:0; }
.s-feature-card p { font-size:14px; color:rgba(240,240,245,0.4); line-height:1.6; }

/* ── Steps ─────────────────────────────────────────── */

.s-steps-glow {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ff9f1c, transparent 70%);
  opacity: 0.1;
  filter: blur(100px);
  pointer-events: none;
}

.s-steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:48px; }
.s-step { text-align:center; position:relative; }
.s-step-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,159,28,0.1);
  border: 1px solid rgba(255,159,28,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.s-step-num { font-size:12px; font-family:'JetBrains Mono',monospace; color:var(--orange); font-weight:700; margin-bottom:8px; display:block; }
.s-step h3 { font-size:20px; font-weight:700; margin-bottom:8px; letter-spacing:0; }
.s-step p { font-size:14px; color:rgba(240,240,245,0.4); line-height:1.6; }
.s-step-line {
  display: none;
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 40px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,159,28,0.4), transparent);
}

/* ── Stats ─────────────────────────────────────────── */

.s-stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.s-stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; text-align:center; }
.s-stat-number {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--orange);
}
.s-stat-label { font-size:12px; color:rgba(240,240,245,0.4); margin-top:4px; }

/* ── Before / After ────────────────────────────────── */

.s-ba-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:48px; }
.s-ba-card { border-radius:16px; padding:32px; }
.s-ba-before { background:var(--bg-card); border:1px solid var(--border); }
.s-ba-after { background:linear-gradient(to bottom,rgba(255,159,28,0.05),var(--bg-card)); border:1px solid rgba(255,159,28,0.2); }
.s-ba-header { display:flex; align-items:center; gap:8px; margin-bottom:24px; }
.s-ba-header span { font-size:14px; font-weight:700; }
.s-ba-before .s-ba-header span { color:rgba(240,240,245,0.4); }
.s-ba-after .s-ba-header span { color:var(--orange); }
.s-ba-dot { width:12px; height:12px; border-radius:50%; }
.s-ba-dot.red { background:rgba(248,113,113,0.6); }
.s-ba-dot.orange { background:var(--orange); }
.s-ba-card ul { list-style:none; display:flex; flex-direction:column; gap:16px; }
.s-ba-card li { display:flex; align-items:flex-start; gap:12px; font-size:14px; line-height:1.5; }
.s-ba-before li { color:rgba(240,240,245,0.4); }
.s-ba-after li { color:rgba(240,240,245,0.6); }
.s-ba-icon { flex-shrink:0; font-weight:700; margin-top:2px; }
.s-ba-icon.red { color:#f87171; }
.s-ba-icon.orange { color:var(--orange); }

/* ── Pricing ───────────────────────────────────────── */

.s-pricing-glow {
  position: absolute;
  right: 0; top: 33%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #ff9f1c, transparent 70%);
  opacity: 0.1;
  filter: blur(100px);
  pointer-events: none;
}

.s-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin-top: 24px;
}
.s-toggle-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(240,240,245,0.4);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.s-toggle-btn.active { background:var(--orange); color:var(--bg); }
.s-toggle-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
  background: rgba(34,197,94,0.1);
  color: #4ade80;
}
.s-toggle-btn.active .s-toggle-badge { background:rgba(6,6,26,0.2); color:var(--bg); }

.s-pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.s-pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.5s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.s-pricing-card:hover { transform:translateY(-4px); border-color:rgba(255,255,255,0.1); }
.s-pricing-card.featured {
  background: linear-gradient(to bottom, rgba(255,159,28,0.1), var(--bg-card));
  border: 2px solid rgba(255,159,28,0.3);
}

.s-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.s-pricing-card h3 { font-size:20px; font-weight:700; margin-bottom:4px; letter-spacing:0; }
.s-price { margin-bottom:4px; }
.s-price-amount { font-size:40px; font-weight:900; }
.s-price-period { font-size:14px; color:rgba(240,240,245,0.3); }
.s-sans-engagement {
  font-size: 10px;
  color: rgba(255,159,28,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.s-pricing-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; flex:1; }
.s-pricing-features li { display:flex; align-items:flex-start; gap:8px; font-size:14px; color:rgba(240,240,245,0.5); }
.s-check-orange { color:var(--orange); margin-top:1px; flex-shrink:0; }

.s-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  min-height: 44px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
}
.s-pricing-cta:hover { background:rgba(255,255,255,0.1); }
.s-pricing-cta.primary { background:var(--orange); color:var(--bg); border-color:var(--orange); }
.s-pricing-cta.primary:hover { filter:brightness(1.1); }

/* ── Beta CTA ──────────────────────────────────────── */

.s-beta { overflow:hidden; }
.s-beta-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, #ff9f1c, transparent 70%);
  opacity: 0.25;
  filter: blur(100px);
  pointer-events: none;
}

.s-beta-form { max-width:520px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.s-form-row { display:flex; gap:12px; }
.s-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
  flex: 1;
}
.s-input::placeholder { color:rgba(240,240,245,0.2); }
.s-input:focus { border-color:rgba(255,159,28,0.4); }
.s-input-grow { flex:2; }
.s-btn-submit { white-space:nowrap; }

.s-beta-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 16px;
  padding: 32px;
  max-width: 520px;
  margin: 0 auto;
  animation: bounceIn 0.6s;
}
.s-success-title { font-size:24px; font-weight:900; margin-bottom:8px; }
.s-success-sub { font-size:14px; color:rgba(240,240,245,0.4); }

.s-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(240,240,245,0.2);
}
.s-trust-dot { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,0.1); }

/* ── Footer ────────────────────────────────────────── */

.s-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.s-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.s-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}
.s-footer-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-size: 12px;
  font-weight: 900;
}
.s-footer-links { display:flex; gap:24px; }
.s-footer-links a { color:rgba(240,240,245,0.3); font-size:12px; text-decoration:none; transition:color 0.3s; }
.s-footer-links a:hover { color:rgba(240,240,245,0.6); }
.s-footer-copy { font-size:12px; color:rgba(240,240,245,0.2); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (min-width:769px) {
  .s-step-line { display:block; }
}

@media (max-width:900px) {
  .s-nav-links, .s-nav-actions { display:none; }
  .s-nav-burger { display:flex; }

  .s-features-grid { grid-template-columns:1fr 1fr; }
  .s-pricing-grid { grid-template-columns:1fr; max-width:100%; margin-left:auto; margin-right:auto; }
  .s-formation-grid { grid-template-columns:1fr; }
  .s-ba-grid { grid-template-columns:1fr; }
}

@media (max-width:768px) {
  .s-sidebar { display:none; }
  .s-mockup-body { min-height:240px; }
  .s-mockup-main { padding:12px 14px; }
  .s-feedback-grid { grid-template-columns:1fr; }

  .s-for-you-grid { grid-template-columns:1fr; }
  .s-features-grid { grid-template-columns:1fr; }
  .s-steps-grid { grid-template-columns:1fr; gap:40px; }

  .s-stats-grid { grid-template-columns:1fr; gap:24px; }

  .s-section { padding:64px 0; }
  .s-hero { padding:80px 16px 32px; }
  .s-hero-sub br { display:none; }

  .s-formation-block { padding:28px 24px; }

  .s-form-row { flex-direction:column; }
  .s-btn-submit { width:100%; justify-content:center; }

  .phone-scroll { display:none; }

  .s-mockup-inner { animation:none; }
  .s-mockup-header { flex-direction:column; align-items:flex-start; gap:8px; }

  .s-ba-card { padding:24px; }
  .s-narrow { margin-bottom:48px; }
}

@media (max-width:480px) {
  h2 { letter-spacing:-1px; }
  .s-hero h1 { letter-spacing:-1.5px; }
  .s-pricing-card { padding:24px 20px; }
  .s-feature-card { padding:24px; }
  .s-footer-inner { flex-direction:column; text-align:center; }
  .s-waveform { height:36px; }
  .s-anno p { font-size:10px; }
  .s-score-total { font-size:16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; }
}

/* Hover only for pointer devices */
@media (hover: none) {
  .s-feature-card:hover { transform:none; }
  .s-pricing-card:hover { transform:none; }
  .s-btn-primary:hover { transform:none; filter:none; }
}
