/* ============================================================
   AMS Merchant Services — site styles
   Built on AMS Design System 2.0 tokens
   ============================================================ */

/* ---------- Tokens: colors ---------- */
:root {
  --color-ink: #141618;
  --color-slate: #404662;
  --color-orange: #e85900;
  --color-orange-dark: #c94b00;
  --color-orange-light: #fdece0;
  --color-cream: #f4f1ea;
  --color-white: #ffffff;
  --gray-50: #f7f7f8;
  --gray-100: #eef0f2;
  --gray-200: #e1e4e9;
  --gray-300: #c8cdd7;
  --gray-400: #9aa0af;
  --gray-500: #6b7280;
  --gray-600: #404662;
  --gray-900: #141618;
  --surface-page: var(--color-white);
  --surface-card: var(--color-white);
  --surface-sunken: var(--gray-50);
  --surface-inverse: var(--color-ink);
  --surface-inverse-alt: var(--color-slate);
  --border-default: var(--gray-200);
  --border-strong: var(--gray-300);
  --text-primary: var(--color-ink);
  --text-secondary: var(--color-slate);
  --text-tertiary: var(--gray-500);
  --text-inverse: var(--color-cream);
  --text-on-orange: var(--color-white);
  --accent: var(--color-orange);
  --accent-hover: var(--color-orange-dark);
  --accent-tint: var(--color-orange-light);
  --focus-ring: rgba(232, 89, 0, 0.35);
  --success: #1b7f4c;
  --success-tint: #e6f5ec;
  --warning: #b9770e;
  --warning-tint: #fdf1de;
  --danger: #c0341f;
  --danger-tint: #fbe9e6;

  /* ---------- Tokens: typography ---------- */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;
  --fs-display-xl: 64px;
  --fs-display-lg: 48px;
  --fs-display-md: 36px;
  --fs-h1: 30px;
  --fs-h2: 24px;
  --fs-h3: 20px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.04em;

  /* ---------- Tokens: spacing / radii ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --container-max: 1200px;

  /* ---------- Tokens: gradients / grain ---------- */
  --grad-cream: radial-gradient(120% 120% at 15% 10%, #fdf4ec 0%, #f7f1ea 45%, #f1ece4 100%);
  --grad-warm: radial-gradient(120% 130% at 85% 0%, #fdece0 0%, #faf3ec 55%, #f4f1ea 100%);
  --grad-slate: radial-gradient(130% 140% at 20% 0%, #4a5170 0%, #3a4059 55%, #2b3049 100%);
  --grad-ink: radial-gradient(140% 140% at 80% 0%, #22262e 0%, #181b1f 55%, #141618 100%);
  --grad-accent-soft: radial-gradient(120% 120% at 20% 0%, #fddcc4 0%, #fdece0 55%, #f8f0e8 100%);
  --grain-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --grain-opacity: 0.06;
  --grain-opacity-dark: 0.10;

  /* ---------- Tokens: effects ---------- */
  --shadow-sm: 0 1px 2px rgba(20, 22, 24, 0.06);
  --shadow-md: 0 4px 16px rgba(20, 22, 24, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 22, 24, 0.12);
  --ease-standard: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 120ms;
  --dur-base: 180ms;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: var(--radius-sm); }

.grainy { position: relative; isolation: isolate; }
.grainy::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--grain-url); background-size: 140px 140px;
  opacity: var(--grain-opacity); mix-blend-mode: multiply;
}
.grainy.on-dark::after { opacity: var(--grain-opacity-dark); mix-blend-mode: overlay; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-5); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: var(--fs-caption); font-weight: var(--fw-bold);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary);
}
.h-display { font-size: clamp(34px, 5vw, var(--fs-display-lg)); font-weight: var(--fw-black); letter-spacing: var(--ls-tight); line-height: var(--lh-tight); }
.h-section { font-size: clamp(24px, 3vw, var(--fs-display-md)); font-weight: var(--fw-black); letter-spacing: var(--ls-tight); line-height: var(--lh-snug); }
.h-sub { font-size: var(--fs-h3); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.body-lg { font-size: var(--fs-body-lg); color: var(--text-secondary); line-height: var(--lh-normal); }
.body-muted { color: var(--text-tertiary); }

/* ---------- Buttons & pills ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  white-space: nowrap; cursor: pointer; border: 0;
  background: var(--color-ink); color: var(--color-white);
  border-radius: var(--radius-pill); padding: 13px 26px;
  font-family: var(--font-sans); font-size: var(--fs-body-sm); font-weight: var(--fw-semibold);
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.btn:hover { background: #2a2e33; }
.btn:active { transform: translateY(1px); }
.btn.acc { background: var(--accent); color: var(--text-on-orange); }
.btn.acc:hover { background: var(--accent-hover); }
.btn.ghost { background: var(--color-white); color: var(--text-primary); border: 1px solid var(--border-strong); }
.btn.ghost:hover { background: var(--gray-50); }
.btn.sm { padding: 9px 18px; font-size: 13px; }

.pill {
  display: inline-block; border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  padding: 7px 16px; font-size: 13px; font-weight: var(--fw-semibold); color: var(--text-secondary);
}
.pill.acc { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-default);
}
.nav-bar {
  display: flex; align-items: center; gap: var(--space-5);
  max-width: var(--container-max); margin: 0 auto;
  padding: var(--space-4) var(--space-5);
}
.logo { font-weight: var(--fw-black); font-size: 22px; letter-spacing: -0.5px; color: var(--text-primary); }
.logo em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: var(--space-5); margin-left: var(--space-3); }
.nav-links a { font-size: var(--fs-body-sm); font-weight: var(--fw-medium); color: var(--text-tertiary); transition: color var(--dur-base); }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a[aria-current="page"] { color: var(--text-primary); font-weight: var(--fw-bold); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: var(--space-5); }
.nav-login { font-size: var(--fs-body-sm); font-weight: var(--fw-medium); color: var(--text-tertiary); }
.nav-login:hover { color: var(--text-primary); }
/* Merchant login — disabled "Coming soon" state */
.nav-login.soon, .nav-login.soon:hover { color: var(--gray-400); cursor: not-allowed; position: relative; }
.nav-login.soon::after {
  content: "Coming soon";
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--color-ink); color: var(--color-white);
  font-size: 11px; font-weight: var(--fw-semibold); padding: 4px 8px;
  border-radius: var(--radius-sm); white-space: nowrap; box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-standard);
}
.nav-login.soon:hover::after, .nav-login.soon:focus-visible::after { opacity: 1; }
.mobile-menu .m-soon, .mobile-menu .m-soon:hover { color: var(--gray-400); cursor: not-allowed; }
.mobile-menu .m-soon::after { content: " · Coming soon"; font-weight: var(--fw-regular); font-size: 12px; color: var(--gray-400); }
.nav-toggle { display: none; background: none; border: 0; padding: var(--space-2); cursor: pointer; color: var(--text-primary); }

/* Industries pill row that appears in the sticky nav on scroll (home) */
.nav-industries {
  display: flex; gap: var(--space-2); align-items: center; overflow: hidden;
  max-width: var(--container-max); margin: 0 auto;
  max-height: 0; opacity: 0; padding: 0 var(--space-5);
  transition: max-height .35s var(--ease-standard), opacity .35s var(--ease-standard), padding .35s var(--ease-standard);
}
.nav-industries.show { max-height: 52px; opacity: 1; padding-bottom: var(--space-3); }
.nav-industries .row-label {
  font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-400); flex: none;
}
.nav-industries .pills { display: flex; gap: var(--space-2); overflow-x: auto; scrollbar-width: none; }
.nav-industries .pills::-webkit-scrollbar { display: none; }
.ind-pill {
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  padding: 6px 14px; font-size: 12px; font-weight: var(--fw-semibold); color: var(--text-secondary);
  white-space: nowrap; transition: border-color var(--dur-base), color var(--dur-base), background var(--dur-base);
}
.ind-pill:hover { border-color: var(--gray-400); }
.ind-pill.on { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); }

/* ---------- Sections ---------- */
.section { padding: var(--space-8) 0; }
.section.sunken { background: var(--surface-sunken); }
.section.warm { background: var(--grad-warm); }
.section-head { margin-bottom: var(--space-6); }

.ink-band { background: var(--grad-ink); color: var(--text-inverse); }
.ink-band .body-lg, .ink-band .body-muted { color: var(--gray-300); }

/* ---------- Trust bar ---------- */
.trust-bar { border-bottom: 1px solid var(--border-default); }
.trust-bar .inner {
  display: flex; flex-wrap: wrap; gap: var(--space-5) var(--space-6); align-items: center;
  padding: var(--space-4) 0; font-size: var(--fs-body-sm); color: var(--text-tertiary);
}
.trust-bar b { color: var(--text-primary); font-weight: var(--fw-bold); }
.trust-bar .partners { margin-left: auto; }

/* ---------- Tiles / cards ---------- */
.tile {
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2);
  transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}
a.tile:hover, .tile.link:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tile b { font-size: var(--fs-body); font-weight: var(--fw-bold); }
.tile .tile-body { font-size: var(--fs-body-sm); color: var(--text-tertiary); line-height: var(--lh-normal); }
.tile .tile-link { font-size: 13px; font-weight: var(--fw-semibold); color: var(--text-secondary); margin-top: auto; }
.tile.dashed { border-style: dashed; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }

/* Placeholder visuals (pending real imagery) */
.ph-visual {
  background: var(--grad-warm); border: 1px solid var(--border-default); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: var(--fs-caption); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-default); background: var(--surface-sunken); }
.site-footer .inner {
  display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-6); align-items: center;
  padding: var(--space-6) 0; font-size: var(--fs-body-sm); color: var(--text-tertiary);
}
.site-footer a:hover { color: var(--text-primary); }
.site-footer .loc { margin-left: auto; }

/* ---------- Home: hero v2 ---------- */
.hero { background: var(--grad-cream); }
.hero .inner {
  display: flex; gap: var(--space-8); align-items: center;
  padding: var(--space-9) 0 var(--space-8);
}
.hero-copy { flex: 1.1; min-width: 0; }
.hero-copy h1 { font-size: clamp(36px, 4.6vw, 56px); font-weight: var(--fw-black); letter-spacing: var(--ls-tight); line-height: var(--lh-tight); }
.hero-copy .lede { font-size: var(--fs-body-lg); color: var(--text-secondary); margin: var(--space-5) 0 var(--space-6); max-width: 30em; }

/* Cycling industry word */
.hero-word { position: relative; display: inline-block; color: var(--accent); white-space: nowrap; }
.hero-word .w-in { display: inline-block; }
.hero-word.animating .w-in { animation: wordIn .3s ease-out both; }
.hero-word .w-out { position: absolute; left: 0; top: 0; white-space: nowrap; animation: wordOut .3s ease-out both; }
@keyframes wordIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wordOut { from { opacity: 1; } to { opacity: 0; } }

/* Industry tile grid */
.hero-grid {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
  transition: transform .4s var(--ease-standard), opacity .4s var(--ease-standard);
}
.hero-grid.cond { transform: scale(.95); opacity: .4; }
.ind-tile {
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4); display: flex; align-items: center; gap: var(--space-3);
  color: var(--text-primary); transition: border-color .25s var(--ease-standard);
}
.ind-tile b { font-size: var(--fs-body-sm); font-weight: var(--fw-bold); }
.ind-tile .see { display: none; margin-left: auto; font-size: 12px; font-weight: var(--fw-semibold); color: var(--accent); white-space: nowrap; }
.ind-tile.on { border-color: var(--accent); background: var(--accent-tint); box-shadow: inset 0 0 0 1px var(--accent); }
.ind-tile.all { border-style: dashed; justify-content: center; }
.ind-tile.all b { color: var(--text-secondary); font-weight: var(--fw-semibold); }
.ind-ic {
  width: 34px; height: 34px; border-radius: var(--radius-pill); flex: none;
  background: var(--grad-accent-soft); border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center; color: var(--color-slate);
}
.ind-ic svg { width: 17px; height: 17px; }

/* ---------- Flagship / spotlight rows ---------- */
.split-row { display: flex; gap: var(--space-7); align-items: center; }
.split-row .visual { flex: none; width: 420px; aspect-ratio: 16 / 10; }
.split-row .copy { flex: 1; min-width: 0; }
.split-row .copy .body-lg { margin: var(--space-3) 0 var(--space-5); }

/* ---------- CTA band ---------- */
.cta-band .inner { display: flex; gap: var(--space-6); align-items: center; padding: var(--space-8) 0; }
.cta-band .copy { flex: 1; }
.cta-band.center .inner { flex-direction: column; text-align: center; gap: var(--space-4); }

/* ---------- Steps (Why AMS) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.step .num { font-size: 28px; font-weight: var(--fw-black); color: var(--accent); }
.step .t { font-weight: var(--fw-bold); font-size: var(--fs-body); margin: var(--space-2) 0 var(--space-1); }
.step .d { font-size: var(--fs-body-sm); color: var(--text-tertiary); }

/* ---------- Testimonial ---------- */
.quote-row { display: flex; gap: var(--space-5); align-items: center; }
.quote-row .avatar {
  width: 56px; height: 56px; border-radius: var(--radius-pill); flex: none;
  background: var(--grad-slate); display: flex; align-items: center; justify-content: center;
  color: var(--color-cream); font-weight: var(--fw-bold); font-size: var(--fs-body-sm);
}
.quote-row blockquote { margin: 0; font-size: var(--fs-body-lg); font-style: italic; color: var(--text-secondary); }
.quote-row cite { font-style: normal; font-weight: var(--fw-bold); color: var(--text-primary); }

/* ---------- Checklist ---------- */
.checklist { display: flex; flex-direction: column; gap: var(--space-3); }
.checklist li { display: flex; gap: var(--space-3); align-items: baseline; list-style: none; font-size: var(--fs-body); }
.checklist { padding: 0; margin: 0; }
.checklist .tick { color: var(--accent); font-weight: var(--fw-bold); }

/* ---------- Contact form ---------- */
.contact-grid { display: flex; gap: var(--space-8); padding: var(--space-8) 0; align-items: flex-start; }
.contact-grid > div { flex: 1; min-width: 0; }
.form-card {
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.form-card .form-title { font-size: var(--fs-body); font-weight: var(--fw-bold); }
.form-row { display: flex; gap: var(--space-3); }
.form-row > * { flex: 1; min-width: 0; }
.field { display: flex; flex-direction: column; gap: var(--space-1); }
.field label { font-size: var(--fs-caption); font-weight: var(--fw-semibold); color: var(--text-secondary); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: var(--fs-body-sm); color: var(--text-primary);
  border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  padding: 10px 12px; background: var(--color-white); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring);
}
.field textarea { resize: vertical; min-height: 84px; }
.form-note { font-size: var(--fs-caption); color: var(--text-tertiary); text-align: center; }
.form-success {
  display: none; background: var(--success-tint); color: var(--success);
  border-radius: var(--radius-md); padding: var(--space-4); font-weight: var(--fw-semibold); font-size: var(--fs-body-sm);
  text-align: center;
}
.contact-aside .phone-block {
  margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid var(--border-default);
  font-size: var(--fs-body-sm); color: var(--text-tertiary);
}
.contact-aside .phone-block b { display: block; color: var(--text-primary); font-size: var(--fs-h3); margin: var(--space-1) 0; }

/* ---------- Mobile nav panel ---------- */
.mobile-menu {
  display: none; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3) var(--space-5) var(--space-5);
  border-top: 1px solid var(--border-default); background: var(--color-white);
}
.mobile-menu a { padding: var(--space-3) 0; font-weight: var(--fw-semibold); font-size: var(--fs-body); border-bottom: 1px solid var(--gray-100); }
.mobile-menu.open { display: flex; }

/* ---------- Landing page: food trucks ---------- */
.offer-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--accent-tint); color: var(--accent-hover);
  border: 1px solid var(--accent); border-radius: var(--radius-pill);
  padding: 7px 14px 7px 10px; font-size: var(--fs-body-sm); font-weight: var(--fw-bold);
}
.offer-badge .tag {
  background: var(--accent); color: var(--text-on-orange); border-radius: var(--radius-pill);
  padding: 2px 9px; font-size: var(--fs-caption); font-weight: var(--fw-black);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
}

.lp-hero { background: var(--grad-warm); }
.lp-hero .inner { display: flex; gap: var(--space-8); align-items: center; padding: var(--space-8) 0; }
.lp-hero .copy { flex: 1.15; min-width: 0; }
.lp-hero .copy h1 { font-size: clamp(34px, 4.4vw, 52px); font-weight: var(--fw-black); letter-spacing: var(--ls-tight); line-height: var(--lh-tight); margin-top: var(--space-4); }
.lp-hero .copy h1 .accent { color: var(--accent); }
.lp-hero .copy .lede { font-size: var(--fs-body-lg); color: var(--text-secondary); margin: var(--space-4) 0 var(--space-6); max-width: 30em; }
.lp-hero .cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.lp-hero .fineprint { font-size: var(--fs-caption); color: var(--text-tertiary); margin-top: var(--space-4); }
.lp-hero .visual { flex: 1; aspect-ratio: 4 / 5; max-width: 380px; }

/* Offer highlight cards (free POS / 5G / included) */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.offer-card {
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.offer-card .ic {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex: none;
  background: var(--grad-accent-soft); border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center; color: var(--accent-hover);
}
.offer-card .ic svg { width: 24px; height: 24px; }
.offer-card h3 { font-size: var(--fs-h3); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.offer-card p { font-size: var(--fs-body-sm); color: var(--text-tertiary); }
.offer-card .flag { font-size: var(--fs-caption); font-weight: var(--fw-black); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--accent); }

/* Clover POS highlights */
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-6); }
.spec-item { display: flex; gap: var(--space-3); align-items: flex-start; }
.spec-item .dot {
  width: 34px; height: 34px; border-radius: var(--radius-pill); flex: none;
  background: var(--accent-tint); color: var(--accent-hover);
  display: flex; align-items: center; justify-content: center;
}
.spec-item .dot svg { width: 18px; height: 18px; }
.spec-item b { font-size: var(--fs-body); font-weight: var(--fw-bold); }
.spec-item span { display: block; font-size: var(--fs-body-sm); color: var(--text-tertiary); margin-top: 2px; }

/* ---------- Role cards (Join the team) ---------- */
.roles { display: flex; flex-direction: column; gap: var(--space-4); }
.role { gap: var(--space-4); }
.role .role-title { font-size: var(--fs-h3); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.role .role-blurb { font-size: var(--fs-body-sm); color: var(--text-secondary); margin-top: var(--space-1); }
.role-cols { display: flex; gap: var(--space-6); flex-wrap: wrap; margin-top: var(--space-2); }
.role-cols > div { flex: 1; min-width: 220px; }
.role h4 {
  font-size: var(--fs-caption); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-tertiary); font-weight: var(--fw-bold); margin: 0 0 var(--space-2);
}
.role ul { margin: 0; padding-left: 1.1em; display: flex; flex-direction: column; gap: 5px; }
.role li { font-size: var(--fs-body-sm); color: var(--text-secondary); }
.role .role-foot { margin-top: var(--space-3); }

/* Responsive ---------- */
@media (max-width: 900px) {
  .split-row { flex-direction: column; align-items: stretch; }
  .split-row .visual { width: 100%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { flex-direction: column; }
  .hero .inner { flex-direction: column; align-items: stretch; padding: var(--space-7) 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .lp-hero .inner { flex-direction: column; align-items: stretch; gap: var(--space-6); }
  .lp-hero .visual { max-width: none; width: 100%; aspect-ratio: 16 / 10; order: -1; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  /* Switch to the hamburger menu before the 5-item nav starts to crowd */
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 720px) {
  .nav-cta .btn { padding: 10px 18px; font-size: 13px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); }
  .ind-tile {
    flex-direction: column; align-items: flex-start; gap: var(--space-2);
    min-width: 0; min-height: 48px; padding: var(--space-3);
  }
  .ind-ic { width: 28px; height: 28px; }
  .ind-tile .see { display: inline; margin-left: 0; }
  .ind-tile.all { align-items: center; justify-content: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-band .inner { flex-direction: column; text-align: center; }
  .trust-bar .partners { margin-left: 0; }
  .form-row { flex-direction: column; }
  .section { padding: var(--space-7) 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ind-tile, .hero-grid, .nav-industries, .tile, .btn { transition: none !important; }
  .hero-word.animating .w-in, .hero-word .w-out { animation: none !important; }
}
