  :root {
    --ink: #fff;
    --paper: #23133a;
    --cream: #1f1232;
    --gold: #883CF0;
    --gold-light: #7b5cff;
    --red: #b29dce;
    --teal: #af62c8;
    --muted: #d6d6d6;
    --rule: #3a1c63;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: #191127;
    color: var(--ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s, height 0.2s;
  }
  body:hover .cursor { opacity: 1; }

  /* Masthead */
  .masthead {
    border-bottom: 3px double var(--rule);
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }

  .masthead-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border-bottom: 1px solid var(--rule);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .masthead-date { color: var(--red); font-weight: 700; }

  .masthead-hero {
    text-align: center;
    padding: 48px 40px 32px;
    position: relative;
  }

  .masthead-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
  }

  .masthead-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: var(--ink);
    position: relative;
    display: inline-block;
  }

  .masthead-title .dot-ai {
    color: var(--gold);
    font-style: italic;
  }

  .masthead-rule {
    width: 100%;
    height: 1px;
    background: var(--rule);
    margin: 24px 0 0;
    position: relative;
  }

  .masthead-rule::before, .masthead-rule::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cream);
    padding: 0 8px;
    font-size: 10px;
    color: var(--gold);
  }
  .masthead-rule::before { left: 40px; }
  .masthead-rule::after { right: 40px; }

  .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--muted);
    letter-spacing: 0.08em;
    padding: 14px 0 0;
    text-align: center;
  }

  /* Nav bar */
  nav {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid var(--rule);
    background: var(--ink);
    overflow-x: auto;
  }

  nav button {
    background: none;
    border: none;
    color: #2d182e;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 22px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    border-right: 1px solid #3a1c63;
  }

  nav button:hover, nav button.active {
    background: var(--gold);
    color: var(--ink);
  }

  /* Ticker */
  .ticker-wrap {
    background: var(--red);
    overflow: hidden;
    padding: 7px 0;
  }
  .ticker {
    display: flex;
    gap: 60px;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .ticker span {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .ticker span::before { content: '◆  '; color: rgba(255,255,255,0.5); }

  /* Main grid */
  .main-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    border-left: 1px solid #3a1c63;
    border-right: 1px solid #3a1c63;
  }

  .main-content { border-right: 1px solid var(--rule); padding-right: 40px; }
  .sidebar { padding-left: 28px; }

  /* Section */
  .section { display: none; padding: 40px 0; }
  .section.active { display: block; }

  /* Section heading */
  .section-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--rule);
    padding-bottom: 10px;
  }
  .section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
  }
  .section-head span {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
  }

  /* Cover story */
  .cover-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    margin-bottom: 36px;
    overflow: hidden;
  }

  .cover-visual {
    background: var(--ink);
    position: relative;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cover-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
  }

  .cover-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--red);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 10px;
    z-index: 2;
  }

  .cover-text {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
  }

  .cover-kicker {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .cover-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .cover-body {
    font-size: 16px;
    line-height: 1.7;
    color: #dfdacf;
    font-style: italic;
    margin-bottom: 24px;
  }

  .read-btn {
    align-self: flex-start;
    background: var(--ink);
    color: var(--gold);
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .read-btn:hover { background: var(--gold); color: var(--ink); }

  /* Article grid */
  .article-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
  }

  .article-card {
    border-top: 3px solid var(--rule);
    padding-top: 16px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .article-card:hover { transform: translateY(-3px); }
  .article-card:hover .article-title { color: var(--teal); }

  .article-tag {
    font-family: 'Space Mono', monospace;
    font-size: 8.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
  }

  .article-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .article-excerpt {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 12px;
  }

  .article-meta {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  /* Featured strip */
  .featured-strip {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    margin-bottom: 36px;
    overflow: hidden;
  }

  .featured-main {
    padding: 28px 28px;
    border-right: 1px solid var(--rule);
    background: var(--ink);
    color: var(--paper);
  }

  .featured-main .article-title { color: var(--gold-light); font-size: 22px; }
  .featured-main .article-excerpt { color: #b0a890; }
  .featured-main .article-tag { color: var(--gold); }

  .featured-side { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

  .mini-article {
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding-bottom: 14px;
    cursor: pointer;
  }
  .mini-article:last-child { border-bottom: none; }
  .mini-article:hover .mini-title { color: var(--teal); }

  .mini-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
    transition: color 0.2s;
  }

  .mini-meta {
    font-family: 'Space Mono', monospace;
    font-size: 8.5px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  /* ---- SIDEBAR ---- */
  .sidebar-widget {
    border-top: 3px solid var(--rule);
    padding: 20px 0 28px;
    margin-bottom: 4px;
  }

  .widget-title {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }

  /* Live index */
  .index-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px dotted rgba(0,0,0,0.15);
    font-size: 13px;
  }
  .index-name { font-weight: 600; }
  .index-val { font-family: 'Space Mono', monospace; font-size: 12px; }
  .up { color: #27ae60; }
  .down { color: var(--red); }

  /* Quote of day */
  .quote-block {
    background: var(--ink);
    padding: 20px;
    position: relative;
  }
  .quote-block blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--paper);
    margin-bottom: 12px;
  }
  .quote-block cite {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .quote-block::before {
    content: '"';
    position: absolute;
    top: 8px; left: 12px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    font-family: 'Playfair Display', serif;
  }

  /* Poll */
  .poll-option {
    margin-bottom: 10px;
    cursor: pointer;
  }
  .poll-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 5px;
  }
  .poll-bar-bg {
    height: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
    overflow: hidden;
  }
  .poll-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.6s ease;
  }
  .poll-btn {
    width: 100%;
    margin-top: 14px;
    background: var(--teal);
    color: #fff;
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 9px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .poll-btn:hover { background: var(--ink); }

  /* Newsletter */
  .newsletter-box {
    background: #1f1232;
    padding: 20px;
    color: #fff;
  }
  .newsletter-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    margin-bottom: 8px;
  }
  .newsletter-box p {
    font-size: 13px;
    font-style: italic;
    opacity: 0.85;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .newsletter-box input {
    width: 100%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    padding: 9px 12px;
    margin-bottom: 8px;
    outline: none;
  }
  .newsletter-box input::placeholder { color: rgba(255,255,255,0.5); }
  .newsletter-box button {
    width: 100%;
    background: var(--gold);
    color: var(--ink);
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s;
  }
  .newsletter-box button:hover { background: var(--gold-light); }

  /* TOPICS section */
  .topics-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 36px;
  }

  .topic-tile {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
  }
  .topic-tile:hover { transform: scale(0.97); z-index: 2; }
  .topic-tile:nth-child(1) { background: var(--ink); color: var(--gold); }
  .topic-tile:nth-child(2) { background: var(--red); color: #fff; }
  .topic-tile:nth-child(3) { background: var(--teal); color: #fff; }
  .topic-tile:nth-child(4) { background: #2d3a2a; color: #a8d4a0; }
  .topic-tile:nth-child(5) { background: #2a2050; color: #b8a8e8; }
  .topic-tile:nth-child(6) { background: var(--gold); color: var(--ink); }
  .topic-tile:nth-child(7) { background: #3a2820; color: #e8c8a0; }
  .topic-tile:nth-child(8) { background: #1a3a3a; color: #88d4d4; }

  .topic-icon { font-size: 32px; margin-bottom: 8px; }
  .topic-name {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
  }
  .topic-count { font-size: 11px; opacity: 0.6; margin-top: 4px; font-family: 'Space Mono', monospace; }

  /* Timeline */
  .timeline { position: relative; padding-left: 24px; }
  .timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 0; bottom: 0;
    width: 1px;
    background: var(--rule);
  }

  .timeline-item {
    position: relative;
    margin-bottom: 28px;
    padding-left: 20px;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -20px; top: 6px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--paper);
    box-shadow: 0 0 0 1px var(--gold);
  }

  .timeline-date {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  .timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .timeline-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--muted);
    font-style: italic;
  }

  /* AI DIGEST section — data viz cards */
  .digest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
  }

  .stat-card {
    border: 1px solid var(--rule);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .stat-card:hover { box-shadow: 4px 4px 0 var(--gold); }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
  }

  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
  }

  .stat-number sup {
    font-size: 1.2rem;
    color: var(--gold);
  }

  .stat-desc {
    font-size: 13px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.5;
  }

  /* AI tools list */
  .tools-list { margin-bottom: 36px; }
  .tool-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #3a1c63;
    cursor: pointer;
    transition: background 0.15s;
  }
  .tool-row:hover { background: #23133a; margin: 0 -10px; padding: 16px 10px; }

  .tool-rank {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    color: #2a1647;
    line-height: 1;
  }

  .tool-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .tool-desc {
    font-size: 13px;
    font-style: italic;
    color: var(--muted);
  }

  .tool-badge {
    font-family: 'Space Mono', monospace;
    font-size: 8.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 8px;
    border: 1px solid;
  }
  .tool-badge.hot { border-color: var(--red); color: var(--red); }
  .tool-badge.rising { border-color: var(--teal); color: var(--teal); }
  .tool-badge.steady { border-color: var(--muted); color: var(--muted); }

  /* OPINION section */
  .opinion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .opinion-card {
    border: 1px solid var(--rule);
    padding: 28px;
    position: relative;
    background: var(--cream);
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  .opinion-card:hover { box-shadow: 6px 6px 0 var(--ink); }

  .opinion-card .pull-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--ink);
    border-left: 3px solid var(--gold);
    padding-left: 16px;
  }

  .opinion-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .author-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .author-title {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* Modal overlay */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.88);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  .modal-overlay.open { display: flex; }

  .modal {
    background: var(--cream);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--ink); }

  .modal-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .modal-body {
    font-size: 15px;
    line-height: 1.75;
    color: #d8d2c7;
    font-style: italic;
  }
  .modal-body p { margin-bottom: 14px; }

  /* Footer */
  footer {
    background: #180f26;
    color: var(--paper);
    padding: 48px 40px 24px;
    margin-top: 60px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto 36px;
    border-bottom: 1px solid #3a1c63;
    padding-bottom: 36px;
  }

  .footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .footer-brand p {
    font-size: 13px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
  }

  .footer-col h4 {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .footer-col ul { list-style: none; }
  .footer-col li {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.2s;
    font-style: italic;
  }
  .footer-col li:hover { color: #fff; }

  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
  }

  /* Search bar */
  .search-bar {
    display: flex;
    border: 1px solid var(--rule);
    margin-bottom: 28px;
    overflow: hidden;
  }

  .search-bar input {
    flex: 1;
    border: none;
    background: none;
    padding: 11px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    outline: none;
    color: var(--ink);
  }

  .search-bar button {
    background: var(--ink);
    border: none;
    color: var(--gold);
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0 18px;
    cursor: pointer;
  }

  /* Highlight animation on numbers */
  .count-animate {
    display: inline-block;
    animation: countUp 1.5s ease forwards;
  }

  /* Responsive tweaks */
  @media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .main-content { border-right: none; padding-right: 0; }
    .sidebar { padding-left: 0; border-top: 2px solid var(--rule); margin-top: 40px; padding-top: 32px; }
    .cover-story { grid-template-columns: 1fr; }
    .article-row { grid-template-columns: 1fr 1fr; }
    .topics-mosaic { grid-template-columns: repeat(4, 1fr); }
    .digest-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }