/*
Theme Name: Integrity 1st Franchise
Theme URI: https://staging.integrity1franchise.com/
Author: Integrity 1st Car Pros
Author URI: https://integrity1auto.com/
Description: Custom classic WordPress theme for the Integrity 1st Car Pros franchise site. Every text string, number, image, and link is editable through wp-admin via Meta Box. Brand voice: honest repair, franchised on results. No page builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: Proprietary
License URI: https://staging.integrity1franchise.com/license
Text Domain: integrity1st
Tags: franchise, custom, classic, meta-box
*/

/* =========================================================================
   Integrity 1st Car Pros — Theme Stylesheet
   Order:
     1. Self-hosted @font-face (Oswald, Inter, JetBrains Mono — variable WOFF2)
     2. Design tokens (ported verbatim from static-design/shared/colors_and_type.css)
     3. Semantic type tokens (.i1-eyebrow, .i1-h1, etc.)
     4. Base reset
     5. Component classes (ported from inline JSX styles into CSS)
     6. Responsive collapse rules
   ========================================================================= */

/* ----------------------------------------------------------------------
   1. Self-hosted fonts — variable WOFF2 files in /assets/fonts/
   ---------------------------------------------------------------------- */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('assets/fonts/oswald-variable.woff2') format('woff2-variations'),
       url('assets/fonts/oswald-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('assets/fonts/inter-variable.woff2') format('woff2-variations'),
       url('assets/fonts/inter-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-variable.woff2') format('woff2-variations'),
       url('assets/fonts/jetbrains-mono-variable.woff2') format('woff2');
}

/* ----------------------------------------------------------------------
   2. Design tokens — ported from static-design/shared/colors_and_type.css
   ---------------------------------------------------------------------- */
:root {
  /* Brand color */
  --i1-red:           #C8102E;
  --i1-red-deep:      #A31621;
  --i1-red-glow:      #E8333F;
  --i1-red-soft:      #FBE4E6;

  /* Dark */
  --i1-ink:           #0B0C0E;
  --i1-charcoal:      #16181B;
  --i1-graphite:      #2A2D31;
  --i1-slate:         #4A4E54;
  --i1-steel:         #7A7F86;
  --i1-aluminum:      #B6BAC0;
  --i1-mist:          #E1E3E6;
  --i1-bone:          #F1F2F3;
  --i1-paper:         #F8F8F7;
  --i1-white:         #FFFFFF;

  /* Semantic */
  --i1-success:       #1F7A4D;
  --i1-success-soft:  #E5F2EC;
  --i1-warning:       #B86E00;
  --i1-info:          #1E5FA8;
  --i1-danger:        var(--i1-red);

  /* Backwards-compat aliases */
  --i1-oxblood:       var(--i1-red);
  --i1-oxblood-deep:  var(--i1-red-deep);
  --i1-oxblood-soft:  var(--i1-red-soft);
  --i1-black:         var(--i1-ink);
  --i1-concrete:      var(--i1-mist);

  /* Semantic surface roles */
  --bg:               var(--i1-white);
  --bg-alt:           var(--i1-bone);
  --bg-inverse:       var(--i1-ink);
  --surface:          var(--i1-white);
  --surface-raised:   var(--i1-white);
  --border:           var(--i1-mist);
  --border-strong:    var(--i1-graphite);
  --border-focus:     var(--i1-red);
  --hairline:         rgba(11, 12, 14, 0.10);
  --hairline-light:   rgba(248, 248, 247, 0.16);

  /* Text roles */
  --fg:               var(--i1-ink);
  --fg-muted:         var(--i1-slate);
  --fg-subtle:        var(--i1-steel);
  --fg-faint:         var(--i1-aluminum);
  --fg-inverse:       var(--i1-paper);
  --fg-accent:        var(--i1-red);

  /* Type */
  --font-display:     'Oswald', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --font-ui:          'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --font-body:        var(--font-ui);
  --font-stat:        var(--font-display);

  /* Type scale */
  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-56: 3.5rem;
  --fs-64: 4rem;
  --fs-80: 5rem;
  --fs-96: 6rem;
  --fs-128: 8rem;
  --fs-160: 10rem;

  /* Line heights */
  --lh-tight: 0.95;
  --lh-snug: 1.1;
  --lh-base: 1.5;
  --lh-relaxed: 1.65;

  /* Tracking */
  --tracking-tightest: -0.02em;
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-mono: 0.02em;
  --tracking-eyebrow: 0.16em;
  --tracking-display: 0.005em;

  /* Spacing scale (4px base) */
  --space-0:   0;
  --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;
  --space-11:  160px;

  --section-y-mobile:  72px;
  --section-y-desktop: 128px;
  --container-max:     1280px;
  --container-gutter:  32px;

  /* Radius */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 10px;
  --radius-pill: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(11, 12, 14, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(11, 12, 14, 0.14);
  --shadow-lg: 0 24px 56px -16px rgba(11, 12, 14, 0.24);
  --shadow-glow: 0 0 32px rgba(209, 31, 44, 0.28);
  --shadow-focus: 0 0 0 3px rgba(209, 31, 44, 0.32);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-sharp: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-slow: 380ms;
}

/* ----------------------------------------------------------------------
   3. Semantic type tokens
   ---------------------------------------------------------------------- */
.i1-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.i1-eyebrow--accent { color: var(--fg-accent); }
.i1-eyebrow--light { color: rgba(248, 248, 247, 0.72); }

.i1-display, .i1-h1, h1.i1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(var(--fs-48), 9vw, var(--fs-160));
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--fg);
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-h2, h2.i1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(var(--fs-32), 5.5vw, var(--fs-96));
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--fg);
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-h3, h3.i1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-28);
  line-height: var(--lh-snug);
  color: var(--fg);
  margin: 0;
  text-transform: uppercase;
}
.i1-h4, h4.i1 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: var(--fs-18);
  line-height: var(--lh-snug);
  color: var(--fg);
  margin: 0;
}
.i1-lede {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--fs-20);
  line-height: var(--lh-relaxed);
  color: var(--fg-muted);
  text-wrap: pretty;
}
.i1-p, p.i1 {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: var(--lh-base);
  color: var(--fg);
  margin: 0;
  text-wrap: pretty;
}
.i1-small {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--fs-14);
  line-height: var(--lh-base);
  color: var(--fg-muted);
}
.i1-caption {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-12);
  line-height: var(--lh-base);
  letter-spacing: var(--tracking-mono);
  color: var(--fg-subtle);
}
.i1-stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(var(--fs-64), 9vw, var(--fs-160));
  line-height: 0.9;
  letter-spacing: var(--tracking-tightest);
  color: var(--fg);
  font-variant-numeric: tabular-nums lining-nums;
}
.i1-stat--accent { color: var(--fg-accent); }
.i1-stat-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-11);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.i1-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  font-weight: 400;
  letter-spacing: var(--tracking-mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
}
.i1-mono, code.i1 {
  font-family: var(--font-mono);
  font-size: 0.9em;
  letter-spacing: var(--tracking-mono);
}
.i1-rule { height: 1px; background: var(--hairline); border: 0; margin: 0; }
.i1-rule--light { background: var(--hairline-light); }
.i1-rule--accent { background: var(--i1-red); }
.i1-body-link, p a:not([style*="color"]), li a:not([style*="color"]) {
  color: var(--i1-red);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color var(--dur-fast) var(--ease-out);
}
.i1-body-link:hover, p a:not([style*="color"]):hover, li a:not([style*="color"]):hover {
  color: var(--i1-red-deep);
}

/* ----------------------------------------------------------------------
   4. Base reset
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* When anchor links (#markets, #faq, etc.) scroll into view, leave room
     for the 80px sticky header so section headlines aren't hidden behind
     it. Slightly larger than the header to give a visual gap. */
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--i1-red); color: #fff; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* WordPress admin bar offset */
body.admin-bar .i1-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .i1-header { top: 46px; }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  background: var(--i1-ink);
  color: var(--i1-paper);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ----------------------------------------------------------------------
   5. Component classes — ported from JSX inline styles
   ---------------------------------------------------------------------- */

/* Container */
.i1-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

/* Section tones */
.i1-section {
  padding: clamp(80px, 11vw, 144px) 0;
  position: relative;
  color: var(--fg);
}
.i1-section--paper    { background: var(--i1-paper); }
.i1-section--bone     { background: var(--i1-bone); }
.i1-section--white    { background: var(--i1-white); }
.i1-section--dark     { background: var(--i1-ink); color: var(--i1-paper); }
.i1-section--charcoal { background: var(--i1-charcoal); color: var(--i1-paper); }

/* Eyebrow component */
.i1-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.i1-eyebrow-row__rule {
  width: 24px;
  height: 2px;
  background: var(--i1-red);
  flex-shrink: 0;
}
.i1-eyebrow-row__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--i1-red);
}
.i1-eyebrow-row__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.i1-eyebrow-row--light .i1-eyebrow-row__label { color: rgba(248,248,247,0.72); }

/* Button */
.i1-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms var(--ease-sharp);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}
.i1-btn--sm { font-size: 13px; padding: 10px 18px; }
.i1-btn--lg { font-size: 17px; padding: 20px 36px; }
.i1-btn--primary {
  background: var(--i1-red);
  color: #fff;
  border-color: transparent;
}
.i1-btn--primary:hover {
  background: var(--i1-red-deep);
  box-shadow: var(--shadow-glow);
}
.i1-btn--secondary {
  background: transparent;
  color: var(--i1-ink);
  border-color: var(--i1-ink);
}
.i1-btn--secondary:hover {
  background: var(--i1-ink);
  color: var(--i1-paper);
}
.i1-btn--secondary-light {
  background: transparent;
  color: var(--i1-paper);
  border-color: rgba(248,248,247,0.6);
}
.i1-btn--secondary-light:hover {
  background: var(--i1-paper);
  color: var(--i1-ink);
}
.i1-btn--invert {
  background: var(--i1-paper);
  color: var(--i1-ink);
  border-color: var(--i1-paper);
}
.i1-btn--invert:hover { background: var(--i1-bone); }

/* ----------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */
.i1-header {
  position: sticky;
  top: 0;
  /* Bumped from 50 → 100 and explicit opacity to guard against iOS Safari
     sticky-positioning quirks where a transparent stacking context can
     let content peek through during momentum scroll. */
  z-index: 100;
  background: var(--i1-ink);
  opacity: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(248,248,247,0.10);
}
.i1-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.i1-header__brand { display: inline-flex; text-decoration: none; }
.i1-header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.i1-header__nav a {
  color: rgba(248,248,247,0.85);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  /* Tightened from 0.18em → 0.13em for franchise-buyer readability.
     Wider tracking is preserved on eyebrows and stat labels where the
     editorial widely-spaced caps treatment is intentional. */
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms var(--ease-sharp);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.i1-header__nav a:hover,
.i1-header__nav a.current-menu-item,
.i1-header__nav .current-menu-item > a,
.i1-header__nav a.is-active {
  color: var(--i1-red);
  border-bottom-color: var(--i1-red);
}
.i1-header__actions {
  display: flex;
  align-items: center;
}
.i1-header__sep {
  width: 1px;
  height: 24px;
  background: rgba(248,248,247,0.16);
  margin-right: 24px;
}
.i1-header__menu-btn {
  display: none;
  margin-left: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--i1-paper);
  padding: 8px;
}
.i1-mobile-menu {
  position: fixed;
  inset: 80px 0 0 0;
  background: var(--i1-ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 49;
  overflow-y: auto;
}
.i1-mobile-menu[hidden] { display: none; }
.i1-mobile-menu a.i1-mobile-menu__link {
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--i1-paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(248,248,247,0.12);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.i1-mobile-menu__phone {
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(248,248,247,0.7);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.i1-mobile-menu__phone .i1-mobile-menu__phone-label { color: var(--i1-red); }
.i1-mobile-menu__cta { margin-top: 16px; }

@media (max-width: 1080px) {
  .i1-header__nav { display: none; }
  .i1-header__menu-btn { display: inline-flex; }
  .i1-header__sep { display: none; }
}

/* ----------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */
.i1-hero {
  position: relative;
  background: var(--i1-ink);
  color: var(--i1-paper);
  overflow: hidden;
  isolation: isolate;
}
.i1-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.i1-hero__bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 55%;
  filter: saturate(0.85) contrast(1.05);
}
.i1-hero__scrim-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,12,14,0.96) 0%, rgba(11,12,14,0.78) 38%, rgba(11,12,14,0.35) 100%);
  pointer-events: none;
}
.i1-hero__scrim-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,12,14,0.55) 0%, rgba(11,12,14,0) 22%, rgba(11,12,14,0) 60%, rgba(11,12,14,0.9) 100%);
  pointer-events: none;
}
.i1-utility-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(248,248,247,0.10);
}
.i1-utility-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  color: rgba(248,248,247,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.i1-utility-strip__right { display: flex; gap: 24px; align-items: center; }
.i1-utility-strip__phone {
  color: rgba(248,248,247,0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.i1-utility-strip__phone-label { color: var(--i1-red); letter-spacing: 0.22em; }
.i1-utility-strip__phone-sep { color: rgba(248,248,247,0.32); }
.i1-utility-strip__divider { width: 1px; height: 12px; background: rgba(248,248,247,0.16); align-self: center; }
.i1-utility-strip__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(248,248,247,0.85);
}
.i1-utility-strip__status-dot {
  width: 6px;
  height: 6px;
  background: var(--i1-red);
  box-shadow: 0 0 12px var(--i1-red);
}

.i1-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 10vw, 128px);
}
.i1-hero__index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  color: rgba(248,248,247,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.i1-hero__index-rule  { width: 24px; height: 2px; background: var(--i1-red); }
.i1-hero__index-rule2 { width: 24px; height: 1px; background: rgba(248,248,247,0.3); }
.i1-hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  /* Max trimmed from 192px to 128px so the full 4-line headline plus a
     sliver of the next section fit in a typical 1440×900 viewport. */
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--i1-paper);
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 1100px;
}
.i1-hero__headline .i1-accent { color: var(--i1-red); text-shadow: 0 0 32px rgba(209,31,44,0.4); }
.i1-hero__headline .i1-underlined { display: inline-block; position: relative; }
.i1-hero__headline .i1-underlined::after {
  content: '';
  position: absolute;
  bottom: 0.04em; left: 0; right: 0;
  height: 0.06em;
  background: var(--i1-red);
}
.i1-hero__body {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}
.i1-hero__sub {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: rgba(248,248,247,0.82);
  max-width: 540px;
  margin: 0;
}
.i1-hero__ctas { display: flex; flex-direction: column; gap: 14px; min-width: 220px; }
.i1-hero__stats {
  margin-top: clamp(72px, 9vw, 128px);
}
.i1-hero__stats-rule { height: 1px; background: rgba(248,248,247,0.16); }
.i1-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.i1-hero__stat {
  padding: 36px 28px 0 0;
  border-right: 1px solid rgba(248,248,247,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.i1-hero__stat:first-child { padding-left: 0; }
.i1-hero__stat:not(:first-child) { padding-left: 28px; }
.i1-hero__stat:last-child { border-right: none; }
.i1-hero__stat-key {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.5);
}
.i1-hero__stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  color: var(--i1-paper);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  /* Prevent values with internal spaces (e.g. "TOP 5%") from wrapping to a
     second line at intermediate desktop widths. On mobile the ≤880 px rule
     drops the floor size, so the wrap risk is gone there. */
  white-space: nowrap;
}
.i1-hero__stat-suffix { font-size: 0.5em; color: var(--i1-red); margin-left: 6px; }
.i1-hero__stat-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: rgba(248,248,247,0.55);
}

@media (max-width: 880px) {
  .i1-hero__body { grid-template-columns: 1fr; gap: 32px; }
  .i1-hero__stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .i1-hero__stat { padding: 24px 0 !important; border-right: none !important; }
}

/* ----------------------------------------------------------------------
   Stats (homepage section)
   ---------------------------------------------------------------------- */
.i1-stats-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.i1-stats-intro { position: sticky; top: 96px; }
.i1-stats-intro__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-stats-intro__title .i1-accent { color: var(--i1-red); }
.i1-stats-intro__body {
  margin-top: 32px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 380px;
}
.i1-stats-intro__verify {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  text-transform: uppercase;
}
.i1-stats-rule { height: 2px; background: var(--i1-ink); }
.i1-stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
}
.i1-stat-row__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
  margin-bottom: 8px;
}
.i1-stat-row__key {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--fg);
  text-transform: uppercase;
}
.i1-stat-row__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  color: var(--i1-ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
  text-transform: uppercase;
}
.i1-stat-row__value-suffix { font-size: 0.45em; color: var(--i1-red); margin-left: 4px; }
.i1-stat-row__meta {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .i1-stat-row { grid-template-columns: 1fr; gap: 8px; }
  .i1-stat-row > * { text-align: left !important; }
}

/* ----------------------------------------------------------------------
   Section header / Two-col headline+body
   ---------------------------------------------------------------------- */
.i1-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.i1-section-header--start { align-items: start; }
.i1-section-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-section-header__title .i1-accent { color: var(--i1-red); }
.i1-section--dark .i1-section-header__title,
.i1-section--charcoal .i1-section-header__title { color: var(--i1-paper); }
.i1-section-header__body {
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0;
  justify-self: end;
}
.i1-section--dark .i1-section-header__body,
.i1-section--charcoal .i1-section-header__body { color: rgba(248,248,247,0.72); }

/* ----------------------------------------------------------------------
   WhyUs grid
   ---------------------------------------------------------------------- */
.i1-whyus-grid {
  border-top: 2px solid var(--i1-ink);
}
.i1-whyus-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.i1-whyus-card {
  padding: 40px 32px;
  position: relative;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}
.i1-whyus-card:nth-child(3n) { border-right: none; }
.i1-whyus-card:nth-last-child(-n+3) { border-bottom: none; }
.i1-whyus-card__num {
  width: 32px;
  height: 32px;
  background: var(--i1-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.02em;
}
.i1-whyus-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--i1-ink);
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-whyus-card__body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

@media (max-width: 980px) {
  .i1-whyus-grid__inner { grid-template-columns: repeat(2, 1fr); }
  .i1-whyus-card:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .i1-whyus-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .i1-whyus-grid__inner { grid-template-columns: 1fr; }
  .i1-whyus-card { border-right: none !important; border-bottom: 1px solid var(--hairline) !important; }
}

/* ----------------------------------------------------------------------
   Trust quotes (TrustProblem on home)
   ---------------------------------------------------------------------- */
.i1-trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.i1-trust-card {
  background: var(--i1-white);
  border: 1px solid var(--hairline);
}
.i1-trust-card__head {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 12px;
}
.i1-trust-card__head-rule { width: 24px; height: 2px; background: var(--i1-red); }
.i1-trust-card__head-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
}
.i1-trust-quote {
  padding: 24px 32px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.i1-trust-quote:last-of-type { border-bottom: none; }
.i1-trust-quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--fg);
}
.i1-trust-quote__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.i1-trust-card__foot {
  padding: 20px 32px;
  background: var(--i1-bone);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.i1-trust-card__foot-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.i1-trust-card__foot-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--i1-red);
  letter-spacing: 0.005em;
}

/* ----------------------------------------------------------------------
   IndustryOpportunity (dark numbered grid)
   ---------------------------------------------------------------------- */
.i1-industry-grid { border-top: 2px solid var(--i1-red); }
.i1-industry-grid__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.i1-industry-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(248,248,247,0.10);
  border-bottom: 1px solid rgba(248,248,247,0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}
.i1-industry-card:nth-child(2n) { border-right: none; }
.i1-industry-card:nth-last-child(-n+2) { border-bottom: none; }
.i1-industry-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--i1-red);
  line-height: 0.9;
  letter-spacing: 0.005em;
}
.i1-industry-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--i1-paper);
}
.i1-industry-card__body {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(248,248,247,0.72);
  margin: 0;
}

/* ----------------------------------------------------------------------
   FullServiceModel (services grid + tile cards)
   ---------------------------------------------------------------------- */
.i1-services-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.i1-services-box {
  border: 1px solid var(--hairline);
  background: var(--i1-white);
}
.i1-services-box__head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.i1-services-box__head-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
}
.i1-services-box__head-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.i1-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.i1-services-grid__cell {
  padding: 18px 24px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.i1-services-grid__cell:nth-child(2n) { border-right: none; }
.i1-services-grid__cell:nth-last-child(-n+2) { border-bottom: none; }
.i1-services-grid__bullet { width: 14px; height: 1.5px; background: var(--i1-red); }

.i1-pillars { display: flex; flex-direction: column; gap: 32px; }
.i1-pillar {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.i1-pillar__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--i1-red);
  letter-spacing: 0.005em;
  flex-shrink: 0;
}
.i1-pillar__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fg);
}
.i1-pillar__body {
  margin: 8px 0 0;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ----------------------------------------------------------------------
   Technology / two-up tile grid
   ---------------------------------------------------------------------- */
.i1-tech-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.i1-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.i1-tech-tile {
  padding: 28px 24px;
  background: var(--i1-paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.i1-tech-tile__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
}
.i1-tech-tile__body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* ----------------------------------------------------------------------
   CandidateFit grid (yes/no)
   ---------------------------------------------------------------------- */
.i1-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
}
.i1-fit-col {
  padding: 40px 36px;
}
.i1-fit-col--yes {
  border-right: 1px solid var(--hairline);
  background: var(--i1-white);
}
.i1-fit-col--no { background: var(--i1-bone); }
.i1-fit-col__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.i1-fit-col__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.i1-fit-col--yes .i1-fit-col__icon { background: var(--i1-red); color: #fff; }
.i1-fit-col--no .i1-fit-col__icon { border: 1px solid var(--i1-ink); color: var(--i1-ink); }
.i1-fit-col__head-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.i1-fit-col--yes .i1-fit-col__head-label { color: var(--i1-red); }
.i1-fit-col--no .i1-fit-col__head-label  { color: var(--fg-muted); }
.i1-fit-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.i1-fit-col__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
}
.i1-fit-col--yes .i1-fit-col__list li { color: var(--fg); }
.i1-fit-col--no .i1-fit-col__list li {
  color: var(--fg-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(11,12,14,0.18);
  text-decoration-thickness: 1px;
}
.i1-fit-col__bullet { width: 16px; flex-shrink: 0; transform: translateY(-4px); }
.i1-fit-col--yes .i1-fit-col__bullet { height: 2px; background: var(--i1-red); }
.i1-fit-col--no .i1-fit-col__bullet  { height: 1px; background: var(--fg-faint); }

/* "Who this isn't for" — list rows */
.i1-notfor {
  border: 1px solid var(--hairline);
  background: var(--i1-bone);
}
.i1-notfor__row {
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  gap: 24px;
  padding: 28px 32px;
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
}
.i1-notfor__row:last-child { border-bottom: none; }
.i1-notfor__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
}
.i1-notfor__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1.2;
}
.i1-notfor__rule {
  width: 24px;
  height: 1.5px;
  background: var(--i1-ink);
  justify-self: end;
  transform: translateY(-6px);
}

@media (max-width: 720px) {
  .i1-notfor__row { grid-template-columns: 1fr; gap: 8px; }
  .i1-notfor__rule { display: none; }
}

/* ----------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.i1-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.i1-faq-intro { position: sticky; top: 96px; }
.i1-faq-intro__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-faq-intro__title .i1-accent { color: var(--i1-red); }
.i1-faq-intro__body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-top: 32px;
  max-width: 360px;
}
.i1-faq-intro__body .i1-faq-intro__email {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--i1-red);
}
.i1-faq-list { border-top: 2px solid var(--i1-ink); }
.i1-faq-item { border-bottom: 1px solid var(--hairline); }
.i1-faq-item__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 32px 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  align-items: baseline;
  gap: 16px;
  color: inherit;
}
.i1-faq-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
}
.i1-faq-item.is-open .i1-faq-item__num { color: var(--i1-red); }
.i1-faq-item__question {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-faq-item__toggle {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--i1-red);
  line-height: 1;
  text-align: center;
}
.i1-faq-item__toggle::before { content: '+'; }
.i1-faq-item.is-open .i1-faq-item__toggle::before { content: '−'; }
.i1-faq-item__answer {
  padding: 0 0 32px 56px;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 680px;
  font-weight: 400;
}
.i1-faq-item:not(.is-open) .i1-faq-item__answer { display: none; }

/* ----------------------------------------------------------------------
   Founder quote
   ---------------------------------------------------------------------- */
.i1-founder { position: relative; overflow: hidden; }
.i1-founder__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  filter: grayscale(0.4);
}
.i1-founder__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,12,14,0.92) 0%, rgba(11,12,14,0.82) 100%);
}
.i1-founder__layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.i1-founder__portrait {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.i1-founder__photo-wrap {
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 360px;
  background: var(--i1-charcoal);
  border: 1px solid rgba(248,248,247,0.08);
  position: relative;
  overflow: hidden;
}
.i1-founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.i1-founder__corner {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 64px;
  background: var(--i1-red);
}
.i1-founder__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(11,12,14,0) 0%, rgba(11,12,14,0.85) 50%, rgba(11,12,14,0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.i1-founder__caption-line1 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--i1-red);
}
.i1-founder__caption-line2 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.6);
}
.i1-founder__byline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.i1-founder__byline-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.5);
}
.i1-founder__byline-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--i1-paper);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.i1-founder__byline-meta {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(248,248,247,0.6);
}
.i1-founder__main {}
.i1-founder__rule {
  width: 56px;
  height: 2px;
  background: var(--i1-red);
  margin-bottom: 32px;
}
.i1-founder__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: var(--i1-paper);
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.i1-founder__quote .i1-accent { color: var(--i1-red); }
.i1-founder__support {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 720px;
}
.i1-founder__support p {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(248,248,247,0.78);
  margin: 0;
}
.i1-founder__sig {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.i1-founder__sig-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--i1-paper);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.i1-founder__sig-line {
  flex: 1;
  height: 1px;
  background: rgba(248,248,247,0.16);
  max-width: 240px;
}
.i1-founder__sig-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.5);
}

/* ----------------------------------------------------------------------
   CTA Band
   ---------------------------------------------------------------------- */
.i1-cta-band {
  padding: clamp(64px, 9vw, 112px) 0;
}
.i1-cta-band__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.i1-cta-band__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--i1-paper);
  text-transform: uppercase;
  text-wrap: balance;
}
.i1-cta-band__headline .i1-accent { color: var(--i1-red); }
.i1-cta-band__body {
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(248,248,247,0.72);
  max-width: 480px;
}
.i1-cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.i1-cta-band__time {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.5);
}

/* ----------------------------------------------------------------------
   Compliance bar
   ---------------------------------------------------------------------- */
.i1-compliance {
  background: var(--i1-bone);
  border-top: 1px solid var(--hairline);
  padding: 32px 0;
}
.i1-compliance__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--fg-subtle);
  margin: 0;
  max-width: 1100px;
}
.i1-compliance__lead { color: var(--i1-red); font-weight: 600; }
.i1-compliance__verify { color: var(--i1-red); }
.i1-compliance__fpr { color: var(--fg-faint); }

/* Mobile compliance bar: keep footnote-scale + claw back vertical space.
   Long FDD + FPR paragraphs at 11px / 1.7 added up to ~500px+ of vertical
   on phones; trimmed to ~10px / 1.55 with smaller container padding. */
@media (max-width: 768px) {
  .i1-compliance { padding: 24px 0; }
  .i1-compliance__copy { font-size: 10px; line-height: 1.55; }
}

/* ----------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */
.i1-footer {
  background: var(--i1-ink);
  color: var(--i1-paper);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}
.i1-footer__lockup {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(248,248,247,0.16);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: end;
}
.i1-footer__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--i1-paper);
  margin: 0;
  text-transform: uppercase;
}
.i1-footer__tagline .i1-accent { color: var(--i1-red); }
.i1-footer__cols {
  display: grid;
  /* auto-fit lets the column count track the actual child count — so when
     the Legal column is suppressed (placeholder URLs only), the remaining
     three columns expand to fill the grid instead of leaving an empty slot. */
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(248,248,247,0.16);
}
.i1-footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
  margin: 0 0 24px;
}
.i1-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.i1-footer__col a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--i1-paper);
  text-decoration: none;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.i1-footer__col a:hover { color: var(--i1-red); }

/* Override the global `p a:not([style*="color"]), li a:not([style*="color"])`
   body-copy link style inside the footer. That global rule has higher
   specificity (0,1,2 from the :not attribute selector) than `.i1-footer__col a`
   alone (0,1,1), so footer column anchors were rendering with red+underline.
   The chained selectors below bring specificity to (0,2,1) or (0,1,3),
   either of which wins. */
.i1-footer .i1-footer__col a,
.i1-footer .i1-footer__col li a,
.i1-footer ul li a {
  color: var(--i1-paper);
  text-decoration: none;
  text-decoration-thickness: 0;
  text-underline-offset: 0;
}
.i1-footer .i1-footer__col a:hover,
.i1-footer .i1-footer__col li a:hover,
.i1-footer ul li a:hover {
  color: var(--i1-red);
  text-decoration: none;
}
/* Closing band — mark (left) · copyright (center) · location (right).
   The hairline above is the bottom border of .i1-footer__cols. */
.i1-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.4);
}
.i1-footer__mark {
  width: 10px;
  height: 10px;
  background: var(--i1-red);
  display: inline-block;
  flex-shrink: 0;
}
.i1-footer__copyright { text-align: center; }
.i1-footer__location  { text-align: right; }
.i1-footer__bottom a { color: rgba(248,248,247,0.4); text-decoration: none; }
.i1-footer__bottom a:hover { color: var(--i1-paper); }

@media (max-width: 640px) {
  .i1-footer__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .i1-footer__copyright,
  .i1-footer__location { text-align: center; }
  .i1-footer__mark { margin: 0 auto; }
}

@media (max-width: 880px) {
  .i1-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .i1-footer__lockup { grid-template-columns: 1fr; gap: 32px; align-items: start; }
}

/* ----------------------------------------------------------------------
   Mobile sticky CTA (visible <=768px only)
   ---------------------------------------------------------------------- */
.i1-mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--i1-ink);
  border-top: 1px solid rgba(248,248,247,0.12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateY(0);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0.24, 1);
  will-change: transform;
}
.i1-mobile-cta.is-hidden { transform: translateY(110%); pointer-events: none; }
.i1-mobile-cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.i1-mobile-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--i1-paper);
  text-decoration: none;
  min-height: 56px;
}
.i1-mobile-cta__link--call {
  border-right: 1px solid rgba(248,248,247,0.12);
}
.i1-mobile-cta__link--inquire {
  background: var(--i1-red);
}
@media (max-width: 768px) {
  .i1-mobile-cta { display: block; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}

/* ----------------------------------------------------------------------
   Generic data-collapse helpers (used inline by ported components)
   ---------------------------------------------------------------------- */
@media (max-width: 880px) {
  [data-collapse-2col] { grid-template-columns: 1fr !important; gap: 40px !important; }
  [data-collapse-3col] { grid-template-columns: 1fr !important; }
  [data-collapse-4col] { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ----------------------------------------------------------------------
   Mobile fixes — overlap, overflow, and indent (≤ 880 px / ≤ 768 px)
   ---------------------------------------------------------------------- */
@media (max-width: 880px) {
  /* Sticky two-column intros become stacked on mobile. Without disabling
     sticky here, the Stats and FAQ intros stay pinned to the viewport
     and visually overlap subsequent sections as you scroll. */
  .i1-stats-intro,
  .i1-faq-intro {
    position: static;
    top: auto;
  }

  /* Hero stat values overflow narrow viewports when the floor stays at
     48 px (e.g. "TOP 5%" is wider than a 143 px cell at 375 px). Lower
     the floor; the 2-column mobile grid then fits cleanly. */
  .i1-hero__stat-value {
    font-size: clamp(32px, 6vw, 56px);
  }
}

@media (max-width: 768px) {
  /* FAQ answer is indented 56 px to align with the question column on
     desktop. On phones this wastes line width — flatten the indent. */
  .i1-faq-item__answer {
    padding-left: 0;
  }

  /* Hide the utility strip entirely on phones. Its content (phone, FDD
     availability, slots status) wraps to 4+ lines at narrow widths and
     competes with the headline. The phone is already reachable via the
     mobile sticky CTA and the mobile menu drawer; FDD + slot status are
     restated inside the hero copy. */
  .i1-utility-strip {
    display: none;
  }
}

/* ============================================================================
   Global body-scale recalibration
   ----------------------------------------------------------------------------
   Headlines stay where they are — they're working. Body copy, card text, list
   items, and captions get a +1-3 px lift so the franchise pitch beneath the
   headlines reads as substantive, not as a footnote.

   Intentionally unchanged:
     - Display headlines (.i1-hero__headline, .i1-section-header__title, etc.)
     - Eyebrows / mono caps labels
     - Stat numerals (.i1-stat-row__value, .i1-hero__stat-value)
     - Logo, buttons, header height
     - Compliance bar (already correct footnote scale)

   Targets (user-specified):
     - Section supporting paragraphs:    17 px → 19 px,  lh 1.6
     - Card body text:                15 px → 17 px,  lh 1.6
                                         14 px → 16 px,  lh 1.6
     - List items:                    15-16 px → 18 px,  lh 1.55-1.65
     - Captions / meta:               12-13 px → 14 px
     - Hero subhead:                  clamp(17, 1.4vw, 21) → clamp(18, 1.5vw, 22)
   ============================================================================ */

/* Section supporting paragraphs ------------------------------------------- */
.i1-section-header__body { font-size: 19px; line-height: 1.6; }
.i1-stats-intro__body    { font-size: 19px; line-height: 1.6; }
.i1-faq-intro__body      { font-size: 19px; line-height: 1.6; }
.i1-cta-band__body       { font-size: 19px; line-height: 1.6; }

/* Hero subhead — bump the floor and ceiling slightly */
.i1-hero__sub { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; }

/* Card body text ---------------------------------------------------------- */
.i1-whyus-card__body    { font-size: 17px; line-height: 1.6; }
.i1-industry-card__body { font-size: 17px; line-height: 1.6; }
.i1-tech-tile__body     { font-size: 16px; line-height: 1.6; }
.i1-pillar__body        { font-size: 16px; line-height: 1.6; }

/* List items -------------------------------------------------------------- */
.i1-fit-col__list li { font-size: 18px; line-height: 1.55; }
.i1-faq-item__answer { font-size: 18px; line-height: 1.65; }
.i1-footer__col a    { font-size: 18px; }

/* Founder supporting paragraphs (read as section prose) ------------------- */
.i1-founder__support p { font-size: 18px; line-height: 1.65; }

/* Captions / sub-labels --------------------------------------------------- */
.i1-hero__stat-sub       { font-size: 14px; }
.i1-founder__byline-meta { font-size: 14px; }

/* The styled email span inside the FAQ intro was 13 px mono — bring up
   slightly so it doesn't disappear beside the new 19 px intro body. */
.i1-faq-intro__email { font-size: 14px; }

/* ----------------------------------------------------------------------
   WordPress alignment classes (in case wp-content uses them)
   ---------------------------------------------------------------------- */
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }

/* ----------------------------------------------------------------------
   404 page (theme-static)
   ---------------------------------------------------------------------- */
.nf-shell {
  font-family: var(--font-ui);
  color: var(--i1-paper);
  background: var(--i1-ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.nf-top {
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(248,248,247,0.12);
}
.nf-top .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--i1-paper);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nf-top .brand-mark { width: 12px; height: 12px; background: var(--i1-red); }
.nf-top .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.55);
}
.nf-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 88px 40px 64px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}
.nf-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.nf-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--i1-red); }
.nf-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(160px, 28vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  color: var(--i1-paper);
}
.nf-num .nf-zero { color: var(--i1-red); }
.nf-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-wrap: balance;
}
.nf-body {
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(248,248,247,0.72);
  max-width: 52ch;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.nf-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.nf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 160ms ease;
}
.nf-btn:hover { opacity: 0.85; }
.nf-btn-primary { background: var(--i1-red); color: var(--i1-paper); }
.nf-btn-secondary {
  background: transparent;
  color: var(--i1-paper);
  border: 1px solid rgba(248,248,247,0.32);
}
.nf-aside { border-left: 1px solid rgba(248,248,247,0.16); padding-left: 56px; padding-top: 24px; }
.nf-aside h3 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--i1-red);
  margin: 0 0 24px;
}
.nf-aside ul { list-style: none; padding: 0; margin: 0 0 48px; display: flex; flex-direction: column; gap: 4px; }
.nf-aside li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--i1-paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(248,248,247,0.10);
  transition: padding-left 160ms ease;
}
.nf-aside li a:hover { padding-left: 8px; color: var(--i1-red); }
.nf-aside li a .nf-link-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(248,248,247,0.45);
  text-transform: uppercase;
}
.nf-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.72);
}
.nf-contact a {
  color: var(--i1-paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(248,248,247,0.24);
  padding-bottom: 2px;
}
.nf-contact a:hover { border-color: var(--i1-red); color: var(--i1-red); }
.nf-foot {
  padding: 24px 40px;
  border-top: 1px solid rgba(248,248,247,0.12);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,248,247,0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 980px) {
  .nf-main { grid-template-columns: 1fr; gap: 56px; padding: 56px 24px; }
  .nf-aside { border-left: none; border-top: 1px solid rgba(248,248,247,0.16); padding-left: 0; padding-top: 40px; }
  .nf-top, .nf-foot { padding-left: 24px; padding-right: 24px; }
}
