/* ═══════════════════════════════════════════════════════════
   NodeScale Design System — style.css
   Inspired by Claude.ai × Figma.com
   ═══════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Brand */
  --orange: #FF5500;
  --orange-hover: #E04D00;
  --orange-light: #FFF6F0;

  /* Backgrounds */
  --canvas: #FAF8F5;
  --surface: #FFFFFF;
  --surface-alt: #F3F0EB;
  --dark-surface: #1C1917;

  /* Text */
  --text-heading: #1C1917;
  --text-body: #57534E;
  --text-muted: #A8A29E;
  --text-on-dark: #F5F5F4;
  --text-on-dark-muted: #A8A29E;

  /* Borders & Utility */
  --border: #E7E5E4;
  --divider: #D6D3D1;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04), 0 4px 16px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 2px 4px rgba(28, 25, 23, 0.06), 0 8px 32px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 4px 8px rgba(28, 25, 23, 0.06), 0 16px 48px rgba(28, 25, 23, 0.08);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-gap: 160px;
  --section-pad: 100px;
  --container-max: 1140px;
  --content-max: 720px;
  --card-pad: 40px;
  --gap: 24px;
  --side-pad: 24px;

  /* Radius */
  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-sm: 8px;

  /* Nav */
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--canvas);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange-hover);
}

ul, ol {
  list-style: none;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  max-width: var(--content-max);
}

.overline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.body-large {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-body);
}

.text-muted {
  color: var(--text-muted);
  font-size: 15px;
}

/* ─── Layout ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section-center {
  text-align: center;
}

.section-center p {
  margin-left: auto;
  margin-right: auto;
}

.section--canvas { background-color: var(--canvas); }
.section--surface { background-color: var(--surface); }
.section--alt { background-color: var(--surface-alt); }
.section--warm { background-color: var(--orange-light); }
.section--dark { background-color: var(--dark-surface); }

.grid {
  display: grid;
  gap: var(--gap);
}

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--orange);
  color: #FFFFFF !important;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
}

.btn--primary:hover {
  background-color: var(--orange-hover);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 85, 0, 0.25);
}

.btn--secondary {
  background-color: transparent;
  color: var(--text-heading);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--divider);
}

.btn--secondary:hover {
  background-color: var(--surface-alt);
  border-color: var(--text-muted);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text-body);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}

.btn--ghost:hover {
  background-color: var(--surface-alt);
  color: var(--text-heading);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo img {
  height: 33px;
  width: auto;
}

.nav__logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

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

.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-heading);
  background-color: var(--surface-alt);
}

.nav__cta {
  margin-left: 16px;
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-menu .nav__link {
  padding: 12px 16px;
  font-size: 17px;
}

.nav__mobile-menu .btn--primary {
  margin-top: 8px;
  text-align: center;
}

/* ─── Cards ─── */
.card {
  background-color: var(--surface);
  border-radius: var(--radius-card);
  padding: var(--card-pad);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.card__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ─── Hero ─── */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: var(--section-pad);
  background-color: var(--canvas);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.12) 0%, rgba(250, 248, 245, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero .body-large {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 19px;
  line-height: 1.65;
}

.hero .btn-group {
  justify-content: center;
  margin-bottom: 56px;
}

/* ─── Hero Visual Pipeline (Clickable System Blueprint) ─── */
a.hero__pipeline {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  max-width: 960px;
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.3s ease;
}

a.hero__pipeline:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255, 85, 0, 0.16);
  transform: translateY(-4px);
}

a.hero__pipeline:hover .hero__pipeline-cta {
  background-color: var(--orange);
  color: #FFFFFF;
}

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

.hero__pipeline-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}

.hero__pipeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

.node-card {
  background: var(--canvas);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.node-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.node-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.node-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.node-card__desc {
  font-size: 12px;
  color: var(--text-muted);
}

.hero__stats-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  background: var(--surface-alt);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.stat-pill svg {
  color: var(--orange);
}

/* ─── Steps / How It Works ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.step__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ─── Testimonials ─── */
.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 32px;
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--orange);
  font-family: Georgia, serif;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.3;
}

.testimonial__author {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
}

.testimonial__role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── FAQ Accordion ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-heading);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  font-size: 24px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
  padding: 120px 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin: 0 auto 40px;
}

/* ─── Footer ─── */
.footer {
  background-color: var(--dark-surface);
  padding: 80px 0 40px;
  color: var(--text-on-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand p {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}

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

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-on-dark);
}

.footer__col h4 {
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--text-on-dark);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 14px;
  color: var(--text-on-dark-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__bottom-links a:hover {
  color: var(--text-on-dark);
}

/* ─── Demo / Video Section ─── */
.demo__video {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.demo__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.demo__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface-alt), var(--canvas));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* ─── Scroll Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Section Header (overline + h2 + p combo) ─── */
.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
}

/* ─── Pricing ─── */
.pricing-card {
  background-color: var(--surface);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border: 2px solid var(--orange);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.pricing-card__price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__features li {
  font-size: 15px;
  color: var(--text-body);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

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

/* ─── Page Header (for inner pages) ─── */
.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  text-align: center;
  background-color: var(--canvas);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  margin: 0 auto;
  font-size: 20px;
}

/* ─── Contact Form ─── */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-heading);
  background-color: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  :root {
    --section-gap: 100px;
    --section-pad: 72px;
    --card-pad: 32px;
  }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* Hero Pipeline Tablet */
  .hero__nodes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero__stats-bar {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
    --card-pad: 24px;
    --side-pad: 16px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Navigation mobile */
  .nav__links {
    display: none;
  }

  .nav__cta.desktop-only {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 36px);
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  /* Hero Pipeline Mobile */
  a.hero__pipeline {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .hero__pipeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .hero__nodes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .node-card {
    padding: 16px 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .node-card__icon {
    margin: 0;
    flex-shrink: 0;
  }

  .hero__stats-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .stat-pill {
    justify-content: center;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  /* Responsive Table Container */
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-card);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: 24px;
  }

  .hero .body-large {
    font-size: 16px;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .page-header p {
    font-size: 16px;
  }
}
