/* Shared styles for v2.html + all pillar pages */

@property --shimmer-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg: #0a0a0a;
  --bg-pure: #000000;
  --bg-soft: #141414;
  --bg-dark-section: #000000;
  --text: #f0f0f0;
  --text-muted: #999999;
  --text-dim: #777777;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.22);
  --accent: #5de0e6;
  --accent-dark: #0e7490;
  --blue: #004aad;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ NAV ============ */
nav.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

nav .brand {
  display: flex;
  align-items: center;
}

nav .brand .wordmark {
  height: 40px;
  width: auto;
  display: block;
}

nav .nav-right { display: flex; gap: 8px; align-items: center; }

/* ============ DESKTOP NAV DROPDOWNS (Seven Pillars + Modes) ============ */
nav .nav-dropdowns {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav .nav-dropdown {
  position: relative;
}

nav .nav-dropdown > button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  letter-spacing: -0.005em;
}
nav .nav-dropdown > button:hover,
nav .nav-dropdown.open > button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
nav .nav-dropdown > button .chev {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
nav .nav-dropdown:hover > button .chev,
nav .nav-dropdown.open > button .chev {
  transform: rotate(180deg);
  opacity: 1;
}

nav .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 150;
}
/* Invisible bridge so hover doesn't break when crossing the 6px gap */
nav .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
nav .nav-dropdown:hover .nav-dropdown-menu,
nav .nav-dropdown.open .nav-dropdown-menu {
  display: block;
  animation: nav-dd-pop 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes nav-dd-pop {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

nav .nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.12s ease, background 0.12s ease;
  letter-spacing: -0.005em;
}
nav .nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
nav .nav-dropdown-menu a .num-mini {
  font-size: 11px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  min-width: 18px;
  font-weight: 400;
}

@media (max-width: 820px) {
  nav .nav-dropdowns { display: none; }
}

nav .nav-link {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s ease;
  letter-spacing: -0.005em;
}
nav .nav-link:hover { color: var(--text); }

nav .apply-link {
  font-size: 13px;
  font-weight: 500;
  color: #0a0a0a;
  background: white;
  padding: 8px 18px;
  border: 1px solid white;
  border-radius: 999px;
  transition: all 0.18s ease;
  letter-spacing: -0.01em;
}
nav .apply-link:hover {
  background: #d8d8d8;
  border-color: #d8d8d8;
}

nav .hamburger {
  display: none;
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease;
}
nav .hamburger:hover { background: rgba(0, 0, 0, 0.04); }
nav .hamburger svg { width: 22px; height: 22px; }

@keyframes shimmer-rotate { to { --shimmer-angle: 360deg; } }

/* ============ MOBILE SIDE MENU ============ */
.side-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.side-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: 340px;
  max-width: 88vw;
  background: var(--bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
}
.side-menu.open { transform: translateX(0); }

.side-menu-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.side-menu-header .wordmark {
  height: 32px;
  width: auto;
  display: block;
}

.side-menu .close-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 50%;
  transition: background 0.15s ease;
  cursor: pointer;
}
.side-menu .close-btn:hover { background: var(--bg-soft); }
.side-menu .close-btn svg { width: 20px; height: 20px; }

.side-menu-content {
  flex: 1;
  padding: 12px 0 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.side-menu-content .side-link,
.side-menu-content .side-expandable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease;
  font-family: inherit;
}
.side-menu-content .side-link:hover,
.side-menu-content .side-expandable:hover {
  background: var(--bg-soft);
}

.side-expandable .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.side-expandable.open .chevron { transform: rotate(180deg); }

.side-sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}
.side-sublist.open { max-height: 600px; }

.side-sublist a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px 12px 44px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 0.12s ease, background 0.12s ease;
}
.side-sublist a:hover {
  color: var(--text);
  background: var(--bg-soft);
}

.side-sublist a .num-mini {
  font-size: 12px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  min-width: 18px;
}

.side-link-cta {
  margin: 20px 24px 0;
  background: white !important;
  color: #0a0a0a !important;
  border: 1px solid white !important;
  border-radius: 999px;
  width: calc(100% - 48px) !important;
  justify-content: center !important;
  padding: 13px 24px !important;
  font-size: 16px !important;
  transition: all 0.18s ease;
}
.side-link-cta:hover {
  background: #d8d8d8 !important;
  border-color: #d8d8d8 !important;
}

/* ============ CTA SECTION (shared by main + pillar pages) ============ */
.cta {
  padding: 180px 32px 200px;
  text-align: center;
  background: #000;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(64px, 10vw, 144px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 36px;
  color: white;
  position: relative;
}

.cta p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
  position: relative;
}

.cta-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #0a0a0a;
  background: white;
  padding: 18px 44px;
  border-radius: 999px;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
  position: relative;
}

.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}

/* ============ FOOTER ============ */
footer {
  padding: 36px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
  flex-wrap: wrap;
  gap: 16px;
}

footer .left {
  display: flex;
  align-items: center;
  gap: 14px;
}

footer .left .wordmark {
  height: 28px;
  width: auto;
  display: block;
}

footer .left .sep { color: var(--text-dim); }

footer .links a {
  color: var(--text-dim);
  margin-left: 22px;
  transition: color 0.15s ease;
}
footer .links a:hover { color: var(--text); }

/* ============ PILLAR PAGE STYLES ============ */
.pillar-hero {
  padding: 160px 32px 80px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pillar-hero .crumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pillar-hero h1 {
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 28px;
  color: var(--text);
}

.pillar-hero .tagline {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 700px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.how-section {
  padding: 100px 32px 100px;
  max-width: 980px;
  margin: 0 auto;
}

.how-section h2 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 56px;
  text-align: center;
  color: var(--text);
}

.how-section p {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto 24px;
  letter-spacing: -0.005em;
}

.how-section p strong {
  color: var(--text);
  font-weight: 500;
}

.features-section {
  padding: 120px 32px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.75) 100%),
    url('../radial-sky-blue.jpg') center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-section h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 72px;
  color: var(--text);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Match the real Voxit chat panel exactly — no backdrop-filter, just rgba + shadows */
.feature-card {
  background: rgba(17, 17, 17, 0.82);
  border: none;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============ BLOG ============ */
.blog-section {
  padding: 80px 32px 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-hero {
  padding: 140px 32px 80px;
  text-align: center;
}
.blog-hero h1 {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 18px;
}
.blog-hero .tagline {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text-muted);
  letter-spacing: -0.01em;
  max-width: 620px;
  margin: 0 auto;
}
.blog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.blog-card {
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 224, 230, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.blog-card .meta {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.blog-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}
.blog-card .read-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: -0.005em;
}
@media (max-width: 700px) {
  .blog-list { grid-template-columns: 1fr; }
  .blog-section { padding: 60px 24px 100px; }
  .blog-hero { padding: 120px 24px 60px; }
}

/* Individual blog post reading layout */
.blog-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 32px 120px;
}
.blog-post .crumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.blog-post .crumb a {
  color: var(--text-dim);
  text-decoration: none;
}
.blog-post .crumb a:hover { color: var(--text); }
.blog-post h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}
.blog-post .dek {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin-bottom: 32px;
}
.blog-post .meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.blog-post .meta-row .sep { color: rgba(255, 255, 255, 0.18); }
.blog-post h2 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 18px;
}
.blog-post h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 14px;
}
.blog-post p,
.blog-post li {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
}
.blog-post p { margin-bottom: 20px; }
.blog-post ul,
.blog-post ol {
  margin-bottom: 24px;
  padding-left: 22px;
}
.blog-post li {
  margin-bottom: 10px;
}
.blog-post strong {
  color: var(--text);
  font-weight: 500;
}
.blog-post a {
  color: var(--accent);
  text-decoration: none;
}
.blog-post a:hover { text-decoration: underline; }
.blog-post blockquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-muted);
}
.blog-post .post-cta {
  margin-top: 64px;
  padding: 36px;
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.blog-post .post-cta h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.blog-post .post-cta p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 16px;
}
.blog-post .post-cta a {
  display: inline-block;
  background: white;
  color: #0a0a0a;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease;
}
.blog-post .post-cta a:hover {
  transform: scale(1.04);
  text-decoration: none;
}
@media (max-width: 700px) {
  .blog-post { padding: 80px 24px 80px; }
  .blog-post p, .blog-post li { font-size: 16px; }
}

/* ============ COMPARE PAGES (side-by-side cards) ============ */
.compare-section {
  padding: 80px 32px 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.compare-section h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 56px;
  color: var(--text);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-col {
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.compare-col.voxit {
  border-color: rgba(93, 224, 230, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(93, 224, 230, 0.15), inset 0 0 0 1px rgba(93, 224, 230, 0.05);
}
.compare-col h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.compare-col.voxit h3 { color: var(--accent); }
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-col li {
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.compare-col li:first-child { border-top: none; padding-top: 0; }
.compare-col li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 4px;
}
.compare-col.voxit li::before {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(93, 224, 230, 0.4);
}
.compare-col:not(.voxit) li::before {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.compare-col li.no::before {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.compare-col li.no { color: rgba(255, 255, 255, 0.4); }
@media (max-width: 700px) {
  .compare-section { padding: 60px 24px 80px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col { padding: 28px 24px; }
}

/* Rotating example pill — lives inside features-section under the cards */
.features-section .examples {
  height: 56px;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 56px auto 0;
}

.features-section .example {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(17, 17, 17, 0.82);
  border-radius: 999px;
  padding: 12px 22px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42), 0 2px 6px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: -0.005em;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.features-section .example.active { opacity: 1; }

.features-section .example .mic-mini {
  width: 14px;
  height: 14px;
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .features-section .examples {
    margin-top: 40px;
  }
  .features-section .example {
    font-size: 14px;
    padding: 10px 18px;
    max-width: 90vw;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
}

.more-section {
  padding: 100px 32px 100px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.more-section h3 {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
  font-weight: 500;
}

.more-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  border-left: 1px solid var(--border);
}

.more-pillar {
  padding: 28px 16px;
  text-align: center;
  transition: background 0.15s ease;
  border-right: 1px solid var(--border);
}

.more-pillar:hover { background: rgba(255, 255, 255, 0.04); }

.more-pillar .num-mini {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.more-pillar .name {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

@media (max-width: 820px) {
  nav.topbar { padding: 12px 20px; }
  nav .hamburger { display: flex; }
  nav .apply-link { display: none; }
}

@media (max-width: 700px) {
  .pillar-hero { padding: 110px 24px 60px; min-height: 55vh; }
  .how-section, .features-section, .examples-section, .more-section { padding-left: 24px; padding-right: 24px; }
  nav .brand .wordmark { height: 32px; }
}
