/* ============================================================
   Vajra Studios — site styles
   Palette pulled from the logo: blue #2A6BC4, cyan #7DD3F0,
   orange #FF6B2C, saffron #FFA640, slate #5A6B7C.
   ============================================================ */

:root {
  --blue:    #2A6BC4;
  --blue-dk: #1E4F96;
  --cyan:    #7DD3F0;
  --orange:  #FF6B2C;
  --saffron: #FFA640;
  --slate:   #5A6B7C;
  --ink:     #161D29;   /* near-black navy for text + dark sections */
  --ink-2:   #1F2937;
  --paper:   #FFFFFF;
  --mist:    #F5F7FA;   /* light section background */
  --line:    #E4E9F0;   /* hairline borders */
  --muted:   #6B7686;

  --radius:  14px;
  --radius-sm: 10px;
  --maxw:    1120px;
  --pad:     clamp(20px, 5vw, 48px);

  --shadow-sm: 0 1px 2px rgba(22,29,41,.06), 0 2px 8px rgba(22,29,41,.05);
  --shadow-md: 0 6px 24px rgba(22,29,41,.10);
  --shadow-lg: 0 20px 60px rgba(22,29,41,.16);

  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dk); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 110px); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #D7DEE9; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.lede { font-size: 1.18rem; color: var(--slate); max-width: 60ch; }
.section--ink .lede { color: #AEB9C9; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand .wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: .02em;
  color: var(--slate);
}
.brand .wordmark b { color: var(--blue); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--mist); color: var(--blue); }
.nav-links a.active { color: var(--blue); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-dk); color: #fff; box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-warm { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(255,107,44,.28); }
.btn-warm:hover { background: #ec5c1f; color: #fff; }
/* gold → pink two-stop fill (drawn from the "Fabulosa" title gradient) — the "Join the mailing list"
   secondary CTA. Dark ink so the label stays legible across the light gold end. */
.btn-shine { background: linear-gradient(100deg, #FFD56B, #FF6FB0); color: var(--ink); border: none; box-shadow: 0 8px 26px rgba(255,166,64,.34); }
.btn-shine:hover { color: var(--ink); filter: brightness(1.05); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- hero (studio) — storm art banner + intro bar ---------- */
.hero { background: var(--ink); }
/* the art (logo + tagline are baked into the image) shown cleanly, never overlaid */
.hero-banner {
  min-height: clamp(380px, 64vh, 660px);
  background: #0E1730 url("../assets/vajra-hero.jpg") center center / cover no-repeat;
}
.hero-bar {
  background: var(--ink); color: #fff;
  padding-block: clamp(30px, 5vw, 48px);
  text-align: center;
}
.hero-sub {
  color: #DCE6F7; font-size: clamp(1.06rem, 2.1vw, 1.32rem);
  max-width: 60ch; margin: 0 auto;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; justify-content: center; }
.hero .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.34); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; border-color: #fff; }
/* visually hidden but available to screen readers / SEO */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- "on the name" ---------- */
.name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.name-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.name-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.name-card .glyph { font-size: 1.6rem; margin-bottom: 6px; }
.name-card.thunder { border-top: 3px solid var(--orange); }
.name-card.diamond { border-top: 3px solid var(--blue); }
.name-synthesis { margin-top: 26px; font-size: 1.08rem; color: var(--slate); max-width: 70ch; }
em.vajra { font-style: italic; }

/* ---------- scope / cards grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D3DCE8; }
.card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .98rem; }
.card .num {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  color: var(--orange); letter-spacing: .08em; margin-bottom: 14px; display: block;
}

/* compact principle cards */
.principle { padding: 22px; }
.principle h3 { font-size: 1.02rem; margin-bottom: 6px; }
.principle p { font-size: .92rem; }

/* engagement list */
.stack { display: grid; gap: 16px; margin-top: 32px; }
.stack-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 22px 26px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.stack-item .dot {
  width: 10px; height: 10px; margin-top: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--saffron));
}
.stack-item b { font-family: var(--font-head); }
.stack-item span { color: var(--slate); }

/* ---------- contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 64px); align-items: start; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink-2); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,107,196,.14);
}
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--slate); cursor: pointer; line-height: 1.5; }
.field-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--blue); flex: none; cursor: pointer; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-status { font-size: .95rem; padding: 12px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #E7F6EC; color: #1A7A3D; border: 1px solid #B8E6C6; }
.form-status.err { background: #FCEBEA; color: #B3261E; border: 1px solid #F4C7C3; }
.contact-aside h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-aside p { color: var(--slate); margin-bottom: 18px; }
.contact-aside a.email { font-family: var(--font-head); font-weight: 600; }
.social { margin-top: 22px; display: flex; gap: 12px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--slate);
  transition: color .15s ease, background .15s ease, border-color .15s ease, transform .12s ease;
}
.social-link:hover { color: #fff; background: #FF0000; border-color: #FF0000; transform: translateY(-2px); }
.social-link svg { width: 22px; height: 22px; fill: currentColor; }

/* honeypot — hidden from humans */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #9AA6B6; padding-block: 48px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.site-footer .brand .wordmark { color: #fff; }
.site-footer a { color: #C3CDDC; }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-family: var(--font-head); font-size: .92rem; }
.footer-legal { width: 100%; border-top: 1px solid rgba(255,255,255,.10); margin-top: 28px; padding-top: 22px; font-size: .85rem; color: #6E7B8D; }

/* ============================================================
   Fabulosa page — richer, warmer, maximalist register
   ============================================================ */
.fab-hero { position: relative; color: #fff; overflow: hidden; background: #140C22; }
.fab-hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .55;
}
.fab-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,12,34,.55) 0%, rgba(20,12,34,.78) 60%, rgba(20,12,34,.94) 100%);
}
.fab-hero .container { position: relative; z-index: 2; }
.fab-hero-inner { padding-block: clamp(96px, 16vw, 184px); max-width: 760px; }
.fab-hero .eyebrow { color: var(--saffron); }
.fab-hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6.5vw, 4.6rem); letter-spacing: -0.02em;
}
.fab-hero h1 .shine {
  background: linear-gradient(100deg, #FFD56B, #FF6FB0 45%, #8E7CFF 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fab-hero p { color: #E7DEF4; font-size: 1.25rem; margin-top: 22px; max-width: 56ch; }
.fab-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.btn-fab { background: linear-gradient(100deg, #FF6FB0, #8E7CFF); color: #fff; box-shadow: 0 8px 26px rgba(142,124,255,.40); border: none; }
.btn-fab:hover { color: #fff; filter: brightness(1.06); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.30); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

.fab-section { background: #FBF8FF; }
.fab-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.fab-card {
  background: #fff; border: 1px solid #ECE4F7; border-radius: var(--radius);
  padding: 28px; box-shadow: 0 4px 18px rgba(94,60,150,.06);
  transition: transform .16s ease, box-shadow .16s ease;
}
.fab-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(94,60,150,.12); }
.fab-card .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.35rem; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,111,176,.16), rgba(142,124,255,.16));
}
.fab-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.fab-card p { color: var(--slate); font-size: .97rem; }

.fab-cta-band {
  background: linear-gradient(120deg, #2A1A4A, #4A2A6E);
  color: #fff; border-radius: 22px; padding: clamp(36px, 6vw, 60px);
  text-align: center; margin-top: 8px;
}
.fab-cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.fab-cta-band p { color: #DBCFF0; margin: 14px auto 0; max-width: 52ch; }
.signup-form {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 30px; max-width: 540px; margin-inline: auto;
}
.signup-form input {
  flex: 1 1 260px; font-size: 1rem; padding: 15px 18px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.10); color: #fff;
}
.signup-form input::placeholder { color: rgba(255,255,255,.6); }
.signup-form input:focus { outline: none; border-color: var(--saffron); background: rgba(255,255,255,.16); }
.signup-form .form-status { flex-basis: 100%; }

.kicker-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-family: var(--font-head); font-weight: 600; color: #FFD56B;
}
.kicker-link:hover { color: #fff; }

/* "(Coming soon!)" label on placeholder Kickstarter buttons — inherits the button's colour */
.soon { font-weight: 500; font-size: .9em; opacity: .72; white-space: nowrap; }

/* ---------- Fabulosa "Watch" video section ---------- */
.fab-watch { background: #140C22; color: #fff; }
.fab-watch h2 { color: #fff; }
.fab-watch .eyebrow { color: var(--saffron); }
.fab-watch .lede { color: #E7DEF4; margin-inline: auto; }
.video-wrap {
  position: relative; max-width: 920px; margin: 40px auto 0;
  aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  background: #000; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Fabulosa "in use" video grid (two per row) ---------- */
.video-grid {
  margin: 40px auto 0; max-width: 980px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 26px;
}
.video-tile { text-align: left; }
.video-tile .video-wrap { margin: 0; max-width: none; box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.video-tile h3 {
  margin: 14px 2px 0; font-family: var(--font-head); font-weight: 600;
  font-size: 1.04rem; color: #fff; letter-spacing: .01em;
}

/* ---------- Fabulosa "Architecturally different" section ---------- */
.diff { background: #fff; }
.diff .lede { max-width: 72ch; }
.diff-list { margin-top: 26px; display: grid; gap: 44px; }
.diff-group-head {
  margin: 56px 0 0; font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--blue);
  display: inline-flex; align-items: center; gap: 9px;
}
.diff-group-head::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #1FAE60; }
.diff-group-head.onway { color: var(--slate); }
.diff-group-head.onway::before { background: var(--saffron); }
.diff-group-sub { color: var(--slate); margin: 8px 0 0; max-width: 62ch; }
.diff-item.planned .diff-num {
  background: none; color: var(--slate); border: 2px dashed #C9BEDE; box-shadow: none;
}
.planned-tag {
  display: inline-block; vertical-align: middle; margin-left: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .66rem;
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
  color: #7a68e6; background: rgba(142,124,255,.12);
  border: 1px solid rgba(142,124,255,.35); border-radius: 999px; padding: 3px 10px;
}
.diff-item { display: grid; grid-template-columns: 52px 1fr; gap: 22px; align-items: start; }
.diff-num {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #fff;
  background: linear-gradient(135deg, #FF6FB0, #8E7CFF);
  box-shadow: 0 8px 18px rgba(142,124,255,.32);
}
.diff-body h3 { font-size: 1.28rem; margin-bottom: 12px; }
.diff-body p { color: var(--slate); margin-bottom: 13px; }
.diff-body strong { color: var(--ink); font-weight: 600; }
.diff-body ul { margin: 0 0 16px; padding: 0; list-style: none; display: grid; gap: 8px; }
.diff-body ul li { position: relative; padding-left: 26px; color: var(--slate); }
.diff-body ul li::before { content: "→"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.diff-body p.diff-take {
  border-left: 3px solid #8E7CFF; padding: 6px 0 6px 18px; margin: 4px 0 0;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.diff-body p.pipeline {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  color: var(--blue); background: var(--mist); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 16px; margin-bottom: 13px; letter-spacing: .02em;
}
/* "Get early access" CTA between the "live today" and "on the way" groups */
.diff-cta { margin-top: 48px; }

.diff-summary { margin-top: 60px; padding-top: 44px; border-top: 1px solid var(--line); }
.diff-summary h3 { font-size: 1.55rem; margin-bottom: 14px; }
.diff-summary p { color: var(--slate); margin-bottom: 14px; }
.diff-summary strong { color: var(--ink); font-weight: 600; }
.diff-summary blockquote {
  margin: 22px 0; padding: 20px 26px; border-radius: 14px; border-left: 4px solid #8E7CFF;
  background: linear-gradient(120deg, rgba(255,111,176,.08), rgba(142,124,255,.10));
  font-family: var(--font-head); font-style: italic; font-size: 1.2rem; color: var(--ink); line-height: 1.4;
}
.diff-plain { margin-top: 40px; }
.diff-plain h3 { font-size: 1.25rem; margin-bottom: 16px; }
.diff-plain ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.diff-plain li { position: relative; padding-left: 30px; font-size: 1.06rem; color: var(--ink); }
.diff-plain li::before { content: "\2726"; position: absolute; left: 0; color: var(--saffron); }

/* ---------- "Muse, not paramour" boundaries section ---------- */
.willwont { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
.willwont .col {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.willwont .will { border-top: 3px solid #1FAE60; }
.willwont .wont { border-top: 3px solid #E5644E; }
.willwont h3 { font-size: 1.05rem; margin-bottom: 14px; }
.willwont .will h3 { color: #157a43; }
.willwont .wont h3 { color: #c0432f; }
.willwont ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.willwont li { position: relative; padding-left: 27px; color: var(--slate); }
.willwont .will li::before { content: "\2713"; position: absolute; left: 0; color: #1FAE60; font-weight: 700; }
.willwont .wont li::before { content: "\2715"; position: absolute; left: 0; color: #E5644E; font-weight: 700; }
.glimpse {
  margin-top: 36px; padding: 28px 30px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(125,211,240,.10), rgba(42,107,196,.06));
}
.glimpse h3 { font-size: 1.15rem; margin-bottom: 10px; }
.glimpse > p { color: var(--slate); margin-bottom: 14px; }
.glimpse ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.glimpse li { position: relative; padding-left: 24px; color: var(--slate); }
.glimpse li::before { content: "\2192"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.glimpse li strong { color: var(--ink); }

/* ---------- mid-page CTA band ---------- */
.midcta { background: #FBF8FF; padding-block: clamp(32px, 5vw, 48px); }

/* ---------- For investors / pitch deck ---------- */
.fab-invest { background: #FBF8FF; }
.fab-invest .eyebrow { color: #7a68e6; }
.deck-card {
  display: flex; align-items: center; gap: 22px; text-align: left;
  max-width: 640px; margin: 40px auto 0;
  background: #fff; border: 1px solid #ECE4F7; border-radius: var(--radius);
  padding: 24px 26px; box-shadow: 0 4px 18px rgba(94,60,150,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.deck-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(94,60,150,.14); border-color: #D9CCF0; }
.deck-ic {
  width: 56px; height: 56px; flex: none; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(255,111,176,.16), rgba(142,124,255,.16));
}
.deck-meta { flex: 1 1 auto; }
.deck-meta h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--ink); }
.deck-meta p { color: var(--slate); font-size: .92rem; }
.deck-card .deck-cta { flex: none; }
@media (max-width: 620px) {
  .deck-card { flex-direction: column; text-align: center; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero { min-height: 78vh; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .fab-feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 8px 10px; font-size: .9rem; }
  .brand .wordmark { display: none; }
  .grid-2, .grid-4, .name-grid, .fab-feature-grid, .willwont, .video-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  /* stack hero CTAs full-width so longer labels (e.g. "Coming soon!") wrap instead of clipping */
  .fab-hero-cta { width: 100%; }
  .fab-hero-cta .btn { flex: 1 1 100%; white-space: normal; }
}
