/* ==========================================================================
   SlidesVamp — Design System
   Built on Google's "Glue" marketing design system (tokens extracted from
   business.google.com), retuned to the SlidesVamp brand blue #4285F4.

   Typeface note: Google's own pages use Google Sans / Google Sans Display,
   which are proprietary and not licensed for third-party use. We use Figtree
   (display) + Inter (text) — the closest open equivalents in shape & metrics.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand */
  --brand-blue:      #4285F4;   /* exact blue sampled from the logo */
  --brand-blue-dark: #1a73e8;   /* Glue high-emphasis action blue */
  --brand-blue-deep: #174ea6;   /* Glue blue-800, pressed/links */
  --brand-tint:      #e8f0fe;   /* Glue blue-50, soft fills */
  --brand-tint-2:    #d2e3fc;

  /* Neutrals (Glue) */
  --grey-900: #202124;  /* headlines */
  --grey-800: #3c4043;  /* body */
  --grey-700: #5f6368;  /* secondary */
  --grey-600: #80868b;  /* tertiary */
  --grey-300: #dadce0;  /* borders */
  --grey-100: #f1f3f4;
  --grey-50:  #f8f9fa;  /* surface */
  --white:    #ffffff;

  /* Semantic */
  --bg:            var(--white);
  --bg-surface:    var(--grey-50);
  --bg-inverse:    #0d1b2a;
  --text:          var(--grey-900);
  --text-body:     var(--grey-800);
  --text-muted:    var(--grey-700);
  --border:        var(--grey-300);
  --accent:        var(--brand-blue-dark);

  --success: #1e8e3e;
  --warning: #f9ab00;

  /* Type */
  --font-display: "Figtree", "Google Sans Display", Roboto, Arial, Helvetica, sans-serif;
  --font-text:    "Inter", "Google Sans Text", Roboto, Arial, Helvetica, sans-serif;

  /* Shape (Glue) */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  24px;
  --radius-pill: 100px;

  /* Elevation (Glue shadows) */
  --shadow-1: 0 1px 2px 0 rgba(60,64,67,.30), 0 1px 3px 1px rgba(60,64,67,.15);
  --shadow-2: 0 1px 2px 0 rgba(60,64,67,.30), 0 2px 6px 2px rgba(60,64,67,.15);
  --shadow-3: 0 4px 8px 3px rgba(60,64,67,.15), 0 1px 3px rgba(60,64,67,.30);

  /* Layout */
  --container: 1280px;
  --gutter: 24px;
  --section-y: 96px;

  --nav-h: 68px;
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; }
ul, ol { padding-left: 1.25em; }

/* ---------- 3. Typography (Glue scale) ----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 600;
  margin: 0 0 .5em;
  overflow-wrap: normal;
}
.h1, h1 { font-size: 2.25rem; line-height: 1.2222; letter-spacing: -.25px; }
.h2, h2 { font-size: 1.75rem; line-height: 1.2857; letter-spacing: normal; }
.h3, h3 { font-size: 1.5rem;  line-height: 1.3333; }
.h4, h4 { font-size: 1.25rem; line-height: 1.4; }
.h5, h5 { font-size: 1.125rem; line-height: 1.4444; }

@media (min-width: 600px) {
  .h1, h1 { font-size: 3rem;    line-height: 1.1667; letter-spacing: -.5px; }
  .h2, h2 { font-size: 2.5rem;  line-height: 1.2;    letter-spacing: -.5px; }
  .h3, h3 { font-size: 1.75rem; line-height: 1.2857; }
  .h4, h4 { font-size: 1.5rem;  line-height: 1.3333; }
}
@media (min-width: 1024px) {
  .h1, h1 { font-size: 3.75rem; line-height: 1.2; letter-spacing: -.5px; }
  .h2, h2 { font-size: 3rem;    line-height: 1.1667; }
  .h3, h3 { font-size: 2rem;    line-height: 1.25; }
}

.lead { font-size: 1.25rem; line-height: 1.5; color: var(--text-muted); }
@media (min-width: 600px) { .lead { font-size: 1.375rem; } }

.eyebrow {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue-dark);
  margin: 0 0 12px;
}
.text-muted { color: var(--text-muted); }
.small { font-size: .875rem; line-height: 1.5; }
.xsmall { font-size: .75rem; line-height: 1.5; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

/* ---------- 4. Layout ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }
.container--prose  { max-width: 760px; }

.section { padding-block: 56px; }
@media (min-width: 600px)  { .section { padding-block: 72px; } }
@media (min-width: 1024px) { .section { padding-block: var(--section-y); } }
.section--tight { padding-block: 40px; }
.section--surface { background: var(--bg-surface); }
.section--tint { background: var(--brand-tint); }
.section--inverse { background: var(--bg-inverse); color: rgba(255,255,255,.82); }
.section--inverse h1, .section--inverse h2, .section--inverse h3 { color: #fff; }
.section--inverse .eyebrow { color: #8ab4f8; }
.section--inverse .lead { color: rgba(255,255,255,.72); }

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: 32px; }
}

/* Split: text + visual, alternating */
.split { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--reverse > *:first-child { order: 2; }
}
.split--top { align-items: start; }

.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 32px; }

/* ---------- 5. Buttons (Glue) -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 24px;
  height: 48px;
  padding-inline: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s, box-shadow .2s, border-color .2s, color .2s;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: 3px solid #8ab4f8; outline-offset: 2px; }

.btn--primary { background: var(--brand-blue-dark); color: #fff; }
.btn--primary:hover { background: #1765cc; box-shadow: var(--shadow-1); color: #fff; }
.btn--primary:active { background: var(--brand-blue-deep); }

.btn--secondary { background: #fff; color: var(--brand-blue-dark); border-color: var(--border); }
.btn--secondary:hover { background: var(--brand-tint); border-color: #c6dafc; }

.btn--ghost { background: transparent; color: var(--brand-blue-dark); padding-inline: 12px; }
.btn--ghost:hover { background: var(--brand-tint); }

.btn--on-dark { background: #fff; color: var(--brand-blue-dark); }
.btn--on-dark:hover { background: var(--brand-tint); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn--lg { height: 56px; padding-inline: 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; }

/* Text link with arrow */
.link-arrow { font-family: var(--font-display); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- 6. Header / nav ---------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.is-stuck { border-bottom-color: var(--border); }
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; }
.nav__links { display: none; align-items: center; gap: 4px; margin-left: 8px; }
.nav__link {
  font-family: var(--font-display); font-size: .9375rem; font-weight: 500;
  color: var(--grey-800); padding: 8px 12px; border-radius: var(--radius-sm);
}
.nav__link:hover { background: var(--grey-50); color: var(--brand-blue-dark); text-decoration: none; }
.nav__link.is-active { color: var(--brand-blue-dark); }
.nav__actions { display: none; align-items: center; gap: 8px; margin-left: auto; }
.nav__toggle {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer;
}
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--grey-800); position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--grey-800);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

@media (min-width: 1024px) {
  .nav__links, .nav__actions { display: flex; }
  .nav__toggle { display: none; }
}

.mobile-menu {
  display: none; border-top: 1px solid var(--border); background: #fff;
  padding: 16px var(--gutter) 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a.nav__link { display: block; padding: 12px 8px; font-size: 1rem; }
.mobile-menu .btn { margin-top: 8px; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 78% -8%, var(--brand-tint) 0%, rgba(232,240,254,0) 62%),
    linear-gradient(180deg, #fff 0%, var(--grey-50) 100%);
  padding-block: 56px 64px;
}
@media (min-width: 900px) { .hero { padding-block: 88px 96px; } }
/* Full-bleed photo hero with a frosted glass panel over it. */
.hero--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--grey-900);
  padding-block: 72px 88px;
}
@media (min-width: 900px) { .hero--photo { padding-block: 112px 128px; } }

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
/* Scrim: darkest on the left where the panel sits, so the glass separates. */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(10, 20, 40, .58) 0%,
    rgba(10, 20, 40, .34) 40%,
    rgba(10, 20, 40, .10) 72%,
    rgba(10, 20, 40, .04) 100%);
}

.hero__glass {
  max-width: 640px;
  padding: 32px 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 24px 64px rgba(8, 16, 32, .34);
}
@media (min-width: 600px) { .hero__glass { padding: 44px 40px; } }
@media (max-width: 899px) { .hero__media img { object-position: center 22%; } }

/* Browsers without backdrop-filter get a near-solid panel rather than washed-out text. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero__glass { background: rgba(255, 255, 255, .96); }
}

.hero__glass h1 { margin-bottom: 16px; }
.hero__glass .lead { margin-bottom: 28px; }
.hero__glass .hero-proof { margin-top: 28px; }

.hero__grid { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 32px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 32px; }
.hero-proof__item { display: flex; align-items: baseline; gap: 8px; font-size: .875rem; color: var(--text-muted); }
.hero-proof__num { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--text); }

/* ---------- 8. Cards ----------------------------------------------------- */
.card {
  display: block; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px; height: 100%;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  text-decoration: none; color: inherit;
}
a.card:hover { box-shadow: var(--shadow-2); border-color: transparent; text-decoration: none; transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); margin: 0 0 16px; }
.card > :last-child { margin-bottom: 0; }
.card--flat { border: 0; background: var(--grey-50); }
.card--tint { border: 0; background: var(--brand-tint); }
.card--feature { padding: 32px; }

.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--brand-tint); color: var(--brand-blue-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }

/* Service card — the pitch-deck one is intentionally dominant */
.service-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .service-grid { grid-template-columns: 1.25fr 1fr; grid-template-rows: auto auto; }
  .service-grid > *:first-child { grid-row: span 2; }
}

/* ---------- 9. Steps / process ------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } .steps--3 { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 20px; border-top: 3px solid var(--brand-tint-2); }
.step__num {
  counter-increment: step; font-family: var(--font-display); font-weight: 700;
  font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-blue-dark); margin-bottom: 8px; display: block;
}
.step__num::before { content: "Step " counter(step); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); margin: 0; font-size: .9375rem; }

/* ---------- 10. Stats ---------------------------------------------------- */
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--brand-blue-dark); line-height: 1.1; letter-spacing: -1px; }
.stat__label { color: var(--text-muted); font-size: .9375rem; margin-top: 8px; }

/* ---------- 11. Logo strip ----------------------------------------------- */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 48px; }
.logo-strip span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  color: var(--grey-600); letter-spacing: -.2px;
}

/* ---------- 12. Checklist ------------------------------------------------ */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text-body); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a73e8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checklist--2col { grid-template-columns: 1fr; }
@media (min-width: 700px) { .checklist--2col { grid-template-columns: 1fr 1fr; gap: 12px 32px; } }

.crosslist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.crosslist li { position: relative; padding-left: 32px; color: var(--text-muted); }
.crosslist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--grey-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ---------- 13. Pricing -------------------------------------------------- */
.pricing-grid { display: grid; gap: 24px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; height: 100%; position: relative;
}
.price-card--featured { border: 2px solid var(--brand-blue-dark); box-shadow: var(--shadow-2); }
.price-card__badge {
  position: absolute; top: -13px; left: 32px;
  background: var(--brand-blue-dark); color: #fff; font-family: var(--font-display);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.price-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.price-card__for { font-size: .875rem; color: var(--text-muted); margin-bottom: 20px; min-height: 42px; }
.price-card__price { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--text); line-height: 1; letter-spacing: -1px; }
.price-card__price small { font-size: 1rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.price-card__meta { font-size: .875rem; color: var(--text-muted); margin: 8px 0 24px; }
.price-card .checklist { margin-bottom: 28px; font-size: .9375rem; }
.price-card .btn { margin-top: auto; }

/* Comparison table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius-md); }
table.compare { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: .9375rem; }
table.compare thead th { font-family: var(--font-display); font-weight: 700; color: var(--text); background: var(--grey-50); white-space: nowrap; }
table.compare tbody th { font-weight: 500; color: var(--text-body); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: 0; }
table.compare td.yes { color: var(--success); font-weight: 600; }
table.compare td.no { color: var(--grey-600); }

/* ---------- 14. Accordion / FAQ ------------------------------------------ */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; padding: 24px 0; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600; color: var(--text);
}
.faq__q:hover { color: var(--brand-blue-dark); }
.faq__icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--brand-blue-dark);
  left: 50%; top: 50%; transition: transform .25s;
}
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { display: none; padding: 0 0 24px; color: var(--text-muted); max-width: 68ch; }
.faq__item.is-open .faq__a { display: block; }
.faq__a p:first-child { margin-top: 0; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- 15. Testimonials --------------------------------------------- */
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; height: 100%; }
.quote__text { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.55; color: var(--text); margin: 0 0 24px; }
.quote__author { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand-tint);
  color: var(--brand-blue-dark); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; flex-shrink: 0;
}
.quote__name { font-weight: 600; color: var(--text); font-size: .9375rem; }
.quote__role { font-size: .8125rem; color: var(--text-muted); }

/* ---------- 16. Forms ---------------------------------------------------- */
.form { display: grid; gap: 20px; }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-display); font-size: .875rem; font-weight: 600; color: var(--text); }
.field .hint { font-size: .8125rem; color: var(--text-muted); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="url"], .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--text);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-blue-dark); box-shadow: 0 0 0 3px var(--brand-tint);
}
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px;
}

/* Choice chips */
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice span {
  display: inline-block; padding: 10px 18px; border: 1px solid var(--border);
  border-radius: var(--radius-pill); font-size: .9375rem; cursor: pointer; transition: all .2s; background: #fff;
}
.choice input:checked + span { background: var(--brand-tint); border-color: var(--brand-blue-dark); color: var(--brand-blue-deep); font-weight: 600; }
.choice input:focus-visible + span { outline: 3px solid #8ab4f8; outline-offset: 2px; }

/* Consent block — carrier / A2P 10DLC critical */
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--grey-50); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px;
}
.consent input[type="checkbox"] { width: 20px; height: 20px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--brand-blue-dark); cursor: pointer; }
.consent label { font-size: .8125rem; line-height: 1.55; color: var(--text-muted); cursor: pointer; }
.consent label strong { color: var(--text-body); font-weight: 600; }

/* Honeypot — hidden from people, visible to naive bots. */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* Form feedback */
.form-note { font-size: .8125rem; color: var(--text-muted); }
.form-error {
  display: none; background: #fce8e6; border: 1px solid #f5c6c2; color: #a50e0e;
  border-radius: var(--radius-md); padding: 14px 18px; font-size: .9375rem;
}
.form-error.is-visible { display: block; }
.form-success {
  display: none; background: #e6f4ea; border: 1px solid #b7e1c1; color: #14532d;
  border-radius: var(--radius-md); padding: 16px 20px; font-size: .9375rem;
}
.form-success.is-visible { display: block; }

/* Multi-step */
.steps-bar { display: flex; gap: 8px; margin-bottom: 32px; }
.steps-bar__seg { flex: 1; height: 4px; border-radius: 2px; background: var(--grey-300); transition: background .3s; }
.steps-bar__seg.is-done { background: var(--brand-blue-dark); }
.form-step { display: none; }
.form-step.is-active { display: block; }

/* ---------- 17. Callout / notice ----------------------------------------- */
.notice {
  border-left: 4px solid var(--brand-blue-dark); background: var(--brand-tint);
  padding: 20px 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.notice--warn { border-left-color: var(--warning); background: #fef7e0; }
.notice p:first-child { margin-top: 0; }
.notice p:last-child { margin-bottom: 0; }

/* ---------- 18. How-it-works flow ---------------------------------------- */
.flow { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .flow { grid-template-columns: repeat(5, 1fr); gap: 12px; } }
.flow__node {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; text-align: center; position: relative;
}
.flow__node h4 { font-size: 1rem; margin-bottom: 6px; }
.flow__node p { font-size: .8125rem; color: var(--text-muted); margin: 0; }
.flow__icon {
  width: 40px; height: 40px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand-blue-dark);
  display: flex; align-items: center; justify-content: center;
}
.flow__icon svg { width: 20px; height: 20px; }
@media (min-width: 1024px) {
  .flow__node:not(:last-child)::after {
    content: "→"; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
    color: var(--grey-600); font-size: 16px; z-index: 1;
  }
}

/* ---------- 19. Transcript ----------------------------------------------- */
.transcript { background: var(--grey-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: grid; gap: 14px; }
.bubble { max-width: 78%; padding: 12px 16px; border-radius: 16px; font-size: .9375rem; line-height: 1.5; }
.bubble--them { background: #fff; border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.bubble--ai { background: var(--brand-blue-dark); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble__who { font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .7; display: block; margin-bottom: 4px; }

/* ---------- 20. Work / case studies -------------------------------------- */
.work-card { display: block; text-decoration: none; color: inherit; }
.work-card__media {
  aspect-ratio: 16/10; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--brand-tint) 0%, #fff 100%);
  display: flex; align-items: center; justify-content: center; padding: 32px;
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.work-card:hover .work-card__media { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.work-card__tag { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-blue-dark); margin: 16px 0 6px; }
.work-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.work-card p { color: var(--text-muted); font-size: .9375rem; margin: 0; }

/* Real deck images inside work cards — 16/9 so whole slides show uncropped. */
.work-card__media--img { padding: 0; background: var(--grey-50); aspect-ratio: 16/9; position: relative; }
.work-card__media--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Badge sits on the image, so the tag line never wraps and cards stay aligned. */
.work-card__badge {
  position: absolute; top: 12px; right: 12px;
  font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: rgba(32,33,36,.82); color: #fff; backdrop-filter: blur(4px);
}

/* Sample slide gallery */
.slide-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .slide-grid { grid-template-columns: repeat(2, 1fr); } }
.slide-shot {
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-1);
}
.slide-shot img { width: 100%; display: block; }
.slide-shot figcaption {
  padding: 12px 16px; font-size: .8125rem; color: var(--text-muted);
  border-top: 1px solid var(--border); background: var(--grey-50); margin: 0;
}

/* ---------- 21. CTA band ------------------------------------------------- */
.cta-band { background: var(--bg-inverse); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); font-size: 1.125rem; max-width: 56ch; margin-inline: auto; }

/* ---------- 22. Footer --------------------------------------------------- */
.footer { background: var(--bg-inverse); color: rgba(255,255,255,.7); padding-block: 64px 32px; font-size: .875rem; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 700px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; } }
.footer__logo img { height: 48px; width: auto; margin-bottom: 20px; }
.footer h4 { color: #fff; font-size: .875rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .8125rem; color: rgba(255,255,255,.55);
}
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
/* Business identity block — required for carrier review */
.footer__identity { font-style: normal; line-height: 1.7; color: rgba(255,255,255,.7); }
.footer__identity strong { color: #fff; font-weight: 600; }

/* ---------- 23. Prose (legal pages) -------------------------------------- */
.prose { color: var(--text-body); }
.prose h2 { font-size: 1.5rem; margin-top: 48px; margin-bottom: 12px; }
.prose h3 { font-size: 1.125rem; margin-top: 32px; margin-bottom: 8px; }
.prose p, .prose li { font-size: 1rem; line-height: 1.7; }
.prose ul, .prose ol { margin: 0 0 16px; display: grid; gap: 8px; }
.prose > *:first-child { margin-top: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; font-size: .9375rem; }
.prose th { background: var(--grey-50); font-weight: 600; }
.page-header { padding-block: 48px 32px; border-bottom: 1px solid var(--border); }
.page-header .lead { margin-bottom: 0; }
.updated { font-size: .875rem; color: var(--text-muted); }

/* ---------- 24. Breadcrumb / misc ---------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-tint); color: var(--brand-blue-deep);
  font-size: .8125rem; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-pill);
}
.divider { border: 0; border-top: 1px solid var(--border); margin: 0; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--brand-blue-dark); color: #fff;
  padding: 12px 20px; z-index: 200; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- 24b. Deck viewer -------------------------------------------- */
.deck-viewer {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12, 14, 18, .975);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; flex-direction: column;
}
.deck-viewer.is-open { display: flex; }
body.deck-open { overflow: hidden; }

.deck-viewer__bar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; color: #fff; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.deck-viewer__title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.deck-viewer__meta {
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.deck-viewer__badge {
  font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.14); color: rgba(255,255,255,.85);
}
.deck-viewer__count {
  margin-left: auto; font-variant-numeric: tabular-nums;
  font-size: .875rem; color: rgba(255,255,255,.7); white-space: nowrap;
}
.deck-viewer__close {
  width: 40px; height: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); border: 0; border-radius: 50%;
  color: #fff; font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s;
}
.deck-viewer__close:hover { background: rgba(255,255,255,.24); }

/* Slide rail — one slide per screen, scroll-snapped like turning pages. */
.deck-viewer__rail {
  flex: 1; display: flex; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.deck-viewer__rail::-webkit-scrollbar { display: none; }
.deck-viewer__page {
  flex: 0 0 100%; scroll-snap-align: center; scroll-snap-stop: always;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; min-width: 0;
}
.deck-viewer__page img {
  max-width: min(100%, 1400px); max-height: 100%; width: auto; height: auto;
  object-fit: contain; border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0,0,0,.5); background: #fff;
}

/* Prev / next */
.deck-viewer__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; font-size: 24px; line-height: 1;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  transition: background .2s, opacity .2s;
}
.deck-viewer__nav:hover { background: rgba(255,255,255,.28); }
.deck-viewer__nav[disabled] { opacity: .25; cursor: default; }
.deck-viewer__nav--prev { left: 20px; }
.deck-viewer__nav--next { right: 20px; }
@media (min-width: 700px) { .deck-viewer__nav { display: inline-flex; } }

/* Thumbnail strip */
.deck-viewer__thumbs {
  display: flex; gap: 8px; padding: 12px 20px; overflow-x: auto; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.12); scrollbar-width: thin;
}
.deck-viewer__thumb {
  flex: 0 0 auto; width: 88px; aspect-ratio: 16/9; padding: 0; cursor: pointer;
  border: 2px solid transparent; border-radius: 4px; overflow: hidden;
  background: rgba(255,255,255,.08); opacity: .5; transition: opacity .2s, border-color .2s;
}
.deck-viewer__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deck-viewer__thumb:hover { opacity: .85; }
.deck-viewer__thumb.is-current { opacity: 1; border-color: var(--brand-blue); }
.deck-viewer__hint {
  padding: 0 20px 12px; font-size: .75rem; color: rgba(255,255,255,.45); flex-shrink: 0;
}
@media (max-width: 699px) {
  .deck-viewer__thumbs { display: none; }
  .deck-viewer__page { padding: 12px; }
}

/* Card affordance — the whole card opens the deck */
.work-card--openable { cursor: pointer; }
.work-card--openable .work-card__media { position: relative; }
.work-card__open {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(26,115,232,.88); color: #fff; opacity: 0; transition: opacity .25s;
  font-family: var(--font-display); font-weight: 600; font-size: .9375rem; gap: 8px;
}
.work-card--openable:hover .work-card__open,
.work-card--openable:focus-within .work-card__open { opacity: 1; }

/* ---------- 25. Motion --------------------------------------------------- */
/* Scoped to .js so content is always visible if JavaScript fails or is disabled. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}
