/* ── Tokens ──────────────────────────────────────────── */
:root {
  --bg: #08111f;
  --bg-soft: #0f1b2d;
  --panel: rgba(10, 18, 34, 0.74);
  --panel-light: rgba(255, 255, 255, 0.07);
  --text: #ecf4ff;
  --muted: #9ab0ca;
  --line: rgba(255, 255, 255, 0.12);
  --mint: #86efac;
  --cyan: #67e8f9;
  --gold: #facc15;
  --hot: #ff7a59;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.3);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  animation: fadeIn .2s ease both;
  background:
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.16), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(250, 204, 21, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 122, 89, 0.14), transparent 24%),
    linear-gradient(180deg, #07101d 0%, #0a1324 45%, #09101b 100%);
}

h1, h2, h3, h4,
.topbar, .cta-btn, .section-tag,
.stack-label, .logo-item span,
.plan-name, .price-amount, .price-cta,
.faq-q, .guide-card h3,
.btn, button {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 88%);
}

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

.shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 0;
}

/* ── Site Notice Banner ───────────────────────────────── */
.site-notice {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
  color: var(--text);
  position: relative;
  z-index: 21;
}

.site-notice-headline {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-notice-body {
  font-size: 0.8rem;
  font-weight: 400;
}

.site-notice-body a {
  text-decoration: underline;
  color: var(--cyan);
}

.site-notice-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

/* ── Navbar ──────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 13, 24, 0.55);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand img { margin: -4px 0 4px; }

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta {
  padding: 12px 18px;
  border-radius: 10px;
  color: #06111d !important;
  background: linear-gradient(135deg, var(--cyan), #b8ffda);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(103, 232, 249, 0.22);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #86efac, var(--cyan));
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 2.5rem 1rem 0;
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 900px;
  height: 550px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(79, 70, 229, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 35% 45%, rgba(103, 232, 249, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 65% 55%, rgba(134, 239, 172, 0.22) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero:has(.is-terminal-success)::after {
  opacity: 1;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.75rem;
  animation: badge-in 1.2s ease forwards;
}

@keyframes badge-in {
  0%   { opacity: 0; transform: scale(.85); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-badge img {
  height: 52px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #f8fbff;
}

.hero-underline {
  background-image: linear-gradient(135deg, var(--mint), var(--cyan));
  background-position: 0 88%;
  background-size: 0% .12em;
  background-repeat: no-repeat;
  padding-bottom: .06em;
  transition: background-size 0.8s cubic-bezier(.4,0,.2,1);
}
.hero-underline.visible {
  background-size: 100% .12em;
}

.hero-tagline {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--muted);
  margin: 1rem 0 1.75rem;
  line-height: 1.4;
}

.cursor {
  display: inline-block;
  width: .65em;
  height: .15em;
  background: var(--mint);
  vertical-align: baseline;
  margin-left: .1em;
  animation: blink 1s step-end infinite;
}

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

/* ── Terminal ─────────────────────────────────────────── */
.terminal {
  background: linear-gradient(180deg, #0b1321, #080f1b);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem 1.5rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: .8rem;
  line-height: 1.7;
  color: #cfdef2;
  text-align: left;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.terminal::after {
  display: none;
}

@keyframes logoPulse {
  0%, 100% { opacity: .22; transform: translate(0, -50%) scale(1); }
  50%      { opacity: .35; transform: translate(0, -50%) scale(1.05); }
}

.terminal-logo {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 100px;
  height: auto;
  opacity: .25;
  filter: blur(1px);
  pointer-events: none;
  animation: logoPulse 4s ease-in-out infinite;
}

.window-dots {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #febb2f; }
.window-dots span:nth-child(3) { background: #28c840; }

.t-prompt { color: #64748b; }
.t-cmd    { color: #f8fbff; }
.t-ok     { color: var(--mint); }
.t-url    { color: #60a5fa; }
.t-dim    { color: #475569; }

.term-command { font-size: 1.05em; }
.t-cmd.typing::after {
  content: '▋';
  color: #94a3b8;
  animation: blink-caret .6s step-end infinite;
  margin-left: 1px;
}
@keyframes blink-caret {
  50% { opacity: 0; }
}
.term-success { font-size: 1.05em; font-weight: 600; }

.term-command,
.term-gap,
.term-step,
.term-success {
  transition: opacity .28s ease, transform .28s ease;
}

.terminal.is-demo-ready .term-command,
.terminal.is-demo-ready .term-gap,
.terminal.is-demo-ready .term-step,
.terminal.is-demo-ready .term-success {
  opacity: 0;
  transform: translateY(6px);
}

.terminal.is-demo-ready .term-command.is-visible,
.terminal.is-demo-ready .term-gap.is-visible,
.terminal.is-demo-ready .term-step.is-visible,
.terminal.is-demo-ready .term-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.terminal.is-terminal-success {
  border-color: rgba(134, 239, 172, 0.3);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(134, 239, 172, 0.08);
}

/* ── CTA ──────────────────────────────────────────────── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  color: #07111d;
  background: linear-gradient(135deg, var(--mint), #d9ff9f);
  box-shadow: 0 16px 32px rgba(134, 239, 172, 0.22);
  transition: transform .15s, box-shadow .15s, filter .15s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(134, 239, 172, 0.30);
  filter: brightness(1.05);
}

.hero-cta.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.hero-cta.is-fade-in {
  transition: opacity .6s ease, transform .6s ease;
  opacity: 1;
  transform: translateY(0);
}

/* ── Trust & BYOS ────────────────────────────────────── */
.trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce7f7;
  font-size: 0.88rem;
}

.byos {
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 1.25rem;
  line-height: 1.7;
}

.byos a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.byos a:hover { text-decoration: underline; }

/* ── Sections (shared) ───────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-alt {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(103, 232, 249, 0.20), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(134, 239, 172, 0.16), transparent 50%),
    linear-gradient(180deg, #0a1324 0%, #0d1a2e 50%, #0a1324 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section-light {
  background: #f0f4f8;
  color: #1a2332;
}

.section-alt + .section-alt {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-light + .section-light {
  border-top: 1px solid #dce4ed;
}

.section-light .section-kicker {
  color: #0e7490;
}

.section-light h2 {
  color: #0f172a;
}

.section-light .section-sub {
  color: #475569;
}

.section-light .step-card {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.section-light .step-card p {
  color: #64748b;
}

.section-light .stack-group {
  background: #fff;
  border-color: #e2e8f0;
}

.section-light .stack-label {
  color: #0e7490;
}

.section-light .logo-item {
  background: #f8fafc;
  color: #1a2332;
}



.section-light .includes-list li {
  background: #fff;
  border-color: #e2e8f0;
}

.section-light .includes-list p {
  color: #64748b;
}

.section-light .includes-list strong {
  color: #0f172a;
}

.section-light .faq-item {
  background: #fff;
  border-color: #e2e8f0;
}

.section-light .faq-q {
  color: #0f172a;
}

.section-light .faq-q::after {
  color: #94a3b8;
}

.section-light .faq-a {
  color: #64748b;
}

.section-light .faq-search input {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #1a2332;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.section-light .faq-search input:hover {
  border-color: #a5b4fc;
  background: #fff;
}

.section-light .faq-search input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .1);
}

.section-light .faq-search-icon {
  color: #6366f1;
}

.section-light .faq-viewall {
  border-color: #cbd5e1;
  color: #64748b;
}

.section-light .faq-viewall:hover {
  color: #0f172a;
  border-color: #94a3b8;
}

.section-light .faq-no-results {
  color: #64748b;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 720px;
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: .75rem;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 .5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── How it works ────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  transition: opacity .4s ease, transform .4s ease;
}

.step-card .step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--hot));
  color: #08111f;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.2rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Step card animation */
.steps-grid.is-steps-ready .step-card {
  opacity: 0;
  transform: translateY(16px);
}

.steps-grid.is-steps-ready .step-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Supported stacks ────────────────────────────────── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stack-group {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.stack-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.stack-logos {
  display: grid;
  gap: 12px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.logo-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-item span {
  font-size: 0.9rem;
}

/* ── What's included ─────────────────────────────────── */
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.includes-list li {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.includes-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), #d9ff9f);
  color: #08111f;
  font-weight: 700;
  font-size: .85rem;
}

.includes-list strong {
  display: block;
  margin-bottom: .35rem;
}

.includes-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem;
}

.not-included {
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  margin-top: 2rem;
  opacity: .85;
}
.not-included a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 500;
}
.not-included a:hover { text-decoration: underline; }

/* ── Server providers CTA ────────────────────────────── */

.server-providers-home {
  margin-top: 1.5rem;
  text-align: center;
}

.server-providers-label {
  font-size: .85rem;
  color: #64748b;
  margin-bottom: .75rem;
}

.server-providers-row {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.provider-link-home {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  text-decoration: none;
  color: #1e293b;
  transition: all .15s;
  background: #fff;
}

.provider-link-home:hover {
  border-color: #4f46e5;
  background: #eef2ff;
}

.provider-icon-home {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.provider-name-home {
  font-weight: 600;
  font-size: .9rem;
}

.provider-detail-home {
  color: #64748b;
  font-size: .78rem;
}

.provider-arrow-home {
  color: #4f46e5;
  font-weight: 600;
  opacity: 0;
  transition: opacity .15s, transform .15s;
  transform: translateX(-4px);
}

.provider-link-home:hover .provider-arrow-home {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 520px) {
  .server-providers-row { flex-direction: column; align-items: center; }
  .provider-link-home { width: 100%; max-width: 320px; }
}

/* ── Signup ───────────────────────────────────────────── */
.signup-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.signup-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 .75rem;
}

.signup-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .75rem;
}

.signup-sub {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.signup-points {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.signup-point {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--muted);
}

.signup-point::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

.signup-form label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .35rem;
  color: var(--muted);
}

.signup-form .form-tag {
  font-size: .72rem;
  font-weight: 400;
  color: var(--muted);
  opacity: .7;
  margin-left: .35rem;
}

.signup-input-wrap {
  position: relative;
  margin-bottom: .85rem;
}

.signup-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.signup-input-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signup-input {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .15s;
}

.signup-input:focus {
  border-color: var(--cyan);
}

.signup-input::placeholder {
  color: rgba(154, 176, 202, 0.5);
}

.signup-checkbox {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: .85rem;
  cursor: pointer;
}

.signup-checkbox input {
  margin-top: 3px;
  accent-color: var(--mint);
}

.signup-checkbox a {
  color: var(--cyan);
  text-decoration: underline;
}

.signup-submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: #06111d;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}

.signup-submit:hover { opacity: .9; }

.signup-note {
  font-size: .75rem;
  color: var(--muted);
  opacity: .7;
  margin: .75rem 0 0;
  text-align: center;
}

.signup-status {
  margin-top: .5rem;
  font-size: .85rem;
  text-align: center;
}

.signup-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ── Guides ───────────────────────────────────────────── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #dce4ed;
  background: #fff;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}

.guide-card:hover {
  border-color: #c0ccd8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.guide-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #e0f2fe, #dcfce7);
}

.guide-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #1e40af;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-card h3 {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  color: #1e293b;
}

.guide-card p {
  margin: 0;
  font-size: .85rem;
  color: #64748b;
  line-height: 1.55;
}

/* ── Pricing ──────────────────────────────────────────── */
.price-card {
  max-width: 440px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.08), rgba(103, 232, 249, 0.06)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.offer-wrap { margin-top: .5rem; }

.offer-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--hot));
  color: #08111f;
  font-family: "IBM Plex Mono", monospace;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.price-label {
  color: var(--muted);
  font-size: .95rem;
  margin: .75rem 0 1.5rem;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: .6rem;
  text-align: left;
}

.price-includes li {
  padding-left: 1.5rem;
  position: relative;
  color: #dce7f7;
  font-size: .95rem;
}

.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  color: #07111d;
  background: linear-gradient(135deg, var(--mint), #d9ff9f);
  box-shadow: 0 16px 32px rgba(134, 239, 172, 0.22);
  transition: transform .15s, box-shadow .15s;
}

.price-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(134, 239, 172, 0.30);
}

.price-byos {
  font-size: .82rem;
  color: var(--muted);
  margin: .75rem 0 0;
  opacity: .8;
}

.guarantee {
  display: inline-block;
  margin-top: 1rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: .84rem;
  color: var(--muted);
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-search {
  position: relative;
  margin-bottom: 1.5rem;
}

.faq-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #64748b;
  pointer-events: none;
}

.faq-search input {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}

.faq-search input:focus {
  border-color: var(--cyan);
}

.faq-search input::placeholder {
  color: #64748b;
}

.faq-search-clear {
  display: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1;
}

.faq-search-count {
  display: none;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .8rem;
  color: #64748b;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item.faq-hidden { display: none; }

.faq-q {
  margin: 0;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 44px;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform .2s;
}

.faq-item.is-open .faq-q::after {
  content: "−";
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}

.faq-item.is-open .faq-a { display: block; }

.faq-no-results {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
}

.faq-viewall {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-size: .9rem;
  color: var(--muted);
  transition: color .15s, border-color .15s;
}

.faq-viewall:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.footer-copy {
  margin: 1rem 0 0;
  font-size: .78rem;
  opacity: .7;
}

.site-footer a {
  text-decoration: none;
  transition: color .15s;
}

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

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .includes-list {
    grid-template-columns: 1fr;
  }

  .signup-shell {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }

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

@media (max-width: 820px) {
  .shell {
    width: min(100% - 24px, 1280px);
    padding-top: 12px;
  }

  .topbar {
    border-radius: 28px;
    padding: 15px 18px;
    flex-wrap: wrap;
  }

  .hamburger { display: flex; }
  .topnav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
  }
  .topnav.open { display: flex; }
  .topnav a {
    padding: 10px 12px;
    border-radius: 10px;
  }
  .topnav a:hover { background: rgba(79,70,229,.08); }
  .nav-cta { text-align: center; }

  .hero { padding-top: 2.5rem; }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 16px, 1280px);
  }

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

  .terminal {
    font-size: .78rem;
    padding: 1.25rem;
    border-radius: 22px;
  }

  .trust { flex-direction: column; align-items: center; gap: .5rem; }

  .hero-cta {
    font-size: .95rem;
    padding: 0 22px;
    min-height: 50px;
  }

  .step-card,
  .stack-group,
  .includes-list li,
  .faq-item,
  .price-card,
  .guide-card {
    border-radius: 18px;
  }

  .signup-shell {
    padding: 1.25rem;
    border-radius: 22px;
  }

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