/* ============================================
   AppShots Website - style.css
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #5B7CFF;
  --purple: #7C4DFF;
  --pink: #EC4899;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --indigo: #6366F1;

  --bg: #050510;
  --bg-2: #0A0A1A;
  --bg-3: #111128;
  --surface: #16163A;
  --surface-2: #1E1E4A;
  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.1);

  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.7);
  --text-3: rgba(255, 255, 255, 0.4);

  --gradient: linear-gradient(135deg, var(--blue), var(--purple));
  --gradient-text: linear-gradient(135deg, #5B7CFF, #B47CFF, #EC4899);
  --glow: rgba(91, 124, 255, 0.15);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-full: 100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Gradient Text --- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 24px rgba(91, 124, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91, 124, 255, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: white;
  color: #0A0A1A;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--gradient);
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(91, 124, 255, 0.4);
  transform: translateY(-1px);
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(91, 124, 255, 0.15), rgba(124, 77, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(91, 124, 255, 0.08);
  border: 1px solid rgba(91, 124, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-2);
}

/* --- Hero Phone Mockup --- */
.hero-mockup {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.mockup-phone {
  position: relative;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 120px rgba(91, 124, 255, 0.1);
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #0A0A1A;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #0D0D20;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/17;
  display: flex;
  flex-direction: column;
}

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
}

.mock-toolbar-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.mock-toolbar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.mock-canvas {
  flex: 1;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-screenshot {
  width: 85%;
  background: linear-gradient(180deg, #1E1B4B, #312E81);
  border-radius: 12px;
  padding: 20px 16px 16px;
  text-align: center;
}

.mock-device-frame {
  width: 55%;
  margin: 0 auto 12px;
  background: #1A1A2E;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.mock-device-screen {
  background: #0D0D20;
  border-radius: 6px;
  overflow: hidden;
}

.mock-app-ui {
  padding: 4px;
}

.mock-status-bar {
  height: 4px;
  margin-bottom: 4px;
}

.mock-app-header {
  height: 12px;
  background: rgba(91, 124, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 6px;
}

.mock-app-card {
  height: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  margin-bottom: 4px;
}

.mock-app-card.short {
  width: 70%;
  height: 14px;
}

.mock-headline {
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.mock-subline {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}

.mock-bottom-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px 20px 20px;
}

.mock-tab {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
}

.mock-tab.active {
  background: var(--blue);
  width: 36px;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(22, 22, 58, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.float-card-1 {
  top: 30%;
  left: -80px;
  animation-delay: 0s;
}

.float-card-2 {
  top: 15%;
  right: -80px;
  animation-delay: -2s;
}

.float-card-3 {
  bottom: 20%;
  right: -60px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.float-desc {
  font-size: 11px;
  color: var(--text-3);
  white-space: nowrap;
}

/* --- Social Proof --- */
.social-proof {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 32px;
}

.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(91, 124, 255, 0.08);
  border: 1px solid rgba(91, 124, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Features Grid --- */
.features {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(91, 124, 255, 0.15);
}

.feature-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.feature-card-large .feature-content {
  padding: 40px 40px 40px 0;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Editor Preview Mock */
.feature-visual {
  padding: 32px 0 32px 32px;
  height: 100%;
  display: flex;
  align-items: center;
}

.editor-preview {
  display: flex;
  gap: 2px;
  background: #0D0D20;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  width: 100%;
  height: 260px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.ep-sidebar {
  width: 80px;
  background: #0F0F25;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--border);
}

.ep-layer {
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

.ep-layer.active {
  background: rgba(91, 124, 255, 0.15);
  border: 1px solid rgba(91, 124, 255, 0.3);
}

.ep-canvas {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ep-device {
  width: 60px;
  background: #1A1A2E;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ep-screen-content {
  background: #0D0D20;
  border-radius: 4px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ep-block {
  height: 16px;
  background: rgba(91, 124, 255, 0.2);
  border-radius: 2px;
}

.ep-block.sm { height: 10px; width: 70%; }
.ep-block.xs { height: 8px; width: 50%; }

.ep-text-line {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-2);
}

.ep-inspector {
  width: 100px;
  background: #0F0F25;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--border);
}

.ep-prop {
  height: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}

.ep-color-row {
  display: flex;
  gap: 4px;
}

.ep-color {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.ep-color.c1 { background: var(--blue); }
.ep-color.c2 { background: var(--purple); }
.ep-color.c3 { background: var(--pink); }
.ep-color.c4 { background: var(--green); }

/* --- How It Works --- */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-2);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(91, 124, 255, 0.2), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}

.step-visual {
  margin-bottom: 24px;
}

.step-screen {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.step-arrow {
  color: var(--text-3);
  padding-top: 140px;
  flex-shrink: 0;
}

/* Step visuals */
.sv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.sv-template {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.sv-template.active {
  background: rgba(91, 124, 255, 0.1);
  border-color: var(--blue);
  box-shadow: 0 0 16px rgba(91, 124, 255, 0.2);
}

.sv-editor {
  display: flex;
  gap: 12px;
  width: 100%;
  height: 100%;
  align-items: center;
}

.sv-canvas-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sv-phone-mini {
  width: 50px;
  height: 80px;
  background: #1A1A2E;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.sv-phone-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(91, 124, 255, 0.15), rgba(124, 77, 255, 0.1));
  border-radius: 5px;
}

.sv-text-el {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed var(--border-2);
  border-radius: 4px;
  color: var(--text-2);
}

.sv-tools {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-tool {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.sv-export {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.sv-export-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(91, 124, 255, 0.3);
}

.sv-export-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.sv-export-fill {
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  animation: fill-bar 2s ease-in-out infinite;
}

@keyframes fill-bar {
  0% { width: 0%; }
  60%, 100% { width: 100%; }
}

.sv-export-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

/* --- Showcase --- */
.showcase {
  padding: 120px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
  transform: translateY(-8px);
}

.showcase-screen {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 15%, transparent), color-mix(in srgb, var(--accent) 5%, var(--surface)));
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: var(--radius);
  padding: 28px 20px 0;
  text-align: center;
  height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sc-header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sc-device {
  flex: 1;
  background: #1A1A2E;
  border-radius: 12px 12px 0 0;
  padding: 12px 12px 0;
  margin: 0 8px;
}

.sc-app-content {
  height: 100%;
  border-radius: 8px 8px 0 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-app-content.blue { background: linear-gradient(180deg, #1E3A5F, #0F1B2E); }
.sc-app-content.pink { background: linear-gradient(180deg, #4A1942, #1F0F1E); }
.sc-app-content.green { background: linear-gradient(180deg, #134E4A, #0B1F1E); }
.sc-app-content.amber { background: linear-gradient(180deg, #451A03, #1C0F02); }

.sc-row {
  height: 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.sc-row.short {
  width: 60%;
}

.sc-card {
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}

.sc-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 3px solid rgba(16, 185, 129, 0.4);
  margin: 0 auto;
}

.sc-list-item {
  height: 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

/* --- Pricing --- */
.pricing {
  padding: 120px 0;
  background: var(--bg-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-save {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--border-2);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(91, 124, 255, 0.08), var(--surface));
  border-color: rgba(91, 124, 255, 0.3);
  box-shadow: 0 0 60px rgba(91, 124, 255, 0.1);
  transform: scale(1.04);
}

.popular-badge,
.lifetime-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.popular-badge {
  background: var(--gradient);
  color: white;
}

.lifetime-badge {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.price {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.period {
  font-size: 15px;
  color: var(--text-3);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.pricing-features li svg {
  flex-shrink: 0;
}

/* --- CTA --- */
.cta {
  padding: 120px 0;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(91, 124, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  position: relative;
}

.cta-card .btn {
  position: relative;
}

/* --- Footer --- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

/* --- Legal Pages --- */
.legal-page {
  padding: 140px 0 80px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-3);
}

.legal-content {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-section h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-section p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.legal-section ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}

.legal-section a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(91, 124, 255, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.legal-section a:hover {
  text-decoration-color: var(--blue);
}

.legal-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 12px;
}

.legal-contact p {
  margin-bottom: 4px;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}

/* =====================
   Animations
   ===================== */

/* --- Hero Entrance Sequence --- */
.anim-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--delay, 0) * 0.12s + 0.2s);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Scroll Reveal System --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Animated Gradient Text --- */
.gradient-text {
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* --- Button Shine Effect --- */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { left: -75%; }
  50% { left: 125%; }
}

/* --- Floating Orbs (Hero) --- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--blue);
  top: 10%;
  left: -5%;
  animation: orbFloat1 16s ease-in-out infinite;
}

.hero-orb-2 {
  width: 250px;
  height: 250px;
  background: var(--purple);
  top: 50%;
  right: -5%;
  animation: orbFloat2 20s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--pink);
  bottom: 5%;
  left: 20%;
  animation: orbFloat3 14s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33% { transform: translate(60px, -40px) scale(1.1); opacity: 0.6; }
  66% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.35; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(-50px, -60px) scale(1.15); opacity: 0.5; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
  50% { transform: translate(40px, -50px) scale(1.2); opacity: 0.45; }
}

/* --- Floating Particles --- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleRise linear infinite;
}

.hero-particles span:nth-child(1)  { left: 8%;  animation-duration: 12s; animation-delay: 0s;  }
.hero-particles span:nth-child(2)  { left: 15%; animation-duration: 16s; animation-delay: -2s; width: 2px; height: 2px; }
.hero-particles span:nth-child(3)  { left: 25%; animation-duration: 10s; animation-delay: -4s; }
.hero-particles span:nth-child(4)  { left: 35%; animation-duration: 14s; animation-delay: -6s; width: 4px; height: 4px; opacity: 0.2; }
.hero-particles span:nth-child(5)  { left: 45%; animation-duration: 18s; animation-delay: -1s; }
.hero-particles span:nth-child(6)  { left: 55%; animation-duration: 11s; animation-delay: -3s; width: 2px; height: 2px; }
.hero-particles span:nth-child(7)  { left: 65%; animation-duration: 15s; animation-delay: -5s; }
.hero-particles span:nth-child(8)  { left: 72%; animation-duration: 13s; animation-delay: -7s; width: 4px; height: 4px; opacity: 0.15; }
.hero-particles span:nth-child(9)  { left: 82%; animation-duration: 17s; animation-delay: -2s; }
.hero-particles span:nth-child(10) { left: 90%; animation-duration: 12s; animation-delay: -8s; width: 2px; height: 2px; }
.hero-particles span:nth-child(11) { left: 50%; animation-duration: 19s; animation-delay: -10s; }
.hero-particles span:nth-child(12) { left: 20%; animation-duration: 14s; animation-delay: -9s; width: 2px; height: 2px; }

@keyframes particleRise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

/* --- Hero Glow Breathe --- */
.hero-glow {
  animation: glowBreathe 6s ease-in-out infinite;
}

.hero-glow-2 {
  animation: glowBreathe 8s ease-in-out infinite reverse;
}

@keyframes glowBreathe {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

/* --- Phone Mockup Entry --- */
.mockup-phone {
  animation: phoneFloat 6s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Feature Card Hover Glow --- */
.feature-card {
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, rgba(91, 124, 255, 0.15), rgba(124, 77, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 1;
}

/* --- Feature Icon Bounce on Card Hover --- */
.feature-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* --- Step Number Glow Pulse --- */
.step-number {
  animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* --- Showcase Card Tilt Hover --- */
.showcase-item {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-item:hover {
  transform: translateY(-8px) scale(1.02);
}

.showcase-item:hover .showcase-screen {
  box-shadow: 0 20px 60px -10px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* --- Pricing Card Hover Lift --- */
.pricing-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 24px 60px -12px rgba(91, 124, 255, 0.25);
}

/* --- CTA Section Orbs --- */
.cta-card {
  position: relative;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 200px;
  height: 200px;
  background: var(--blue);
  top: -60px;
  left: 10%;
  opacity: 0.15;
  animation: ctaOrb 8s ease-in-out infinite;
}

.cta-orb-2 {
  width: 180px;
  height: 180px;
  background: var(--purple);
  bottom: -40px;
  right: 10%;
  opacity: 0.12;
  animation: ctaOrb 10s ease-in-out infinite reverse;
}

@keyframes ctaOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.2); }
}

/* --- Nav Logo Hover --- */
.nav-logo .logo-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover .logo-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* --- Nav CTA Pulse --- */
.nav-cta {
  animation: navPulse 3s ease-in-out infinite;
}

@keyframes navPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 124, 255, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(91, 124, 255, 0.2); }
}

/* --- Section Badge Shimmer --- */
.section-badge {
  position: relative;
  overflow: hidden;
}

.section-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(91, 124, 255, 0.15), transparent);
  animation: badgeShimmer 4s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* --- Hero Badge Border Glow --- */
.hero-badge {
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             badgeBorderGlow 3s ease-in-out infinite 1s;
  opacity: 0;
}

@keyframes badgeBorderGlow {
  0%, 100% { border-color: rgba(91, 124, 255, 0.2); box-shadow: 0 0 0 0 rgba(91, 124, 255, 0); }
  50% { border-color: rgba(91, 124, 255, 0.5); box-shadow: 0 0 20px rgba(91, 124, 255, 0.1); }
}

/* --- Stat Number Count-up Feel --- */
.stat-number {
  display: inline-block;
  animation: statPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.8s;
  opacity: 0;
  transform: scale(0.5);
}

@keyframes statPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Social Proof Logo Fade-in Stagger --- */
.logo-placeholder {
  opacity: 0;
  animation: logoFadeIn 0.5s ease forwards;
}

.revealed .logo-placeholder:nth-child(1) { animation-delay: 0s; }
.revealed .logo-placeholder:nth-child(2) { animation-delay: 0.1s; }
.revealed .logo-placeholder:nth-child(3) { animation-delay: 0.2s; }
.revealed .logo-placeholder:nth-child(4) { animation-delay: 0.3s; }
.revealed .logo-placeholder:nth-child(5) { animation-delay: 0.4s; }

@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Override for social proof (needs revealed to trigger children) */
.social-proof.reveal .logo-placeholder {
  animation: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.social-proof.revealed .logo-placeholder {
  opacity: 1;
  transform: translateY(0);
}

.social-proof.revealed .logo-placeholder:nth-child(1) { transition-delay: 0.05s; }
.social-proof.revealed .logo-placeholder:nth-child(2) { transition-delay: 0.1s; }
.social-proof.revealed .logo-placeholder:nth-child(3) { transition-delay: 0.15s; }
.social-proof.revealed .logo-placeholder:nth-child(4) { transition-delay: 0.2s; }
.social-proof.revealed .logo-placeholder:nth-child(5) { transition-delay: 0.25s; }

/* --- Editor Preview Layers Animation --- */
.ep-layer {
  animation: layerSlide 0.4s ease forwards;
  opacity: 0;
  transform: translateX(-10px);
}

.ep-layer:nth-child(1) { animation-delay: 1.2s; }
.ep-layer:nth-child(2) { animation-delay: 1.4s; }
.ep-layer:nth-child(3) { animation-delay: 1.6s; }
.ep-layer:nth-child(4) { animation-delay: 1.8s; }

@keyframes layerSlide {
  to { opacity: 1; transform: translateX(0); }
}

/* --- Active Template Pulse --- */
.sv-template.active {
  animation: templatePulse 2.5s ease-in-out infinite;
}

@keyframes templatePulse {
  0%, 100% { box-shadow: 0 0 16px rgba(91, 124, 255, 0.2); }
  50% { box-shadow: 0 0 28px rgba(91, 124, 255, 0.4); }
}

/* --- Export Icon Bounce --- */
.sv-export-icon {
  animation: exportBounce 2s ease-in-out infinite;
}

@keyframes exportBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Pricing Popular Card Border Glow --- */
.pricing-card.popular {
  animation: popularGlow 3s ease-in-out infinite;
}

@keyframes popularGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(91, 124, 255, 0.1); }
  50% { box-shadow: 0 0 80px rgba(91, 124, 255, 0.2), 0 0 120px rgba(91, 124, 255, 0.05); }
}

/* --- Step Screen Hover --- */
.step-screen {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover .step-screen {
  transform: scale(1.03);
  border-color: var(--border-2);
  box-shadow: 0 12px 40px -10px rgba(91, 124, 255, 0.15);
}

/* --- Reduce Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .anim-hero {
    opacity: 1;
    transform: none;
  }
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-large {
    grid-column: span 2;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .float-card-1 { left: -40px; }
  .float-card-2 { right: -40px; }
  .float-card-3 { right: -30px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-mockup {
    max-width: 280px;
  }

  .float-card {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-visual {
    padding: 24px;
  }

  .feature-card-large .feature-content {
    padding: 0 24px 24px;
  }

  .editor-preview {
    border-radius: 12px;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-arrow {
    display: none;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .showcase-screen {
    height: 260px;
    padding: 20px 12px 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
  }

  .pricing-card.popular {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }
}
