:root {
  --bg: #0f1115;
  --bg-elev: #181b22;
  --bg-card: #1d2129;
  --border: #2a2f38;
  --text: #e8e8ea;
  --text-dim: #9aa0a6;
  --accent: #f5a623;
  --accent-hover: #ffb84d;
  --primary: #4a9eff;
  --primary-hover: #6cb1ff;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { color: var(--primary-hover); }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}
.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #1a1a1a;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  color: var(--text-dim);
  font-size: 14px;
}
.site-nav a:hover {
  color: var(--text);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 120ms, transform 60ms, color 120ms;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #1a1a1a;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #1a1a1a;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--bg-elev);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  padding: 8px 14px;
  font-size: 14px;
}
.btn-ghost:hover { background: var(--bg-elev); color: var(--text); }

.btn-link {
  background: transparent;
  color: var(--text-dim);
  padding: 6px 0;
  font-size: 14px;
}
.btn-link:hover { color: var(--text); }

.btn-full { width: 100%; }
.btn-meta {
  display: block;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
}

/* ---- hero ---- */
.hero {
  padding: 64px 0 48px;
  background: radial-gradient(
    ellipse at top right,
    rgba(245, 166, 35, 0.08),
    transparent 60%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.accent { color: var(--accent); }
.lede {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 28px;
  max-width: 540px;
}
.lede strong { color: var(--text); font-weight: 600; }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.hero-shot img {
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ---- how-it-works ---- */
.how {
  padding: 80px 0;
}
.how h2,
.features h2,
.pricing h2,
.requirements h2,
.faq h2 {
  font-size: 32px;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

/* Number in the text column, image floated to a smaller right-hand
   panel. Text gets the wide column instead of competing with a giant
   image stacked below it. */
.how-step {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}
.how-step:nth-child(even) {
  grid-template-columns: 380px 1fr;
}
.how-step:nth-child(even) .how-text { order: 2; }
.how-step:nth-child(even) .how-shot { order: 1; }

.how-text {
  max-width: 560px;
}
.how-step h3 {
  margin: 0 0 12px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.how-step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 16px;
}
.how-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.how-shot img {
  border-radius: 10px;
  border: 1px solid var(--border);
  width: 100%;
}

/* ---- features ---- */
.features {
  padding: 80px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.feature p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
}

/* ---- pricing ---- */
.pricing {
  padding: 80px 0;
}
.pricing-inner {
  text-align: center;
}
.price-card {
  max-width: 380px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  text-align: left;
}
.price-tag {
  text-align: center;
  margin-bottom: 24px;
}
.amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.cadence {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 4px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14px;
}
.price-features li:before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}
.price-features li:last-child { border-bottom: 0; }

.price-card .btn-link {
  display: block;
  text-align: center;
  margin-top: 8px;
}

/* ---- requirements ---- */
.requirements {
  padding: 64px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  font-size: 15px;
  color: var(--text-dim);
}
.req-list li:before {
  content: "→ ";
  color: var(--accent);
  margin-right: 6px;
}
.req-list strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- faq ---- */
.faq {
  padding: 80px 0;
}
details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  margin-left: 12px;
}
details[open] summary::after { content: "−"; }
details p {
  margin: 12px 0 0;
  color: var(--text-dim);
  font-size: 15px;
}
details code {
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ---- footer ---- */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-inner p { margin: 4px 0; }
.footer-meta { font-size: 12px; opacity: 0.75; }

/* ---- responsive ---- */
@media (max-width: 880px) {
  .hero { padding: 40px 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy h1 { font-size: 34px; }
  .lede { font-size: 16px; }
  .how-step,
  .how-step:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .how-step:nth-child(even) .how-text { order: initial; }
  .how-step:nth-child(even) .how-shot { order: initial; }
  .how-step h3 { font-size: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-nav { gap: 14px; }
  .site-nav a:not(.btn) { display: none; }
  .how h2, .features h2, .pricing h2, .requirements h2, .faq h2 {
    font-size: 26px;
  }
}
