:root {
    --red: #cc0000;
    --red-bright: #ff1a1a;
    --white: #f0ece4;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --metal: #2a2a2a;
    --rust: #8b3a1a;
    --yellow: #f5c518;
    --text-muted: #888;
  }

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

  html { }

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

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, transparent 100%);
    backdrop-filter: blur(4px);
  }

  .nav-logo img {
    height: 56px;
    filter: drop-shadow(0 0 12px rgba(204,0,0,0.5));
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--red-bright); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 10px 22px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--red-bright) !important; color: #fff !important; }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('bg2.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.8);
    transform: scale(1.05);
    animation: slow-zoom 20s ease-in-out infinite alternate;
  }

  @keyframes slow-zoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.6) 50%,
      rgba(180,0,0,0.15) 100%
    );
  }

  /* diagonal red slash */
  .hero-slash {
    position: absolute;
    left: -60px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--red);
    transform: skewX(-6deg);
    box-shadow: 0 0 40px 8px rgba(204,0,0,0.6);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    border-left: 1px solid rgba(204,0,0,0.25);
  }

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

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

  .hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(64px, 9vw, 130px);
    line-height: 0.9;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .hero-title span {
    color: var(--red);
    display: block;
    -webkit-text-stroke: 1px var(--red);
  }

  .hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2.2vw, 22px);
    color: rgba(240,236,228,0.7);
    line-height: 1.5;
    margin: 0 0 40px;
    border-left: 3px solid var(--red);
    padding-left: 20px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.35s;
  }

  .btn-primary:hover::before { transform: translateX(110%) skewX(-15deg); }
  .btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 2px solid rgba(240,236,228,0.3);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    text-decoration: none;
    transition: all 0.25s;
  }

  .btn-outline:hover {
    border-color: var(--red);
    color: var(--red-bright);
    transform: translateY(-2px);
  }

  /* stats bar */
  .hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    border-top: 2px solid rgba(204,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 2;
  }

  .stat-item {
    flex: 1;
    text-align: center;
    padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    color: var(--red);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
  }

  /* ── SECTIONS BASE ── */
  section {
    padding: 100px 60px;
  }

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

  .section-tag::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--red);
  }

  .section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: 1px;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .about::before {
    content: 'CUPIM';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Bebas Neue', cursive;
    font-size: 220px;
    color: rgba(204,0,0,0.04);
    letter-spacing: 10px;
    pointer-events: none;
    white-space: nowrap;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  .about-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .about-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,0,0,0.12) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
  }

  @keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  .about-logo-wrap img {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 0 30px rgba(204,0,0,0.35));
    position: relative;
    z-index: 1;
  }

  .about-text p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(240,236,228,0.75);
    margin-bottom: 16px;
  }

  .pilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(204,0,0,0.1);
    border: 1px solid rgba(204,0,0,0.3);
    padding: 12px 20px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    margin-bottom: 28px;
  }

  .pilot-badge-icon { font-size: 22px; }
  .pilot-badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
  }

  /* ── CONTENT GRID ── */
  .content-section {
    background: var(--black);
    position: relative;
  }

  .content-header {
    max-width: 1280px;
    margin: 0 auto 60px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .card {
    background: var(--dark2);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
    cursor: default;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--red);
    transition: height 0.4s;
  }

  .card:hover { background: var(--dark3); transform: translateY(-4px); }
  .card:hover::before { height: 100%; }

  .card-icon {
    font-size: 38px;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.3s;
  }

  .card:hover .card-icon { filter: grayscale(0); }

  .card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--white);
  }

  .card-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(240,236,228,0.6);
  }

  /* ── CONVOY ── */
  .convoy {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .convoy::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(204,0,0,0.06) 0%, transparent 100%);
    pointer-events: none;
  }

  .convoy-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .convoy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(240,236,228,0.7);
    margin-bottom: 18px;
  }

  .convoy-highlight {
    background: rgba(204,0,0,0.08);
    border-left: 3px solid var(--red);
    padding: 16px 20px;
    margin: 24px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(240,236,228,0.85);
  }

  .convoy-visual {
    position: relative;
  }

  .convoy-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 36px;
    position: relative;
  }

  .convoy-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .convoy-card-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
  }

  .day-badge {
    display: inline-block;
    background: var(--red);
    font-family: 'Bebas Neue', cursive;
    font-size: 13px;
    letter-spacing: 3px;
    padding: 6px 16px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    margin-bottom: 16px;
  }

  .convoy-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .convoy-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(240,236,228,0.7);
    line-height: 1.5;
  }

  .convoy-info-list li .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 6px;
    flex-shrink: 0;
  }

  /* ── PLATFORMS ── */
  .platforms {
    background: var(--black);
    position: relative;
  }

  .platforms-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .platforms-header {
    margin-bottom: 60px;
  }

  .platform-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }

  .platform-item {
    background: var(--dark2);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .platform-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .platform-item:hover { background: var(--dark3); transform: translateY(-4px); }
  .platform-item:hover::before { transform: scaleX(1); }

  .platform-icon {
    font-size: 36px;
    display: block;
  }

  .platform-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,236,228,0.5);
    transition: color 0.3s;
  }

  .platform-item:hover .platform-name { color: var(--white); }

  /* ── COMMUNITY / DISCORD ── */
  .community {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .community-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 80% 50%, rgba(204,0,0,0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(204,0,0,0.04) 0%, transparent 40%);
    pointer-events: none;
  }

  .community-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .community-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(240,236,228,0.7);
    margin-bottom: 16px;
  }

  .community-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 32px 0;
    border: 1px solid rgba(255,255,255,0.07);
  }

  .feat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(240,236,228,0.75);
    transition: background 0.2s, color 0.2s;
  }

  .feat-row:last-child { border-bottom: none; }
  .feat-row:hover { background: rgba(204,0,0,0.06); color: var(--white); }
  .feat-row-icon { font-size: 18px; }

  /* Discord CTA box */
  .discord-box {
    background: rgba(88, 101, 242, 0.06);
    border: 1px solid rgba(88, 101, 242, 0.2);
    padding: 40px;
    text-align: center;
    position: relative;
  }

  .discord-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, #5865f2 100%);
  }

  .discord-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
  }

  .discord-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--white);
  }

  .discord-box p {
    font-size: 15px;
    color: rgba(240,236,228,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865f2;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    text-decoration: none;
    transition: all 0.25s;
  }

  .btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(204,0,0,0.2);
    padding: 50px 60px 30px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
  }

  .footer-logo img {
    height: 70px;
    filter: drop-shadow(0 0 12px rgba(204,0,0,0.3));
  }

  .footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
  }

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

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

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

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

  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
  }

  .footer-social {
    display: flex;
    gap: 16px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.25s;
    text-decoration: none;
    color: var(--text-muted);
  }

  .social-icon:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(204,0,0,0.08);
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── DIVIDER ── */
  .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.06);
  }

  .divider-icon {
    font-size: 18px;
    color: rgba(204,0,0,0.4);
  }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    backdrop-filter: blur(12px);
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu li { list-style: none; width: 100%; text-align: center; }
  .nav-mobile-menu a {
    display: block;
    padding: 20px 32px;
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, background 0.2s;
  }
  .nav-mobile-menu a:hover { color: var(--red); background: rgba(204,0,0,0.05); }
  .nav-mobile-menu .nav-cta {
    margin-top: 28px;
    display: inline-block !important;
    width: auto !important;
    font-size: 16px !important;
    padding: 16px 36px !important;
    border-bottom: none !important;
    background: var(--red) !important;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {

    /* NAV */
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-logo img { height: 44px; }

    /* SECTIONS */
    section { padding: 60px 20px; }

    /* HERO */
    .hero {
      align-items: flex-start;
      justify-content: flex-start;
      min-height: 100svh;
      padding-top: 0;
    }
    .hero-content {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 0;
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding-top: 88px; /* nav height */
    }
    .hero-left {
      padding: 32px 20px 24px;
      border-bottom: 1px solid rgba(204,0,0,0.2);
    }
    .hero-title {
      font-size: clamp(56px, 15vw, 80px);
      line-height: 0.88;
      margin-bottom: 0;
    }
    .hero-eyebrow {
      font-size: 9px;
      letter-spacing: 3px;
      margin-bottom: 14px;
    }
    .hero-right {
      padding: 24px 20px 28px;
      border-left: none;
      border-top: none;
    }
    .hero-subtitle {
      font-size: 15px;
      line-height: 1.55;
      margin-bottom: 24px;
      border-left: 2px solid var(--red);
      padding-left: 14px;
    }
    .hero-actions {
      flex-direction: row;
      gap: 10px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
      flex: 1;
      justify-content: center;
      padding: 14px 12px;
      font-size: 13px;
      letter-spacing: 1px;
    }

    /* STATS BAR — hidden on mobile */
    .hero-stats { display: none; }

    /* ABOUT */
    .about-grid { grid-template-columns: 1fr; gap: 0; }
    .about-logo-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 32px;
    }
    .about-logo-wrap img { max-width: 220px; }
    .about-logo-wrap::before { display: none; }
    .about-text p { font-size: 15px; }
    .pilot-badge { width: 100%; }

    /* CONTENT CARDS */
    .cards-grid { grid-template-columns: 1fr; gap: 2px; }
    .card { padding: 28px 24px; }
    .card-icon { font-size: 30px; margin-bottom: 14px; }
    .card-title { font-size: 18px; }
    .card-text { font-size: 14px; }
    .content-header { margin-bottom: 36px; }

    /* CONVOY */
    .convoy-inner { grid-template-columns: 1fr; gap: 32px; }
    .convoy-text p { font-size: 15px; }
    .convoy-card { padding: 24px; }
    .convoy-card-title { font-size: 28px; }
    .convoy-highlight { font-size: 14px; }
    .convoy-info-list li { font-size: 13px; }
    .convoy-visual { order: -1; }

    /* PLATFORMS */
    .platform-list { grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .platform-item { padding: 24px 16px; }
    .platform-icon { font-size: 28px; }
    .platform-name { font-size: 10px; letter-spacing: 1.5px; }

    /* COMMUNITY */
    .community-inner { grid-template-columns: 1fr; gap: 36px; }
    .community-text p { font-size: 15px; }
    .feat-row { font-size: 14px; padding: 14px 16px; }
    .discord-box { padding: 28px 20px; }
    .discord-box h3 { font-size: 30px; }
    .discord-box p { font-size: 14px; }
    .btn-discord { width: 100%; justify-content: center; }

    /* SECTION TITLES */
    .section-title { font-size: clamp(36px, 10vw, 56px); }
    .section-tag { font-size: 10px; }

    /* FOOTER */
    footer { padding: 40px 20px 24px; }
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      padding-bottom: 24px;
    }
    .footer-logo img { height: 54px; }
    .footer-links {
      flex-wrap: wrap;
      gap: 16px 24px;
    }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  }

  @media (max-width: 420px) {
    .hero-title { font-size: 50px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { flex: unset; width: 100%; }
    .platform-list { grid-template-columns: repeat(2, 1fr); }
  }
