:root {
  --page-bg: #f5f2ff;
  --page-gradient:
    radial-gradient(1200px 600px at -20% -20%, rgba(189, 168, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 120% -10%, rgba(158, 134, 230, 0.14), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 10px, rgba(225, 212, 250, 0.08) 10px 20px),
    #f5f2ff;
  --surface-0: rgba(255, 255, 255, 0.86);
  --surface-1: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.6);
  --surface-contrast: #241b3f;
  --border: rgba(86, 70, 125, 0.12);
  --border-strong: rgba(86, 70, 125, 0.2);
  --text: #241b3f;
  --text-soft: #6b6190;
  --text-subtle: #988ebc;
  --text-on-dark: #f7f4ff;
  --accent: #bda8ff;
  --accent-soft: rgba(189, 168, 255, 0.22);
  --accent-strong: #8f72e7;
  --accent-gradient: linear-gradient(135deg, #bda8ff 0%, #a892ff 45%, #8f72e7 100%);
  --neutral-gradient: linear-gradient(145deg, rgba(112, 94, 150, 0.1), rgba(255, 255, 255, 0));
  --hero-gradient:
    radial-gradient(900px 600px at 5% -10%, rgba(189, 168, 255, 0.28), transparent 60%),
    radial-gradient(700px 500px at 100% 0%, rgba(148, 124, 224, 0.18), transparent 55%),
    linear-gradient(160deg, #221b3a 0%, #352a4f 100%);
  --shadow-soft: 0 32px 70px rgba(67, 57, 96, 0.14);
  --shadow-header: 0 20px 45px rgba(67, 57, 96, 0.12);
  --shadow-card: 0 30px 60px rgba(143, 114, 231, 0.16);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', 'Poppins', 'Inter', sans-serif;
}

[data-theme="dark"] {
  --page-bg: #191430;
  --page-gradient:
    radial-gradient(900px 520px at 10% -20%, rgba(197, 181, 255, 0.24), transparent 60%),
    radial-gradient(800px 460px at 120% -10%, rgba(146, 120, 228, 0.2), transparent 60%),
    repeating-linear-gradient(45deg, rgba(69, 55, 111, 0.4) 0 12px, rgba(48, 38, 76, 0.4) 12px 24px),
    #191430;
  --surface-0: rgba(30, 23, 54, 0.76);
  --surface-1: rgba(33, 25, 57, 0.92);
  --surface-2: rgba(33, 25, 57, 0.6);
  --surface-contrast: rgba(17, 13, 32, 0.94);
  --border: rgba(204, 196, 238, 0.22);
  --border-strong: rgba(204, 196, 238, 0.28);
  --text: #f7f4ff;
  --text-soft: #d2caee;
  --text-subtle: #b7aedf;
  --text-on-dark: #f7f4ff;
  --accent: #cdbdff;
  --accent-soft: rgba(205, 189, 255, 0.22);
  --accent-strong: #8f72e7;
  --accent-gradient: linear-gradient(135deg, #cdbdff 0%, #a892ff 55%, #8f72e7 100%);
  --neutral-gradient: linear-gradient(145deg, rgba(206, 196, 238, 0.14), rgba(30, 23, 54, 0));
  --hero-gradient:
    radial-gradient(920px 640px at 5% -10%, rgba(197, 181, 255, 0.28), transparent 65%),
    radial-gradient(760px 600px at 100% 0%, rgba(146, 120, 228, 0.26), transparent 60%),
    linear-gradient(160deg, #18122f 0%, #261d43 100%);
  --shadow-soft: 0 32px 70px rgba(9, 6, 18, 0.65);
  --shadow-header: 0 20px 45px rgba(14, 10, 25, 0.58);
  --shadow-card: 0 26px 60px rgba(24, 16, 45, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--page-gradient);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.container,
.shell {
  width: min(var(--max-width), 100% - 48px);
  margin: 0 auto;
}

.muted {
  color: var(--text-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}

/* Header / navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--surface-0);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-header);
}

.nav-bar,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand,
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  font-family: var(--font-display);
}

.brand img,
.logo img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 12px 20px rgba(79, 70, 229, 0.25));
}

.brand strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.site-nav .nav-links {
  display: flex;
  gap: 18px;
}

.site-nav a[data-navlink] {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a[data-navlink]:hover {
  color: var(--text);
  background: var(--accent-soft);
  text-decoration: none;
}

.site-nav a[data-navlink].active {
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.2);
}

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

.site-nav > button {
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav > button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(101, 78, 55, 0.18);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  background: var(--surface-1);
  color: var(--text);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(101, 78, 55, 0.2);
}

.btn:focus-visible {
  outline: 3px solid rgba(189, 168, 255, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-on-dark);
  border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(143, 114, 231, 0.32);
}

.btn-secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text-soft);
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  background: var(--hero-gradient);
  color: var(--text-on-dark);
  padding: clamp(82px, 13vw, 140px) 0 clamp(72px, 12vw, 120px);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 480px at 70% 10%, rgba(255, 255, 255, 0.08), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero .lead {
  margin: 0;
  font-size: clamp(18px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}

.hero-actions .btn-ghost {
  border-color: rgba(248, 250, 252, 0.4);
  color: rgba(248, 250, 252, 0.88);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.metric {
  padding: 16px;
  background: rgba(53, 40, 30, 0.35);
  border-radius: var(--radius-md);
  border: 1px solid rgba(223, 198, 166, 0.25);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px rgba(223, 198, 166, 0.12);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.78);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(85, 62, 42, 0.55);
}

.hero-card {
  background: rgba(33, 25, 20, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(189, 168, 255, 0.28);
  padding: 24px;
  color: rgba(253, 246, 238, 0.92);
  display: grid;
  gap: 18px;
}

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

.hero-card__badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(189, 168, 255, 0.22);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(253, 246, 238, 0.88);
}

.hero-card__trend {
  font-size: 28px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.hero-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(223, 198, 166, 0.18);
  font-size: 14px;
}

.hero-card__row:last-child {
  border-bottom: 0;
}

.hero-card__row span:last-child {
  color: rgba(189, 168, 255, 0.9);
}

.hero-floating {
  position: absolute;
  right: -12px;
  bottom: -22px;
  width: clamp(180px, 40vw, 240px);
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(40, 30, 24, 0.82);
  border: 1px solid rgba(189, 168, 255, 0.35);
  color: rgba(253, 246, 238, 0.9);
  box-shadow: 0 24px 60px rgba(85, 62, 42, 0.55);
}

.hero-floating strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.hero-floating ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(249, 236, 221, 0.82);
}

.hero-floating li {
  display: flex;
  justify-content: space-between;
}

/* Sections */
.section {
  position: relative;
  padding: clamp(68px, 10vw, 100px) 0;
}

.section.is-muted {
  background: var(--surface-0);
  backdrop-filter: blur(16px);
}

.section.is-contrast {
  background: var(--surface-contrast);
  color: var(--text-on-dark);
}

.section-title {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(30px, 5vw, 42px);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.section-title p {
  margin: 0;
  max-width: 620px;
  color: var(--text-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.feature-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: 0;
  background: var(--neutral-gradient);
  opacity: 0.7;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 0;
  font-size: 20px;
  font-family: var(--font-display);
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

.feature-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
}

.stat-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-1);
  display: grid;
  gap: 10px;
}

.stat-block strong {
  font-size: 32px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.stat-block span {
  color: var(--text-soft);
  font-size: 14px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 46px);
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: url('/assets/img/dashboard-preview.jpg') center/cover no-repeat, var(--surface-1);
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(79, 61, 45, 0.1), transparent);
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  gap: 6px;
  padding-left: 20px;
  border-left: 2px solid var(--accent-soft);
}

.timeline strong {
  font-family: var(--font-display);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-1);
  display: grid;
  gap: 16px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 600;
}

.cta-panel {
  margin-top: clamp(48px, 8vw, 72px);
  padding: clamp(36px, 6vw, 54px);
  border-radius: calc(var(--radius-lg) + 6px);
  background: var(--accent-gradient);
  color: var(--text-on-dark);
  display: grid;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(143, 114, 231, 0.32);
}

.cta-panel p {
  margin: 0;
  color: rgba(248, 250, 252, 0.78);
}

.cta-panel .btn {
  align-self: start;
  background: rgba(44, 33, 26, 0.85);
  border: 1px solid rgba(253, 246, 238, 0.26);
  color: var(--text-on-dark);
  box-shadow: none;
}

/* Page variants */
.page-hero {
  padding: clamp(86px, 10vw, 120px) 0 clamp(54px, 7vw, 82px);
  background: var(--hero-gradient);
  color: var(--text-on-dark);
  text-align: left;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.5vw, 48px);
  font-family: var(--font-display);
}

.page-hero p {
  margin: 0;
  max-width: 640px;
  color: rgba(226, 232, 240, 0.76);
  font-size: 19px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 32px);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.plan-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  border: 1px solid var(--border);
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border: 1px solid rgba(79, 70, 229, 0.4);
  box-shadow: 0 30px 60px rgba(79, 70, 229, 0.22);
}

.plan-card .plan-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
}

.plan-price {
  font-size: 28px;
  font-family: var(--font-display);
  margin: -4px 0 8px;
}

.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.plan-card ul li {
  display: flex;
  gap: 10px;
}

.plan-card ul li::before {
  content: '+';
  color: var(--accent);
}

.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list-check li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
}

.list-check li::before {
  content: '+';
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}

.content-card {
  padding: 26px;
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

.contact-card {
  padding: clamp(28px, 5vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  border: 1px solid var(--border);
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow-card);
}

.contact-card strong {
  font-size: 18px;
  font-family: var(--font-display);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-card {
  padding: clamp(28px, 5vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  border: 1px solid var(--border);
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid .span-2 {
  grid-column: 1 / -1;
}

.form-card label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.form-card input,
.form-card textarea,
.form-card select {
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

.form-card input:focus-visible,
.form-card textarea:focus-visible,
.form-card select:focus-visible {
  outline: none;
  border-color: rgba(79, 70, 229, 0.45);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.thankyou {
  padding: clamp(80px, 12vw, 120px) 0;
  text-align: center;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.thankyou .badge {
  background: var(--accent-soft);
  color: var(--accent);
}

.thankyou h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 48px);
  font-family: var(--font-display);
}

.thankyou p {
  margin: 0;
  max-width: 560px;
  color: var(--text-soft);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(44, 33, 26, 0.95) 0%, rgba(28, 20, 15, 1) 100%);
  color: var(--text-on-dark);
  padding: clamp(64px, 8vw, 90px) 0 clamp(28px, 5vw, 36px);
  margin-top: clamp(64px, 10vw, 120px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand span {
  color: rgba(247, 244, 255, 0.75);
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a {
  color: rgba(247, 244, 255, 0.78);
  font-weight: 500;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-cta {
  display: grid;
  gap: 12px;
}

.fineprint {
  margin-top: clamp(32px, 6vw, 42px);
  color: rgba(148, 163, 184, 0.66);
  font-size: 14px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin: 0 auto;
    max-width: 460px;
  }
  .hero-floating {
    position: static;
    width: auto;
    margin-top: 18px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid,
  .plan-grid,
  .testimonial-grid,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: absolute;
    right: 24px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface-1);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 18px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .site-nav.open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav .nav-links,
  .site-nav .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav a[data-navlink] {
    justify-content: center;
  }
  .site-nav > button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .feature-grid,
  .plan-grid,
  .testimonial-grid,
  .grid-2,
  .grid-3,
  .stat-grid,
  .hero-metrics,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 78px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .section {
    padding: 56px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container,
  .shell {
    width: calc(100% - 32px);
  }
  .hero-card {
    padding: 20px;
  }
  .hero-card__row {
    font-size: 12px;
  }
  .nav-toggle {
    padding: 10px 14px;
  }
  .btn {
    width: 100%;
  }
  .chip-list {
    gap: 8px;
  }
}
