:root {
      --black: #000000;
      --white: #ffffff;
      --gray-50: #fafafa;
      --gray-100: #f5f5f5;
      --gray-200: #e5e5e5;
      --gray-300: #d4d4d4;
      --gray-400: #a3a3a3;
      --gray-500: #737373;
      --gray-600: #525252;
      --gray-700: #404040;
      --gray-800: #262626;
      --gray-900: #171717;
      --accent: #E8A838;
      --accent-dark: #d4941f;
      --accent-light: #FEF5E6;
      --navy: #1B3A5C;
      --navy-dark: #0f2540;
      --navy-light: #2a5a8a;
    }

    body.high-contrast { filter: contrast(1.3) saturate(1.1); }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: rgba(0,0,0,0); }
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      scroll-padding-top: 76px; /* keep anchors visible below the fixed IR submenu */
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--white);
      color: #1a1a1a;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden; /* belt-and-suspenders against iOS horizontal scroll */
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
    }
    /* Keyboard-only focus ring (a11y) */
    :focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
    /* Skip link for screen readers */
    .skip-link {
      position: absolute; left: -9999px; top: 0; z-index: 9999;
      background: var(--navy); color: var(--white);
      padding: 12px 20px; font-weight: 700; font-size: 14px;
    }
    .skip-link:focus { left: 16px; top: 16px; }

    /* ═══ PASSWORD GATE ═══ */
    html.gate-locked, html.gate-locked body { overflow: hidden !important; height: 100%; }
    #pw-gate {
      position: fixed; inset: 0; z-index: 10000;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      padding: 24px calc(24px + env(safe-area-inset-right, 0)) calc(24px + env(safe-area-inset-bottom, 0)) calc(24px + env(safe-area-inset-left, 0));
      opacity: 1; transition: opacity 0.35s ease;
    }
    #pw-gate.pw-hidden { opacity: 0; pointer-events: none; }
    #pw-gate::after {
      content: ''; position: absolute; top: 0; left: 50%;
      width: 900px; height: 900px; transform: translate(-50%, -55%);
      background: radial-gradient(circle, rgba(232,168,56,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .pw-card {
      position: relative; z-index: 1;
      width: 100%; max-width: 440px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 14px;
      padding: 40px 32px;
      text-align: center;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .pw-logo {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 18px; font-weight: 900; letter-spacing: 4px;
      margin-bottom: 28px; color: var(--white);
    }
    .pw-logo img { width: 32px; height: 32px; border-radius: 6px; }
    .pw-eyebrow {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent);
      padding: 6px 14px; border-radius: 100px;
      background: rgba(232,168,56,0.15); margin-bottom: 18px;
    }
    .pw-title { font-size: 24px; font-weight: 900; letter-spacing: -0.3px; margin-bottom: 10px; line-height: 1.25; }
    .pw-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 26px; }
    .pw-form { display: flex; flex-direction: column; gap: 12px; }
    .pw-input-wrap { position: relative; display: flex; align-items: center; }
    #pw-input {
      width: 100%;
      font-family: inherit; font-size: 16px; font-weight: 500;
      padding: 15px 48px 15px 16px;
      color: var(--white);
      background: rgba(0,0,0,0.25);
      border: 1.5px solid rgba(255,255,255,0.18);
      border-radius: 8px;
      outline: none; transition: border-color 0.2s, background 0.2s;
      -webkit-appearance: none; appearance: none;
      letter-spacing: 1px;
    }
    #pw-input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 0.3px; }
    #pw-input:focus { border-color: var(--accent); background: rgba(0,0,0,0.4); }
    #pw-toggle {
      position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,0.5); padding: 8px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px;
    }
    #pw-toggle:hover { color: var(--accent); }
    #pw-submit {
      font-family: inherit; font-size: 13px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 1.5px;
      padding: 15px 20px;
      background: var(--accent); color: var(--white);
      border: none; border-radius: 8px; cursor: pointer;
      transition: background 0.2s, transform 0.1s;
    }
    #pw-submit:hover { background: var(--accent-dark); }
    #pw-submit:active { transform: translateY(1px); }
    #pw-submit:disabled { opacity: 0.6; cursor: not-allowed; }
    #pw-error {
      min-height: 18px; font-size: 12.5px; font-weight: 600;
      color: #ff9b7a; margin-top: 2px; line-height: 1.4;
    }
    .pw-note {
      margin-top: 22px; padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.6;
    }
    .pw-note a { color: rgba(255,255,255,0.7); text-decoration: underline; }
    .pw-shake { animation: pwShake 0.35s; }
    @keyframes pwShake {
      0%,100% { transform: translateX(0); }
      20%,60% { transform: translateX(-6px); }
      40%,80% { transform: translateX(6px); }
    }
    @media (max-width: 480px) {
      .pw-card { padding: 32px 22px; }
      .pw-title { font-size: 20px; }
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    /* ═══ NAV (IR theme) ═══ */
    .nav-wrap {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--gray-200);
      transition: box-shadow 0.3s;
      padding-top: env(safe-area-inset-top, 0); /* iOS notch */
      padding-left: env(safe-area-inset-left, 0);
      padding-right: env(safe-area-inset-right, 0);
    }
    .nav-wrap.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }

    /* Top utility bar */
    .utility-bar {
      border-bottom: 1px solid var(--gray-100);
    }
    .utility-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 52px;
    }
    .util-logo {
      display: inline-flex; align-items: center; gap: 2px;
      font-size: 22px; font-weight: 900; letter-spacing: 4px;
      text-transform: uppercase; color: var(--black);
    }
    .util-logo svg { width: 22px; height: 22px; margin-right: 2px; }
    .util-logo img { width: 28px; height: 28px; margin-right: 6px; border-radius: 5px; }
    .util-right { display: flex; align-items: center; gap: 24px; }
    .util-right a, .util-right button {
      font-size: 13px; font-weight: 600; color: var(--gray-700);
      background: none; border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 6px;
      transition: color 0.2s;
    }
    .util-right a:hover, .util-right button:hover { color: var(--accent); }
    .util-font { display: inline-flex; align-items: center; gap: 4px; }
    .util-font button { padding: 2px 4px; font-size: 13px; }
    .util-font .a-minus { font-size: 12px; }
    .util-font .a-plus { font-size: 15px; }

    /* Primary IR nav */
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 56px;
    }
    .nav-ir-label {
      font-size: 16px; font-weight: 800; color: var(--black);
      letter-spacing: 0.3px;
    }
    .nav-links { display: flex; align-items: center; gap: 36px; }
    .nav-links a {
      font-size: 14px; font-weight: 700; color: var(--gray-800);
      text-transform: none; letter-spacing: 0.2px;
      transition: color 0.2s; position: relative;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-links a.active { color: var(--accent); }
    .nav-links a.active::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -18px;
      height: 3px; background: var(--accent);
    }

    .nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
    .nav-toggle span { display: block; width: 100%; height: 2px; background: var(--black); position: absolute; left: 0; transition: all 0.3s; }
    .nav-toggle span:nth-child(1) { top: 0; }
    .nav-toggle span:nth-child(2) { top: 9px; }
    .nav-toggle span:nth-child(3) { top: 18px; }
    .nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

    .mobile-menu { display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 32px 24px calc(32px + env(safe-area-inset-bottom, 0)); z-index: 999; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .mobile-menu.open { display: flex; flex-direction: column; }
    .mobile-menu a { display: block; font-size: 16px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); min-height: 44px; /* iOS HIG minimum touch target */ }
    .mobile-menu a.active { color: var(--accent); }

    /* ═══ HERO — Navy bg matching deck ═══ */
    .hero {
      padding: 80px 0 80px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: ''; position: absolute; top: 0; left: 50%; width: 800px; height: 800px;
      transform: translate(-50%, -60%);
      background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
    }
    .hero-eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
    .hero h1 {
      font-size: clamp(36px, 5.5vw, 64px); font-weight: 900;
      line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px;
    }
    .hero h1 span { color: var(--accent); }
    .hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
    .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ═══ BUTTONS ═══ */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
      padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-accent { background: var(--accent); color: var(--white); }
    .btn-accent:hover { background: var(--accent-dark); }
    .btn-white-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
    .btn-white-outline:hover { border-color: rgba(255,255,255,0.6); }
    .btn-navy { background: var(--navy); color: var(--white); }
    .btn-navy:hover { background: var(--navy-light); }
    .btn-outline-dark { background: transparent; color: var(--black); border: 1.5px solid var(--gray-300); }
    .btn-outline-dark:hover { border-color: var(--black); }
    .btn svg { flex-shrink: 0; }

    /* ═══ TICKER ═══ */
    .ticker-strip { background: var(--black); color: var(--white); padding: 14px 0; }
    .ticker-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .ticker-symbol { font-size: 18px; font-weight: 900; letter-spacing: 3px; color: var(--accent); }
    .ticker-sep { width: 1px; height: 20px; background: var(--gray-700); }
    .ticker-text { font-size: 13px; font-weight: 500; color: var(--gray-400); }
    .ticker-badge {
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
      padding: 4px 12px; border-radius: 100px;
      background: rgba(232,168,56,0.15); color: var(--accent);
    }

    /* ═══ SECTION HEADERS ═══ */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
    .section-title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -0.5px; color: var(--black); line-height: 1.15; }
    .section-desc { font-size: 16px; color: var(--gray-500); max-width: 560px; margin: 14px auto 0; line-height: 1.7; }

    /* ═══ STATS — Updated numbers from deck ═══ */
    .stats-section { padding: 80px 0; background: var(--white); }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--gray-200);
      border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden;
    }
    .stat-card { background: var(--white); padding: 32px 20px; text-align: center; }
    .stat-number { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -1px; color: var(--black); line-height: 1.1; margin-bottom: 4px; }
    .stat-number .a { color: var(--accent); }
    .stat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-400); }

    /* ═══ FACTORY BANNER ═══ */
    .factory-banner {
      position: relative; overflow: hidden;
      height: 320px;
    }
    .factory-banner img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .factory-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(27,58,92,0.92) 0%, rgba(27,58,92,0.6) 60%, transparent 100%);
      display: flex; align-items: center;
    }
    .factory-content { padding: 0 60px; max-width: 520px; color: var(--white); }
    .factory-content h2 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
    .factory-content p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; }

    /* ═══ CRISIS — from slide 4 ═══ */
    .crisis-section { padding: 80px 0; background: var(--gray-50); }
    .crisis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .crisis-card {
      background: var(--navy); color: var(--white);
      border-radius: 12px; padding: 36px 28px; text-align: center;
    }
    .crisis-icon {
      width: 44px; height: 44px; margin: 0 auto 16px;
      background: rgba(232,168,56,0.2); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .crisis-card .big-num { font-size: 42px; font-weight: 900; color: var(--accent); margin-bottom: 4px; }
    .crisis-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px; }
    .crisis-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
    .crisis-source { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 12px; }

    /* ═══ DEAL OVERVIEW ═══ */
    .deal-section { padding: 80px 0; background: var(--white); }
    .deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .deal-card {
      background: var(--gray-50); border: 1px solid var(--gray-200);
      border-radius: 12px; padding: 36px 28px;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .deal-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
    .deal-value { font-size: 32px; font-weight: 900; color: var(--accent); margin-bottom: 4px; letter-spacing: -0.5px; }
    .deal-card h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--black); margin-bottom: 12px; }
    .deal-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

    /* ═══ MARKET OPPORTUNITY — from slide 37 ═══ */
    .market-section { padding: 80px 0; background: var(--gray-50); }
    .market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .market-card {
      border-radius: 12px; padding: 36px 28px;
      color: var(--white); position: relative; overflow: hidden;
    }
    .market-card.tam { background: var(--navy); }
    .market-card.sam { background: #1a6b9c; }
    .market-card.som { background: #c75a2e; }
    .market-card .card-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
    .market-card .big-val { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 12px; }
    .market-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* ═══ COST-SPEED-QUALITY — from slide 18 ═══ */
    .advantage-section { padding: 80px 0; background: var(--white); }
    .advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .advantage-card {
      background: var(--navy); color: var(--white);
      border-radius: 12px; padding: 32px 28px;
    }
    .advantage-card .adv-icon {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .advantage-card .adv-icon.cost { background: var(--accent); }
    .advantage-card .adv-icon.speed { background: #3b9cdb; }
    .advantage-card .adv-icon.quality { background: #2dba6e; }
    .advantage-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 20px; }
    .advantage-card ul { list-style: none; }
    .advantage-card li {
      font-size: 13px; color: rgba(255,255,255,0.7); padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; gap: 8px;
    }
    .advantage-card li:last-child { border-bottom: none; }
    .advantage-card li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

    /* ═══ MILESTONES ═══ */
    .milestones-section { padding: 80px 0; background: var(--gray-50); }
    .milestone-list { max-width: 720px; margin: 0 auto; }
    .milestone-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--gray-200); align-items: flex-start; }
    .milestone-item:last-child { border-bottom: none; }
    .milestone-icon {
      flex-shrink: 0; width: 44px; height: 44px;
      background: var(--accent-light); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .milestone-icon svg { color: var(--accent); }
    .milestone-body { flex: 1; }
    .milestone-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
    .milestone-body h4 { font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
    .milestone-body p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

    /* ═══ BRAND REACH — from slide 31 ═══ */
    .brand-section { padding: 80px 0; background: var(--white); }
    .brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .brand-card {
      background: var(--navy); color: var(--white);
      border-radius: 12px; padding: 36px 28px; text-align: center;
    }
    .brand-card .brand-icon {
      width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .brand-card .brand-icon.web { background: #3b9cdb; }
    .brand-card .brand-icon.social { background: var(--accent); }
    .brand-card .brand-icon.leads { background: #2dba6e; }
    .brand-card .big-num { font-size: 42px; font-weight: 900; margin-bottom: 4px; }
    .brand-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 8px; }
    .brand-card p { font-size: 12px; color: rgba(255,255,255,0.5); }

    /* ═══ IP MOAT ═══ */
    .ip-strip {
      padding: 48px 0;
      background: var(--accent);
      text-align: center; color: var(--white);
    }
    .ip-strip .ip-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
    .ip-strip .ip-num { font-size: 48px; font-weight: 900; }
    .ip-strip .ip-text { font-size: 18px; font-weight: 700; text-align: left; }
    .ip-strip .ip-sub { font-size: 14px; font-weight: 400; opacity: 0.8; }

    /* ═══ LEADERSHIP — with real photos ═══ */
    .leadership-section { padding: 80px 0; background: var(--gray-50); }
    .exec-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; max-width: 800px; margin: 0 auto 48px;
    }
    .leader-card { text-align: center; }
    .leader-photo {
      width: 160px; height: 160px; border-radius: 50%;
      margin: 0 auto 18px; overflow: hidden;
      border: 3px solid var(--gray-200);
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .leader-photo img {
      width: 100%; height: 100%; object-fit: cover;
      image-rendering: -webkit-optimize-contrast; /* crisp render hint */
    }
    .leader-card:hover .leader-photo {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 28px rgba(27,58,92,0.14);
      border-color: var(--accent);
    }
    .leader-card h4 { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 2px; }
    .leader-card .role { font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
    .leader-card .bio { font-size: 13px; color: var(--gray-600); margin-top: 10px; line-height: 1.6; max-width: 260px; margin-left: auto; margin-right: auto; }

    .exec-row2 {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 20px; max-width: 900px; margin: 0 auto 48px;
    }
    .leader-card-sm { text-align: center; }
    .leader-card-sm .leader-photo { width: 120px; height: 120px; border-width: 2px; }
    .leader-card-sm:hover .leader-photo { transform: translateY(-2px) scale(1.02); border-color: var(--accent); }
    .leader-card-sm h4 { font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 2px; }
    .leader-card-sm .role { font-size: 11px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
    .leader-card-sm .bio { font-size: 11.5px; color: var(--gray-500); margin-top: 10px; line-height: 1.55; max-width: 220px; margin-left: auto; margin-right: auto; }

    .board-label { text-align: center; font-size: 13px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
    .board-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; max-width: 600px; margin: 0 auto;
    }

    /* ═══ RESOURCES ═══ */
    .resources-section { padding: 80px 0; background: var(--white); }
    .resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
    .resource-card {
      display: flex; align-items: center; gap: 16px;
      background: var(--gray-50); border: 1px solid var(--gray-200);
      border-radius: 12px; padding: 20px 24px;
      transition: box-shadow 0.2s, border-color 0.2s; cursor: pointer;
    }
    .resource-card:hover { border-color: var(--gray-300); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
    .resource-icon {
      width: 40px; height: 40px; flex-shrink: 0; background: var(--accent-light);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
    }
    .resource-card h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
    .resource-card p { font-size: 12px; color: var(--gray-400); }
    .resource-arrow { margin-left: auto; color: var(--gray-300); transition: color 0.2s, transform 0.2s; }
    .resource-card:hover .resource-arrow { color: var(--accent); transform: translateX(2px); }

    /* ═══ FAQ ═══ */
    .faq-section { padding: 80px 0; background: var(--gray-50); }
    .faq-list { max-width: 700px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--gray-200); }
    .faq-question {
      width: 100%; background: none; border: none; font-family: inherit;
      font-size: 15px; font-weight: 700; color: var(--black); text-align: left;
      padding: 20px 40px 20px 0; cursor: pointer; position: relative; transition: color 0.2s;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-question::after {
      content: ''; position: absolute; right: 0; top: 50%; width: 16px; height: 16px;
      transform: translateY(-50%);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a3a3a3' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
      background-size: contain; transition: transform 0.3s;
    }
    .faq-item.open .faq-question::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23E8A838' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
    }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-item.open .faq-answer { max-height: 400px; }
    .faq-answer p { padding: 0 0 20px; font-size: 14px; color: var(--gray-500); line-height: 1.8; }

    /* ═══ TEAM PHOTO CTA ═══ */
    .team-cta {
      padding: 0; position: relative; overflow: hidden; height: 340px;
    }
    .team-cta img { width: 100%; height: 100%; object-fit: cover; }
    .team-cta-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(27,58,92,0.95) 0%, rgba(27,58,92,0.5) 50%, rgba(27,58,92,0.3) 100%);
      display: flex; align-items: flex-end; justify-content: center;
      padding: 48px 24px;
    }
    .team-cta-content { text-align: center; color: var(--white); }
    .team-cta-content h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; margin-bottom: 12px; }
    .team-cta-content h2 span { color: var(--accent); }
    .team-cta-content p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

    /* ═══ DISCLOSURE ═══ */
    .disclosure { padding: 48px 0; border-top: 1px solid var(--gray-200); background: var(--gray-50); }
    .disclosure p { font-size: 11px; color: var(--gray-400); line-height: 1.8; max-width: 720px; margin: 0 auto; text-align: center; }
    .disclosure a { color: var(--accent); text-decoration: underline; }

    /* ═══ SEC FILINGS — filter UI + table ═══ */
    .filings-section { padding: 64px 0 48px; background: var(--white); }
    .filings-status-bar {
      max-width: 880px; margin: 0 auto 28px;
      display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
    }
    .filings-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 16px; border-radius: 100px;
      background: var(--accent-light); color: var(--accent-dark);
      font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
    }
    .filings-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
    .filings-toolbar {
      max-width: 1180px; margin: 0 auto 18px;
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
      padding: 16px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 10px;
      box-sizing: border-box; min-width: 0;
    }
    .filings-toolbar label, .filings-toolbar select, .filings-toolbar input {
      min-width: 0; max-width: 100%; box-sizing: border-box;
    }
    .filings-toolbar label {
      display: flex; flex-direction: column; gap: 6px;
      font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      color: var(--gray-600);
    }
    .filings-toolbar select, .filings-toolbar input {
      font-family: inherit; font-size: 14px; font-weight: 500;
      color: var(--gray-900);
      padding: 10px 12px; border: 1px solid var(--gray-300); border-radius: 6px;
      background: var(--white); outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
      -webkit-appearance: none; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23737373' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 34px;
    }
    .filings-toolbar input { background-image: none; padding-right: 12px; }
    .filings-toolbar select:focus, .filings-toolbar input:focus {
      border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,168,56,0.12);
    }

    .filings-table-wrap {
      max-width: 1180px; margin: 0 auto;
      border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .filings-table { width: 100%; border-collapse: collapse; }
    .filings-table thead th {
      background: var(--gray-50);
      font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gray-600);
      text-align: left; padding: 14px 18px;
      border-bottom: 1px solid var(--gray-200);
    }
    .filings-table tbody td {
      padding: 16px 18px;
      font-size: 13.5px; color: var(--gray-700);
      border-bottom: 1px solid var(--gray-100);
      vertical-align: middle;
    }
    .filings-table tbody tr:last-child td { border-bottom: none; }
    .filings-table tbody tr { transition: background 0.15s; }
    .filings-table tbody tr:hover { background: var(--accent-light); }
    .filings-table .ft-form {
      display: inline-block; font-weight: 800; color: var(--navy);
      letter-spacing: 0.3px; font-size: 13px;
      padding: 4px 10px; background: var(--gray-100); border-radius: 4px;
    }
    .filings-table .ft-filer {
      font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
      color: var(--gray-500); text-transform: uppercase;
    }
    .filings-table .ft-status {
      font-size: 11.5px; font-weight: 600; color: var(--gray-500);
    }
    .filings-table .ft-status.live { color: #2dba6e; }
    .filings-table .ft-status.live::before {
      content: ''; display: inline-block; width: 6px; height: 6px;
      border-radius: 50%; background: #2dba6e; margin-right: 6px;
      box-shadow: 0 0 0 0 rgba(45,186,110,0.6);
      animation: liveDot 1.6s ease-out infinite;
    }
    .filings-table .ft-action {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12.5px; font-weight: 700; color: var(--accent);
      padding: 6px 12px; border: 1px solid var(--accent);
      border-radius: 6px; transition: all 0.15s;
      white-space: nowrap;
    }
    .filings-table .ft-action:hover { background: var(--accent); color: var(--white); }
    .filings-table .ft-action svg { width: 12px; height: 12px; }

    .filings-edgar-cta {
      max-width: 1180px; margin: 32px auto 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }
    .filings-edgar-card {
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
      padding: 22px 24px;
      background: var(--navy); color: var(--white);
      border-radius: 10px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .filings-edgar-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(27,58,92,0.22);
    }
    .filings-edgar-card .fec-text h4 { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
    .filings-edgar-card .fec-text p { font-size: 12.5px; color: rgba(255,255,255,0.7); }
    .filings-edgar-card .fec-arrow {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--accent); color: var(--white);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

    .filings-empty {
      padding: 48px 24px;
      text-align: center; font-size: 13.5px;
      color: var(--gray-500); font-style: italic;
    }

    @media (max-width: 900px) {
      .filings-toolbar { grid-template-columns: 1fr; }
      .filings-toolbar label:last-child { grid-column: auto; }
      .filings-edgar-cta { grid-template-columns: 1fr; }
      /* Make the table responsive-friendly: stack cells on small screens.
         Need to break the entire table layout (table/thead/tbody/tr/td) for cells to actually stack. */
      .filings-table-wrap { overflow-x: hidden; }
      .filings-table,
      .filings-table tbody,
      .filings-table tr,
      .filings-table td { display: block; width: 100%; max-width: 100%; }
      .filings-table thead { display: none; }
      .filings-table tbody tr {
        border-bottom: 1px solid var(--gray-200);
        padding: 6px 0;
      }
      .filings-table tbody tr:last-child { border-bottom: none; }
      .filings-table tbody td {
        padding: 6px 16px; border: none; font-size: 13px;
        word-wrap: break-word; overflow-wrap: break-word;
      }
      .filings-table tbody td:first-child { padding-top: 14px; }
      .filings-table tbody td:last-child { padding-bottom: 14px; }
      .filings-table tbody td::before {
        content: attr(data-label);
        display: inline-block; min-width: 90px;
        font-size: 10.5px; font-weight: 800; color: var(--gray-400);
        text-transform: uppercase; letter-spacing: 1px;
        margin-right: 8px;
      }
      .filings-table .ft-action { font-size: 12px; padding: 5px 10px; }
    }

    /* ═══ SCROLLABLE DISCLOSURES BOX (id="disclosures") — for ad compliance ═══ */
    .disclosures-section {
      padding: 72px 0 56px;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
      scroll-margin-top: 76px; /* nav offset for #disclosures deep-link */
    }
    .disclosures-section .container { max-width: 960px; }
    .disclosures-section .ds-eyebrow {
      text-align: center;
      font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 10px;
    }
    .disclosures-section h2 {
      text-align: center;
      font-size: clamp(24px, 3vw, 34px); font-weight: 900;
      letter-spacing: -0.4px; color: var(--black);
      margin-bottom: 12px;
    }
    .disclosures-section .ds-intro {
      text-align: center;
      font-size: 14px; color: var(--gray-600); line-height: 1.7;
      max-width: 720px; margin: 0 auto 28px;
    }
    .disclosures-box {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.04);
      max-height: 420px;
      overflow-y: auto;
      padding: 28px 32px;
      /* Subtle inner-shadow hint that there's more to scroll */
      background-image:
        linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1) 12px),
        linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 12px),
        linear-gradient(to top, rgba(0,0,0,0.06), transparent 14px),
        linear-gradient(to bottom, rgba(0,0,0,0.06), transparent 14px);
      background-position: bottom, top, bottom, top;
      background-size: 100% 24px, 100% 24px, 100% 14px, 100% 14px;
      background-repeat: no-repeat;
      background-attachment: local, local, scroll, scroll;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }
    /* Custom scrollbar — matches navy/gold theme */
    .disclosures-box::-webkit-scrollbar { width: 10px; }
    .disclosures-box::-webkit-scrollbar-track {
      background: var(--gray-100); border-radius: 0 10px 10px 0;
    }
    .disclosures-box::-webkit-scrollbar-thumb {
      background: var(--gray-300); border-radius: 5px;
      border: 2px solid var(--gray-100);
    }
    .disclosures-box::-webkit-scrollbar-thumb:hover { background: var(--accent); }

    .disclosures-box h3 {
      font-size: 14px; font-weight: 800; color: var(--navy);
      letter-spacing: 0.2px; margin-bottom: 10px; margin-top: 20px;
      text-transform: none;
    }
    .disclosures-box h3:first-child { margin-top: 0; }
    .disclosures-box p {
      font-size: 13px; color: var(--gray-700); line-height: 1.75;
      margin-bottom: 12px;
    }
    .disclosures-box p:last-child { margin-bottom: 0; }
    .disclosures-box a { color: var(--accent); text-decoration: underline; }
    .disclosures-box hr {
      border: none; border-top: 1px solid var(--gray-200);
      margin: 18px 0;
    }

    .disclosures-section .ds-meta {
      text-align: center; margin-top: 18px;
      font-size: 11.5px; color: var(--gray-500);
    }
    .disclosures-section .ds-meta a { color: var(--accent); }

    @media (max-width: 768px) {
      .disclosures-section { padding: 48px 0 40px; }
      .disclosures-box { padding: 22px 20px; max-height: 360px; }
      .disclosures-box h3 { font-size: 13.5px; }
      .disclosures-box p { font-size: 12.5px; }
    }

    /* ═══ FOOTER ═══ */
    footer { padding: 32px 0; border-top: 1px solid var(--gray-200); background: var(--white); }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-logo { font-size: 14px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--black); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 12px; font-weight: 500; color: var(--gray-400); transition: color 0.2s; }
    .footer-links a:hover { color: var(--black); }
    .footer-copy { font-size: 11px; color: var(--gray-300); }

    /* ═══ MERGER ANNOUNCEMENT BANNER ═══ */
    .merger-banner {
      position: relative;
      background:
        linear-gradient(90deg, rgba(10,15,25,0.88) 0%, rgba(15,25,40,0.7) 100%),
        linear-gradient(135deg, #2a1810 0%, #1a1410 100%);
      color: var(--white);
      padding: 72px 0 80px;
      overflow: hidden;
      text-align: center;
    }
    .merger-banner::before {
      content: ''; position: absolute; inset: 0;
      background-image: url('assets/factory.jpg');
      background-size: cover; background-position: center;
      opacity: 0.25; z-index: 0;
    }
    .merger-banner .container { position: relative; z-index: 1; }
    .merger-banner h2 {
      font-size: 48px; font-weight: 900; letter-spacing: 0.5px;
      margin-bottom: 20px; line-height: 1.15;
    }
    .merger-banner .tagline {
      font-size: 26px; font-weight: 400; margin-bottom: 8px; opacity: 0.98;
    }
    .merger-banner .tagline strong { color: var(--accent); font-weight: 800; }
    .merger-banner .subline {
      font-size: 22px; font-weight: 400; margin-bottom: 36px; opacity: 0.95;
    }
    .merger-banner .subline strong { color: var(--accent); font-weight: 800; }
    .merger-ctas {
      display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
    }
    .merger-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--accent); color: var(--white);
      padding: 16px 28px; font-size: 13px; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
      border-radius: 2px; transition: all 0.2s;
      border: 2px solid var(--accent);
    }
    .merger-btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
    .merger-btn svg { width: 14px; height: 14px; }

    /* ═══ QUICK LINKS GRID (IR link-outs) ═══ */
    .quicklinks-section {
      padding: 80px 0;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }
    .quicklinks-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
    }
    .quicklink-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-left: 4px solid var(--accent);
      padding: 28px 24px;
      display: flex; flex-direction: column; gap: 10px;
      transition: all 0.2s;
      position: relative;
    }
    .quicklink-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
      border-left-color: var(--accent-dark);
    }
    .quicklink-card .ql-icon {
      width: 40px; height: 40px; border-radius: 8px;
      background: var(--accent-light); color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 6px;
    }
    .quicklink-card h4 {
      font-size: 15px; font-weight: 800; color: var(--black);
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .quicklink-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
    .quicklink-card .ql-arrow {
      margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--accent);
      text-transform: uppercase; letter-spacing: 1px;
      display: inline-flex; align-items: center; gap: 6px;
    }

    /* ═══ SUBSCRIBE SECTION ═══ */
    .subscribe-section {
      padding: 80px 0;
      background: var(--white);
      text-align: center;
    }
    .subscribe-section h2 {
      font-size: 40px; font-weight: 900; color: var(--black);
      margin-bottom: 16px; letter-spacing: -0.5px;
    }
    .subscribe-section p.lead { font-size: 16px; color: var(--gray-600); margin-bottom: 32px; }
    .subscribe-form {
      max-width: 520px; margin: 0 auto;
      display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    }
    .subscribe-form input {
      flex: 1 1 260px; min-width: 240px;
      padding: 16px 20px; font-size: 16px; font-family: inherit; /* 16px prevents iOS auto-zoom on focus */
      border: 2px solid var(--gray-200); border-radius: 4px;
      outline: none; transition: border 0.2s;
      -webkit-appearance: none; appearance: none;
    }
    .subscribe-form input:focus { border-color: var(--accent); }
    .subscribe-form button {
      padding: 16px 32px; font-size: 13px; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
      background: var(--accent); color: var(--white);
      border: none; border-radius: 4px; cursor: pointer;
      transition: background 0.2s;
    }
    .subscribe-form button:hover { background: var(--accent-dark); }

    /* ═══ PRODUCT / FLOOR PLANS / INTERIORS / EXTERIORS (slides 13–16) ═══ */
    .product-section {
      padding: 80px 0;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
    }
    .product-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
    }
    .product-card {
      background: var(--white); border: 1px solid var(--gray-200);
      padding: 32px 24px; border-radius: 4px; transition: all 0.2s;
    }
    .product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
    .product-card .p-icon {
      width: 48px; height: 48px; margin-bottom: 16px;
      background: var(--accent-light); color: var(--accent);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
    }
    .product-card h3 {
      font-size: 18px; font-weight: 800; color: var(--black);
      margin-bottom: 10px;
    }
    .product-card ul { list-style: none; }
    .product-card li {
      font-size: 13px; color: var(--gray-700); padding: 4px 0 4px 18px;
      position: relative;
    }
    .product-card li::before {
      content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 2px;
      background: var(--accent);
    }

    /* ═══ CASITA PRICING (slide 23) ═══ */
    .casita-section { padding: 80px 0; background: var(--white); }
    .casita-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
    .casita-card {
      background: var(--white); border: 2px solid var(--gray-200);
      border-radius: 8px; padding: 36px 28px; text-align: center;
      transition: all 0.2s;
    }
    .casita-card:hover { border-color: var(--accent); transform: translateY(-3px); }
    .casita-card .c-tag {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent);
      background: var(--accent-light); padding: 6px 14px; border-radius: 999px;
      margin-bottom: 16px;
    }
    .casita-card h3 { font-size: 22px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
    .casita-card .c-price {
      font-size: 44px; font-weight: 900; color: var(--navy); margin: 12px 0;
      letter-spacing: -1px;
    }
    .casita-card .c-desc { font-size: 13px; color: var(--gray-600); }
    .casita-note {
      font-size: 11px; color: var(--gray-500); text-align: center;
      margin-top: 24px; font-style: italic;
    }

    /* ═══ CUSTOMER SEGMENTS (slides 23–28) ═══ */
    .segments-section {
      padding: 80px 0; background: var(--navy); color: var(--white);
    }
    .segments-section .section-title { color: var(--white); }
    .segments-section .section-desc { color: rgba(255,255,255,0.75); }
    .segments-section .section-tag { background: rgba(232,168,56,0.15); color: var(--accent); }
    .segments-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
    }
    .segment-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
      padding: 28px 24px; border-radius: 6px;
      transition: all 0.2s;
    }
    .segment-card:hover {
      background: rgba(255,255,255,0.08); border-color: var(--accent);
      transform: translateY(-2px);
    }
    .segment-card .s-num {
      font-size: 12px; font-weight: 800; color: var(--accent);
      letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px;
    }
    .segment-card h4 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
    .segment-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; }

    /* ═══ COST COMPARISON (slide 19) ═══ */
    .cost-compare-section { padding: 80px 0; background: var(--gray-50); }
    .cost-compare-grid {
      display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px;
      align-items: center; margin-top: 40px;
    }
    .cost-col {
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: 8px; padding: 40px 32px; text-align: center;
    }
    .cost-col.boxabl { border-color: var(--accent); border-width: 2px; position: relative; }
    .cost-col.boxabl::before {
      content: 'BOXABL'; position: absolute; top: -12px; left: 50%;
      transform: translateX(-50%); background: var(--accent); color: var(--white);
      padding: 4px 14px; font-size: 11px; font-weight: 800;
      letter-spacing: 1.5px; border-radius: 4px;
    }
    .cost-col h3 { font-size: 18px; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; }
    .cost-col .c-sqft { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
    .cost-col .c-total {
      font-size: 48px; font-weight: 900; color: var(--black); letter-spacing: -1px;
    }
    .cost-col .c-psf { font-size: 14px; color: var(--gray-600); margin-top: 8px; }
    .cost-vs {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--navy); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 900; letter-spacing: 1px;
    }
    .cost-savings {
      text-align: center; margin-top: 32px; padding: 24px;
      background: var(--accent-light); border-radius: 6px;
    }
    .cost-savings strong { color: var(--accent-dark); font-size: 24px; font-weight: 900; }
    .cost-source { font-size: 11px; color: var(--gray-500); text-align: center; margin-top: 16px; }

    /* Line-item breakdown table — mirrors slide 13 of the April 2026 investor presentation */
    .cost-breakdown {
      width: 100%; margin-top: 28px; border-collapse: collapse;
      font-size: 13px; text-align: left;
    }
    .cost-breakdown thead th {
      font-size: 10.5px; font-weight: 800; letter-spacing: 1px;
      text-transform: uppercase; color: var(--gray-500);
      padding: 8px 6px; border-bottom: 1px solid var(--gray-200);
    }
    .cost-breakdown thead th:nth-child(2),
    .cost-breakdown thead th:nth-child(3),
    .cost-breakdown tbody td:nth-child(2),
    .cost-breakdown tbody td:nth-child(3) { text-align: right; font-variant-numeric: tabular-nums; }
    .cost-breakdown tbody td,
    .cost-breakdown tbody th {
      padding: 9px 6px; color: var(--gray-700); font-weight: 500;
      border-bottom: 1px solid var(--gray-100);
    }
    .cost-breakdown tbody td:first-child { font-weight: 600; color: var(--gray-800); }
    .cost-breakdown .cost-row-total th,
    .cost-breakdown .cost-row-total td {
      font-weight: 800; color: var(--black);
      border-top: 2px solid var(--gray-300); border-bottom: none;
      padding-top: 12px;
    }
    .cost-col.boxabl .cost-breakdown .cost-row-total th,
    .cost-col.boxabl .cost-breakdown .cost-row-total td { color: var(--accent-dark); }

    /* ═══ SUSTAINABILITY (slide 21) ═══ */
    .sustain-section { padding: 80px 0; background: var(--white); }
    .sustain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
    .sustain-card {
      padding: 24px; text-align: center; border: 1px solid var(--gray-200); border-radius: 6px;
    }
    .sustain-card .s-icon { font-size: 32px; margin-bottom: 12px; color: var(--accent); }
    .sustain-card h4 { font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
    .sustain-card p { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

    /* ═══ AI-NATIVE / BUSINESS MODEL (slides 38–41) ═══ */
    .vision-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
    }
    .vision-section .section-title { color: var(--white); }
    .vision-section .section-tag { background: rgba(232,168,56,0.15); color: var(--accent); }
    .vision-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
    }
    .vision-card {
      padding: 32px 28px; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
    }
    .vision-card .v-num {
      font-size: 12px; font-weight: 800; color: var(--accent);
      letter-spacing: 1.5px; margin-bottom: 10px;
    }
    .vision-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
    .vision-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }

    /* ═══ FEATURED VIDEO ═══ */
    .featured-video-section { padding: 80px 0; background: var(--white); }
    .video-frame {
      position: relative; width: 100%;
      padding-top: 56.25%; /* 16:9 */
      background: var(--gray-900);
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 30px 60px -20px rgba(27,58,92,0.28), 0 10px 20px -10px rgba(0,0,0,0.15);
    }
    .video-frame iframe {
      position: absolute; inset: 0; width: 100%; height: 100%;
      border: 0; display: block;
    }
    /* Featured-video poster (opens YouTube in new tab) */
    .video-lite { cursor: pointer; display: block; text-decoration: none; }
    .video-lite-poster {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.4s, filter 0.3s;
    }
    .video-lite:hover .video-lite-poster { transform: scale(1.02); filter: brightness(1.05); }
    .video-lite::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.0) 55%, rgba(0,0,0,0.35) 100%);
      pointer-events: none;
    }
    .video-lite-play {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 84px; height: 84px; border-radius: 50%;
      background: rgba(255,255,255,0.95); color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
      transition: transform 0.25s, background 0.25s;
      z-index: 1;
    }
    .video-lite-play svg { margin-left: 4px; } /* optical center */
    .video-lite:hover .video-lite-play { transform: translate(-50%, -50%) scale(1.08); background: var(--accent); color: var(--white); }
    .video-lite:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

    /* ═══ PRESS STRIP ═══ */
    .press-strip { padding: 40px 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
    .press-label {
      text-align: center; font-size: 11px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gray-400); margin-bottom: 16px;
    }
    .press-track {
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
      gap: 36px 44px;
    }
    .press-name {
      font-size: 15px; font-weight: 800; color: var(--gray-500);
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .press-name:hover { color: var(--black); }

    /* ═══ HOW IT FOLDS ═══ */
    .folds-section { padding: 90px 0; background: var(--white); }
    .folds-grid {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
      align-items: center;
    }
    .folds-copy .section-tag { text-align: left; margin-bottom: 14px; }
    .folds-body { font-size: 16px; line-height: 1.75; color: var(--gray-600); margin-bottom: 14px; }
    .folds-body strong { color: var(--black); font-weight: 700; }
    .folds-images {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .folds-fig { position: relative; margin: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.10); }
    .folds-fig img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; display: block; transition: transform 0.4s; }
    .folds-fig:hover img { transform: scale(1.04); }
    .folds-fig figcaption {
      position: absolute; left: 12px; bottom: 12px; z-index: 1;
      font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
      padding: 6px 12px; border-radius: 100px;
      background: rgba(27,58,92,0.95); color: var(--white);
      backdrop-filter: blur(4px);
    }
    .folds-fig-2 { margin-top: 40px; } /* staircase effect */

    /* ═══ GALLERY (Casita cards) ═══ */
    .gallery-section { padding: 90px 0; background: var(--gray-50); }
    .gallery-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .gallery-card {
      margin: 0; background: var(--white);
      border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .gallery-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.08);
      border-color: var(--accent);
    }
    .gallery-media {
      aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100);
      display: flex; align-items: center; justify-content: center;
    }
    .gallery-media img {
      width: 100%; height: 100%; object-fit: contain; padding: 14px;
      transition: transform 0.4s;
    }
    .gallery-card:hover .gallery-media img { transform: scale(1.03); }
    .gallery-card figcaption { padding: 22px 24px; }
    .gallery-card .g-tag {
      display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent);
      background: var(--accent-light); padding: 4px 12px; border-radius: 100px;
      margin-bottom: 10px;
    }
    .gallery-card h4 { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
    .gallery-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; }

    /* ═══ CONFIGURATIONS GALLERY ═══ */
    .configs-section { padding: 90px 0; background: var(--white); }
    /* All three cards in a single row — wide configs-range gets 2fr, the two examples get 1fr each */
    .configs-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px;
    }
    .config-card {
      margin: 0; position: relative; border-radius: 12px; overflow: hidden;
      background: var(--gray-100); box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
      height: 300px;
    }
    .config-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
    .config-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
    /* Unified navy gradient overlay so every card matches and captions stay legible */
    .config-card::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(to top, rgba(27,58,92,0.88) 0%, rgba(27,58,92,0.25) 40%, transparent 70%);
    }
    /* Wide card: same height as the others, soft blue backdrop, image contained so the
       full scale-range lineup is preserved without cropping */
    .config-card-wide {
      background: linear-gradient(180deg, #f5f8fc 0%, #e6edf6 100%);
    }
    .config-card-wide img { object-fit: contain; padding: 18px 20px 44px; }
    .config-card figcaption {
      position: absolute; left: 18px; bottom: 14px; right: 18px; z-index: 1;
      font-size: 13px; font-weight: 800; color: var(--white);
      letter-spacing: 0.3px;
    }

    /* ═══ VIDEO GALLERY (6-tile grid) ═══ */
    .video-gallery-section { padding: 90px 0; background: var(--gray-50); }
    .video-gallery-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
      max-width: 900px; margin: 0 auto;
    }
    .video-gallery-grid-6 {
      grid-template-columns: repeat(3, 1fr);
      max-width: 1180px;
    }
    .video-tile {
      display: flex; flex-direction: column;
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: 12px; overflow: hidden; transition: all 0.25s;
      text-decoration: none;
    }
    .video-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.1);
      border-color: var(--accent);
    }
    .video-thumb {
      aspect-ratio: 16/9;
      background-size: cover; background-position: center;
      position: relative;
    }
    .video-thumb::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
    }
    .play-icon {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--accent); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      z-index: 1; box-shadow: 0 6px 20px rgba(0,0,0,0.35);
      transition: transform 0.2s, background 0.2s;
    }
    .play-icon svg { margin-left: 3px; } /* optical center */
    .video-tile:hover .play-icon { transform: translate(-50%, -50%) scale(1.12); background: var(--accent-dark); }
    .video-thumb-cta {
      background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: var(--white); gap: 6px;
    }
    .video-thumb-cta::after { display: none; }
    .video-sub-channel { font-size: 13px; font-weight: 800; letter-spacing: 1px; opacity: 0.95; }
    .video-tile-cta { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .video-tile-cta .video-meta h4 { color: var(--white); }
    .video-tile-cta .v-tag { color: var(--accent); background: rgba(232,168,56,0.15); }
    .video-meta { padding: 18px 20px; }
    .video-meta .v-tag {
      display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--accent);
      background: var(--accent-light); padding: 4px 10px; border-radius: 100px;
      margin-bottom: 8px;
    }
    .video-meta h4 { font-size: 15px; font-weight: 800; color: var(--black); line-height: 1.4; }

    /* ═══ VISIT THE FACTORY ═══ */
    .visit-factory { padding: 90px 0; background: var(--white); }
    .visit-grid {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
      align-items: center;
    }
    .visit-title {
      font-size: clamp(28px, 3.2vw, 40px); font-weight: 900;
      letter-spacing: -0.5px; color: var(--black); line-height: 1.15;
      margin: 14px 0 14px;
    }
    .visit-copy p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
    .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
    .visit-address { font-size: 13px; color: var(--gray-500); font-weight: 600; letter-spacing: 0.3px; }
    .visit-image { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px -15px rgba(27,58,92,0.3); }
    .visit-image img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
    .visit-image:hover img { transform: scale(1.02); }

    /* ═══ STICKY FLOATING PITCH-DECK CTA ═══ */
    .floating-cta {
      position: fixed;
      right: 20px;
      bottom: calc(20px + env(safe-area-inset-bottom, 0));
      z-index: 900;
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--accent); color: var(--white);
      font-size: 13px; font-weight: 800; letter-spacing: 1px;
      text-transform: uppercase;
      padding: 14px 20px; border-radius: 100px;
      box-shadow: 0 10px 28px -6px rgba(27,58,92,0.35), 0 4px 12px rgba(0,0,0,0.18);
      opacity: 0; transform: translateY(16px);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
    }
    .floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .floating-cta:hover { background: var(--accent-dark); }
    .floating-cta:active { transform: translateY(1px); }
    @media (max-width: 480px) {
      .floating-cta { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0)); padding: 14px; font-size: 12px; border-radius: 50%; }
      .floating-cta span { display: none; } /* icon only on tiny screens */
    }

    /* ═══ LIVE / PULSE DOTS ═══ */
    .hl-eyebrow .dot-pulse {
      position: relative;
      background: var(--accent);
    }
    .hl-eyebrow .dot-pulse::after {
      content: ''; position: absolute; inset: -2px;
      border-radius: 50%; border: 2px solid var(--accent);
      animation: dotPulse 1.8s ease-out infinite;
    }
    @keyframes dotPulse {
      0%   { transform: scale(1);   opacity: 0.9; }
      70%  { transform: scale(2.4); opacity: 0; }
      100% { transform: scale(2.4); opacity: 0; }
    }
    .hl-live-dot {
      display: inline-block; width: 8px; height: 8px;
      background: #2dba6e; border-radius: 50%;
      margin-right: 2px; position: relative;
      box-shadow: 0 0 0 0 rgba(45,186,110,0.7);
      animation: liveDot 1.6s ease-out infinite;
    }
    @keyframes liveDot {
      0%   { box-shadow: 0 0 0 0   rgba(45,186,110,0.7); }
      70%  { box-shadow: 0 0 0 10px rgba(45,186,110,0); }
      100% { box-shadow: 0 0 0 0   rgba(45,186,110,0); }
    }

    /* ═══ MERGER STATUS TIMELINE ═══ */
    .hl-timeline {
      list-style: none; padding: 0; margin: 0 0 26px;
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 8px; position: relative;
    }
    .hl-timeline::before {
      content: ''; position: absolute; left: 14%; right: 14%; top: 13px;
      height: 2px; background: rgba(255,255,255,0.12);
      z-index: 0;
    }
    .hl-timeline-step {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      text-align: center;
    }
    .hl-timeline-marker {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--navy-dark);
      border: 2px solid rgba(255,255,255,0.22);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      transition: all 0.2s;
    }
    .hl-timeline-step.done .hl-timeline-marker {
      background: var(--accent); border-color: var(--accent); color: var(--white);
    }
    .hl-timeline-step.active .hl-timeline-marker {
      background: var(--navy-dark); border-color: var(--accent);
    }
    .hl-timeline-pulse {
      display: block; width: 10px; height: 10px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 0 rgba(232,168,56,0.7);
      animation: liveDot 1.8s ease-out infinite;
    }
    .hl-timeline-label { font-size: 11px; line-height: 1.35; }
    .hl-timeline-title {
      display: block; font-weight: 700;
      color: var(--white);
      font-size: 11.5px; letter-spacing: 0.2px;
    }
    .hl-timeline-step:not(.done):not(.active) .hl-timeline-title {
      color: rgba(255,255,255,0.55);
    }
    .hl-timeline-sub {
      display: block;
      color: rgba(255,255,255,0.55);
      font-size: 10.5px; font-weight: 500;
      margin-top: 1px;
    }
    .hl-timeline-step.done .hl-timeline-sub,
    .hl-timeline-step.active .hl-timeline-sub {
      color: var(--accent); font-weight: 700;
    }

    /* ═══ SCROLL REVEAL ═══ */
    .reveal {
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      will-change: opacity, transform;
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
      .dot-pulse::after, .hl-live-dot, .hl-timeline-pulse { animation: none !important; }
      .floating-cta { transition: none !important; }
    }

    /* ═══ NEW HERO + LEAD FORM (replaces old top sections) ═══ */
    .hero-lead {
      position: relative;
      padding: 80px 0 88px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
      overflow: hidden;
    }
    .hero-lead::before {
      content: ''; position: absolute; inset: 0;
      background-image: url('assets/factory.jpg');
      background-size: cover; background-position: center;
      opacity: 0.10; pointer-events: none;
    }
    .hero-lead::after {
      content: ''; position: absolute; top: 0; left: 30%; width: 900px; height: 900px;
      transform: translate(-50%, -55%);
      background: radial-gradient(circle, rgba(232,168,56,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-lead .container { position: relative; z-index: 1; }
    .hero-lead-grid {
      display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
      align-items: center;
    }

    /* --- LEFT: copy --- */
    .hl-copy .hl-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--accent);
      background: rgba(232,168,56,0.12);
      padding: 7px 14px; border-radius: 100px;
      margin-bottom: 22px;
    }
    .hl-eyebrow .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(232,168,56,0.2); }
    .hl-copy h1 {
      font-size: clamp(32px, 4.2vw, 52px); font-weight: 900;
      line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 20px;
    }
    .hl-copy h1 .a { color: var(--accent); }
    .hl-lede { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.78); margin-bottom: 26px; max-width: 560px; }
    .hl-lede strong { color: var(--white); font-weight: 700; }
    .hl-lede .ticker-chip {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
      color: var(--accent); background: rgba(232,168,56,0.12);
      padding: 3px 10px; border-radius: 4px; margin: 0 2px;
      vertical-align: 2px;
    }
    .hl-pills {
      display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
    }
    .hl-pill {
      display: inline-flex; align-items: baseline; gap: 6px;
      font-size: 12.5px; color: rgba(255,255,255,0.82);
      padding: 8px 14px; border-radius: 100px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
    }
    .hl-pill strong { color: var(--accent); font-weight: 800; font-size: 14px; letter-spacing: 0.2px; }
    .hl-fgmc-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7);
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
    }
    .hl-fgmc-link:hover { color: var(--accent); border-color: var(--accent); }

    /* --- RIGHT: form card --- */
    .hl-form-card {
      background: var(--white); color: var(--gray-900);
      border-radius: 12px;
      padding: 36px 32px 30px;
      box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5), 0 10px 20px -10px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
    }
    .hl-form-card .hl-form-tag {
      display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent);
      background: var(--accent-light); padding: 5px 12px; border-radius: 100px;
      margin-bottom: 14px;
    }
    .hl-form-card h2 {
      font-size: 22px; font-weight: 900; line-height: 1.25; letter-spacing: -0.3px;
      color: var(--black); margin-bottom: 8px;
    }
    .hl-form-card > p.hl-form-sub {
      font-size: 13.5px; color: var(--gray-500); line-height: 1.55; margin-bottom: 22px;
    }
    .hl-form { display: flex; flex-direction: column; gap: 12px; }
    .hl-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hl-field { display: flex; flex-direction: column; gap: 6px; }
    .hl-field label {
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
      color: var(--gray-600);
    }
    .hl-field label .req { color: var(--accent); margin-left: 2px; }
    .hl-field input,
    .hl-field select {
      width: 100%;
      font-family: inherit;
      font-size: 16px; /* 16px prevents iOS auto-zoom */
      font-weight: 500;
      color: var(--gray-900);
      padding: 12px 14px;
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      outline: none; transition: border-color 0.15s, box-shadow 0.15s;
      -webkit-appearance: none; appearance: none;
    }
    .hl-field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23737373' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
    }
    .hl-field input::placeholder { color: var(--gray-400); font-weight: 400; }
    .hl-field input:focus,
    .hl-field select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(232,168,56,0.12);
    }
    .hl-field.hl-error input,
    .hl-field.hl-error select {
      border-color: #e05c3f;
      box-shadow: 0 0 0 3px rgba(224,92,63,0.12);
    }
    .hl-field-err {
      display: none; font-size: 11.5px; color: #c7401f; font-weight: 600; margin-top: -2px;
    }
    .hl-field.hl-error .hl-field-err { display: block; }

    .hl-consent {
      display: flex; gap: 10px; align-items: flex-start;
      margin-top: 6px; padding: 2px 0;
    }
    .hl-consent input[type="checkbox"] {
      appearance: none; -webkit-appearance: none;
      width: 18px; height: 18px; min-width: 18px;
      border: 1.5px solid var(--gray-300); border-radius: 4px;
      cursor: pointer; background: var(--white);
      margin-top: 2px; position: relative;
      transition: border-color 0.15s, background 0.15s;
    }
    .hl-consent input[type="checkbox"]:checked {
      background: var(--accent); border-color: var(--accent);
    }
    .hl-consent input[type="checkbox"]:checked::after {
      content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px;
      border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
    }
    .hl-consent label {
      font-size: 11.5px; color: var(--gray-500); line-height: 1.55;
      cursor: pointer; font-weight: 400;
    }
    .hl-consent a { color: var(--accent); text-decoration: underline; }
    .hl-submit {
      font-family: inherit; font-size: 13px; font-weight: 900;
      text-transform: uppercase; letter-spacing: 1.5px;
      padding: 16px 20px; margin-top: 6px;
      background: var(--accent); color: var(--white);
      border: none; border-radius: 8px; cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    }
    .hl-submit:hover { background: var(--accent-dark); }
    .hl-submit:active { transform: translateY(1px); }
    .hl-submit:disabled { opacity: 0.65; cursor: not-allowed; }

    /* Form success state */
    .hl-success {
      display: none; text-align: center; padding: 10px 4px;
    }
    .hl-form-card.hl-success-shown .hl-form,
    .hl-form-card.hl-success-shown > p.hl-form-sub,
    .hl-form-card.hl-success-shown .hl-form-tag,
    .hl-form-card.hl-success-shown > h2 { display: none; }
    .hl-form-card.hl-success-shown .hl-success { display: block; }
    .hl-success .hl-check {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(45,186,110,0.12); color: #2dba6e;
      display: inline-flex; align-items: center; justify-content: center;
      margin: 6px auto 18px;
    }
    .hl-success h3 { font-size: 22px; font-weight: 900; color: var(--black); margin-bottom: 10px; letter-spacing: -0.3px; }
    .hl-success p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 22px; }
    .hl-success .hl-deck-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
      padding: 14px 22px; background: var(--navy); color: var(--white);
      border-radius: 8px; transition: background 0.2s;
    }
    .hl-success .hl-deck-link:hover { background: var(--navy-light); }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 1024px) {
      .stats-grid { grid-template-columns: repeat(4, 1fr); }
      .exec-row2 { grid-template-columns: repeat(2, 1fr); }
      .hero-lead-grid { grid-template-columns: 1fr; gap: 40px; }
      .hl-lede { max-width: none; }
      .folds-grid, .visit-grid { grid-template-columns: 1fr; gap: 36px; }
      .folds-fig-2 { margin-top: 0; }
      .configs-grid { grid-template-columns: 2fr 1fr 1fr; }
      .config-card { height: 240px; }
      .video-gallery-grid-6 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 1024px) {
      .quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
      .product-grid, .casita-grid, .segments-grid, .vision-grid { grid-template-columns: repeat(2, 1fr); }
      .sustain-grid { grid-template-columns: repeat(2, 1fr); }
      .cost-compare-grid { grid-template-columns: 1fr; }
      .cost-vs { justify-self: center; }
    }
    @media (max-width: 768px) {
      .hero-lead { padding: 48px 0 56px; }
      .hl-form-card { padding: 28px 22px 24px; }
      .hl-row-2 { grid-template-columns: 1fr; }
      .hl-pills { gap: 8px; }
      .featured-video-section, .folds-section, .gallery-section, .configs-section, .video-gallery-section, .visit-factory { padding: 56px 0; }
      .gallery-grid-3 { grid-template-columns: 1fr; }
      .configs-grid { grid-template-columns: 1fr; }
      .config-card { height: 220px; }
      .video-gallery-grid { grid-template-columns: 1fr; }
      .video-gallery-grid-6 { grid-template-columns: 1fr; }
      .press-track { gap: 22px 28px; }
      .press-name { font-size: 13px; }
      .nav-links, .util-right { display: none; }
      .nav-toggle { display: block; }
      .utility-inner { height: 56px; justify-content: center; }
      .merger-banner { padding: 56px 0 60px; }
      .merger-banner h2 { font-size: 28px; }
      .merger-banner .tagline, .merger-banner .subline { font-size: 17px; }
      .merger-ctas { flex-direction: column; align-items: stretch; padding: 0 16px; }
      .quicklinks-grid { grid-template-columns: 1fr; }
      .product-grid, .casita-grid, .segments-grid, .vision-grid, .sustain-grid { grid-template-columns: 1fr; }
      .subscribe-section h2 { font-size: 28px; }
      .hero { padding: 56px 0 56px; }
      .hero h1 { font-size: 32px; letter-spacing: -1px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .crisis-grid, .deal-grid, .market-grid, .advantage-grid, .brand-grid { grid-template-columns: 1fr; }
      .exec-grid { grid-template-columns: 1fr; max-width: 280px; }
      .exec-row2 { grid-template-columns: repeat(2, 1fr); }
      .board-grid { grid-template-columns: 1fr; max-width: 200px; }
      .factory-banner { height: 260px; }
      .factory-content { padding: 0 24px; }
      .factory-content h2 { font-size: 24px; }
      .ticker-sep { display: none; }
      .ip-strip .ip-inner { flex-direction: column; gap: 8px; }
      .ip-strip .ip-text { text-align: center; }
      footer .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
      .team-cta { height: 280px; }
    }
    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-number { font-size: 24px; }
      .stat-label { font-size: 9px; }
      .hero-actions { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 280px; justify-content: center; }
      .crisis-card .big-num { font-size: 32px; }
      .market-card .big-val { font-size: 36px; }
      .exec-row2 { grid-template-columns: 1fr; max-width: 200px; margin-left: auto; margin-right: auto; }
    }
