:root {
  --red: #FF4500;
  --red-dim: #cc3700;
  --red-glow: rgba(255,69,0,0.18);
  --bg: #0d0d0d;
  --surface: #161616;
  --border: rgba(255,255,255,0.07);
  --text: #f0ede8;
  --muted: #a09d98;
  --white: #fff;
  --upvote: #FF4500;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

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

.glow-top {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,69,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo .dot-red { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dim) !important; }

/* PAGE WRAPPER */
.page-wrap { padding-top: 64px; }

/* HERO */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,69,0,0.1);
  border: 1px solid rgba(255,69,0,0.3);
  color: var(--red);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 24px;
}
h1 .accent { color: var(--red); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-dim); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}
.stars { color: var(--red); letter-spacing: -2px; }

/* DEMO COMMENTS */
.demo-comments {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 60px auto 0;
  text-align: left;
}
.demo-comment {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  animation: slideUp 0.6s ease both;
}
.demo-comment:nth-child(1) { animation-delay: 0.1s; }
.demo-comment:nth-child(2) { animation-delay: 0.25s; }
.demo-comment:nth-child(3) { animation-delay: 0.4s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.dc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dc-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff8c42);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.dc-name { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--red); font-weight: 500; }
.dc-time { font-size: 0.72rem; color: var(--muted); margin-left: auto; }
.dc-body { font-size: 0.9rem; color: #c8c4be; line-height: 1.55; }
.dc-body strong { color: var(--red); }
.dc-footer { display: flex; align-items: center; gap: 16px; margin-top: 10px; font-size: 0.75rem; color: var(--muted); }
.dc-upvote { display: flex; align-items: center; gap: 5px; color: var(--upvote); font-weight: 600; font-family: 'DM Mono', monospace; }

/* SECTIONS */
section { padding: 90px 40px; position: relative; z-index: 1; }
.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--surface);
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-item .ti-dot { color: var(--red); font-size: 1.1em; }

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover { border-color: rgba(255,69,0,0.3); background: #1a1a1a; }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--red-glow);
  border: 1px solid rgba(255,69,0,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* HOW IT WORKS */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
}
.step { padding: 36px 28px; position: relative; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.2rem;
  opacity: 0.4;
}
.step-num { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--red); letter-spacing: 0.1em; margin-bottom: 16px; }
.step-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.step h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* TESTIMONIALS */
.testi-outer { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 20px;
  animation: ticker 40s linear infinite;
  width: max-content;
  padding: 10px 0;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  width: 320px;
  flex-shrink: 0;
}
.testi-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff8c42);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.testi-co { font-size: 0.75rem; color: var(--muted); }
.testi-text { font-size: 0.85rem; color: #b8b4ae; line-height: 1.6; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 56px auto 0;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(255,69,0,0.3); }
.price-card.featured {
  border-color: rgba(255,69,0,0.5);
  background: linear-gradient(160deg, #1d1310 0%, var(--surface) 100%);
}
.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 3rem;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount span {
  font-size: 1.4rem;
  color: var(--muted);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.price-per { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--muted); margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-features li { font-size: 0.88rem; color: #b0aca6; display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.price-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  display: block;
}
.price-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.price-btn-outline:hover { border-color: rgba(255,69,0,0.5); color: var(--white); }
.price-btn-solid { background: var(--red); color: #fff; }
.price-btn-solid:hover { background: var(--red-dim); }
.save-tag {
  display: inline-block;
  background: rgba(255,69,0,0.12);
  color: var(--red);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 500;
}

/* FAQ */
.faq-wrap { max-width: 720px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none; border: none;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.98rem;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-arrow { color: var(--red); font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 40px 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-brand .contact-info { margin-top: 18px; font-size: 0.82rem; color: var(--muted); }
.footer-brand .contact-info a { color: var(--red); text-decoration: none; }
.footer-col h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--red); }

/* LEGAL */
.legal-page { max-width: 740px; margin: 0 auto; padding: 70px 40px 100px; }
.legal-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; text-align: left; }
.legal-date { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--muted); margin-bottom: 48px; }
.legal-page h2 { font-size: 1.15rem; color: var(--white); margin: 36px 0 12px; font-weight: 700; }
.legal-page p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.legal-page a { color: var(--red); text-decoration: none; }

/* CONTACT */
.contact-page { max-width: 820px; margin: 0 auto; padding: 70px 40px 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 48px; align-items: start; }
.contact-info-block h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.contact-info-block p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.contact-info-block a { color: var(--red); text-decoration: none; }
.contact-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-detail .cd-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-family: 'DM Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(255,69,0,0.5); }
.form-group textarea { min-height: 130px; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--red-dim); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 20px; }
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3) { display: none; }
  section, .hero { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .legal-page, .contact-page { padding-left: 20px; padding-right: 20px; }
}
