:root {
  --bg: #0f1115;
  --bg-soft: #161a22;
  --card: rgba(255,255,255,0.06);
  --text: #f5f7fb;
  --muted: #aab3c5;
  --line: rgba(255,255,255,0.1);
  --accent: #ff5a36;
  --accent-2: #ffb02e;
  --green: #6ee7b7;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2230 0%, var(--bg) 45%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.08;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 16px 16px;
}
.site-header, .site-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
}
.site-header nav { display: flex; gap: 18px; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.02em; }
.brand img { width: 40px; height: 40px; }
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  min-height: 78vh; padding: 36px 0 48px;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-2); font-size: 0.77rem; font-weight: 800; }
h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 0.96; margin: 12px 0 18px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 0; }
h3 { margin: 12px 0 8px; font-size: 1.15rem; }
.lede, p { color: var(--muted); line-height: 1.65; }
.hero-actions, .micro-points { display: flex; gap: 14px; flex-wrap: wrap; padding: 0; margin: 24px 0 0; list-style: none; }
.micro-points li {
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); padding: 10px 14px; border-radius: 999px; color: #d8deec;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 20px; border-radius: 999px; font-weight: 700; transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #151515; }
.btn-secondary, .btn-ghost { border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--text); }
.hero-demo, .proof article, .steps article, .positioning-grid article, .launch-form, .faq-list details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-demo { padding: 24px; }
.shredder-card {
  position: relative; overflow: hidden; min-height: 360px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,0.14);
}
.paper-slot {
  position: absolute; top: 56px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 14px; background: #08090d; border-radius: 999px; z-index: 3;
}
.paper {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: min(75%, 300px); min-height: 220px; padding: 26px 20px;
  background: linear-gradient(180deg, #fffef9, #f3eadc); color: #222; border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.25); transition: transform 1s ease-in, opacity .8s ease;
}
.paper.shredding { transform: translate(-50%, 235px) scale(.92); opacity: 0.12; }
.paper p { color: #403629; font-family: Georgia, serif; font-size: 1.1rem; line-height: 1.55; margin: 0; }
.blades {
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: repeating-linear-gradient(90deg, #2a2f3a 0 14px, #0e1118 14px 24px);
  border-top: 6px solid #5a6477;
}
.confetti { position: absolute; inset: 0; pointer-events: none; }
.confetti span {
  position: absolute; width: 8px; height: 18px; border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: fall 1.6s ease forwards;
}
@keyframes fall {
  from { transform: translateY(0) rotate(0); opacity: 1; }
  to { transform: translateY(260px) rotate(280deg); opacity: 0; }
}
.demo-controls { display: grid; gap: 14px; margin-top: 18px; }
textarea, input, select {
  width: 100%; padding: 16px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(8,10,14,0.7); color: var(--text); font: inherit;
}
section { padding: 48px 0; }
.proof, .steps, .positioning-grid { display: grid; gap: 18px; }
.proof { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(3, 1fr); }
.positioning-grid { grid-template-columns: repeat(3, 1fr); }
.proof article, .steps article, .positioning-grid article, .launch-form, .faq-list details { padding: 24px; }
.steps span {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); color: var(--accent-2); font-weight: 800;
}
.section-heading { margin-bottom: 20px; }
.launch-form { display: grid; gap: 16px; max-width: 720px; }
.form-note { font-size: .94rem; margin: 0; }
.faq-list { display: grid; gap: 14px; }
summary { cursor: pointer; font-weight: 700; }
.site-footer { padding-bottom: 48px; color: var(--muted); }
@media (max-width: 920px) {
  .hero, .proof, .steps, .positioning-grid { grid-template-columns: 1fr; }
  .site-header, .site-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
  .site-header nav { flex-wrap: wrap; }
}
