/* ═══════════════════════════════════════════════════════════════════
   getvram — landing (getvram.com)
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #060810;
  --bg-s:          #0d1017;
  --bg-p:          #111520;
  --bg-card:       #161b28;
  --border:        rgba(255,255,255,0.07);
  --border-glow:   rgba(56,189,248,0.3);

  --text:          #e8eaf2;
  --text-s:        #8b93aa;
  --text-m:        #42495e;

  --cyan:   #38bdf8;
  --green:  #4ade80;
  --yellow: #fbbf24;
  --red:    #f87171;
  --purple: #a78bfa;

  --font:  system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.accent { color: var(--cyan); }
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.muted-text { color: var(--text-s); }

/* ── Scrollbar ────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(6,8,16,0.85);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-icon { color: var(--cyan); font-size: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-s);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--cyan) !important;
  color: #000 !important;
  padding: 7px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(56,189,248,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(56,189,248,0.45);
}
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-s);
  font-size: 15px;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 100px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-glow);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(56,189,248,0.08); }
.btn-full { width: 100%; justify-content: center; }

/* ── Badge ────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
  animation: pulse 2s infinite;
}

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

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 24px;
}

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

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* ── Terminal ─────────────────────────────────────────────────────── */
.terminal {
  max-width: 760px;
  margin: 0 auto 24px;
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.after-terminal { border-color: rgba(56,189,248,0.3); box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 40px rgba(56,189,248,0.06); }

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.terminal-title { font-family: var(--mono); font-size: 12px; color: var(--text-m); margin-left: 8px; }

.terminal-code {
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  color: #cdd9e5;
}
.t-comment { color: #6e7681; }
.t-key     { color: #79c0ff; }
.t-str     { color: #a5d6ff; }

/* ── Dashboard proof shot ─────────────────────────────────────────── */
.proof {
  max-width: 920px;
  margin: 48px auto 0;
  text-align: left;
}
.proof img {
  display: block;
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid rgba(56,189,248,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 40px rgba(56,189,248,0.08);
}
.proof figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-s);
  text-align: center;
}

/* ── Section utilities ────────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-s);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Pain section ─────────────────────────────────────────────────── */
.pain { padding: 100px 0; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}
.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.pain-card p { color: var(--text-s); font-size: 14px; line-height: 1.7; }
.pain-card code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(248,113,113,0.12);
  color: var(--red);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── How it works ─────────────────────────────────────────────────── */
.how { padding: 100px 0; background: var(--bg-s); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
  margin-top: 3px;
  flex-shrink: 0;
}
.step-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-body p  { color: var(--text-s); font-size: 14px; line-height: 1.7; }
.step-body code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(56,189,248,0.1);
  color: var(--cyan);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── Architecture diagram ─────────────────────────────────────────── */
.arch-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
}
.arch-box {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.arch-box.host { border-color: rgba(56,189,248,0.3); background: rgba(56,189,248,0.04); }
.arch-label { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-m); margin-bottom: 10px; }
.arch-item { font-family: var(--mono); font-size: 13px; color: var(--cyan); }
.arch-item small { display: block; color: var(--text-m); font-size: 11px; margin-top: 4px; }
.arch-arrow { text-align: center; font-family: var(--mono); font-size: 12px; color: var(--text-m); margin: 8px 0; }
.arch-containers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.arch-vram { font-family: var(--mono); font-size: 11px; color: var(--text-s); line-height: 1.6; }
.arch-box.c1 { border-color: rgba(56,189,248,0.3); }
.arch-box.c2 { border-color: rgba(74,222,128,0.3); }
.arch-box.c3 { border-color: rgba(167,139,250,0.3); }

/* ── Comparison table ─────────────────────────────────────────────── */
.comparison { padding: 100px 0; }
.table-wrap { overflow-x: auto; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comp-table th, .comp-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comp-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-m);
}
.comp-table tbody tr { transition: background 0.15s; }
.comp-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.highlight-col { background: rgba(56,189,248,0.05) !important; color: var(--cyan) !important; font-weight: 600; }
th.highlight-col { color: var(--cyan) !important; }
.yes  { color: var(--green); }
.no   { color: var(--red); }
.partial { color: var(--yellow); }

/* ── Pricing ──────────────────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--bg-s); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(56,189,248,0.12);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name  { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-size: 36px; font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--text-s); }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--text-s); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li:not(.dim) { color: var(--text); }
.plan-features .dim { color: var(--text-m); }
.plan-note {
  font-size: 13px;
  color: var(--text-s);
  margin: -8px 0 22px;
  line-height: 1.5;
}

/* ── Waitlist ─────────────────────────────────────────────────────── */
.faq { padding: 80px 0; }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-item p {
  color: var(--text-s);
  font-size: 15px;
  line-height: 1.7;
}
.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px;
}
.waitlist-text h2 { font-size: 36px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.waitlist-text p  { color: var(--text-s); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.social-proof { display: flex; gap: 32px; flex-wrap: wrap; }
.sp-num   { display: block; font-size: 28px; font-weight: 800; color: var(--cyan); }
.sp-label { font-size: 12px; color: var(--text-m); }

.waitlist-form { display: flex; flex-direction: column; gap: 14px; }
.waitlist-form label { font-size: 12px; font-weight: 600; color: var(--text-s); letter-spacing: 0.05em; text-transform: uppercase; }
.waitlist-form input,
.waitlist-form select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input:focus,
.waitlist-form select:focus { border-color: var(--border-glow); }
.waitlist-form select { appearance: none; cursor: pointer; }
.waitlist-form select option { background: var(--bg-p); }
html.with-google-fonts {
  --font: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 8px;
}
.lang-switch a {
  color: var(--text-m) !important;
  text-decoration: none;
  padding: 7px 0 !important;
  background: none !important;
  border-radius: 0 !important;
}
.lang-switch a[aria-current="page"] { color: var(--cyan) !important; }

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}
.consent-banner p {
  font-size: 13px;
  color: var(--text-s);
  line-height: 1.55;
  margin-bottom: 14px;
}
.consent-banner a { color: var(--cyan); }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.consent-actions button {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  padding: 8px 14px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.consent-actions button.ok {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-s);
  line-height: 1.5;
}
.consent-row input { margin-top: 3px; flex-shrink: 0; }
.consent-row a { color: var(--cyan); }

@media (max-width: 900px) {
  .nav-links .lang-switch,
  .nav-links .lang-switch a { display: flex !important; }
}

.waitlist-success { text-align: center; padding: 32px; }
.success-icon { font-size: 48px; color: var(--green); margin-bottom: 16px; }
.waitlist-success h3 { font-size: 22px; margin-bottom: 8px; }
.waitlist-success p { color: var(--text-s); margin-bottom: 24px; }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
  background: var(--bg-s);
}
.footer-inner {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-icon { font-size: 22px; }
.footer-brand p { color: var(--text-m); font-size: 13px; margin-top: 10px; max-width: 220px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.fc-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-m); margin-bottom: 4px; }
.footer-col a { color: var(--text-s); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-m);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pain-grid, .how-steps, .pricing-grid { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .arch-containers { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .comp-table { font-size: 12px; }
  .comp-table th, .comp-table td { padding: 10px 12px; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 0 80px; }
  .hero-title { letter-spacing: -1px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
}
