@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-soft: #070807;
  --panel: #171717; /* cardDark */
  --panel-2: #1c1c1c;
  --panel-3: #252525;
  --summary-bg: #2A2A2A; /* summaryCardDarkMode */
  --fg: #f8faf7;
  --muted: #b7beb8;
  --quiet: #838983;
  --line: rgba(255, 255, 255, 0.08); /* cs.onSurface.withValues(alpha: 0.08) */
  --line-strong: rgba(255, 255, 255, 0.15);
  --accent: #ddff00;
  --accent-ink: #121800;
  --blue: #85d7f4;
  --green: #66c86d;
  --red: #f55353;
  --purple: #b765c9;
  --orange: #ff9b05;
  
  /* Macro Colors (from ai_meal_review_screen.dart) */
  --macro-kcal: #E65100;
  --macro-pro: #1565C0;
  --macro-carb: #2E7D32;
  --macro-fat: #BF360C;

  --max: 1180px;
  
  /* Radii from DesignConstants.dart */
  --radius-s: 8px;   /* borderRadiusS */
  --radius-m: 12px;  /* borderRadiusM */
  --radius-l: 19px;  /* borderRadiusL */
  --radius: var(--radius-l);

  --shadow: 0 3px 9px rgba(0, 0, 0, 0.2); /* SummaryCard shadow */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-snappy: 150ms var(--ease);
  
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f8faf7;
  --panel: #F3F3F3; /* cardLight */
  --panel-2: #f9f9f9;
  --panel-3: #f2f2f2;
  --summary-bg: rgba(255, 255, 255, 0.95); /* summaryCardWhiteMode with alpha */
  --fg: #1a1c1a;
  --muted: #5c625d;
  --quiet: #838983;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.15);
  --accent: #d4f200;
  --accent-ink: #121800;
  --shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

/* ─── Global Heading Reset ──────────────────────────────────────────────────
   Explicitly neutralise aggressive browser defaults so all heading elements
   inherit our typography system cleanly, matching the Flutter app baseline. */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

/* ─── Flutter Text-Theme Utility Tokens ─────────────────────────────────────
   Maps directly to Flutter's TextTheme specifications used in the mobile app.
   Apply these to heading-level elements inside widget cards and page sections. */
.title-large {
  font-size: 22px;        /* titleLarge: 22px / 28px / w600 */
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

.title-medium {
  font-size: 16px;        /* titleMedium: 16px / 24px / w600 */
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.body-medium {
  font-size: 14px;        /* bodyMedium: 14px / 20px / w400 */
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}


a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: block;
}

::selection {
  background: rgba(221, 255, 0, 0.32);
  color: var(--fg);
}

.page {
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  opacity: 0.98;
}

.nav-priority {
  background: var(--accent) !important;
  color: var(--accent-ink) !important;
  padding: 6px 14px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
}


.nav {
  width: min(var(--max), calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #050505;
  border: 1px solid rgba(221, 255, 0, 0.34);
  box-shadow: 0 0 28px rgba(221, 255, 0, 0.16);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--fg);
  background: var(--line);
}

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

.control-btn {
  background: none;
  border: 1px solid var(--line);
  color: var(--fg);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease;
}

.control-btn:hover {
  background: var(--line);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 100;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 160ms ease, background 160ms ease;
}

.dropdown-item:hover {
  color: var(--fg);
  background: var(--line);
}

.dropdown-item.is-active {
  color: var(--accent);
  background: rgba(var(--feature-rgb), 0.1);
}

[data-theme="light"] .dropdown-item.is-active {
  color: #8da100;
}

.dropdown-item .check-icon {
  width: 16px;
  height: 16px;
  opacity: 0;
}

.dropdown-item.is-active .check-icon {
  opacity: 1;
}

.control-btn svg {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 140px));
  min-height: min(760px, calc(100svh - 140px));
  padding: 124px 24px 86px;
  display: grid;
  place-items: center;
}

/* Centered Hero for Privacy/Detailed pages */
.hero-split,
.hero-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: auto;
  padding: 160px 24px 80px;
}

.hero-split .hero-content,
.hero-compact .hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 880px;
  width: 100%;
}


.hero-stage {
  --mx: 0;
  --my: 0;
  --scroll: 0;
  position: absolute;
  inset: 72px 0 0;
  width: min(1280px, 100%);
  margin: 0 auto;
  pointer-events: none;
  transform:
    translate3d(calc(var(--mx) * -14px),
      calc((var(--my) * -10px) + (var(--scroll) * 0.08px)), 0);
  transition: transform 250ms ease-out;
  z-index: 0;
}

.device {
  position: absolute;
  aspect-ratio: 1080 / 2340;
  overflow: hidden;
  border-radius: 34px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.4),
    inset 0 0 0 9px rgba(0, 0, 0, 0.86),
    0 0 0 1px rgba(221, 255, 0, 0.08);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transform: scale(1.012);
}

.device-home {
  width: clamp(190px, 24vw, 330px);
  right: clamp(10px, 6vw, 80px);
  top: 24px;
  transform: rotate(7deg);
  opacity: 0.72;
}

.device-workout {
  width: clamp(160px, 19vw, 270px);
  left: clamp(4px, 5vw, 80px);
  top: 98px;
  transform: rotate(-8deg);
  opacity: 0.54;
}

.device-goals {
  width: clamp(140px, 16vw, 230px);
  right: 35%;
  bottom: -58px;
  transform: rotate(-2deg);
  opacity: 0.34;
  filter: saturate(0.9);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
  transform: translateY(calc(var(--hero-copy-scroll, 0) * 0.03px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: var(--radius-s); /* borderRadiusS (8px) for app-feel */
  color: var(--fg);
  background: var(--summary-bg);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 0.83rem;
  font-weight: 700;
}

h1 {
  margin-top: 26px;
  color: var(--fg);
  font-size: 64px; /* displayLarge scaled for website hero */
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-compact h1,
.hero-split h1 {
  font-size: 52px;
}



.hero-statement {
  width: min(840px, 100%);
  margin: 22px auto 0;
  color: var(--fg);
  font-size: 24px; /* headlineLarge */
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}


.hero-copy {
  width: min(690px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-compact .hero-copy,
.hero-split .hero-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--accent-ink);
  background: var(--accent);
  box-shadow: 0 18px 46px rgba(212, 242, 0, 0.2);
}

.button-secondary {
  color: var(--fg);
  background: var(--panel);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--line);
}



/* Theme toggle icons */

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

[data-theme="light"] .control-btn {
    background: var(--line);
}

[data-theme="light"] .sun-icon,
[data-theme="light"] .moon-icon {
  fill: none;
  stroke: currentColor;
}

/* Sections */
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 126px) 0;
}

.section-tight {
  padding-top: clamp(42px, 8vw, 90px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5); /* White-grey in dark mode – neutral, not accent-coloured */
  font-size: 14px; /* labelLarge */
  font-weight: 700;
  letter-spacing: 1px; /* DesignConstants.sectionHeaderLetterSpacing */
  text-transform: uppercase;
}

[data-theme="light"] .section-kicker {
    color: var(--accent-ink);
}

.section-kicker::before {
  display: none; /* Dot indicator removed per design request */
}

.section-heading {
  margin-top: 14px;
  width: min(770px, 100%);
  font-size: 32px; /* displayLarge */
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}



.section-copy {
  width: min(680px, 100%);
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

/* Feature Grid */
.feature-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.intelligence-card,
.deep-dive-card,
.ownership-row,
.open-item {
  background: var(--summary-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 16px; /* DesignConstants.cardPaddingInternal */
  transition: var(--transition-snappy);
  position: relative;
  overflow: hidden;
}

.feature-card:hover,
.intelligence-card:hover,
.deep-dive-card:hover {
  background: color-mix(in srgb, var(--summary-bg), var(--fg) 4%);
}

.feature-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

/* Macro Badges implementation */
.macro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 12px;
}

.macro-badge {
  padding: 2px 6px;
  border-radius: 6px; /* borderRadiusS */
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
}

.macro-badge.kcal { background: rgba(230, 81, 0, 0.1); color: var(--macro-kcal); }
.macro-badge.pro { background: rgba(21, 101, 192, 0.1); color: var(--macro-pro); }
.macro-badge.carb { background: rgba(46, 125, 50, 0.1); color: var(--macro-carb); }
.macro-badge.fat { background: rgba(191, 54, 12, 0.1); color: var(--macro-fat); }


.feature-icon {
  display: none; /* Icons removed entirely — text starts at top of card */
}

.feature-icon svg {
  display: none;
}

.feature-card h3 {
  font-size: 22px;        /* titleLarge – matches Flutter app card headers */
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-card small {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--quiet);
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

/* Policy/Impressum specific shell */
.policy-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 88px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: 20px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.toc-title {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc nav {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 160ms ease, background 160ms ease;
}

.toc a:hover {
  color: var(--fg);
  background: var(--line);
}

.policy-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.last-updated-box {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 12px;
  display: inline-block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.policy-section {
  padding: clamp(26px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  color: var(--fg);
  font-size: 22px;        /* titleLarge – removed erratic fluid scaling */
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.policy-section h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  border-radius: var(--radius-s);
  background: var(--accent);
}

.policy-section p {
  margin-top: 14px;
  color: var(--muted);
}

.policy-section ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.policy-section li {
  position: relative;
  padding: 14px 16px;
  color: var(--muted);
  border-radius: var(--radius-m);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

/* Intelligence Section */
.intelligence-section {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(14px, 4vw, 46px) auto clamp(42px, 8vw, 96px);
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.intelligence-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.intelligence-intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 6px;
}

.intelligence-grid {
  position: relative;
  margin-top: clamp(38px, 6vw, 58px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.intelligence-card {
  min-height: auto; /* Removed fixed height */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius-l);
  background: var(--summary-bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: var(--transition-snappy);
}

.intelligence-card:hover {
  background: color-mix(in srgb, var(--summary-bg), var(--fg) 4%);
}

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

.intelligence-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-s); /* App style */
  color: var(--intel);
  background: rgba(var(--intel-rgb), 0.1);
  border: 1px solid rgba(var(--intel-rgb), 0.2);
  font-size: 11px; /* labelSmall scale */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intelligence-card h3 {
  margin-top: 18px;
  font-size: 22px;        /* titleLarge – harmonised with feature-card h3 */
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.intelligence-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.intelligence-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intelligence-points span {
  padding: 6px 10px;
  border-radius: var(--radius-s); /* App style */
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
}


.ai-phone-preview {
  width: min(330px, 86%);
  margin: clamp(30px, 5vw, 48px) auto 0;
  padding: 9px;
  border-radius: 34px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-2.2deg);
  transition: transform 260ms var(--ease);
}

.intelligence-card:hover .ai-phone-preview {
  transform: translateY(-6px) rotate(-1deg);
}

.guidance-dashboard {
  margin-top: clamp(30px, 5vw, 48px);
  padding: 24px;
  border-radius: var(--radius-l);
  background: var(--summary-bg);
  border: 1px solid var(--line);
}


.guidance-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  color: var(--quiet);
  font-size: 0.85rem;
  font-weight: 750;
}

.guidance-topline strong {
  color: var(--fg);
  font-size: 0.95rem;
}

.guidance-value {
  margin-top: 14px;
  display: flex;
  align-items: end;
  gap: 10px;
  color: var(--accent);
  font-size: 32px; /* displayLarge */
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}


[data-theme="light"] .guidance-value { color: #8da100; }

.guidance-value span {
  margin-bottom: 8px;
  color: var(--quiet);
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  font-weight: 800;
}

.guidance-range {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.guidance-meter {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.guidance-meter span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.guidance-macros {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.guidance-macro {
  padding: 12px;
  border-radius: 15px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.guidance-macro strong {
  display: block;
  color: var(--fg);
  font-size: 1.04rem;
  line-height: 1.1;
}

.guidance-macro span {
  display: block;
  margin-top: 3px;
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.guidance-logic {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.guidance-step {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.95rem;
}

.guidance-step b {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--quiet);   /* Plain muted number — no green badge */
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline;
  text-align: right;
}

/* Privacy Band */
.privacy-band {
  position: relative;
  margin: clamp(28px, 7vw, 80px) 0;
  padding: clamp(66px, 10vw, 128px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}


.privacy-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.privacy-heading {
  margin-top: 14px;
  font-size: 32px; /* displayLarge */
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}



.privacy-copy {
  margin-top: 22px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.ownership-stack {
  display: grid;
  gap: 12px;
}

.ownership-row {
  display: block;
  padding: 20px 24px;    /* horizontal padding so text sits inside the card */
  border-bottom: 1px solid var(--line);
}

.ownership-row:last-child {
  border-bottom: none;
}

.ownership-number {
  display: none;         /* Green number badges removed per design request */
}

.ownership-row h3 {
  font-size: 22px;        /* titleLarge – harmonised token */
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.ownership-row p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Showcase */
.showcase {
  position: relative;
  padding-bottom: clamp(70px, 12vw, 140px);
}

.showcase-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 32px;
  align-items: end;
}

.showcase-note {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.13rem);
  margin-bottom: 6px;
}

.phone-row {
  --row-scroll: 0;
  margin-top: clamp(44px, 7vw, 76px);
  display: grid;
  grid-template-columns: 1fr 0.88fr 0.74fr;
  gap: clamp(16px, 3vw, 38px);
  align-items: center;
  transform: translateY(calc(var(--row-scroll) * -0.035px));
}

.showcase-phone {
  position: relative;
  border-radius: 34px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

.showcase-phone:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.showcase-phone:nth-child(2) {
  transform: translateY(44px);
}

.showcase-phone:nth-child(2):hover {
  transform: translateY(36px);
}

.showcase-phone:nth-child(3) {
  transform: translateY(92px);
}

.showcase-phone:nth-child(3):hover {
  transform: translateY(84px);
}

.screen {
  aspect-ratio: 1080 / 2340;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  color: #fff;
}

.phone-caption strong {
  display: block;
  font-size: clamp(0.98rem, 1.7vw, 1.2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.phone-caption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Open Section */
.open-section {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(42px, 8vw, 100px) auto 0;
  padding: clamp(48px, 8vw, 76px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.open-section h2 {
  margin-top: 12px;
  font-size: 32px; /* displayLarge */
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}



.open-list {
  display: grid;
  gap: 10px;
}

.open-item {
  margin-bottom: 12px;
}


.open-item:first-child {
  /* Removed padding override */
}

.open-item:last-child {
  /* Removed padding override */
}

.open-item h3 {
  font-size: 22px;        /* titleLarge – harmonised token */
  font-weight: 700;
  letter-spacing: 0;
}


.open-item p {
  margin-top: 8px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
}

.footer-links a {
  color: var(--fg);
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.fine-print {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--quiet);
}

/* Utility */
.reveal {
  opacity: 0;
  transition: opacity var(--transition-snappy);
}

.reveal.is-visible {
  opacity: 1;
}

.delay-1, .delay-2, .delay-3 { transition-delay: 0ms; }


@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(18px); opacity: 0.18; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Media Queries */
@media (max-width: 980px) {
  .nav-links a:not(.nav-priority) { display: none; }
  .hero { min-height: min(720px, calc(100vh - 116px)); min-height: min(720px, calc(100svh - 116px)); }
  .device-home { right: -16px; top: 62px; opacity: 0.48; }
  .device-workout { left: -28px; top: 150px; opacity: 0.38; }
  .device-goals { display: none; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intelligence-header, .intelligence-grid { grid-template-columns: 1fr; }
  .intelligence-card { min-height: auto; }
  .privacy-inner, .showcase-header, .open-section { grid-template-columns: 1fr; }
  .phone-row {
    grid-template-columns: repeat(3, minmax(235px, 1fr));
    overflow-x: auto;
    padding: 8px 16px 62px;
    margin-left: -16px;
    margin-right: -16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .phone-row::-webkit-scrollbar { display: none; }
  .showcase-phone { scroll-snap-align: center; }
  .showcase-phone:nth-child(2), .showcase-phone:nth-child(3),
  .showcase-phone:nth-child(2):hover, .showcase-phone:nth-child(3):hover { transform: none; }
  .phone-caption { position: static; margin-top: 12px; }
  .policy-shell { grid-template-columns: 1fr; }
  .toc { position: static; }
}

@media (max-width: 680px) {
  .nav { width: min(100% - 24px, var(--max)); height: 64px; }
  .brand > span:not(.brand-mark) { display: none; }
  .nav-links { font-size: 0.84rem; }
  .nav-links a { padding: 9px 10px; }
  .hero { min-height: min(660px, calc(100vh - 96px)); min-height: min(660px, calc(100svh - 96px)); padding: 92px 16px 62px; }
  h1 { font-size: 40px; } /* displayLarge mobile impact */
  .hero-content { width: min(100%, 340px); }
  .hero-statement { width: min(100%, 330px); font-size: 20px; line-height: 1.2; }
  .hero-copy { width: min(100%, 330px); font-size: 0.98rem; line-height: 1.48; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(320px, 100%); margin-left: auto; margin-right: auto; }
  .button { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 240px; }
  .intelligence-section { width: min(100% - 24px, var(--max)); padding: 46px 0; }
  .intelligence-card { border-radius: var(--radius-l); padding: 22px; }
  .intelligence-card h3 { font-size: 20px; }
  .ai-phone-preview { width: min(268px, 100%); }
  .guidance-dashboard { padding: 18px; }
  .guidance-topline, .guidance-range { flex-direction: column; gap: 5px; }
  .guidance-macros { grid-template-columns: 1fr; }
  .privacy-band { padding: 56px 0; }
  /* .ownership-row no longer uses grid — override removed */
  .phone-row { width: min(320px, 100%); margin: 34px auto 0; padding: 0 0 10px; grid-template-columns: 1fr; gap: 22px; overflow: visible; scroll-snap-type: none; transform: none !important; }
  .showcase-phone { width: 100%; margin: 0; border-radius: 30px; padding: 9px; scroll-snap-align: none; }
  .showcase-phone:hover, .showcase-phone:nth-child(2), .showcase-phone:nth-child(3), .showcase-phone:nth-child(2):hover, .showcase-phone:nth-child(3):hover { transform: none; }
  .showcase-phone .screen { border-radius: 22px; }
  .phone-caption { position: static; margin-top: 10px; padding: 14px; border-radius: 18px; }
  .phone-caption strong { font-size: 1rem; }
  .phone-caption span { font-size: 0.9rem; line-height: 1.42; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-stage, .hero-content, .phone-row { transform: none !important; }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.88rem;
  transition: opacity 180ms ease;
}

[data-theme="light"] .card-link {
  color: #8da100;
}

.card-link:hover {
  opacity: 0.8;
}

.card-link::after {
  content: "→";
}

.button-small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.88rem;
}

.hero-minimal {
  width: min(var(--max), calc(100% - 32px));  /* locked to the same section grid */
  margin: 0 auto;
  padding: clamp(140px, 15vw, 180px) 0 clamp(40px, 5vw, 80px);
  text-align: center;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
}

.info-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.info-item {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.evidence-links {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.evidence-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  font-weight: 700;
  transition: color 180ms ease;
}

.evidence-links a:hover {
  color: var(--accent);
}

.evidence-links a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3E%3C/path%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3E%3C/path%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3E%3C/path%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

/* Algorithmic Transparency & Technical Deep-Dive Styles */
.deep-dive-section {
  margin-top: clamp(48px, 8vw, 84px);
  width: 100%;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .deep-dive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.deep-dive-accordion {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}

.deep-dive-accordion:hover {
  border-color: var(--line-strong);
}

.deep-dive-accordion[open] {
  border-color: rgba(221, 255, 0, 0.35);
  background: var(--panel-2);
  box-shadow: 0 16px 48px rgba(221, 255, 0, 0.04);
}

[data-theme="light"] .deep-dive-accordion[open] {
  border-color: rgba(141, 161, 0, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.deep-dive-accordion summary {
  padding: 24px;
  font-size: 1.28rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.deep-dive-accordion summary::-webkit-details-marker {
  display: none;
}

.deep-dive-accordion summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--quiet);
  transition: transform 240ms var(--ease), color 240ms var(--ease);
}

.deep-dive-accordion[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  color: var(--accent);
}

[data-theme="light"] .deep-dive-accordion[open] summary::after {
  color: #8da100;
}

.deep-dive-content {
  padding: 0 24px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.deep-dive-content h4 {
  margin: 20px 0 8px;
  color: var(--fg);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.deep-dive-content p {
  margin: 0 0 14px;
}

.deep-dive-content ul {
  margin: 8px 0 16px;
  padding-left: 20px;
}

.deep-dive-content li {
  margin-bottom: 8px;
}

.deep-dive-link-container {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.deep-dive-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 750;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 180ms ease, transform 180ms ease;
}

[data-theme="light"] .deep-dive-link {
  color: #8da100;
}

.deep-dive-link:hover {
  transform: translateX(4px);
}

.deep-dive-link::after {
  content: "→";
}

/* Centered Header for Transparency section */
.transparency-header {
  margin-top: clamp(48px, 8vw, 84px);
  margin-bottom: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* Left-aligned like every other section header */
}

.transparency-header .section-heading {
  /* No override needed – inherits standard left alignment */
}

/* deep-dive-card inherits all shared card tokens (background, border, radius, shadow, transition)
   from the combined .feature-card / .intelligence-card / .deep-dive-card rule above.
   Only layout-specific properties are set here. */
.deep-dive-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px;  /* slightly more generous than base 16px for dense content */
}


.deep-dive-card h3 {
  font-size: 22px;        /* titleLarge – harmonised token */
  line-height: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0;
}

.deep-dive-card .deep-dive-intro {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 44px;
}

.deep-dive-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.deep-dive-features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--fg);
  font-weight: 550;
  line-height: 1.4;
}

.deep-dive-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

[data-theme="light"] .deep-dive-features li::before {
  background-color: #8da100; /* tints the SVG mask checkmark in light mode */
}

.deep-dive-card .deep-dive-link-container {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
}
/* Math Styles */
.math-block {
  display: block;
  text-align: center;
  margin: 18px 0;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--fg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.math-block .katex-display {
  margin: 0;
}

.math-inline {
  font-family: "Courier New", Courier, monospace;
  color: var(--fg);
  background: var(--bg-soft);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.95rem;
}

/* Ensure rendered KaTeX inline math scales and scrolls cleanly without breaking layouts */
.katex {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  vertical-align: middle;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.katex::-webkit-scrollbar {
  display: none;
}

.math-var {
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 600;
}

.math-fraction {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
  padding: 0 4px;
  line-height: 1;
}

.math-num {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--fg);
  text-align: center;
  font-size: 0.88rem;
}

.math-den {
  padding-top: 2px;
  text-align: center;
  font-size: 0.88rem;
}

/* Local Pipeline Schema Styles */
.pipeline-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.pipeline-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 180ms ease;
}

.pipeline-step:hover {
  border-color: var(--line-strong);
}

.pipeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  flex-shrink: 0;
}

[data-theme="light"] .pipeline-num {
  background: #8da100;
  color: #ffffff;
}

.pipeline-meta {
  flex-grow: 1;
  min-width: 0;
}

.pipeline-title {
  font-weight: 800;
  color: var(--fg);
  font-size: 0.95rem;
  margin-bottom: 2px;
  overflow-wrap: break-word;
}

.pipeline-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Support Page Styles */
.support-container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 88px;
  max-width: 800px;
}

.support-container h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--fg);
  margin-bottom: 16px;
  text-align: center;
}

.support-container > p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  margin-bottom: 40px;
}

.support-card {
  background: var(--summary-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  transition: var(--transition-snappy);
}

.support-card:hover {
  background: color-mix(in srgb, var(--summary-bg), var(--fg) 4%);
}

.support-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.support-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.support-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 150ms ease;
}

.support-card a:hover {
  text-decoration: underline;
}

[data-theme="light"] .support-card a {
  color: #8da100;
}

.support-meta {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
  margin-top: 32px;
  text-align: center;
}

.support-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.support-meta p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

