/* Voroa marketing homepage. Vercel Geist design system - ink #171717 on near-white, Geist. */
/* No emojis; white-label. The one accent is Vercel blue #0070f3; mesh gradient is hero-only. */
:root {
  /* Ink primary - carries CTAs, buttons, logo, headings (NOT violet). */
  --primary: #171717;
  --primary-hover: #383838;
  /* Blue accent (the only color) - deep tone + pale wash, used for icon tiles / accents. */
  --primary-dark: #0761d1;
  --primary-soft: #d3e5ff;
  --primary-line: #ebebeb;
  --accent: #0070f3;
  --text: #171717;
  --text-2: #4d4d4d;
  --text-3: #8f8f8f;
  --border: #ebebeb;
  --border-2: #f2f2f2;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --surface-3: #f2f2f2;
  --green: #12a150;
  --green-soft: #e3f6ea;
  --amber: #ab570a;
  --amber-soft: #ffefcf;
  --ink: #171717;
  --radius: 12px;
  --radius-lg: 16px;
  --maxw: 1120px;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.10), 0 8px 24px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-decoration: none; }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

.ico { width: 20px; height: 20px; flex: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; width: 100%; }
.wrap-narrow { max-width: 760px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.06s ease, box-shadow 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn .ico { width: 17px; height: 17px; }
.btn-lg { font-size: 15px; padding: 10px 18px; border-radius: 100px; }
.btn-block { display: flex; width: 100%; }

/* Marketing CTAs are ink pills; secondaries are white pills with a hairline (Geist). */
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: #d5d5d5; background: var(--surface-2); }
.btn-outline { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-outline:hover { background: var(--surface-2); border-color: #d5d5d5; }
.btn-white { background: var(--primary); color: #fff; }
.btn-white:hover { background: var(--primary-hover); }
.btn-onviolet { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-onviolet:hover { background: var(--surface-2); border-color: #d5d5d5; }

/* ---------- top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-word { font-size: 20px; font-weight: 700; letter-spacing: -0.04em; }
/* desktop: menu holds links (left) + actions (right) */
.nav-menu { flex: 1; display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 18px; margin-right: auto; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--text-2); }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.link-muted { font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.link-muted:hover { color: var(--primary); text-decoration: none; }
/* mobile hamburger (hidden on desktop) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 52px 0 28px; }
.hero-glow {
  position: absolute;
  inset: -30% 0 auto 0;
  height: 620px;
  /* The sole flourish: a soft Vercel mesh bloom (cyan -> blue -> violet -> pink -> amber). */
  background:
    radial-gradient(600px 320px at 22% -2%, rgba(0, 124, 240, 0.16), transparent 70%),
    radial-gradient(600px 340px at 55% -6%, rgba(121, 40, 202, 0.14), transparent 70%),
    radial-gradient(560px 320px at 82% 2%, rgba(255, 0, 128, 0.11), transparent 70%),
    radial-gradient(520px 300px at 100% -2%, rgba(249, 203, 40, 0.10), transparent 72%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 620px;
  background-image:
    linear-gradient(to right, rgba(16, 16, 24, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(700px 340px at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(700px 340px at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--primary-line);
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow-pill:hover { text-decoration: none; border-color: #d5d5d5; }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.16); }
.hero-title {
  margin: 16px auto 0;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.grad {
  background: linear-gradient(100deg, #007cf0 0%, #7928ca 45%, #ff0080 75%, #f9cb28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-2);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.hero-note { margin-top: 10px; font-size: 13.5px; color: var(--text-3); }

/* hero product mockup */
.mockup {
  margin: 36px auto 0;
  max-width: 940px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mk-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.mk-dotrow { display: inline-flex; gap: 6px; }
.mk-dotrow i { width: 11px; height: 11px; border-radius: 50%; background: #dcdce6; }
.mk-addr {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  margin: 0 auto;
}
.mk-app { padding: 0; background: linear-gradient(180deg, #fbfbfe, #f6f6fb); }
.mk-appbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-2);
  background: var(--surface);
}
.mk-appbrand { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; letter-spacing: -0.03em; }
.mk-workspace { font-size: 13px; color: var(--text-3); }
.mk-new {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
}
.mk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}
.mk-card {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.mk-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mk-name { font-size: 14.5px; font-weight: 650; letter-spacing: -0.01em; }
.mk-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}
.mk-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.mk-pill.ok { color: var(--green); background: var(--green-soft); }
.mk-pill.busy { color: var(--amber); background: var(--amber-soft); }
.mk-pill.busy .mk-pill-dot { animation: pulse 1.3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.mk-url { display: block; margin: 12px 0 10px; font-size: 12.5px; color: var(--accent); font-family: var(--mono); }
.mk-meta { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-3); }
.mk-meta .ico { width: 13px; height: 13px; }
.mk-dot { opacity: 0.6; }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); background: var(--surface-2); }
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 15px 18px;
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--text-2); }
.trust-item .ico { width: 18px; height: 18px; color: var(--primary); }

/* ---------- section shell ---------- */
.section { padding: 58px 0; }
.section-tint { background: var(--surface-2); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.sec-head { max-width: 680px; margin: 0 auto 32px; text-align: center; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.sec-head h2 { font-size: 36px; line-height: 1.12; font-weight: 800; letter-spacing: -0.03em; }
.lede { margin-top: 12px; font-size: 17px; line-height: 1.5; color: var(--text-2); }
/* centered "See all ..." link under a homepage section (-> standalone page) */
.sec-cta { margin-top: 22px; text-align: center; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-line); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
}
.step-top .ico { width: 22px; height: 22px; color: var(--text-3); }
.step h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.5; color: var(--text-2); }

/* ---------- india-first ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ind-row {
  display: flex;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 16px;
  box-shadow: var(--shadow-sm);
}
.ind-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.ind-ico .ico { width: 21px; height: 21px; }
.ind-row h3 { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.ind-row p { font-size: 14px; line-height: 1.5; color: var(--text-2); }

/* ---------- features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-line); }
.feat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eaf3ff, var(--primary-soft));
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.feat-ico .ico { width: 23px; height: 23px; }
.feat h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 9px; }
.feat p { font-size: 15px; line-height: 1.5; color: var(--text-2); }

/* ---------- pricing ---------- */
/* Five prominent tiers; wraps gracefully on narrower viewports. */
.plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: stretch; }
/* Two-axis pricing: Account plans (4-up) + Compute sizes (3-up prominent) */
.plans-4 { grid-template-columns: repeat(4, 1fr); }
.plans-3 { grid-template-columns: repeat(3, 1fr); }
.plans-axis + .plans-axis { margin-top: 22px; }
.plans-axis-head { display: flex; align-items: baseline; gap: 10px; margin: 0 0 12px; }
.plans-axis-title { font-size: 16px; font-weight: 700; margin: 0; }
.plans-axis-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface-2);
  padding: 2px 8px;
  border-radius: 999px;
}
/* Homepage pricing teaser (light) - full ladder is on /pricing */
.price-teaser { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.price-teaser-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; margin: 0; padding: 0; }
.price-teaser-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
}
.price-teaser-chips svg { color: var(--primary); flex: 0 0 auto; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}
.plan-hi {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.30);
}
.plan-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.plan-name { font-size: 14px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-3); }
.plan-soon {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-soft);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-tagline { margin-top: 4px; font-size: 13px; line-height: 1.4; color: var(--text-2); min-height: 30px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin: 10px 0 3px; }
.plan-amt { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
.plan-unit { font-size: 14px; font-weight: 500; color: var(--text-3); }
.plan-gst { font-size: 12px; line-height: 1.4; color: var(--text-3); min-height: 28px; }
.plan-spec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 14px;
  padding: 10px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.plan-spec li { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 550; color: var(--text); }
.plan-spec .ico { width: 16px; height: 16px; color: var(--primary); flex: none; }
.plan-feats { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; line-height: 1.45; color: var(--text-2); }
.plan-feats .ico { width: 16px; height: 16px; color: var(--green); margin-top: 2px; flex: none; }

/* larger instances (compact row) */
.plans-larger { margin-top: 20px; }
.plans-larger-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 10px;
}
.plans-cmp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.plan-cmp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
}
.pc-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.pc-price { display: flex; align-items: baseline; gap: 3px; margin-top: 4px; }
.pc-amt { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.pc-unit { font-size: 13px; color: var(--text-3); }
.pc-gst { display: block; font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
.pc-spec { margin-top: 8px; font-size: 12.5px; color: var(--text-2); }
.btn-sm { font-size: 13.5px; padding: 7px 12px; border-radius: 9px; flex: none; }

.plans-foot {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-3);
  text-align: left;
}
.plans-foot .ico { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 1px; }

/* ---------- switching ---------- */
.sw-wrap { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: 38px; align-items: center; }
.sw-copy .sec-head { text-align: left; margin: 0 0 16px; }
.sw-list { display: flex; flex-direction: column; gap: 10px; }
.sw-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
}
.sw-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.sw-ico .ico { width: 20px; height: 20px; }
.sw-pair { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sw-pair .ico { width: 16px; height: 16px; color: var(--text-3); }
.sw-from { font-size: 14.5px; color: var(--text-3); text-decoration: line-through; text-decoration-color: #cfcfda; }
.sw-to { font-size: 15px; font-weight: 650; color: var(--text); }

/* ---------- developer band ---------- */
.dev-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 38px; align-items: center; }
.dev-copy .eyebrow { margin-bottom: 12px; }
.dev-copy h2 { font-size: 28px; line-height: 1.14; font-weight: 800; letter-spacing: -0.03em; }
.dev-copy .lede { margin-top: 10px; }
.dev-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.dev-terminal {
  background: var(--ink);
  border: 1px solid #23232e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dev-terminal .mk-chrome { background: #16161f; border-bottom-color: #23232e; }
.dev-terminal .mk-dotrow i { background: #34343f; }
.dev-terminal .mk-addr { background: #1c1c26; border-color: #2a2a36; color: #8a8a97; }
.dev-pre {
  margin: 0;
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: #d7d7e2;
  white-space: pre-wrap;
  word-break: break-word;
}
.dev-pre b { color: #fff; font-weight: 600; }
.tl-c { color: #7c7c8c; }
.tl-m { color: #50e3c2; }
.tl-ok { color: #4ade80; font-weight: 600; }
/* subtle "live" caret at the end of the terminal output (design backlog #6) */
.dev-pre::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 15px;
  margin-left: 3px;
  vertical-align: -2px;
  background: #4ade80;
  border-radius: 1px;
  animation: caret-blink 1.1s steps(1, end) infinite;
}
@keyframes caret-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 16px; height: 16px; flex: none; }
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--text-3);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.faq-plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-plus::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--text); }
.faq-item p { padding: 0 4px 16px; font-size: 15px; line-height: 1.5; color: var(--text-2); max-width: 62ch; }

/* ---------- final cta band ---------- */
.cta-band {
  background: var(--surface-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  color: var(--text);
  text-align: center;
  padding: 52px 0;
}
.cta-inner { max-width: 640px; }
.cta-band h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; }
.cta-band p { margin-top: 12px; font-size: 17px; line-height: 1.5; color: var(--text-2); }
.cta-band .hero-cta { margin-top: 20px; }
.cta-note { margin-top: 16px !important; font-size: 13.5px; color: var(--text-3) !important; }

/* ---------- footer ---------- */
/* Site footer moved to the shared home (shared/footer.mjs -> FOOTER_CSS, `.site-foot*`
   classes appended to this stylesheet at build). Do not re-add `.foot*` rules here. */

/* ---------- content pages (features / how-it-works / about / contact / legal) ---------- */
.page-hero {
  position: relative;
  text-align: center;
  padding: 48px 0 28px;
  background:
    radial-gradient(560px 280px at 30% -10%, rgba(0, 124, 240, 0.10), transparent 70%),
    radial-gradient(560px 300px at 75% -10%, rgba(121, 40, 202, 0.09), transparent 70%);
  border-bottom: 1px solid var(--border-2);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero-title {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 16ch;
}
.page-hero-sub {
  margin: 12px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-2);
}
.page-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }

/* prose (about + legal + contact body) */
.prose-heading { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px; }
.prose { font-size: 15px; line-height: 1.6; color: var(--text-2); }
.prose h2 { font-size: 20px; font-weight: 750; letter-spacing: -0.02em; color: var(--text); margin: 24px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 18px 0 6px; }
.prose p { margin: 0 0 12px; }
.prose ul, .prose ol { margin: 0 0 12px; padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose li::marker { color: var(--primary); }
.prose a { color: var(--accent); font-weight: 550; }
.prose strong { color: var(--text); font-weight: 650; }
.prose code {
  font-family: var(--mono, ui-monospace, 'SFMono-Regular', 'Consolas', monospace);
  font-size: 0.9em;
  background: var(--surface-3, #f2f2f8);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 5px;
  color: var(--primary-dark, #0761d1);
}
/* definition card - "**Label:** value" lists (e.g. legal pages' Business information) */
.info-card {
  margin: 0 0 20px;
  padding: 6px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 14px);
}
.info-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 8px 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-2, #eef0f5);
}
.info-row:last-child { border-bottom: 0; }
.info-row dt { font-weight: 650; color: var(--text); font-size: 14.5px; }
.info-row dd { margin: 0; color: var(--text-2); font-size: 15px; }
@media (max-width: 560px) {
  .info-row { grid-template-columns: 1fr; gap: 2px; padding: 10px 0; }
}

/* ---------- responsive ---------- */
/* pricing: 5-up -> 3-up -> 2-up -> 1-up as width narrows */
@media (max-width: 1080px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
  .plans-4 { grid-template-columns: repeat(2, 1fr); }
  .plans-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  /* mobile: burger toggles an off-canvas menu under the bar */
  .nav-burger { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 16px 14px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.nav-open .nav-menu { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; margin: 0; }
  .nav-links a { padding: 10px 4px; font-size: 15px; border-bottom: 1px solid var(--border-2); }
  .nav-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 12px; }
  .nav-actions .link-muted { padding: 8px 4px; }
  .nav-actions .btn { justify-content: center; padding: 9px 14px; }

  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .sec-head h2, .cta-band h2 { font-size: 28px; }
  .page-hero-title { font-size: 28px; }
  .steps, .ind-grid, .feat-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plans-cmp { grid-template-columns: 1fr; }
  .sw-wrap, .dev-band { grid-template-columns: 1fr; gap: 32px; }
  .sw-copy .sec-head { text-align: center; margin-inline: auto; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 14px; }
  .nav-inner { padding: 0 14px; }
  .section { padding: 42px 0; }
  .hero { padding: 36px 0 22px; }
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .page-hero { padding: 36px 0 22px; }
  .page-hero-title { font-size: 24px; }
  .page-hero-cta { flex-direction: column; align-items: stretch; }
  .page-hero-cta .btn { justify-content: center; }
  .mk-grid { grid-template-columns: 1fr; }
  .mk-grid .mk-card:nth-child(3) { display: none; }
  .trust-inner { justify-content: flex-start; }
  .plans { grid-template-columns: 1fr; }
  .plan-cmp { flex-direction: column; align-items: flex-start; gap: 14px; }
  .plan-cmp .btn { width: 100%; }
  .cta-band .hero-cta .btn { width: 100%; }
}
/* very small phones (~360px) - keep everything readable + inside the viewport */
@media (max-width: 400px) {
  .hero-title { font-size: 26px; }
  .sec-head h2, .cta-band h2, .page-hero-title { font-size: 22px; }
  .hero-sub, .lede, .page-hero-sub { font-size: 14px; }
  .plan-amt { font-size: 26px; }
  .eyebrow-pill { font-size: 12px; }
  .info-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}


/* ---------- shared site footer (shared/footer.mjs) ---------- */
.site-foot { background: var(--surface-2); border-top: 1px solid var(--border); }
.site-foot-top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 48px;
}
.site-foot-brand .brand { display: inline-flex; align-items: center; gap: 9px; }
.site-foot-tag {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 34ch;
}
.site-foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.site-foot-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 14px;
}
.site-foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-foot-col a { font-size: 14.5px; color: var(--text-2); text-decoration: none; }
.site-foot-col a:hover { color: var(--primary); }
.site-foot-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px 26px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
}
.site-foot-bar a { color: var(--text-2); }
@media (max-width: 820px) {
  .site-foot-top { grid-template-columns: 1fr; gap: 30px; padding: 40px 24px 28px; }
  .site-foot-cols { grid-template-columns: 1fr 1fr; }
}
