:root {
  --bg: #0c111a;
  --panel: #132135;
  --panel-soft: #162740;
  --text: #f7fbff;
  --muted: #d8e2f0;
  --accent: #7fe0ff;
  --accent-strong: #c1ecff;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius-lg: 16px;
  --radius: 12px;
  --radius-sm: 10px;
  --space-sm: 10px;
  --space-md: 18px;
  --space-lg: 28px;
  --space-xl: 52px;
  --font-h1: clamp(32px, 4vw, 52px);
  --font-h2: clamp(26px, 3vw, 38px);
  --font-h3: clamp(20px, 2.2vw, 24px);
  --font-body: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: 'Inter', 'SF Pro Display', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Background kept simple and static */

a { color: var(--accent-strong); text-decoration: none; }
a:hover, a:focus { color: #cfe3ff; }

p { margin: 0 0 var(--space-md); color: var(--muted); max-width: 74ch; }

h1, h2, h3, h4 { margin: 0; color: var(--text); line-height: 1.2; }
h1 { font-size: var(--font-h1); }
h2 { font-size: var(--font-h2); }
h3 { font-size: var(--font-h3); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container { width: min(1200px, 92vw); margin: 0 auto; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: top 0.2s ease;
  z-index: 200;
}

.skip-link:focus { top: 14px; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 20, 0.75);
  border-bottom: 1px solid var(--border);
}

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 14px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); }
.brand-logo { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 15px; }
.brand-tag { font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }

nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 12px; align-items: flex-start; flex-direction: column; }

nav a { color: var(--muted); font-size: 15px; letter-spacing: 0.01em; padding: 8px 10px; border-radius: 10px; }
nav a:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }

.nav-cta { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border); background: linear-gradient(145deg, rgba(123, 182, 255, 0.26), rgba(123, 182, 255, 0.12)); color: var(--text); font-weight: 700; box-shadow: var(--shadow); }
.nav-cta:hover { border-color: var(--accent-strong); }

.menu-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; color: var(--text); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.menu-toggle span::after, .menu-toggle span::before { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.nav-menu { position: fixed; inset: 72px 16px auto 16px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 14px; display: none; flex-direction: column; gap: 10px; z-index: 120; }
.nav-menu.open { display: flex; }

.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; z-index: 80; }
.nav-overlay.show { opacity: 1; pointer-events: all; }

.nav-inline { display: none; align-items: center; gap: 12px; }

body.nav-open { overflow: hidden; }

section { padding: var(--space-xl) 0; }
section + section { border-top: 1px solid var(--border); }

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-theme { position: relative; isolation: isolate; background: transparent; }
.section-theme::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--section-gradient, linear-gradient(135deg, rgba(127, 224, 255, 0.04), rgba(12, 17, 26, 0.94)));
}
.theme-slate { --section-gradient: radial-gradient(520px at 18% 20%, rgba(127, 224, 255, 0.1), transparent 55%), linear-gradient(135deg, rgba(127, 224, 255, 0.06), rgba(12, 17, 26, 0.94)); }
.theme-teal { --section-gradient: radial-gradient(520px at 80% 15%, rgba(100, 240, 205, 0.1), transparent 55%), linear-gradient(135deg, rgba(100, 240, 205, 0.06), rgba(12, 17, 26, 0.94)); }
.theme-purple { --section-gradient: radial-gradient(520px at 50% 75%, rgba(185, 152, 255, 0.1), transparent 55%), linear-gradient(135deg, rgba(185, 152, 255, 0.06), rgba(12, 17, 26, 0.94)); }
.theme-amber { --section-gradient: radial-gradient(520px at 30% 30%, rgba(255, 196, 124, 0.1), transparent 55%), linear-gradient(135deg, rgba(255, 196, 124, 0.06), rgba(12, 17, 26, 0.94)); }
.theme-rose { --section-gradient: radial-gradient(520px at 70% 70%, rgba(255, 143, 178, 0.1), transparent 55%), linear-gradient(135deg, rgba(255, 143, 178, 0.06), rgba(12, 17, 26, 0.94)); }
.theme-ink { --section-gradient: radial-gradient(520px at 40% 60%, rgba(127, 224, 255, 0.05), transparent 55%), linear-gradient(135deg, rgba(12, 17, 26, 0.98), rgba(19, 33, 53, 0.92)); }

.what-we-do {
  position: relative;
  overflow: hidden;
  --section-gradient: radial-gradient(720px at 20% 10%, rgba(120, 255, 214, 0.16), transparent 60%), linear-gradient(145deg, rgba(20, 36, 28, 0.94), rgba(10, 16, 20, 0.96));
}
.what-we-do::before,
.what-we-do::after {
  content: '';
  position: absolute;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.6;
}
.what-we-do::before {
  inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2378ffd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M32 6c-12 6-19 18-19 30 0 10 8 18 18 18 12 0 19-9 19-20C50 18 42 8 32 6Z'/><path d='M32 6c0 18-2 34-10 42'/><path d='M24 32c4 4 12 8 18 9'/></svg>") no-repeat 10% 20% / 240px,
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2378ffd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M32 6c-12 6-19 18-19 30 0 10 8 18 18 18 12 0 19-9 19-20C50 18 42 8 32 6Z'/><path d='M32 6c0 18-2 34-10 42'/><path d='M24 32c4 4 12 8 18 9'/></svg>") no-repeat 85% 70% / 200px,
    radial-gradient(circle at 50% 50%, rgba(120, 255, 214, 0.32), transparent 60%),
    radial-gradient(circle at 20% 10%, rgba(120, 255, 214, 0.22), transparent 60%);
  opacity: 0.32;
}
.what-we-do::after {
  inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(146, 255, 180, 0.16), transparent 65%),
    radial-gradient(circle at 40% 60%, rgba(120, 255, 214, 0.12), transparent 60%);
  opacity: 0.45;
}
.what-we-do .section-header h2,
.what-we-do .section-header p,
.what-we-do .card h3 {
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
}
.what-we-do .cards-grid { gap: 18px; }
.what-we-do .what-glass {
  background: rgba(16, 30, 24, 0.7);
  border: 1px solid rgba(120, 255, 214, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.what-we-do .what-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120, 255, 214, 0.12), rgba(120, 255, 214, 0));
  opacity: 0.4;
}
.what-we-do .what-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.what-we-do .card {
  background: rgba(20, 34, 28, 0.6);
  border: 1px solid rgba(120, 255, 214, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}
.what-we-do .card:hover { border-color: rgba(120, 255, 214, 0.5); transform: translateY(-3px); }
.what-we-do .card-icon { background: rgba(120, 255, 214, 0.12); border-color: rgba(120, 255, 214, 0.3); }
.what-we-do .card-icon svg { color: #96ffd5; }

.why-code {
  position: relative;
  overflow: hidden;
  --section-gradient: radial-gradient(620px at 80% 20%, rgba(255, 70, 95, 0.32), transparent 60%), linear-gradient(145deg, rgba(68, 10, 18, 0.96), rgba(22, 6, 10, 0.96));
}
.why-code::before,
.why-code::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(120deg, rgba(255, 120, 157, 0.08) 0%, rgba(255, 120, 157, 0) 35%),
    linear-gradient(300deg, rgba(255, 120, 157, 0.08) 0%, rgba(255, 120, 157, 0) 40%);
}
.why-code::after {
  opacity: 0.18;
  background:
    radial-gradient(circle at 60% 60%, rgba(255, 120, 157, 0.2), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255, 120, 157, 0.05), rgba(255, 120, 157, 0.05) 2px, transparent 8px, transparent 14px);
}
.why-code .section-header h2,
.why-code .section-header p,
.why-code .card h3 {
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
}
.why-code .cards-grid {
  gap: 14px;
}
.why-code .card {
  background: rgba(36, 18, 24, 0.7);
  border: 1px solid rgba(255, 120, 157, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}
.why-code .card:hover { border-color: rgba(255, 120, 157, 0.6); transform: translateY(-3px); }
.why-code .card-icon { background: rgba(255, 120, 157, 0.12); border-color: rgba(255, 120, 157, 0.3); }
.why-code .card-icon svg { color: #ff99b4; }
.why-code .small { color: #f8dce6; }
.aurora-wrap,
.aurora-band {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-canvas {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  filter: blur(18px);
  opacity: 0.6;
  border-radius: 20px;
}

.aurora-band {
  position: relative;
  height: 120px;
  margin: -20px 0 0;
  opacity: 0.8;
}

.hero > .container,
.hero-grid {
  position: relative;
  z-index: 1;
}

.section-header { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-lg); }
.section-header p { margin: 0; }

.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: rgba(123, 182, 255, 0.12); color: var(--accent-strong); font-size: 13px; letter-spacing: 0.02em; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px; border-radius: 999px; border: 1px solid var(--border); background: linear-gradient(145deg, rgba(123, 182, 255, 0.25), rgba(123, 182, 255, 0.08)); color: var(--text); font-weight: 700; letter-spacing: 0.01em; cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; box-shadow: var(--shadow); text-align: center; }
.btn.secondary { background: rgba(255,255,255,0.02); font-weight: 600; }
.btn.plain { background: transparent; box-shadow: none; padding: 10px 12px; }
.btn.btn-build { background: linear-gradient(145deg, rgba(80, 255, 170, 0.35), rgba(80, 255, 170, 0.15)); border: 1px solid rgba(80, 255, 170, 0.7); box-shadow: 0 0 12px rgba(80, 255, 170, 0.45), 0 0 32px rgba(80, 255, 170, 0.25); animation: pulse-glow 2.4s ease-in-out infinite; }
.btn.btn-build:hover { border-color: rgba(80, 255, 170, 0.95); box-shadow: 0 0 14px rgba(80, 255, 170, 0.6), 0 0 36px rgba(80, 255, 170, 0.35); transform: translateY(-1px); }
.btn:hover { transform: translateY(-1px); border-color: var(--accent-strong); }

.hero { padding: 110px 0 80px; }
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; }
.hero p { max-width: 640px; }

.value-bullets { display: flex; gap: 10px; flex-wrap: wrap; margin: var(--space-md) 0; padding: 0; list-style: none; }
.value-bullets li { padding: 8px 12px; border-radius: 10px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--muted); font-weight: 600; font-size: 14px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--space-md); align-items: center; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-md); }
.trust-item { padding: 10px 12px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,0.02); color: var(--muted); font-size: 14px; }

.hero-visual {
  background: linear-gradient(145deg, rgba(123, 182, 255, 0.16), rgba(12, 17, 26, 0.9));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.hero-visual-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.pill {
  padding: 12px 18px;
  background: linear-gradient(145deg, rgba(123, 182, 255, 0.25), rgba(123, 182, 255, 0.08));
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  border-color: var(--accent-strong);
}
.meta-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.meta-card {
  background: linear-gradient(145deg, rgba(123, 182, 255, 0.12), rgba(123, 182, 255, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.meta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
}
.meta-card strong { display: block; color: var(--text); }
.meta-card .small { margin-top: 4px; display: block; }

.cards-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); transition: transform 0.2s ease, border-color 0.2s ease; display: grid; gap: 8px; }
.card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.card p { margin: 0; }

.card-icon { width: 38px; height: 38px; border-radius: 12px; background: rgba(123, 182, 255, 0.12); border: 1px solid var(--border); display: grid; place-items: center; }
.card-icon svg { width: 18px; height: 18px; color: var(--accent-strong); }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.tier { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); position: relative; display: grid; gap: 12px; }
.tier.popular { border-color: var(--accent-strong); box-shadow: 0 24px 60px rgba(123, 182, 255, 0.25); }
.tier .badge { position: absolute; top: 16px; right: 16px; background: rgba(123, 182, 255, 0.25); }
.price { font-size: 20px; font-weight: 800; }
.meta { color: var(--muted); }

.tier ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }
.tier ul li { display: flex; gap: 10px; align-items: flex-start; }
.check { width: 12px; height: 12px; border-radius: 4px; background: rgba(123, 182, 255, 0.5); margin-top: 4px; }

.tier .btn { width: 100%; justify-content: center; }
.tier .stripe-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--muted); font-weight: 600; cursor: pointer; }

.included-row { margin-top: var(--space-lg); background: var(--panel-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); }
.included-row h3 { margin-bottom: 8px; }
.included-items { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.included-items li { padding: 8px 12px; border-radius: 10px; border: 1px solid var(--border); color: var(--muted); background: rgba(255,255,255,0.02); }

.steps { display: grid; grid-template-columns: 1fr; gap: 12px; position: relative; }
.steps::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 1px; background: var(--border); display: block; }
.step { position: relative; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: flex-start; box-shadow: var(--shadow); }
.step-number { width: 36px; height: 36px; border-radius: 50%; background: rgba(123, 182, 255, 0.18); display: grid; place-items: center; font-weight: 800; color: var(--text); }
.step::before { content: ''; position: absolute; left: 18px; bottom: -12px; width: 1px; height: 12px; background: var(--border); }
.step:last-child::before { display: none; }
.stepper-line { display: none; }

.faq { display: grid; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: var(--shadow); }
.faq-button { width: 100%; text-align: left; padding: 14px 16px; background: transparent; color: var(--text); border: none; font-size: 16px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-button .indicator { width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); font-weight: 700; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; padding: 0 16px; }
.faq-item.open .faq-answer { max-height: 320px; padding: 0 16px 14px; }
.faq-answer p { margin: 10px 0 0; }

.contact { display: grid; gap: 14px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); }
.contact-row { display: flex; gap: 12px; flex-wrap: wrap; }
.contact .pill { color: var(--text); }

.final-cta { margin-top: var(--space-lg); background: var(--panel-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); display: grid; gap: 12px; }

.footer { padding: 28px 0 40px; color: var(--muted); font-size: 14px; border-top: 1px solid var(--border); }
.footer .foot-row { display: flex; flex-direction: column; gap: 10px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); padding: 6px 8px; border-radius: 8px; }
.footer-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.form { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); display: grid; gap: 12px; }
label { display: block; font-weight: 600; margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 12px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255, 255, 255, 0.03); color: var(--text); font-size: 15px;
}
textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: grid; gap: 8px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); }
.checkbox input { margin-top: 4px; }
.notice { background: rgba(123, 182, 255, 0.1); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; color: var(--muted); font-size: 14px; }

.cookie-banner { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); width: min(520px, 92vw); background: rgba(16, 24, 38, 0.95); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 16px; display: none; z-index: 120; }
.cookie-banner.show { display: block; }
.cookie-actions { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }

.small { font-size: 14px; color: var(--muted); }
.list-inline { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.section-note { color: var(--muted); font-size: 14px; margin-top: 12px; }
.thankyou { text-align: center; padding: 120px 0; }
.thankyou .badge { margin-bottom: 10px; }
.thankyou p { margin: 10px auto 0; }

.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.35s ease, transform 0.35s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse-glow {
  0% { box-shadow: 0 0 12px rgba(80, 255, 170, 0.35), 0 0 32px rgba(80, 255, 170, 0.2); }
  50% { box-shadow: 0 0 16px rgba(80, 255, 170, 0.6), 0 0 40px rgba(80, 255, 170, 0.35); }
  100% { box-shadow: 0 0 12px rgba(80, 255, 170, 0.35), 0 0 32px rgba(80, 255, 170, 0.2); }
}

@media (min-width: 720px) {
  .navbar { padding: 16px 0; }
  .nav-inline { display: flex; }
  .menu-toggle { display: none; }
  .nav-menu { position: static; display: flex; flex-direction: row; gap: 8px; background: transparent; border: none; box-shadow: none; padding: 0; }
  nav ul { flex-direction: row; align-items: center; gap: 16px; }
  .nav-overlay { display: none; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer .foot-row { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { display: flex; gap: 14px; }
  .step { flex: 1; }
  .step:not(:last-child)::after { content: ''; position: absolute; top: 30px; right: -8px; width: 16px; height: 1px; background: var(--border-strong); }
  .steps::before { content: ''; position: absolute; top: 30px; left: 0; right: 0; height: 1px; background: var(--border); z-index: 0; }
  .step { z-index: 1; }
  .step::before { display: none; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}
