/* ============================================================================
   News Panel Landing v4
   Standalone. Does NOT import style.css. Prefix: --v4
   Typefaces: Space Grotesk (geometric sans) + Newsreader (editorial serif)
   Direction: V3 typography & layout + V2 tech energy (muted, refined)
   ============================================================================ */

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* -- Tokens ---------------------------------------------------------------- */
:root {
  /* Palette -- dark with blue undertone (tech feeling) */
  --v4-bg:          #13141a;
  --v4-bg-alt:      #1a1b22;
  --v4-bg-surface:  #22232b;
  --v4-border:      rgba(255,255,255,0.06);
  --v4-border-hover:rgba(255,255,255,0.12);

  /* Text */
  --v4-text:        #ededec;
  --v4-text-2:      #a0a0a0;
  --v4-text-3:      #636369;

  /* Category colors -- muted, not neon */
  --v4-tech:        #5b9bd5;
  --v4-ai:          #6bbf7b;
  --v4-geo:         #d4826a;

  /* Functional */
  --v4-tech-dim:    rgba(91,155,213,0.10);
  --v4-ai-dim:      rgba(107,191,123,0.10);
  --v4-geo-dim:     rgba(212,130,106,0.10);

  /* Type scale -- 1.25 ratio */
  --v4-fs-xs:   12px;
  --v4-fs-sm:   14px;
  --v4-fs-base: 16px;
  --v4-fs-md:   18px;
  --v4-fs-lg:   20px;
  --v4-fs-2xl:  32px;
  --v4-fs-3xl:  40px;
  --v4-fs-4xl:  56px;
  --v4-fs-5xl:  72px;

  /* Spacing -- 4px base */
  --v4-sp-1:  4px;
  --v4-sp-2:  8px;
  --v4-sp-3:  12px;
  --v4-sp-4:  16px;
  --v4-sp-5:  20px;
  --v4-sp-6:  24px;
  --v4-sp-8:  32px;
  --v4-sp-10: 40px;
  --v4-sp-12: 48px;
  --v4-sp-16: 64px;
  --v4-sp-20: 80px;
  --v4-sp-24: 96px;
  --v4-sp-32: 128px;

  /* Shadows */
  --v4-shadow-lg:   0 8px 24px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.2);
  --v4-shadow-xl:   0 12px 40px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.25);

  /* Shape */
  --v4-radius:    8px;
  --v4-radius-lg: 12px;

  /* Motion */
  --v4-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --v4-dur:  220ms;
  --v4-dur-slow: 700ms;

  /* Layout */
  --v4-max:        1080px;
  --v4-max-narrow: 640px;

  /* Fonts */
  --v4-font-sans:  'Space Grotesk', system-ui, sans-serif;
  --v4-font-serif: 'Newsreader', Georgia, serif;
  --v4-font-mono:  'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

/* -- Base ------------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--v4-bg);
  color: var(--v4-text);
  font-family: var(--v4-font-sans);
  font-size: var(--v4-fs-base);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::selection {
  background: var(--v4-tech);
  color: var(--v4-bg);
}

*:focus-visible {
  outline: 2px solid var(--v4-tech);
  outline-offset: 3px;
}

/* -- Utilities ------------------------------------------------------------- */
.v4-wrap {
  width: 100%;
  max-width: var(--v4-max);
  margin: 0 auto;
  padding: 0 var(--v4-sp-6);
}

.v4-serif {
  font-family: var(--v4-font-serif);
  font-style: italic;
}

/* -- Scroll reveal --------------------------------------------------------- */
.v4-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--v4-dur-slow) var(--v4-ease),
              transform var(--v4-dur-slow) var(--v4-ease);
}

.v4-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v4-stagger > .v4-reveal:nth-child(2) { transition-delay: 80ms; }
.v4-stagger > .v4-reveal:nth-child(3) { transition-delay: 160ms; }
.v4-stagger > .v4-reveal:nth-child(4) { transition-delay: 240ms; }

/* ============================================================================
   GRID OVERLAY -- subtle tech texture (from v2, much more refined)
   ============================================================================ */
.v4-grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================================
   NAV -- minimal like v3, no glassmorphism
   ============================================================================ */
.v4-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--v4-sp-5) 0;
  background: rgba(19,20,26,0);
  transition: background var(--v4-dur), border-color var(--v4-dur);
  border-bottom: 1px solid transparent;
}

.v4-nav.scrolled {
  background: rgba(19,20,26,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--v4-border);
}

.v4-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v4-nav-brand {
  font-size: var(--v4-fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--v4-text-2);
  transition: color var(--v4-dur);
}

.v4-nav-brand:hover { color: var(--v4-text); }

.v4-nav-cta {
  font-size: var(--v4-fs-sm);
  font-weight: 500;
  color: var(--v4-text-2);
  padding: var(--v4-sp-2) var(--v4-sp-5);
  border: 1px solid var(--v4-border-hover);
  border-radius: var(--v4-radius);
  transition: background var(--v4-dur), color var(--v4-dur), border-color var(--v4-dur);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.v4-nav-cta:hover {
  color: var(--v4-text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}

/* ============================================================================
   HERO -- left-aligned like v3, with subtle visual element on right
   ============================================================================ */
.v4-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--v4-sp-16);
  max-width: var(--v4-max);
  margin: 0 auto;
  padding: 0 var(--v4-sp-6);
  z-index: 1;
}

/* -- Hero text (left) ------------------------------------------------------ */
.v4-hero-text {
  padding-bottom: var(--v4-sp-12);
}

.v4-hero h1 {
  font-family: var(--v4-font-sans);
  font-size: clamp(var(--v4-fs-3xl), 5.5vw, var(--v4-fs-5xl));
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--v4-text);
  max-width: 560px;
  margin-bottom: var(--v4-sp-8);
}

.v4-hero h1 .v4-serif {
  color: var(--v4-tech);
  font-weight: 400;
}

.v4-hero-sub {
  font-size: var(--v4-fs-md);
  color: var(--v4-text-2);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: var(--v4-sp-10);
}

/* -- Hero CTA -------------------------------------------------------------- */
.v4-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--v4-sp-3);
  font-size: var(--v4-fs-base);
  font-weight: 600;
  color: var(--v4-bg);
  background: var(--v4-text);
  padding: var(--v4-sp-4) var(--v4-sp-8);
  border-radius: var(--v4-radius);
  transition: opacity var(--v4-dur), transform 100ms ease;
  min-height: 52px;
}

.v4-hero-cta:hover {
  opacity: 0.88;
}

.v4-hero-cta:active { transform: scale(0.97); }

.v4-hero-cta svg {
  transition: transform var(--v4-dur) var(--v4-ease);
}

.v4-hero-cta:hover svg {
  transform: translateX(3px);
}

/* -- Hero visual (right) -- stylized mini-panel ---------------------------- */
.v4-hero-visual {
  position: relative;
  z-index: 1;
}

.v4-mini-panel {
  background: var(--v4-bg-alt);
  border: 1px solid var(--v4-border-hover);
  border-radius: var(--v4-radius-lg);
  padding: var(--v4-sp-5);
  position: relative;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--v4-ease), box-shadow 0.5s var(--v4-ease);
  box-shadow: var(--v4-shadow-xl);
}

.v4-mini-panel:hover {
  transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg);
  box-shadow: 0 16px 56px rgba(0,0,0,0.5), 0 6px 16px rgba(0,0,0,0.3);
}

/* Ambient glow behind panel */
.v4-mini-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--v4-radius-lg);
  background: linear-gradient(
    135deg,
    rgba(91,155,213,0.08) 0%,
    rgba(107,191,123,0.06) 50%,
    rgba(212,130,106,0.04) 100%
  );
  z-index: -1;
  filter: blur(20px);
}

/* Panel header bar */
.v4-mini-panel-bar {
  display: flex;
  align-items: center;
  gap: var(--v4-sp-2);
  padding-bottom: var(--v4-sp-3);
  border-bottom: 1px solid var(--v4-border);
  margin-bottom: var(--v4-sp-3);
}

.v4-mini-panel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v4-bg-surface);
}

.v4-mini-panel-dot:nth-child(1) { background: #e5534b; }
.v4-mini-panel-dot:nth-child(2) { background: #d4a72c; }
.v4-mini-panel-dot:nth-child(3) { background: #3fb950; }

.v4-mini-panel-url {
  margin-left: auto;
  font-family: var(--v4-font-mono);
  font-size: 10px;
  color: var(--v4-text-3);
  background: var(--v4-bg);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Panel items */
.v4-mini-panel-items {
  display: flex;
  flex-direction: column;
  gap: var(--v4-sp-2);
}

.v4-mini-item {
  display: flex;
  align-items: center;
  gap: var(--v4-sp-3);
  padding: var(--v4-sp-2) var(--v4-sp-3);
  background: var(--v4-bg);
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: transform var(--v4-dur);
}

.v4-mini-item:hover {
  transform: translateX(2px);
}

.v4-mini-item[data-cat="tech"] { border-left-color: var(--v4-tech); }
.v4-mini-item[data-cat="ai"]   { border-left-color: var(--v4-ai); }
.v4-mini-item[data-cat="geo"]  { border-left-color: var(--v4-geo); }

.v4-mini-item-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.v4-mini-item[data-cat="tech"] .v4-mini-item-tag {
  background: var(--v4-tech-dim);
  color: var(--v4-tech);
}
.v4-mini-item[data-cat="ai"] .v4-mini-item-tag {
  background: var(--v4-ai-dim);
  color: var(--v4-ai);
}
.v4-mini-item[data-cat="geo"] .v4-mini-item-tag {
  background: var(--v4-geo-dim);
  color: var(--v4-geo);
}

.v4-mini-item-text {
  font-size: var(--v4-fs-sm);
  color: var(--v4-text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.v4-mini-item-time {
  font-family: var(--v4-font-mono);
  font-size: 10px;
  color: var(--v4-text-3);
  flex-shrink: 0;
}

/* ============================================================================
   SECTION base
   ============================================================================ */
.v4-section {
  padding: var(--v4-sp-24) var(--v4-sp-6);
  position: relative;
  z-index: 1;
}

.v4-section-border {
  border-top: 1px solid var(--v4-border);
}

.v4-section-label {
  font-size: var(--v4-fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v4-text-3);
  margin-bottom: var(--v4-sp-6);
}

.v4-section-heading {
  font-size: clamp(var(--v4-fs-2xl), 4vw, var(--v4-fs-3xl));
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--v4-text);
  max-width: 520px;
  margin-bottom: var(--v4-sp-16);
}

/* ============================================================================
   FEATURES -- numbered, text-driven like v3, with subtle category accents
   ============================================================================ */
.v4-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--v4-sp-1);
}

.v4-feat {
  padding: var(--v4-sp-10) var(--v4-sp-8);
  border-radius: var(--v4-radius-lg);
  transition: background var(--v4-dur), box-shadow var(--v4-dur);
  position: relative;
}

.v4-feat:hover {
  background: var(--v4-bg-alt);
  box-shadow: var(--v4-shadow-lg);
}

/* Subtle color indicator line at top of each feature on hover */
.v4-feat::after {
  content: '';
  position: absolute;
  top: 0;
  left: var(--v4-sp-8);
  width: 0;
  height: 1px;
  transition: width 0.4s var(--v4-ease);
}

.v4-feat:hover::after {
  width: 40px;
}

.v4-feat[data-accent="tech"]::after { background: var(--v4-tech); }
.v4-feat[data-accent="ai"]::after   { background: var(--v4-ai); }
.v4-feat[data-accent="geo"]::after  { background: var(--v4-geo); }
.v4-feat[data-accent="neutral"]::after { background: var(--v4-text-3); }

.v4-feat-num {
  font-family: var(--v4-font-serif);
  font-size: var(--v4-fs-3xl);
  font-weight: 300;
  color: var(--v4-text-3);
  line-height: 1;
  margin-bottom: var(--v4-sp-5);
  opacity: 0.45;
}

.v4-feat h3 {
  font-size: var(--v4-fs-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--v4-text);
  margin-bottom: var(--v4-sp-3);
}

.v4-feat p {
  font-size: var(--v4-fs-sm);
  color: var(--v4-text-2);
  line-height: 1.7;
  max-width: 380px;
}

/* ============================================================================
   CATEGORIES -- with identity: color bar, more presence than v3
   ============================================================================ */
.v4-cats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v4-cat {
  display: grid;
  grid-template-columns: 6px 200px 1fr auto;
  align-items: center;
  gap: var(--v4-sp-6);
  padding: var(--v4-sp-8) 0;
  padding-left: var(--v4-sp-5);
  border-bottom: 1px solid var(--v4-border);
  transition: background var(--v4-dur);
  position: relative;
}

.v4-cat:first-child {
  border-top: 1px solid var(--v4-border);
}

.v4-cat:hover {
  background: var(--v4-bg-alt);
}

/* Color bar (left indicator) */
.v4-cat-bar {
  width: 3px;
  height: 32px;
  border-radius: 2px;
  flex-shrink: 0;
}

.v4-cat--tech .v4-cat-bar { background: var(--v4-tech); }
.v4-cat--ai   .v4-cat-bar { background: var(--v4-ai); }
.v4-cat--geo  .v4-cat-bar { background: var(--v4-geo); }

.v4-cat-name {
  font-size: var(--v4-fs-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.v4-cat--tech .v4-cat-name { color: var(--v4-tech); }
.v4-cat--ai   .v4-cat-name { color: var(--v4-ai); }
.v4-cat--geo  .v4-cat-name { color: var(--v4-geo); }

.v4-cat-desc {
  font-size: var(--v4-fs-sm);
  color: var(--v4-text-2);
  line-height: 1.6;
  max-width: 420px;
}

.v4-cat-sources {
  display: flex;
  flex-wrap: wrap;
  gap: var(--v4-sp-2);
  justify-content: flex-end;
}

.v4-cat-tag {
  font-family: var(--v4-font-mono);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  color: var(--v4-text-3);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ============================================================================
   PIPELINE -- how it works, compact 2-col like v3
   ============================================================================ */
.v4-pipeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--v4-sp-6) var(--v4-sp-16);
  max-width: var(--v4-max-narrow);
}

.v4-pipe-item {
  padding: var(--v4-sp-6) 0;
}

.v4-pipe-num {
  font-family: var(--v4-font-mono);
  font-size: var(--v4-fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--v4-sp-4);
  display: flex;
  align-items: center;
  gap: var(--v4-sp-3);
}

.v4-pipe-num::after {
  content: '';
  display: block;
  height: 1px;
  width: 20px;
}

.v4-pipe-item:nth-child(1) .v4-pipe-num { color: var(--v4-tech); }
.v4-pipe-item:nth-child(1) .v4-pipe-num::after { background: var(--v4-tech-dim); }
.v4-pipe-item:nth-child(2) .v4-pipe-num { color: var(--v4-ai); }
.v4-pipe-item:nth-child(2) .v4-pipe-num::after { background: var(--v4-ai-dim); }
.v4-pipe-item:nth-child(3) .v4-pipe-num { color: var(--v4-geo); }
.v4-pipe-item:nth-child(3) .v4-pipe-num::after { background: var(--v4-geo-dim); }
.v4-pipe-item:nth-child(4) .v4-pipe-num { color: var(--v4-text-2); }
.v4-pipe-item:nth-child(4) .v4-pipe-num::after { background: var(--v4-border-hover); }

.v4-pipe-item h3 {
  font-size: var(--v4-fs-base);
  font-weight: 600;
  color: var(--v4-text);
  margin-bottom: var(--v4-sp-2);
  letter-spacing: -0.01em;
}

.v4-pipe-item p {
  font-size: var(--v4-fs-sm);
  color: var(--v4-text-2);
  line-height: 1.65;
}

/* ============================================================================
   CTA Final -- left-aligned like v3
   ============================================================================ */
.v4-cta {
  padding: var(--v4-sp-32) var(--v4-sp-6);
  position: relative;
  z-index: 1;
}

.v4-cta-inner {
  max-width: var(--v4-max);
  margin: 0 auto;
}

.v4-cta h2 {
  font-size: clamp(var(--v4-fs-2xl), 5vw, var(--v4-fs-4xl));
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--v4-text);
  max-width: 600px;
  margin-bottom: var(--v4-sp-6);
}

.v4-cta h2 .v4-serif {
  color: var(--v4-tech);
  font-weight: 400;
}

.v4-cta p {
  font-size: var(--v4-fs-md);
  color: var(--v4-text-2);
  margin-bottom: var(--v4-sp-10);
  max-width: 400px;
  line-height: 1.6;
}

.v4-cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--v4-sp-3);
  font-size: var(--v4-fs-base);
  font-weight: 600;
  background: var(--v4-text);
  color: var(--v4-bg);
  padding: var(--v4-sp-4) var(--v4-sp-8);
  border-radius: var(--v4-radius);
  transition: opacity var(--v4-dur), transform 100ms ease;
  min-height: 52px;
}

.v4-cta-link:hover {
  opacity: 0.88;
}

.v4-cta-link:active { transform: scale(0.97); }

.v4-cta-link svg {
  transition: transform var(--v4-dur) var(--v4-ease);
}

.v4-cta-link:hover svg {
  transform: translateX(3px);
}

/* ============================================================================
   Footer -- single line
   ============================================================================ */
.v4-footer {
  border-top: 1px solid var(--v4-border);
  padding: var(--v4-sp-8) var(--v4-sp-6);
  position: relative;
  z-index: 1;
}

.v4-footer-inner {
  max-width: var(--v4-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v4-footer-left {
  font-size: var(--v4-fs-xs);
  color: var(--v4-text-3);
  letter-spacing: 0.04em;
}

.v4-footer-right {
  display: flex;
  gap: var(--v4-sp-4);
  font-size: var(--v4-fs-xs);
  color: var(--v4-text-3);
  letter-spacing: 0.02em;
}

.v4-footer-cat {
  display: flex;
  align-items: center;
  gap: var(--v4-sp-2);
}

.v4-footer-cat::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.v4-footer-cat--tech::before { background: var(--v4-tech); }
.v4-footer-cat--ai::before   { background: var(--v4-ai); }
.v4-footer-cat--geo::before  { background: var(--v4-geo); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

/* Tablet -- 1024px */
@media (max-width: 1024px) {
  .v4-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: var(--v4-sp-16);
    gap: var(--v4-sp-12);
  }

  .v4-hero-text {
    padding-bottom: 0;
  }

  .v4-mini-panel {
    transform: none;
    max-width: 480px;
  }

  .v4-mini-panel:hover {
    transform: none;
  }

  .v4-cat {
    grid-template-columns: 6px 1fr;
    gap: var(--v4-sp-3);
    padding: var(--v4-sp-6) 0 var(--v4-sp-6) var(--v4-sp-5);
  }

  .v4-cat-desc {
    grid-column: 2;
  }

  .v4-cat-sources {
    grid-column: 2;
    justify-content: flex-start;
  }
}

/* Tablet small -- 768px */
@media (max-width: 768px) {
  .v4-section {
    padding: var(--v4-sp-16) var(--v4-sp-4);
  }

  .v4-section-heading {
    margin-bottom: var(--v4-sp-10);
  }

  .v4-features {
    grid-template-columns: 1fr;
  }

  .v4-cat {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: var(--v4-sp-2);
  }

  .v4-cat-bar {
    width: 24px;
    height: 2px;
  }

  .v4-cat-name {
    font-size: var(--v4-fs-base);
  }

  .v4-cat-sources {
    justify-content: flex-start;
  }

  .v4-pipeline {
    grid-template-columns: 1fr;
    gap: var(--v4-sp-4);
  }

  .v4-hero {
    padding-top: 100px;
  }
}

/* Mobile -- 480px */
@media (max-width: 480px) {
  .v4-wrap {
    padding: 0 var(--v4-sp-4);
  }

  .v4-hero {
    padding-left: var(--v4-sp-4);
    padding-right: var(--v4-sp-4);
  }

  .v4-hero h1 {
    font-size: clamp(var(--v4-fs-2xl), 9vw, var(--v4-fs-4xl));
  }

  .v4-hero-sub {
    font-size: var(--v4-fs-base);
  }

  .v4-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .v4-feat {
    padding: var(--v4-sp-6) var(--v4-sp-4);
  }

  .v4-cta {
    padding: var(--v4-sp-20) var(--v4-sp-4);
  }

  .v4-cta-link {
    width: 100%;
    justify-content: center;
  }

  .v4-footer-inner {
    flex-direction: column;
    gap: var(--v4-sp-3);
    text-align: center;
  }

  .v4-nav-brand {
    font-size: var(--v4-fs-xs);
  }

  .v4-section {
    padding: var(--v4-sp-16) var(--v4-sp-4);
  }
}

/* -- Reduced motion -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .v4-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .v4-mini-panel {
    transition: none;
  }

  html { scroll-behavior: auto; }
}
