
    :root {
      --bg: #070707;
      --bg-elevated: #0e0e0e;
      --bg-card: #121212;
      --surface: #181818;
      --border: rgba(255, 255, 255, 0.08);
      --border-strong: rgba(255, 255, 255, 0.14);
      --text: #f4f1ea;
      --muted: #8a8680;
      --dim: #5c5954;
      --accent: #d35400;
      --accent-hot: #e67e22;
      --accent-deep: #c43a0a;
      --gold: #c9a227;
      --gold-soft: #e8d48b;
      --white: #ffffff;
      --black: #000000;
      --font-display: "Archivo Black", Impact, sans-serif;
      --font-body: "Space Grotesk", system-ui, sans-serif;
      --font-mono: "IBM Plex Mono", ui-monospace, monospace;
      --nav-h: 72px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --max: 1440px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; height: auto; }
    .logo-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 50%;
    }
    .logo-img-sm { width: 40px; height: 40px; }
    .logo-img-lg { width: 64px; height: 64px; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
    ul { list-style: none; }
    ::selection { background: var(--accent); color: var(--black); }

    /* noise overlay */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9998;
      opacity: 0.045;
      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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px;
    }

    .container {
      width: min(100% - 2.5rem, var(--max));
      margin-inline: auto;
    }
    .container-wide {
      width: min(100% - 2rem, 1680px);
      margin-inline: auto;
    }

    /* ========== TOP BAR ========== */
    .announcement {
      position: relative;
      z-index: 100;
      background: var(--black);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      height: 36px;
      display: flex;
      align-items: center;
    }
    .marquee {
      display: flex;
      width: max-content;
      animation: marquee 40s linear infinite;
      will-change: transform;
    }
    .marquee:hover { animation-play-state: paused; }
    .marquee span {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      padding-inline: 2rem;
      white-space: nowrap;
    }
    .marquee span em {
      font-style: normal;
      color: var(--accent);
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ========== NAV ========== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 90;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      border-bottom: 1px solid transparent;
      background: rgba(7, 7, 7, 0.72);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
    }
    .nav.scrolled {
      border-bottom-color: var(--border);
      background: rgba(7, 7, 7, 0.92);
    }
    .nav-inner {
      width: min(100% - 2rem, var(--max));
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }
    .nav-links {
      display: flex;
      gap: 1.75rem;
      align-items: center;
    }
    .nav-links a {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.25s;
      position: relative;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s var(--ease);
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-align: left;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }
    .logo-mark {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: 0.02em;
      line-height: 1;
      text-transform: none; /* keep CiaX casing — never all-caps */
      white-space: nowrap;
    }
    .logo-mark .logo-x,
    .logo-mark span.logo-x {
      color: var(--accent);
      letter-spacing: 0;
      margin: 0;
      padding: 0;
      display: inline;
      text-transform: none;
    }
    .logo-sub {
      font-family: var(--font-mono);
      font-size: 0.55rem;
      letter-spacing: 0.35em;
      color: var(--dim);
      text-transform: uppercase;
    }

    .nav-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1.25rem;
    }
    .nav-actions a,
    .nav-actions button {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.25s;
    }
    .nav-actions a:hover,
    .nav-actions button:hover { color: var(--text); }
    .cart-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.15rem;
      height: 1.15rem;
      padding-inline: 0.3rem;
      margin-left: 0.35rem;
      border-radius: 999px;
      background: var(--accent);
      color: var(--black);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0;
    }
    .menu-toggle {
      display: none;
      width: 28px;
      height: 18px;
      position: relative;
    }
    .menu-toggle span {
      position: absolute;
      left: 0;
      right: 0;
      height: 1.5px;
      background: var(--text);
      transition: 0.3s var(--ease);
    }
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .menu-toggle span:nth-child(3) { bottom: 0; }

    /* ========== BUTTONS ========== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      padding: 0.95rem 1.75rem;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border-radius: 999px;
      transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary {
      background: var(--accent);
      color: var(--black);
      box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.4);
    }
    .btn-primary:hover {
      background: var(--accent-hot);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px -10px rgba(211, 84, 0, 0.55);
    }
    .btn-ghost {
      border: 1px solid var(--border-strong);
      color: var(--text);
      background: transparent;
    }
    .btn-ghost:hover {
      border-color: var(--text);
      background: rgba(255, 255, 255, 0.03);
      transform: translateY(-2px);
    }
    .btn-line {
      border-radius: 0;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--text);
      letter-spacing: 0.2em;
    }
    .btn-line:hover { color: var(--accent); border-color: var(--accent); }
    .btn .arrow {
      display: inline-block;
      transition: transform 0.35s var(--ease);
    }
    .btn:hover .arrow { transform: translateX(4px); }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: calc(100svh - var(--nav-h) - 36px);
      display: grid;
      align-items: end;
      padding: 2rem 0 3.5rem;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #050505;
    }
    .hero-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      opacity: 1;
      filter: saturate(0.85) contrast(1.05);
    }
    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0.35) 35%, rgba(7,7,7,0.92) 78%, #070707 100%),
        linear-gradient(90deg, rgba(7,7,7,0.85) 0%, rgba(7,7,7,0.25) 55%, rgba(7,7,7,0.55) 100%),
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(211, 84, 0, 0.14), transparent 55%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: min(100% - 2.5rem, var(--max));
      margin-inline: auto;
      padding-bottom: 1rem;
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem 1.5rem;
      margin-bottom: 1.75rem;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.85rem;
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      background: rgba(0,0,0,0.35);
    }
    .pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
      animation: blink 1.8s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.35; }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3.4rem, 12vw, 9.5rem);
      line-height: 0.88;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      max-width: 14ch;
    }
    .hero-title .line { display: block; }
    .hero-title .stroke {
      -webkit-text-stroke: 1.5px rgba(244, 241, 234, 0.55);
      color: transparent;
    }
    .hero-title .accent-word { color: var(--accent); }

    .hero-bottom {
      margin-top: 2.75rem;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: end;
      border-top: 1px solid var(--border);
      padding-top: 2rem;
    }
    .hero-copy {
      max-width: 38ch;
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      font-weight: 300;
      color: var(--muted);
      line-height: 1.55;
    }
    .hero-copy strong {
      color: var(--text);
      font-weight: 500;
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      justify-content: flex-end;
    }
    .hero-stats {
      position: absolute;
      right: max(1.25rem, calc((100% - var(--max)) / 2));
      top: 12%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      text-align: right;
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--dim);
      margin-top: 0.25rem;
    }

    /* ========== CATEGORY STRIP ========== */
    .cat-strip {
      display: grid;
      grid-template-columns: 1.4fr 1fr 0.9fr;
      gap: 0.75rem;
      width: min(100% - 2.5rem, var(--max));
      margin-inline: auto;
      padding: 0.75rem 0;
      background: var(--bg);
      box-sizing: border-box;
    }
    .cat-card {
      position: relative;
      min-height: clamp(220px, 32vw, 380px);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      isolation: isolate;
    }
    .cat-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease);
    }
    .cat-men .cat-card-img { object-position: 51% 28%; }
    .cat-women .cat-card-img { object-position: 54% 14%; }
    .cat-acc .cat-card-img { object-position: 48% 8%; }
    .cat-card:hover .cat-card-img { transform: scale(1.06); }
    .cat-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.88) 100%);
      pointer-events: none;
    }
    .cat-card-body {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
    }
    .cat-kicker {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.4rem;
    }
    .cat-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      letter-spacing: -0.02em;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 0.85rem;
    }
    .cat-link {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.25s, gap 0.35s var(--ease);
      width: fit-content;
    }
    .cat-card:hover .cat-link {
      color: var(--text);
      gap: 0.7rem;
    }
    .cat-badge {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      z-index: 3;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid rgba(211, 84, 0, 0.5);
      display: grid;
      place-items: center;
      background: rgba(0,0,0,0.55);
      box-shadow: 0 0 30px rgba(211, 84, 0, 0.25);
      overflow: hidden;
      padding: 6px;
    }
    .cat-badge img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* ========== SECTION COMMON ========== */
    section { position: relative; }
    .section-pad { padding: clamp(4.5rem, 10vw, 8rem) 0; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }
    .section-label::before {
      content: "";
      width: 22px;
      height: 1px;
      background: var(--accent);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 5rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }
    .section-lead {
      margin-top: 1.25rem;
      max-width: 42ch;
      color: var(--muted);
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.6;
    }

    /* ========== RULES ========== */
    .rules {
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        linear-gradient(180deg, #0a0908 0%, #0c0a08 50%, #070707 100%);
      border-block: 1px solid var(--border);
      overflow: hidden;
    }
    .rules-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3.5rem;
    }
    .rules-crest {
      width: 110px;
      height: 110px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      border: 1px solid rgba(201, 162, 39, 0.35);
      display: grid;
      place-items: center;
      background: radial-gradient(circle, rgba(201,162,39,0.12), transparent 70%);
      box-shadow: 0 0 50px rgba(201, 162, 39, 0.12);
      padding: 0.65rem;
      overflow: hidden;
    }
    .rules-crest img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .rules-head .section-title { color: var(--gold-soft); }
    /* Only the direct label line (e.g. “CiaX doctrine”) — not nested .ciax-brand */
    .rules-head .section-title > span {
      display: block;
      font-size: 0.35em;
      letter-spacing: 0.35em;
      color: var(--gold);
      margin-bottom: 0.6rem;
      font-family: var(--font-mono);
      font-weight: 500;
    }
    .rules-head .section-title > span .ciax-brand,
    .rules-head .section-title > span .ciax-tm {
      display: inline;
      font-size: 1em;
      letter-spacing: inherit;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      vertical-align: baseline;
    }
    .rules-head .section-title > span .ciax-tm {
      font-size: 0.55em;
      vertical-align: super;
      position: static;
      top: auto;
      opacity: 0.85;
    }

    .rules-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }
    .rule-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.25rem 1.75rem;
      align-items: center;
      padding: 1.4rem 0.5rem;
      border-top: 1px solid rgba(201, 162, 39, 0.15);
      transition: background 0.35s var(--ease), padding 0.35s var(--ease);
    }
    .rule-item:last-child { border-bottom: 1px solid rgba(201, 162, 39, 0.15); }
    .rule-item:hover {
      background: rgba(201, 162, 39, 0.06);
      padding-left: 1.35rem;
      padding-right: 1.35rem;
    }
    .rule-item .rule-text {
      transition: transform 0.35s var(--ease);
    }
    .rule-item:hover .rule-text {
      transform: translateX(10px);
    }
    .rule-item .rule-icon,
    .rule-item .rule-num {
      transition: transform 0.35s var(--ease);
    }
    .rule-item:hover .rule-num {
      transform: translateX(4px);
    }
    .rule-num {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--gold);
      min-width: 2ch;
    }
    .rule-text {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.55rem 1rem;
    }
    .rule-from {
      font-family: var(--font-display);
      font-size: clamp(1.15rem, 2.4vw, 1.65rem);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .rule-arrow {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--gold);
      opacity: 0.7;
    }
    .rule-to {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .rule-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
      filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.35));
    }
    .rule-arrow-img {
      width: 28px;
      height: 14px;
      object-fit: contain;
      opacity: 0.85;
    }

    /* ========== ABOUT ========== */
    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }
    .about-visual {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #0a0a0a;
    }
    .about-visual > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .about-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.65) 100%);
      pointer-events: none;
    }
    .about-float {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      z-index: 2;
      padding: 0.75rem 1rem;
      background: rgba(7,7,7,0.85);
      border: 1px solid var(--border);
      border-radius: 12px;
      backdrop-filter: blur(12px);
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .about-float b {
      display: block;
      color: var(--text);
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      margin-top: 0.2rem;
      font-weight: 600;
    }
    .about-body h2 { max-width: 10ch; }
    .about-body p {
      margin-top: 1.5rem;
      color: var(--muted);
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.7;
      max-width: 40ch;
    }
    .about-body p + p { margin-top: 1rem; }
    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 2rem;
    }
    .social-chip {
      padding: 0.55rem 0.95rem;
      border: 1px solid var(--border);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      transition: border-color 0.25s, color 0.25s, background 0.25s;
    }
    .social-chip:hover {
      border-color: var(--accent);
      color: var(--text);
      background: rgba(211, 84, 0, 0.08);
    }
    .about-actions { margin-top: 2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

    /* ========== PILLARS ========== */
    .pillars {
      background: var(--bg-elevated);
      border-block: 1px solid var(--border);
    }
    .pillars-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 2rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .pillar {
      position: relative;
      padding: 2rem 1.75rem 1.75rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 18px;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s;
      overflow: hidden;
    }
    .pillar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 0%, rgba(211, 84, 0,0.12), transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .pillar:hover {
      transform: translateY(-6px);
      border-color: rgba(211, 84, 0, 0.35);
      box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
    }
    .pillar:hover::before { opacity: 1; }
    .pillar-icon {
      width: 96px;
      height: 96px;
      border-radius: 18px;
      border: 1px solid rgba(211, 84, 0, 0.3);
      display: grid;
      place-items: center;
      background: rgba(211, 84, 0, 0.08);
      margin-bottom: 1.75rem;
      overflow: hidden;
      padding: 10px;
    }
    .pillar-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: scale(1.08);
    }
    .pillar h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      line-height: 1.15;
      margin-bottom: 0.85rem;
      position: relative;
    }
    .pillar p {
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.6;
      flex: 1;
      position: relative;
    }
    .pillar .btn {
      margin-top: 1.75rem;
      align-self: flex-start;
      position: relative;
    }

    /* ========== FEATURES ACCORDION ========== */
    .features-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: min(100% - 2.5rem, var(--max));
      margin-inline: auto;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--bg-elevated);
      overflow: hidden;
      box-sizing: border-box;
    }
    .feature-cell {
      position: relative;
      border-right: 1px solid var(--border);
      background: transparent;
      transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
      overflow: hidden;
    }
    .feature-cell:last-child { border-right: none; }
    .feature-cell::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(211, 84, 0,0.14), transparent 65%);
      opacity: 0;
      transition: opacity 0.45s var(--ease);
      pointer-events: none;
    }
    .feature-cell[open],
    .feature-cell.is-open {
      background: rgba(255, 255, 255, 0.025);
      z-index: 1;
    }
    .feature-cell[open]::before,
    .feature-cell.is-open::before { opacity: 1; }
    .feature-cell[open] {
      box-shadow: inset 0 -2px 0 0 var(--accent);
    }

    .feature-summary {
      list-style: none;
      cursor: pointer;
      padding: 2rem 1.35rem 1.5rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      user-select: none;
      position: relative;
      z-index: 1;
      transition: padding 0.35s var(--ease);
    }
    .feature-summary::-webkit-details-marker { display: none; }
    .feature-summary::marker { content: ""; }
    .feature-cell:hover .feature-summary { background: rgba(255,255,255,0.015); }

    .feature-img {
      height: 72px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      margin: 0 auto 0.65rem;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
      transition: transform 0.5s var(--ease), filter 0.4s;
    }
    .feature-cell[open] .feature-img,
    .feature-cell.is-open .feature-img {
      transform: scale(1.08) translateY(-4px);
      filter: drop-shadow(0 12px 28px rgba(211, 84, 0, 0.25));
    }

    .feature-summary h3 {
      font-family: var(--font-display);
      font-size: clamp(0.9rem, 1.4vw, 1.1rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.15;
    }
    .feature-kicker {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dim);
      transition: color 0.3s;
    }
    .feature-cell[open] .feature-kicker,
    .feature-cell.is-open .feature-kicker { color: var(--accent); }

    .feature-toggle {
      margin-top: 0.85rem;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--border-strong);
      display: grid;
      place-items: center;
      position: relative;
      transition: border-color 0.35s, background 0.35s, transform 0.45s var(--ease), box-shadow 0.35s;
      background: rgba(0,0,0,0.25);
    }
    .feature-toggle::before,
    .feature-toggle::after {
      content: "";
      position: absolute;
      background: var(--text);
      transition: transform 0.4s var(--ease), background 0.3s, opacity 0.3s;
    }
    .feature-toggle::before {
      width: 12px;
      height: 1.5px;
    }
    .feature-toggle::after {
      width: 1.5px;
      height: 12px;
    }
    .feature-cell:hover .feature-toggle {
      border-color: rgba(211, 84, 0, 0.55);
    }
    .feature-cell[open] .feature-toggle,
    .feature-cell.is-open .feature-toggle {
      border-color: var(--accent);
      background: var(--accent);
      box-shadow: 0 0 24px rgba(211, 84, 0, 0.35);
      transform: rotate(180deg);
    }
    .feature-cell[open] .feature-toggle::before,
    .feature-cell[open] .feature-toggle::after,
    .feature-cell.is-open .feature-toggle::before,
    .feature-cell.is-open .feature-toggle::after {
      background: var(--black);
    }
    .feature-cell[open] .feature-toggle::after,
    .feature-cell.is-open .feature-toggle::after {
      transform: rotate(90deg) scaleY(0);
      opacity: 0;
    }

    .feature-panel {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.5s var(--ease);
    }
    .feature-cell[open] .feature-panel,
    .feature-cell.is-open .feature-panel {
      grid-template-rows: 1fr;
    }
    .feature-panel-inner {
      overflow: hidden;
      min-height: 0;
    }
    .feature-body {
      padding: 0 1.35rem 1.85rem;
      text-align: left;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 0.4s var(--ease) 0.05s, transform 0.45s var(--ease) 0.05s;
    }
    .feature-cell[open] .feature-body,
    .feature-cell.is-open .feature-body {
      opacity: 1;
      transform: translateY(0);
    }
    .feature-body ul {
      display: grid;
      gap: 0.7rem;
      padding: 1rem 0 0;
      border-top: 1px solid var(--border);
    }
    .feature-body li {
      position: relative;
      padding-left: 1.15rem;
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.45;
      color: var(--muted);
    }
    .feature-body li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 1px;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent);
    }

    /* ========== PRODUCTS ========== */
    .products-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .product-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: var(--bg-card);
      transition: border-color 0.35s, transform 0.45s var(--ease);
    }
    .product-card:hover {
      border-color: var(--border-strong);
      transform: translateY(-4px);
    }
    .product-media {
      position: relative;
      aspect-ratio: 1;
      background: #111;
      overflow: hidden;
    }
    .product-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease);
    }
    .product-card:hover .product-media img { transform: scale(1.05); }
    .product-tag {
      position: absolute;
      top: 1rem;
      left: 1rem;
      z-index: 2;
      padding: 0.35rem 0.65rem;
      background: rgba(0,0,0,0.65);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      backdrop-filter: blur(8px);
    }
    .product-info {
      padding: 1.25rem 1.25rem 1.4rem;
      display: grid;
      gap: 0.35rem;
    }
    .product-info h3 {
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: -0.01em;
    }
    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.65rem;
      gap: 0.75rem;
    }
    .price {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      letter-spacing: 0.04em;
    }
    .price s {
      color: var(--dim);
      margin-right: 0.4rem;
      font-size: 0.8rem;
    }
    .add-btn {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.55rem 0.85rem;
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      color: var(--muted);
      transition: 0.3s;
    }
    .add-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--black);
    }

    /* ========== STREET CODE ========== */
    .street-code {
      position: relative;
      border-top: 1px solid var(--border);
      text-align: center;
      overflow: hidden;
      background: #050505;
    }
    .street-code-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.28;
      filter: saturate(0.7) contrast(1.1);
    }
    .street-code::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(180deg, rgba(5,5,5,0.75) 0%, rgba(5,5,5,0.55) 40%, rgba(5,5,5,0.92) 100%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(211, 84, 0,0.12), transparent 60%);
    }
    .street-code .container { position: relative; z-index: 1; }
    .code-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 8vw, 6.5rem);
      letter-spacing: -0.03em;
      line-height: 0.9;
      text-transform: uppercase;
    }
    .code-title span {
      display: block;
      background: linear-gradient(180deg, var(--text) 30%, rgba(244,241,234,0.35));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .code-sub {
      margin: 1.5rem auto 0;
      max-width: 28ch;
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      font-weight: 300;
      color: var(--muted);
      line-height: 1.45;
    }
    .code-sub em {
      font-style: normal;
      color: var(--text);
    }
    .code-grid {
      margin-top: 3.5rem;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0.75rem;
      max-width: 1000px;
      margin-inline: auto;
    }
    .code-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem 0.75rem 1.35rem;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(255,255,255,0.015);
      transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease);
      min-height: 100%;
    }
    .code-item:hover {
      border-color: rgba(211, 84, 0, 0.4);
      background: rgba(211, 84, 0, 0.04);
      transform: translateY(-4px);
    }
    .code-glyph {
      width: 88px;
      height: 88px;
      flex: 0 0 88px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .code-glyph img {
      width: 100%;
      height: 100%;
      max-width: 88px;
      max-height: 88px;
      object-fit: contain;
      object-position: center;
      display: block;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
    }
    .code-item h3 {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1.35;
      min-height: 2.7em;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 100%;
    }
    .code-footer {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      max-width: 520px;
      margin-inline: auto;
    }
    .code-footer h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .code-footer p { color: var(--muted); font-weight: 300; }

    /* ========== CREW ========== */
    .crew {
      border-top: 1px solid var(--border);
      background:
        linear-gradient(90deg, rgba(211, 84, 0,0.06), transparent 40%, rgba(211, 84, 0,0.06)),
        var(--bg);
    }
    .crew-box {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: center;
      padding: clamp(2rem, 4vw, 3rem);
      border: 1px solid var(--border);
      border-radius: 24px;
      background:
        linear-gradient(105deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.78) 55%, rgba(7,7,7,0.88) 100%),
        url("../images/A38D5D6F-7484-4D4E-935F-5269C9854DBB-1-1024x683.png") center/cover no-repeat;
      overflow: hidden;
      position: relative;
    }
    .crew-box::after {
      content: "CREW";
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-display);
      font-size: clamp(5rem, 14vw, 11rem);
      letter-spacing: -0.04em;
      color: rgba(255,255,255,0.03);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .crew-box h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 0.95;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      max-width: 12ch;
    }
    .crew-box > div > p {
      margin-top: 1rem;
      color: var(--muted);
      font-weight: 300;
      max-width: 36ch;
      line-height: 1.6;
    }
    .crew-perks {
      display: grid;
      gap: 0.75rem;
      position: relative;
      z-index: 1;
    }
    .perk {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.15rem;
      background: rgba(0,0,0,0.35);
      border: 1px solid var(--border);
      border-radius: 12px;
    }
    .perk-off {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--accent);
      min-width: 3.5ch;
    }
    .perk span {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ========== NEWSLETTER ========== */
    .newsletter {
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .newsletter-label {
      justify-content: center;
      margin-bottom: 1rem;
    }
    .newsletter-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      margin: 0 auto;
      max-width: 22ch;
    }
    .newsletter-title__main {
      display: block;
      font-family: var(--font-display);
      font-size: clamp(2rem, 5.5vw, 3.4rem);
      letter-spacing: -0.03em;
      text-transform: uppercase;
      line-height: 0.95;
      background: linear-gradient(180deg, var(--text) 28%, rgba(244, 241, 234, 0.4));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .newsletter-title__accent {
      display: block;
      font-family: var(--font-mono);
      font-size: clamp(0.72rem, 1.4vw, 0.85rem);
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      line-height: 1.3;
    }
    .newsletter-lead,
    .newsletter p {
      margin: 1.15rem auto 0;
      color: var(--muted);
      font-weight: 300;
      max-width: 40ch;
      font-size: 1.02rem;
      line-height: 1.55;
    }
    /* legacy single h2 (if any) */
    .newsletter h2:not(.newsletter-title) {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      letter-spacing: -0.02em;
      text-transform: uppercase;
      line-height: 1.05;
      max-width: 18ch;
      margin-inline: auto;
    }
    .news-form {
      margin: 2rem auto 0;
      display: flex;
      max-width: 480px;
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      overflow: hidden;
      background: var(--bg-card);
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .news-form:focus-within {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.15);
    }
    .news-form input {
      flex: 1;
      min-width: 0;
      padding: 1rem 1.35rem;
      background: transparent;
      border: none;
      outline: none;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.95rem;
    }
    .news-form input::placeholder { color: var(--dim); }
    .news-form button {
      margin: 0.35rem;
      padding: 0.85rem 1.4rem;
      border-radius: 999px;
      background: var(--accent);
      color: var(--black);
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: background 0.25s;
      white-space: nowrap;
    }
    .news-form button:hover { background: var(--accent-hot); }
    .news-note {
      margin-top: 0.85rem;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dim);
    }

    /* ========== FOOTER ========== */
    .footer {
      border-top: 1px solid var(--border);
      padding: 4rem 0 2rem;
      background: #050505;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 2.5rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand .logo-mark { font-size: 1.55rem; text-align: left; letter-spacing: 0.02em; }
    .footer-brand p {
      margin-top: 1rem;
      color: var(--muted);
      font-weight: 300;
      font-size: 0.95rem;
      max-width: 28ch;
      line-height: 1.6;
    }
    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 1.15rem;
    }
    .footer-col a {
      display: block;
      color: var(--muted);
      font-size: 0.95rem;
      padding: 0.3rem 0;
      transition: color 0.25s;
    }
    .footer-col a:hover { color: var(--text); }
    .footer-bottom {
      padding-top: 1.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-bottom p {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dim);
    }
    .footer-socials {
      display: flex;
      gap: 1rem;
    }
    .footer-socials a {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.25s;
    }
    .footer-socials a:hover { color: var(--accent); }

    /* ========== MOBILE DRAWER ========== */
    /* z-index above WP admin bar (99999) so menu/cart work when logged in as admin */
    .drawer {
      position: fixed;
      inset: 0;
      z-index: 1000050;
      pointer-events: none;
      visibility: hidden;
    }
    .drawer.open {
      pointer-events: auto;
      visibility: visible;
    }
    .drawer-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .drawer.open .drawer-backdrop { opacity: 1; }
    .drawer-panel {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(100%, 360px);
      height: 100%;
      max-height: 100%;
      background: #0a0a0a;
      border-left: 1px solid var(--border);
      padding: 1.25rem 1.5rem;
      transform: translateX(100%);
      transition: transform 0.5s var(--ease);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-sizing: border-box;
    }
    body.admin-bar .drawer-panel {
      top: 46px;
      height: calc(100% - 46px);
      max-height: calc(100% - 46px);
    }
    @media screen and (min-width: 783px) {
      body.admin-bar .drawer-panel {
        top: 32px;
        height: calc(100% - 32px);
        max-height: calc(100% - 32px);
      }
    }
    .drawer.open .drawer-panel { transform: translateX(0); }
    .drawer-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
      flex-shrink: 0;
    }
    .drawer-close {
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      color: var(--muted);
      flex-shrink: 0;
      background: transparent;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      padding-bottom: 0.5rem;
    }
    .drawer-nav a {
      font-family: var(--font-display);
      font-size: 1.75rem;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      padding: 0.55rem 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.25s;
    }
    .drawer-nav a:hover { color: var(--accent); }
    .drawer-foot {
      margin-top: 0;
      padding-top: 1.25rem;
      flex-shrink: 0;
      border-top: 1px solid var(--border);
    }
    .drawer-foot p {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 1rem;
    }

    /* ========== REVEAL ========== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }
    .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; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .nav-inner { grid-template-columns: auto 1fr auto; }
      .logo { justify-self: start; }
      .hero-stats { display: none; }
      .hero-bottom { grid-template-columns: 1fr; }
      .hero-cta { justify-content: flex-start; }
      .cat-strip { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .about-visual { aspect-ratio: 16/11; max-height: 420px; }
      .pillars-grid { grid-template-columns: 1fr; }
      .features-bar { grid-template-columns: 1fr 1fr; }
      .feature-cell:nth-child(2n) { border-right: none; }
      .feature-cell:nth-child(1),
      .feature-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
      .feature-summary { padding: 1.75rem 1.15rem 1.35rem; }
      .feature-body { padding-inline: 1.15rem; }
      .product-grid { grid-template-columns: 1fr 1fr; }
      .code-grid { grid-template-columns: repeat(3, 1fr); }
      .crew-box { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .product-grid { grid-template-columns: 1fr; }
      .code-grid { grid-template-columns: 1fr 1fr; }
      .features-bar { grid-template-columns: 1fr; }
      .feature-cell { border-right: none; border-bottom: 1px solid var(--border); }
      .feature-cell:nth-child(1),
      .feature-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
      .feature-cell:last-child { border-bottom: none; }
      .feature-summary {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left;
        gap: 0.75rem 1rem;
        padding: 1.25rem 1.15rem;
      }
      .feature-img {
        height: 52px;
        margin: 0;
        flex: 0 0 auto;
      }
      .feature-summary h3 { flex: 1 1 auto; min-width: 0; }
      .feature-kicker { width: 100%; order: 3; padding-left: calc(52px + 1rem); margin-top: -0.35rem; }
      .feature-toggle { margin-top: 0; margin-left: auto; order: 2; }
      .feature-body { text-align: left; }
      .feature-body ul { padding-top: 0.85rem; }
      .rule-item {
        grid-template-columns: auto 1fr;
        gap: 0.75rem 1rem;
      }
      .rule-icon { display: none; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .news-form { flex-direction: row; flex-wrap: nowrap; border-radius: 999px; }
      .news-form button { margin: 0.3rem; width: auto; }
      .hero-title { font-size: clamp(3rem, 15vw, 4.5rem); }
      .nav-actions .hide-sm { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
  
