/* ============================================================
   KENTO LABS — Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-0: #f8faff;
  --bg-1: #ffffff;
  --bg-2: #f0f4ff;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-strong: rgba(255, 255, 255, 0.9);

  --primary: #1e5edb;
  --primary-dark: #0f3d91;
  --accent: #0ea5e9;
  --accent-light: #7dd3fc;
  --navy: #0f1e36;
  --emerald: #10b981;
  --gold: #f59e0b;

  --grad-primary: linear-gradient(135deg, #0f3d91 0%, #1e5edb 50%, #0ea5e9 100%);
  --grad-blue: linear-gradient(135deg, #1e5edb 0%, #0ea5e9 100%);
  --grad-text: linear-gradient(135deg, #0f1e36, #1e5edb);

  --text-primary: #0f1e36;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --border: #e2e8f0;
  --border-hover: #cbd5e1;

  --nav-height: 94px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-glow-blue: 0 0 60px rgba(30, 94, 219, 0.15);
  --shadow-card: 0 12px 30px rgba(15, 30, 54, 0.05);
  --shadow-nav: 0 4px 20px rgba(15, 30, 54, 0.03);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-0);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.05em;
}

.grad-text-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.05em;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 80px 0;
}

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

/* ── Navigation ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

nav.scrolled {
  background: rgba(248, 250, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #000;
  letter-spacing: -0.03em;
}

.nav-logo-name span {
  color: #000;
}

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

.nav-links a {
  display: block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--bg-2);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--bg-2);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Language Picker ─────────────────────────────────────────── */
.lang-picker {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.lang-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--bg-2);
}

.lang-chevron {
  transition: transform 0.2s ease;
}

.lang-picker.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(15, 30, 54, 0.1);
  padding: 6px;
  min-width: 130px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-picker.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 9px 14px;
  border: none;
  background: transparent;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font-family: inherit;
}

.lang-option:hover {
  background: var(--bg-2);
  color: var(--primary);
}

.lang-option.active {
  color: var(--navy);
  font-weight: 700;
  background: var(--bg-2);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(15, 30, 54, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 30, 54, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-blue {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30, 94, 219, 0.15);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 94, 219, 0.25);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-xl {
  padding: 16px 42px;
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(30, 94, 219, 0.3);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ── Glass Card ─────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-blue {
  background: rgba(30, 94, 219, 0.08);
  border: 1px solid rgba(30, 94, 219, 0.2);
  color: var(--primary);
}

.badge-navy {
  background: rgba(15, 30, 54, 0.05);
  border: 1px solid rgba(15, 30, 54, 0.1);
  color: var(--navy);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--gold);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--emerald);
}

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

/* ── Orbs / Background Glows ───────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
}

.orb-blue {
  background: var(--primary);
}

.orb-navy {
  background: var(--navy);
}

.orb-gold {
  background: var(--gold);
}

/* ── Grid Utilities ─────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Page Sections (shown/hidden) ───────────────────────────── */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero .subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* Hero visual: floating phone mockup */
.hero-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  pointer-events: none;
  z-index: 1;
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.4;
  padding-bottom: 0.3em;
  margin-bottom: 4px;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Feature Cards ──────────────────────────────────────────── */
.feature-card {
  padding: 32px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── How It Works ───────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  padding: 36px;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ── Logo Ticker ─────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-1), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-1), transparent);
}

.ticker {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-hover);
  flex-shrink: 0;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 145, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 1px solid rgba(15, 61, 145, 0.1);
  border-radius: inherit;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Pricing-style Cards ─────────────────────────────────────── */
.pricing-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(30, 94, 219, 0.2);
  background: rgba(30, 94, 219, 0.03);
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-0);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 94, 219, 0.1);
}

select.form-input {
  appearance: none;
  cursor: pointer;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 20px 0 8px;
}

.pricing-features {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Format showcase ─────────────────────────────────────────── */
.format-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.format-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(30, 94, 219, 0.15), 0 12px 40px rgba(15, 30, 54, 0.1);
}

@keyframes cardGlowPulse {
  0% {
    box-shadow: 0 0 0px rgba(30, 94, 219, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(30, 94, 219, 0.25);
  }

  100% {
    box-shadow: 0 0 24px rgba(30, 94, 219, 0.15);
  }
}

.format-card:hover {
  animation: cardGlowPulse 0.5s ease forwards;
}

.format-preview {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-info {
  padding: 24px;
  background: var(--bg-1);
}

.format-info h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.format-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ── Metrics Panel ───────────────────────────────────────────── */
.metrics-panel {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-1);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.metric-bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--bg-glass-strong);
  border-radius: 100px;
  overflow: hidden;
}

.metric-bar {
  height: 100%;
  border-radius: 100px;
  width: 0;
  /* starts at 0; JS animates to target width */
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
  min-width: 100px;
}

.metric-value {
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 50px;
  text-align: right;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-0);
}

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

.footer-copy {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-linkedin {
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-linkedin:hover {
  color: var(--primary);
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-12px) rotate(1deg);
  }

  66% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}

.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* Stagger delay utilities for cascaded entry */
.stagger-1 {
  animation-delay: 0.05s;
}

.stagger-2 {
  animation-delay: 0.15s;
}

.stagger-3 {
  animation-delay: 0.28s;
}

.stagger-4 {
  animation-delay: 0.42s;
}

.stagger-5 {
  animation-delay: 0.56s;
}

/* Scroll-reveal: hidden until IntersectionObserver fires */
.scroll-reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal.stagger-1 {
  transition-delay: 0.0s;
}

.scroll-reveal.stagger-2 {
  transition-delay: 0.12s;
}

.scroll-reveal.stagger-3 {
  transition-delay: 0.24s;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual {
    width: 340px;
    right: -40px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-visual {
    display: none;
  }

  .grid-2,
  .grid-3,
  .format-showcase {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .cta-banner {
    padding: 48px 24px;
  }
}