  :root {
    /* Exact colors sampled from flyers */
    --bg: #0E0E10;
    --bg-elev: #16161A;
    --bg-card: #1C1C22;
    --border: #2A2A30;
    --border-lit: #3A3A44;
    --fg: #FFFFFF;
    --fg-dim: #AEAEB8;
    --fg-mute: #6E6E78;
    --orange: #F08230;
    --orange-bright: #FF8F35;
    --orange-dark: #C66A1F;
    --red-warn: #D32F2F;
    --yellow-accent: #F5C842;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  /* ============ HAZARD STRIPES (flyer visual signature) ============ */
  .hazard-stripes {
    position: fixed;
    top: 0; bottom: 0;
    width: 32px;
    background: repeating-linear-gradient(
      -45deg,
      var(--orange) 0px,
      var(--orange) 12px,
      transparent 12px,
      transparent 24px
    );
    opacity: 0.85;
    z-index: 60;
    pointer-events: none;
  }
  .hazard-stripes.left { left: 0; }
  .hazard-stripes.right { right: 0; }
  /* Hamburger menu */
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: 0.3s; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg-open); padding: 20px 40px; gap: 16px; border-bottom: 1px solid var(--border); }
  @media (max-width: 900px) {
    .hamburger { display: block; }
    .hazard-stripes { width: 16px; }
  }
  @media (max-width: 600px) {
    .hazard-stripes { display: none; }
  }

  /* Main content container accounting for stripe widths */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
  }
  /* Hamburger menu */
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: 0.3s; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg-open); padding: 20px 40px; gap: 16px; border-bottom: 1px solid var(--border); }
  @media (max-width: 900px) {
    .hamburger { display: block; }
    .container { padding: 0 40px; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 24px; }
  }

  /* ============ NAV HEADER (matches flyer top bar) ============ */
  nav {
    position: sticky; top: 0; z-index: 50;
    padding: 16px 64px;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; }
  .nav-brand img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
  .nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
  .nav-brand-text .name { font-weight: 700; font-size: 15px; color: var(--fg); }
  .nav-brand-text .sub { font-weight: 400; font-size: 10px; color: var(--fg-mute); letter-spacing: 0.12em; margin-top: 4px; text-transform: uppercase; }
  .nav-links { display: flex; gap: 28px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
  .nav-links a { color: var(--fg-dim); transition: color 0.2s; }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange);
    color: #0E0E10;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--orange-bright); transform: translateY(-1px); }
  /* Hamburger menu */
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: 0.3s; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg-open); padding: 20px 40px; gap: 16px; border-bottom: 1px solid var(--border); }
  @media (max-width: 900px) {
    .hamburger { display: block; }
    nav { padding: 14px 40px; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    nav { padding: 12px 24px; }
    .nav-brand-text .sub { display: none; }
    .nav-cta { padding: 8px 14px; font-size: 11px; }
  }
  /* Phones: logo-only brand so brand + hamburger + CTA fit a 390px
     viewport. The full nav previously forced ~500px layout width and
     dragged the ENTIRE page wide (every section clipped on the right
     on mobile). */
  @media (max-width: 480px) {
    .nav-brand-text { display: none; }
    .nav-inner { gap: 8px; min-width: 0; }
    nav { padding: 12px 16px; }
  }

  /* ============ FLYER SECTION BASE ============ */
  .flyer-section {
    padding: 100px 0 80px;
    position: relative;
  }
  .flyer-section + .flyer-section { padding-top: 60px; }

  .flyer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--orange);
  }
  .flyer-header .product-icon {
    width: 72px; height: 72px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .flyer-header .product-icon img { width: 100%; height: 100%; object-fit: cover; }
  .flyer-header-text { display: flex; flex-direction: column; gap: 4px; }
  .flyer-header h1 {
    font-family: 'Open Sans Condensed', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--orange);
    text-transform: uppercase;
  }
  .flyer-header .kicker {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--fg-dim);
    text-transform: uppercase;
  }
  .flyer-header .badges {
    margin-left: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 400px;
  }
  .flyer-header .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border-lit);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--fg);
    background: var(--bg-card);
  }
  .flyer-header .badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
  }
  @media (max-width: 700px) {
    .flyer-header { flex-wrap: wrap; gap: 16px; }
    .flyer-header .badges { margin-left: 0; margin-top: 12px; width: 100%; justify-content: flex-start; }
  }

  /* ============ HERO BLOCK ============ */
  .flyer-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 60px;
  }
  .hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--fg-dim);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-headline {
    font-family: 'Open Sans Condensed', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .hero-headline .accent { color: var(--orange); }
  .hero-description {
    font-size: 16px;
    color: var(--fg-dim);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px;
  }
  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--orange);
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-lit);
    margin-bottom: 24px;
  }

  /* ============ PHONE STACK (right side of hero) ============ */
  .phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .phone-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    position: relative;
  }
  .phone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--orange);
  }
  .phone-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .phone-card .phone-label {
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--orange);
    text-transform: uppercase;
    background: #0A0A0C;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  /* Hamburger menu */
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: 0.3s; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg-open); padding: 20px 40px; gap: 16px; border-bottom: 1px solid var(--border); }
  @media (max-width: 900px) {
    .hamburger { display: block; }
    .flyer-hero { grid-template-columns: 1fr; gap: 40px; }
    .phone-grid { max-width: 500px; }
  }

  /* ============ HOW IT WORKS (numbered steps) ============ */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
  .step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.3s;
  }
  .step-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
  }
  .step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #0E0E10;
    font-weight: 800;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(240,130,48,0.35);
  }
  .step-card h3 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    color: var(--fg);
  }
  .step-card p {
    font-size: 13px;
    color: var(--fg-dim);
    line-height: 1.55;
  }
  @media (max-width: 700px) {
    .steps-grid { grid-template-columns: 1fr; }
  }

  /* ============ KEY FEATURES GRID ============ */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 60px;
  }
  .feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .feature-item::before {
    content: '';
    width: 9px; height: 9px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(240,130,48,0.15);
  }
  .feature-item .feature-body h4 {
    font-weight: 700;
    font-size: 14px;
    color: var(--fg);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
  }
  .feature-item .feature-body p {
    font-size: 13px;
    color: var(--fg-dim);
    line-height: 1.5;
  }
  @media (max-width: 700px) {
    .features-grid { grid-template-columns: 1fr; }
  }

  /* ============ CALLOUT BOX (Agency Messaging / DTCD Integration) ============ */
  .callout {
    background: rgba(240,130,48,0.05);
    border: 1px solid var(--orange);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
  }
  .callout::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
  }
  .callout-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--yellow-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .callout-content h4 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 8px;
  }
  .callout-content p {
    font-size: 14px;
    color: var(--fg-dim);
    line-height: 1.6;
  }
  .callout-content p strong { color: var(--fg); font-weight: 700; }

  /* ============ AUDIENCE PILLS ============ */
  .audience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }
  .audience-pill {
    padding: 8px 16px;
    border: 1px solid var(--orange);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    background: rgba(240,130,48,0.05);
    transition: all 0.2s;
  }
  .audience-pill:hover {
    background: var(--orange);
    color: #0E0E10;
    cursor: default;
  }

  /* ============ BOTTOM ACTIONS (flyer footer row) ============ */
  .section-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--border);
  }
  .section-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-footer-brand img { width: 36px; height: 36px; border-radius: 8px; }
  .section-footer-brand .name { font-weight: 700; font-size: 14px; }
  .section-footer-brand .tag { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
  .section-footer-mid {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--fg-dim);
    align-items: center;
  }
  .section-footer-mid .site { color: var(--fg); font-weight: 700; }
  .btn-demo {
    background: var(--orange);
    color: #0E0E10;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(240,130,48,0.3);
  }
  .btn-demo:hover { background: var(--orange-bright); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,130,48,0.4); }

  /* ============ CREDIBILITY BAR (WZDx v4.2 / MUTCD / AASHTO) ============ */
  .cred-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    margin: 40px 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--border);
  }
  .cred-item {
    background: var(--bg-card);
    padding: 18px 12px;
    text-align: center;
  }
  .cred-item .cred-main {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--orange);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }
  .cred-item .cred-sub {
    font-size: 10px;
    color: var(--fg-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  @media (max-width: 700px) {
    .cred-bar { grid-template-columns: repeat(3, 1fr); }
  }

  /* ============ INTEGRATION BRIDGE ============ */
  .bridge {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(240,130,48,0.04) 50%, var(--bg) 100%);
    position: relative;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .bridge::before, .bridge::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--orange);
  }
  .bridge::before { top: 40px; }
  .bridge::after { bottom: 40px; }
  .bridge-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .bridge-title {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
  }
  .bridge-title .accent { color: var(--orange); }
  .bridge-sub {
    font-size: 17px;
    color: var(--fg-dim);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 50px;
  }
  .bridge-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .bridge-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .bridge-node .icon-wrap {
    width: 90px; height: 90px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  }
  .bridge-node .icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .bridge-node .node-label {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--orange);
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .bridge-node .node-sub {
    font-size: 11px;
    color: var(--fg-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .bridge-arrow {
    display: flex; align-items: center; gap: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px dashed var(--orange);
    border-radius: 999px;
    background: rgba(240,130,48,0.05);
  }
  .bridge-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
  }
  .bridge-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.3s;
  }
  .bridge-feature:hover { border-color: var(--orange); }
  .bridge-feature .num {
    font-size: 11px;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
  }
  .bridge-feature h4 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .bridge-feature p {
    font-size: 13px;
    color: var(--fg-dim);
    line-height: 1.6;
  }
  @media (max-width: 700px) {
    .bridge-features { grid-template-columns: 1fr; }
    .bridge-diagram { flex-direction: column; gap: 20px; }
    .bridge-arrow { margin: 4px 0; }
  }

  /* ============ VIDEOS ============ */
  .videos-section { padding: 80px 0; }
  .videos-grid {
    display: grid;
    grid-template-columns: 0.58fr 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    align-items: start;
  }
  .video-card { display: flex; flex-direction: column; }
  /* Phone frame for the vertical iOS Short — matches the screenshot mockups. */
  .demo-phone {
    background: #0A0A0C;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  }
  .demo-phone:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--orange); }
  .demo-phone .screen {
    position: relative; width: 100%; padding-bottom: 177.78%;
    border-radius: 20px; overflow: hidden; background: #000;
  }
  /* Browser/screen frame for the landscape (web + android) demos. */
  .demo-window {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  }
  .demo-window:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--orange); }
  .demo-window .chrome {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 12px; background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
  }
  .demo-window .dots { display: flex; gap: 6px; flex: 0 0 auto; }
  .demo-window .dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
  .demo-window .addr {
    flex: 1; min-width: 0; text-align: center;
    font-size: 11px; color: var(--fg-mute);
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 6px; padding: 3px 10px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .demo-window .screen {
    position: relative; width: 100%; padding-bottom: 56.25%; background: #000;
  }
  .demo-phone .screen iframe, .demo-window .screen iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  }
  .video-meta { padding: 18px; }
  .video-meta h4 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
  }
  .video-meta p { font-size: 13px; color: var(--fg-dim); line-height: 1.55; }
  /* Hamburger menu */
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: 0.3s; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg-open); padding: 20px 40px; gap: 16px; border-bottom: 1px solid var(--border); }
  @media (max-width: 900px) {
    .hamburger { display: block; }
    .videos-grid { grid-template-columns: 1fr; }
  }

  /* ============ CREDENTIALS STRIP ============ */
  .credentials {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 64px;
  }
  .credentials-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
    justify-content: space-between;
  }
  .credentials-label {
    font-size: 11px;
    color: var(--fg-mute);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
  .credentials-items { display: flex; flex-wrap: wrap; gap: 28px; }
  .credential {
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    letter-spacing: 0.02em;
  }
  .credential::before { content: '■'; color: var(--orange); font-size: 9px; }
  @media (max-width: 600px) {
    .credentials { padding: 32px 24px; }
  }

  /* ============ FINAL CTA ============ */
  .final-cta { padding: 100px 0 80px; text-align: center; }
  .final-cta h2 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
  }
  .final-cta h2 .accent { color: var(--orange); }
  .final-cta p {
    font-size: 17px;
    color: var(--fg-dim);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  /* ============ FOOTER ============ */
  footer {
    background: #0A0A0C;
    border-top: 1px solid var(--border);
    padding: 60px 64px 40px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .footer-brand-row img { width: 48px; height: 48px; border-radius: 10px; }
  .footer-name { font-weight: 700; font-size: 16px; }
  .footer-tag { font-size: 13px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
  .footer-desc { font-size: 13px; color: var(--fg-dim); line-height: 1.65; max-width: 400px; }
  .footer-col h4 {
    font-size: 11px;
    color: var(--fg-mute);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 700;
  }
  .footer-col a {
    display: block;
    font-size: 13px;
    color: var(--fg-dim);
    padding: 5px 0;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--orange); }
  .footer-bottom {
    max-width: 1280px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 11px;
    color: var(--fg-mute);
    letter-spacing: 0.05em;
  }
  /* Hamburger menu */
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: 0.3s; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg-open); padding: 20px 40px; gap: 16px; border-bottom: 1px solid var(--border); }
  @media (max-width: 900px) {
    .hamburger { display: block; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 500px) {
    .footer-inner { grid-template-columns: 1fr; }
    footer { padding: 48px 24px 32px; }
  }

  /* ============ LIGHTBOX (phone zoom) ============ */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: zoom-out;
    backdrop-filter: blur(8px);
  }
  .lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
  .lightbox img {
    max-width: 380px;
    max-height: 85vh;
    width: auto;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    border: 6px solid #1A1A1A;
    animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--fg);
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.2); }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

  /* ============ REVEAL ANIMATIONS ============ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
  .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
  .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
  .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
  .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
  .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
  .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

  /* Hero specific reveals */
  .hero-kicker, .hero-headline, .hero-description, .audience-pills, .phone-grid {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-kicker { animation-delay: 0.1s; }
  .hero-headline { animation-delay: 0.2s; }
  .hero-description { animation-delay: 0.4s; }
  .audience-pills { animation-delay: 0.5s; }
  .phone-grid { animation-delay: 0.3s; }
  @keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
  }
