:root {
    --navy: #0A1A2F;
    --navy-mid: #112240;
    --navy-light: #1a3155;
    --orange: #D26A1B;
    --orange-light: #e07a2a;
    --offwhite: #F2F4F5;
    --charcoal: #2A2E32;
    --steel: #69707A;
    --steel-light: #9AA3AD;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--navy);
    color: var(--offwhite);
    overflow-x: hidden;
  }

  /* ── GRID TEXTURE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(10, 26, 47, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--offwhite); }

  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy) !important;
    background: var(--orange);
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
  }

  .nav-cta:hover {
    background: var(--orange-light) !important;
    color: var(--navy) !important;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    overflow: hidden;
  }

  .hero-accent-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--orange);
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .hero-title span {
    color: var(--orange);
    display: block;
  }

  .hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--steel-light);
    margin-bottom: 40px;
  }

  .hero-tagline {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--steel-light);
    margin-bottom: 48px;
    max-width: 480px;
  }

  .hero-tagline strong {
    color: var(--offwhite);
    font-weight: 500;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--orange);
    padding: 16px 40px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(210, 106, 27, 0.3);
  }

  .btn-primary svg { width: 16px; height: 16px; }

  .btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .btn-secondary:hover { color: var(--offwhite); }

  .hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 720px;
    z-index: 1;
    opacity: 0.9;
    overflow: hidden;
  }

  .hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px 0 0 4px;
    box-shadow: -40px 40px 120px rgba(0,0,0,0.6);
    max-width: 100%;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    left: -60px;
    top: -20px;
    bottom: -20px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--orange), transparent);
    opacity: 0.4;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 48px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel);
    margin-top: 6px;
  }

  /* ── SECTIONS ── */
  section {
    position: relative;
    z-index: 2;
  }

  .section-pad {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
  }

  .section-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--steel-light);
    max-width: 560px;
  }

  /* ── APPROACH ── */
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 64px;
    background: rgba(255,255,255,0.04);
  }

  .approach-item {
    background: var(--navy);
    padding: 48px;
    transition: background 0.3s;
  }

  .approach-item:hover {
    background: var(--navy-mid);
  }

  .approach-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(210, 106, 27, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
  }

  .approach-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 12px;
  }

  .approach-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--steel-light);
  }

  /* ── WHAT'S INSIDE ── */
  .inside-section {
    background: var(--offwhite);
    color: var(--navy);
  }

  .inside-section .section-title { color: var(--navy); }
  .inside-section .section-body { color: var(--charcoal); }
  .inside-section .section-eyebrow { color: var(--orange); }
  .inside-section .section-eyebrow::before { background: var(--orange); }

  .parts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .part-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(10,26,47,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .part-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(10,26,47,0.12);
  }

  .part-card-header {
    background: var(--navy);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .part-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
  }

  .part-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
  }

  .part-card-body {
    padding: 24px 28px;
  }

  .section-list {
    list-style: none;
  }

  .section-list li {
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-list li:last-child { border-bottom: none; }

  .section-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
  }

  /* ── MICK SECTION ── */
  .mick-section {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mick-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .mick-quote {
    position: relative;
    padding: 48px;
    background: rgba(210, 106, 27, 0.08);
    border-left: 3px solid var(--orange);
    border-radius: 0 4px 4px 0;
  }

  .mick-quote-mark {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 120px;
    font-weight: 800;
    color: rgba(210, 106, 27, 0.2);
    line-height: 0.8;
    margin-bottom: 16px;
  }

  .mick-quote-text {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--offwhite);
    margin-bottom: 24px;
  }

  .mick-attribution {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
  }

  .mick-tips {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mick-tip {
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    padding: 20px 24px;
    border-left: 2px solid rgba(210, 106, 27, 0.4);
    transition: border-color 0.2s, background 0.2s;
  }

  .mick-tip:hover {
    border-color: var(--orange);
    background: rgba(255,255,255,0.06);
  }

  .mick-tip-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }

  .mick-tip-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--steel-light);
  }

  /* ── VOLUMES ── */
  .volumes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 64px;
  }

  .volume-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 32px 24px;
    transition: all 0.3s;
  }

  .volume-card.active {
    background: rgba(210, 106, 27, 0.1);
    border-color: var(--orange);
  }

  .volume-card:not(.active):hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.16);
  }

  .volume-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 12px;
  }

  .volume-card.active .volume-number { color: var(--orange); }

  .volume-model {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
  }

  .volume-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--steel-light);
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .volume-status {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    display: inline-block;
  }

  .status-live {
    background: var(--orange);
    color: var(--navy);
  }

  .status-coming {
    background: rgba(255,255,255,0.08);
    color: var(--steel-light);
  }

  /* ── EMAIL CAPTURE ── */
  .email-section {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .email-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .email-form-wrapper iframe {
    width: 100%;
    min-height: 320px;
    border: none;
    border-radius: 4px;
  }

  /* ── FOOTER ── */
  footer {
    position: relative;
    z-index: 2;
    background: #060f1c;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-logo img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
  }

  .footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--offwhite); }

  .footer-copy {
    font-size: 12px;
    color: var(--steel);
    font-weight: 300;
  }

  /* ── DIVIDER ── */
  .section-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp 0.6s ease 0.1s both; }
  .hero-title   { animation: fadeUp 0.6s ease 0.2s both; }
  .hero-subtitle{ animation: fadeUp 0.6s ease 0.3s both; }
  .hero-tagline { animation: fadeUp 0.6s ease 0.4s both; }
  .hero-actions { animation: fadeUp 0.6s ease 0.5s both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .stats-bar { gap: 40px; padding: 32px 24px; }
    .section-pad { padding: 64px 24px; }
    .approach-grid { grid-template-columns: 1fr; }
    .parts-grid { grid-template-columns: 1fr; }
    .mick-inner { grid-template-columns: 1fr; gap: 40px; }
    .volumes-grid { grid-template-columns: 1fr 1fr; }
    .email-inner { grid-template-columns: 1fr; gap: 40px; }
    footer { padding: 32px 24px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }
/* ══════════════════════════════════════════
   BLOG — added 07/28/2026
   ══════════════════════════════════════════ */

.blog-wrap { max-width: 780px; margin: 0 auto; padding: 140px 24px 80px; }
.blog-wrap-wide { max-width: 1000px; margin: 0 auto; padding: 140px 24px 80px; }

.blog-back {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--steel-light);
  text-decoration: none; display: inline-block; margin-bottom: 32px;
}
.blog-back:hover { color: var(--orange); }

.article-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}

.article-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 52px); font-weight: 800;
  text-transform: uppercase; line-height: 1.02;
  color: var(--white); margin-bottom: 20px;
}

.article-standfirst {
  font-size: 19px; line-height: 1.6; color: var(--steel-light);
  font-weight: 300; margin-bottom: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}

.article-body { font-size: 17px; line-height: 1.75; color: var(--offwhite); }
.article-body p { margin-bottom: 22px; }
.article-body strong { color: var(--white); font-weight: 500; }

.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; text-transform: uppercase;
  color: var(--white); letter-spacing: 0.01em;
  margin: 52px 0 18px; padding-top: 28px;
  border-top: 2px solid var(--orange);
}

.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin: 34px 0 12px;
}

.callout {
  background: rgba(210, 106, 27, 0.09);
  border-left: 3px solid var(--orange);
  padding: 22px 26px; margin: 32px 0; border-radius: 2px;
}
.callout p:last-child { margin-bottom: 0; }
.callout-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 8px;
}

.spec-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; }
.spec-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  background: var(--orange); padding: 12px 14px; text-align: left;
}
.spec-table td {
  padding: 13px 14px; border-bottom: 1px solid rgba(255,255,255,0.09);
  color: var(--offwhite); vertical-align: top;
}
.spec-table tr:last-child td { border-bottom: none; }

.article-cta {
  background: var(--navy-mid); border: 1px solid rgba(210,106,27,0.35);
  border-radius: 3px; padding: 34px; margin: 56px 0 0;
}
.article-cta h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px;
}
.article-cta p { font-size: 16px; color: var(--steel-light); line-height: 1.6; margin-bottom: 22px; }

.post-card {
  display: block; text-decoration: none;
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px; padding: 30px; margin-bottom: 18px;
  transition: border-color 0.2s, transform 0.15s;
}
.post-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.post-card-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.post-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; text-transform: uppercase;
  color: var(--white); line-height: 1.1; margin-bottom: 10px;
}
.post-card-excerpt { font-size: 15.5px; line-height: 1.6; color: var(--steel-light); }

@media (max-width: 768px) {
  .blog-wrap, .blog-wrap-wide { padding: 110px 20px 60px; }
  .article-body { font-size: 16px; }
  .spec-table { font-size: 14px; }
  .spec-table th, .spec-table td { padding: 10px 9px; }
}
