@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --ink-900: #0E1E19;
  --ink-600: #4F6B61;
  --ink-50: #F5F3EF;
  --ink-muted-dark: #A8C4B8;
  --surface-light: #F5F3EF;
  --surface-white: #FFFFFF;
  --surface-dark: #0E1E19;
  --surface-dark-alt: #162B24;
  --brand-fill: #157A5C;
  --brand-text: #126B52;
  --amber-fill: #C47B1A;
  --amber-on-dark: #E8A648;
  --amber-dark-label: #7A4707;
  --nav-h: 64px;
  --max-w: 1120px;
  --radius-card: 4px;
  --radius-input: 2px;
  --radius-pill: 24px;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--surface-light);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.asg-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.asg-section { padding: 80px 0; }
.asg-section--sm { padding: 56px 0; }
.asg-section--lg { padding: 112px 0; }

.asg-bg--dark { background: var(--surface-dark); color: var(--ink-50); }
.asg-bg--dark-alt { background: var(--surface-dark-alt); color: var(--ink-50); }
.asg-bg--light { background: var(--surface-light); color: var(--ink-900); }
.asg-bg--white { background: var(--surface-white); color: var(--ink-900); }

.asg-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text);
  margin-bottom: 12px;
}
.asg-bg--dark .asg-eyebrow,
.asg-bg--dark-alt .asg-eyebrow,
.asg-hero--dark .asg-eyebrow { color: var(--amber-on-dark); }

.asg-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 12px;
}

.asg-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.asg-fade-in.asg-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .asg-fade-in { opacity: 1; transform: none; transition: none; }
}

.asg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.asg-btn--primary {
  background: var(--amber-fill);
  color: var(--ink-900);
  border: 2px solid var(--amber-fill);
}
.asg-btn--primary:hover { background: #b06c14; border-color: #b06c14; }

.asg-btn--outline-dark {
  background: transparent;
  color: var(--ink-900);
  border: 2px solid var(--ink-900);
}
.asg-btn--outline-dark:hover { background: var(--ink-900); color: var(--ink-50); }

.asg-btn--outline-light {
  background: transparent;
  color: var(--ink-50);
  border: 2px solid rgba(245,243,239,0.5);
}
.asg-btn--outline-light:hover { background: rgba(245,243,239,0.1); border-color: var(--ink-50); }

.asg-btn--ghost-on-dark {
  background: transparent;
  color: var(--ink-50);
  border: 2px solid transparent;
}
.asg-btn--ghost-on-dark:hover { color: var(--amber-on-dark); }

.asg-btn--lg { padding: 14px 32px; font-size: 16px; }
.asg-btn--sm { padding: 7px 16px; font-size: 13px; }

.asg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.asg-page--dark-top .asg-nav {
  background: transparent;
}
.asg-page--light-top .asg-nav {
  background: var(--surface-white);
  box-shadow: 0 1px 0 rgba(14,30,25,0.08);
}
.asg-nav.asg-nav--scrolled {
  background: var(--surface-dark) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.asg-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.asg-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.asg-nav__logo img { height: 26px; width: auto; }

.asg-nav__logo .asg-logo-dark { display: none; }
.asg-nav__logo .asg-logo-light { display: block; }

.asg-page--light-top .asg-nav:not(.asg-nav--scrolled) .asg-logo-dark { display: block; }
.asg-page--light-top .asg-nav:not(.asg-nav--scrolled) .asg-logo-light { display: none; }

.asg-nav--scrolled .asg-logo-dark { display: none !important; }
.asg-nav--scrolled .asg-logo-light { display: block !important; }

.asg-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.asg-nav__link {
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  color: var(--ink-50);
}
.asg-page--light-top .asg-nav:not(.asg-nav--scrolled) .asg-nav__link {
  color: var(--ink-900);
}
.asg-nav--scrolled .asg-nav__link { color: var(--ink-50) !important; }
.asg-nav__link:hover { color: var(--amber-on-dark); }
.asg-page--light-top .asg-nav:not(.asg-nav--scrolled) .asg-nav__link:hover { color: var(--brand-text); }

.asg-nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.asg-page--light-top .asg-nav:not(.asg-nav--scrolled) .asg-btn--outline-light {
  color: var(--ink-900);
  border-color: rgba(14,30,25,0.35);
}
.asg-page--light-top .asg-nav:not(.asg-nav--scrolled) .asg-btn--outline-light:hover {
  background: var(--ink-900);
  color: var(--ink-50);
}
.asg-nav--scrolled .asg-btn--outline-light {
  color: var(--ink-50) !important;
  border-color: rgba(245,243,239,0.5) !important;
}

.asg-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.asg-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-50);
  border-radius: 2px;
  transition: all var(--transition);
}
.asg-page--light-top .asg-nav:not(.asg-nav--scrolled) .asg-nav__hamburger span { background: var(--ink-900); }
.asg-nav--scrolled .asg-nav__hamburger span { background: var(--ink-50) !important; }

.asg-nav__hamburger.asg-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.asg-nav__hamburger.asg-active span:nth-child(2) { opacity: 0; }
.asg-nav__hamburger.asg-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.asg-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--surface-dark);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.asg-nav__mobile.asg-open { display: flex; }
.asg-nav__mobile .asg-nav__link { color: var(--ink-50); font-size: 16px; padding: 10px 0; border-bottom: 1px solid rgba(168,196,184,0.15); }
.asg-nav__mobile .asg-nav__link:last-of-type { border-bottom: none; }
.asg-nav__mobile .asg-btn { margin-top: 12px; width: fit-content; }

.asg-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.asg-hero--dark {
  background: var(--surface-dark);
}

.asg-hero--two-col .asg-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.asg-hero__text {}

.asg-hero__headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ink-50);
  margin-bottom: 20px;
  line-height: 1.15;
}

.asg-hero__sub {
  font-size: 18px;
  color: var(--ink-muted-dark);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.65;
}

.asg-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.asg-hero--centered {
  min-height: 480px;
  text-align: center;
}
.asg-hero--centered .asg-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.asg-hero--centered .asg-hero__headline { color: var(--ink-900); margin-bottom: 16px; font-size: clamp(28px, 3.5vw, 44px); }
.asg-hero--centered .asg-hero__sub { color: var(--ink-600); max-width: 600px; margin: 0 auto 32px; }

.asg-hero--dark-centered {
  background: var(--surface-dark);
  text-align: center;
  min-height: 400px;
}
.asg-hero--dark-centered .asg-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.asg-hero--dark-centered .asg-hero__headline { color: var(--ink-50); }
.asg-hero--dark-centered .asg-hero__sub { color: var(--ink-muted-dark); max-width: 600px; margin: 0 auto; }

.asg-mock-panel {
  background: var(--surface-dark-alt);
  border: 1px solid rgba(168,196,184,0.15);
  border-radius: 8px;
  overflow: hidden;
  font-size: 13px;
}

.asg-mock-panel__header {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(168,196,184,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.asg-mock-panel__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted-dark);
}
.asg-mock-panel__badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(21,122,92,0.25);
  color: var(--amber-on-dark);
}

.asg-mock-table { width: 100%; border-collapse: collapse; }
.asg-mock-table th {
  padding: 8px 10px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted-dark);
  border-bottom: 1px solid rgba(168,196,184,0.12);
}
.asg-mock-table td {
  padding: 9px 10px;
  color: var(--ink-50);
  border-bottom: 1px solid rgba(168,196,184,0.07);
  vertical-align: middle;
}
.asg-mock-table tr:last-child td { border-bottom: none; }
.asg-mock-table tr:hover td { background: rgba(168,196,184,0.04); }

.asg-mock__rank {
  font-weight: 700;
  color: var(--amber-on-dark);
  font-size: 12px;
  min-width: 20px;
}
.asg-mock__gene {
  font-weight: 600;
  font-size: 12px;
  font-family: monospace;
  letter-spacing: 0.02em;
}
.asg-mock__score-wrap { display: flex; align-items: center; gap: 6px; }
.asg-mock__score-num { font-size: 12px; font-weight: 600; min-width: 28px; }
.asg-mock__score-bar { flex: 1; height: 4px; background: rgba(168,196,184,0.15); border-radius: 2px; overflow: hidden; min-width: 48px; }
.asg-mock__score-fill { height: 100%; border-radius: 2px; }
.asg-mock__fill--amber { background: var(--amber-on-dark); }
.asg-mock__fill--teal { background: var(--brand-fill); }

.asg-mock__tier {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.asg-mock__tier--1 { background: rgba(232,166,72,0.2); color: var(--amber-on-dark); }
.asg-mock__tier--2 { background: rgba(21,122,92,0.2); color: #5BC9A1; }
.asg-mock__tier--3 { background: rgba(168,196,184,0.12); color: var(--ink-muted-dark); }

.asg-mock__action {
  font-size: 11px;
  color: var(--amber-on-dark);
  font-weight: 600;
  transition: color var(--transition);
}
.asg-mock__action:hover { color: var(--ink-50); }

.asg-detail-card {
  background: var(--surface-white);
  border: 1px solid rgba(14,30,25,0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}
.asg-detail-card__header {
  padding: 20px 24px;
  background: var(--surface-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.asg-detail-card__gene {
  font-family: monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-50);
  letter-spacing: 0.02em;
}
.asg-detail-card__action-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--amber-fill);
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.asg-detail-card__body { padding: 24px; }
.asg-detail-card__scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.asg-detail-score { text-align: center; }
.asg-detail-score__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  margin-bottom: 6px;
}
.asg-detail-score__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}
.asg-detail-score__bar { height: 4px; border-radius: 2px; margin-top: 6px; }
.asg-detail-score__bar--genetic { background: var(--amber-fill); }
.asg-detail-score__bar--functional { background: var(--brand-fill); }
.asg-detail-score__bar--literature { background: var(--ink-600); }

.asg-detail-evidence { margin-top: 16px; }
.asg-detail-evidence__section { margin-bottom: 16px; }
.asg-detail-evidence__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  margin-bottom: 6px;
}
.asg-detail-evidence__text { font-size: 13px; color: var(--ink-900); line-height: 1.5; }
.asg-detail-evidence__bullets { padding-left: 16px; }
.asg-detail-evidence__bullets li { font-size: 13px; color: var(--ink-900); margin-bottom: 4px; list-style: disc; }
.asg-detail-evidence__counts { display: flex; gap: 16px; }
.asg-detail-evidence__count {
  font-size: 13px;
  color: var(--ink-900);
}
.asg-detail-evidence__count strong { color: var(--brand-text); }

.asg-problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.asg-problem__stats { display: flex; flex-direction: column; gap: 32px; }
.asg-problem__stat-item {}
.asg-problem__stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 44px;
  color: var(--amber-dark-label);
  line-height: 1;
  margin-bottom: 6px;
}
.asg-problem__stat-desc {
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.5;
}
.asg-problem__narrative h3 {
  font-size: 22px;
  color: var(--ink-900);
  margin-bottom: 16px;
}
.asg-problem__narrative p {
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.asg-problem__source {
  font-size: 12px;
  color: var(--ink-600);
  font-style: italic;
}

.asg-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: steps;
}
.asg-how__step {
  padding: 40px 32px;
  border-right: 1px solid rgba(168,196,184,0.12);
  position: relative;
}
.asg-how__step:last-child { border-right: none; }
.asg-how__num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 56px;
  color: var(--amber-on-dark);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.asg-how__verb {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  color: var(--ink-50);
  margin-bottom: 12px;
}
.asg-how__desc {
  font-size: 15px;
  color: var(--ink-muted-dark);
  line-height: 1.65;
}

.asg-evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.asg-testimonial {
  background: var(--surface-light);
  border: 1px solid rgba(14,30,25,0.08);
  border-radius: var(--radius-card);
  padding: 28px;
}
.asg-testimonial__quote {
  font-size: 16px;
  color: var(--ink-900);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.asg-testimonial__author { display: flex; flex-direction: column; gap: 2px; }
.asg-testimonial__name { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.asg-testimonial__role { font-size: 13px; color: var(--ink-600); }
.asg-testimonial__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(18,107,82,0.1);
  color: var(--brand-text);
}

.asg-metric-callout {
  background: var(--surface-dark);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
}
.asg-metric-callout__num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 52px;
  color: var(--amber-on-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.asg-metric-callout__desc { font-size: 17px; color: var(--ink-50); margin-bottom: 8px; }
.asg-metric-callout__source { font-size: 12px; color: var(--ink-muted-dark); }

.asg-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.asg-preview__desc h3 { font-size: 26px; color: var(--ink-900); margin-bottom: 16px; }
.asg-preview__desc p { font-size: 15px; color: var(--ink-600); line-height: 1.7; margin-bottom: 12px; }
.asg-preview__legend { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.asg-preview__legend-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-600); }
.asg-preview__legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.asg-section-heading {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 16px;
}
.asg-section-sub {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 600px;
}
.asg-bg--dark .asg-section-sub,
.asg-bg--dark-alt .asg-section-sub { color: var(--ink-muted-dark); }
.asg-bg--light .asg-section-sub,
.asg-bg--white .asg-section-sub { color: var(--ink-600); }
.asg-bg--dark .asg-section-heading,
.asg-bg--dark-alt .asg-section-heading { color: var(--ink-50); }
.asg-bg--light .asg-section-heading,
.asg-bg--white .asg-section-heading { color: var(--ink-900); }

.asg-capability-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.asg-capability {
  background: var(--surface-white);
  border: 1px solid rgba(14,30,25,0.08);
  border-radius: var(--radius-card);
  padding: 28px;
}
.asg-bg--light .asg-capability { background: var(--surface-white); }
.asg-capability__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(21,122,92,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-fill);
  font-size: 18px;
}
.asg-capability__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--ink-900);
  margin-bottom: 10px;
}
.asg-capability__desc { font-size: 15px; color: var(--ink-600); line-height: 1.65; margin-bottom: 12px; }
.asg-capability__metric {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  border-top: 1px solid rgba(14,30,25,0.08);
  padding-top: 12px;
  margin-top: 12px;
}

.asg-data-integration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.asg-data-list { display: flex; flex-direction: column; gap: 12px; }
.asg-data-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(168,196,184,0.07);
  border: 1px solid rgba(168,196,184,0.12);
  border-radius: var(--radius-card);
}
.asg-data-item__icon { color: var(--brand-fill); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.asg-data-item__text { font-size: 14px; color: var(--ink-50); line-height: 1.5; }
.asg-data-item__text strong { color: var(--ink-muted-dark); font-weight: 600; display: block; margin-bottom: 2px; }
.asg-data-notice {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(232,166,72,0.08);
  border: 1px solid rgba(232,166,72,0.2);
  border-radius: var(--radius-card);
  font-size: 13px;
  color: var(--ink-muted-dark);
}
.asg-data-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.asg-data-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asg-scoring-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.asg-scoring-section img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.asg-evidence-tiers { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.asg-tier {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--surface-white);
  border: 1px solid rgba(14,30,25,0.08);
  border-radius: var(--radius-card);
}
.asg-tier--1 { border-left: 3px solid var(--amber-fill); }
.asg-tier--2 { border-left: 3px solid var(--brand-fill); }
.asg-tier--3 { border-left: 3px solid var(--ink-600); }
.asg-tier__num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-900);
  opacity: 0.3;
}
.asg-tier__title { font-family: 'DM Serif Display', Georgia, serif; font-size: 22px; color: var(--ink-900); margin-bottom: 8px; }
.asg-tier__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.asg-tier--1 .asg-tier__label { background: rgba(196,123,26,0.1); color: var(--amber-dark-label); }
.asg-tier--2 .asg-tier__label { background: rgba(18,107,82,0.1); color: var(--brand-text); }
.asg-tier--3 .asg-tier__label { background: rgba(79,107,97,0.1); color: var(--ink-600); }
.asg-tier__desc { font-size: 15px; color: var(--ink-600); line-height: 1.65; }
.asg-tier__sources { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.asg-tier__source-tag {
  font-size: 11px;
  padding: 2px 8px;
  background: var(--surface-light);
  border: 1px solid rgba(14,30,25,0.12);
  border-radius: 3px;
  color: var(--ink-900);
  font-weight: 500;
}

.asg-omics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.asg-omics-card {
  padding: 24px;
  background: var(--surface-white);
  border: 1px solid rgba(14,30,25,0.08);
  border-radius: var(--radius-card);
}
.asg-omics-card__title { font-size: 17px; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; }
.asg-omics-card__desc { font-size: 15px; color: var(--ink-600); line-height: 1.65; }

.asg-validation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.asg-validation-block {}
.asg-validation-block__title { font-size: 17px; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; }
.asg-validation-block__desc { font-size: 15px; color: var(--ink-600); line-height: 1.65; }
.asg-validation-block__caveat {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(196,123,26,0.07);
  border-left: 2px solid var(--amber-fill);
  border-radius: 2px;
  font-size: 13px;
  color: var(--ink-600);
}

.asg-pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}
.asg-pricing-toggle__label { font-size: 15px; font-weight: 500; color: var(--ink-600); }
.asg-pricing-toggle__label.asg-active { color: var(--ink-900); font-weight: 600; }
.asg-pricing-toggle__switch {
  width: 48px;
  height: 26px;
  background: var(--brand-fill);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  flex-shrink: 0;
}
.asg-pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}
.asg-pricing-toggle__switch.asg-annual::after { transform: translateX(22px); }
.asg-pricing-toggle__save {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(18,107,82,0.1);
  color: var(--brand-text);
}

.asg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.asg-pricing-card {
  background: var(--surface-white);
  border: 2px solid rgba(14,30,25,0.1);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  transition: border-color var(--transition);
}
.asg-pricing-card:hover { border-color: rgba(21,122,92,0.3); }
.asg-pricing-card--featured { border-color: var(--brand-fill); }

.asg-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 10px;
  background: var(--brand-fill);
  color: var(--ink-50);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.asg-pricing-card__name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.asg-pricing-card__desc { font-size: 14px; color: var(--ink-600); margin-bottom: 20px; line-height: 1.5; }
.asg-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.asg-pricing-card__amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  color: var(--ink-900);
  line-height: 1;
}
.asg-pricing-card__period { font-size: 14px; color: var(--ink-600); }
.asg-pricing-card__annual-note { font-size: 12px; color: var(--brand-text); font-weight: 600; margin-bottom: 20px; min-height: 18px; }

.asg-pricing-card__divider { height: 1px; background: rgba(14,30,25,0.08); margin: 16px 0; }
.asg-pricing-card__limits { font-size: 13px; color: var(--ink-600); margin-bottom: 16px; line-height: 1.5; }
.asg-pricing-card__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.asg-pricing-card__feature { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--ink-900); line-height: 1.45; }
.asg-pricing-card__feature i { color: var(--brand-fill); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.asg-pricing-card .asg-btn { width: 100%; justify-content: center; }

.asg-faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(14,30,25,0.1); }
.asg-faq__item { border-bottom: 1px solid rgba(14,30,25,0.1); }
.asg-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
  gap: 16px;
  transition: color var(--transition);
}
.asg-faq__trigger:hover { color: var(--brand-text); }
.asg-faq__icon {
  font-size: 14px;
  color: var(--ink-600);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.asg-faq__item.asg-open .asg-faq__icon { transform: rotate(180deg); }
.asg-faq__item.asg-open .asg-faq__trigger { color: var(--brand-text); }
.asg-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.asg-faq__panel.asg-open { max-height: 400px; }
.asg-faq__answer { padding-bottom: 20px; font-size: 15px; color: var(--ink-600); line-height: 1.7; }

.asg-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.asg-team-card { text-align: center; }
.asg-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  font-family: 'DM Serif Display', Georgia, serif;
  margin: 0 auto 16px;
  color: var(--ink-50);
  position: relative;
  overflow: hidden;
}
.asg-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.asg-avatar--jm { background: var(--brand-fill); }
.asg-avatar--pn { background: #3B7A6C; }
.asg-avatar--so { background: #2D5A52; }
.asg-team-card__name { font-family: 'DM Serif Display', Georgia, serif; font-size: 20px; color: var(--ink-900); margin-bottom: 4px; }
.asg-team-card__title { font-size: 13px; font-weight: 600; color: var(--brand-text); margin-bottom: 12px; }
.asg-team-card__bio { font-size: 14px; color: var(--ink-600); line-height: 1.65; }

.asg-location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.asg-location-block__address h3 { font-size: 22px; color: var(--ink-900); margin-bottom: 16px; }
.asg-location-block__address p { font-size: 15px; color: var(--ink-600); line-height: 1.8; }
.asg-location-block__address a { color: var(--brand-text); font-weight: 500; }
.asg-location-block__address a:hover { text-decoration: underline; }
.asg-location-block__context { padding-top: 4px; }
.asg-location-block__context p { font-size: 15px; color: var(--ink-600); line-height: 1.7; }

.asg-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.asg-form { display: flex; flex-direction: column; gap: 16px; }
.asg-form-group { display: flex; flex-direction: column; gap: 6px; }
.asg-form-label { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.asg-form-input,
.asg-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(14,30,25,0.2);
  border-radius: var(--radius-input);
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink-900);
  background: var(--surface-white);
  transition: border-color var(--transition);
  outline: none;
}
.asg-form-input:focus,
.asg-form-textarea:focus { border-color: var(--brand-fill); box-shadow: 0 0 0 3px rgba(21,122,92,0.1); }
.asg-form-textarea { resize: vertical; min-height: 120px; }
.asg-contact-info h3 { font-size: 22px; color: var(--ink-900); margin-bottom: 24px; }
.asg-contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.asg-contact-detail i { color: var(--brand-fill); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.asg-contact-detail__text { font-size: 15px; color: var(--ink-600); line-height: 1.5; }
.asg-contact-detail__text a { color: var(--brand-text); font-weight: 500; }
.asg-contact-detail__text a:hover { text-decoration: underline; }
.asg-contact-response { margin-top: 24px; padding: 14px 16px; background: rgba(18,107,82,0.07); border: 1px solid rgba(18,107,82,0.15); border-radius: var(--radius-card); font-size: 14px; color: var(--ink-600); }
.asg-contact-response strong { color: var(--brand-text); }

.asg-cta-section {
  text-align: center;
  padding: 96px 0;
}
.asg-cta-section .asg-section-heading { color: var(--ink-50); margin-bottom: 16px; }
.asg-cta-section .asg-section-sub { color: var(--ink-muted-dark); max-width: 520px; margin: 0 auto 36px; }
.asg-cta-section__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.asg-cta-section__trust { margin-top: 24px; font-size: 14px; color: var(--ink-muted-dark); }

.asg-blog-header { text-align: center; padding: 80px 0 48px; }
.asg-blog-header .asg-section-heading { font-size: clamp(24px, 3.5vw, 40px); color: var(--ink-900); margin-bottom: 12px; }
.asg-blog-header .asg-section-sub { color: var(--ink-600); margin: 0 auto; }

.asg-featured-card {
  background: var(--surface-white);
  border: 1px solid rgba(14,30,25,0.08);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
}
.asg-featured-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.asg-featured-card__image img { width: 100%; height: 100%; object-fit: cover; }
.asg-featured-card__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.asg-featured-card__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-text);
  margin-bottom: 12px;
}
.asg-featured-card__title { font-family: 'DM Serif Display', Georgia, serif; font-size: 26px; color: var(--ink-900); margin-bottom: 14px; line-height: 1.25; }
.asg-featured-card__excerpt { font-size: 15px; color: var(--ink-600); line-height: 1.65; margin-bottom: 20px; }
.asg-featured-card__meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--ink-600); margin-bottom: 20px; }
.asg-featured-card__read { font-size: 14px; font-weight: 700; color: var(--brand-text); display: inline-flex; align-items: center; gap: 6px; }
.asg-featured-card__read:hover { text-decoration: underline; }

.asg-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.asg-blog-card {
  background: var(--surface-white);
  border: 1px solid rgba(14,30,25,0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.asg-blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(14,30,25,0.1); }
.asg-blog-card__img { aspect-ratio: 16/9; overflow: hidden; }
.asg-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.asg-blog-card:hover .asg-blog-card__img img { transform: scale(1.03); }
.asg-blog-card__body { padding: 20px; }
.asg-blog-card__category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-text);
  margin-bottom: 8px;
}
.asg-blog-card__title { font-family: 'DM Serif Display', Georgia, serif; font-size: 17px; color: var(--ink-900); margin-bottom: 8px; line-height: 1.3; }
.asg-blog-card__excerpt { font-size: 13px; color: var(--ink-600); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.asg-blog-card__meta { display: flex; align-items: center; justify-content: space-between; }
.asg-blog-card__date { font-size: 12px; color: var(--ink-600); }
.asg-blog-card__read { font-size: 12px; font-weight: 700; color: var(--brand-text); }
.asg-blog-card__read:hover { text-decoration: underline; }

.asg-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.asg-article-back:hover { color: var(--ink-900); }
.asg-bg--light .asg-article-back { color: var(--brand-text); }

.asg-article-hero {
  background: var(--surface-light);
  padding: calc(var(--nav-h) + 48px) 0 48px;
}
.asg-article-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.asg-article-hero__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-text);
  margin-bottom: 14px;
}
.asg-article-hero__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--ink-900);
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 800px;
}
.asg-article-hero__meta { display: flex; align-items: center; gap: 20px; font-size: 14px; color: var(--ink-600); }

.asg-article-cover {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 48px;
}
.asg-article-cover figure {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}
.asg-article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
}

.asg-article-body {
  background: var(--surface-white);
  padding: 56px 0;
}
.asg-article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.asg-article-content h2 { font-size: 24px; color: var(--ink-900); margin: 32px 0 14px; }
.asg-article-content h3 { font-size: 20px; color: var(--ink-900); margin: 24px 0 10px; }
.asg-article-content p { font-size: 16px; color: var(--ink-900); line-height: 1.75; margin-bottom: 18px; }
.asg-article-content ul { padding-left: 20px; margin-bottom: 18px; }
.asg-article-content ul li { font-size: 16px; color: var(--ink-900); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.asg-article-content blockquote { border-left: 3px solid var(--brand-fill); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--ink-600); }

.asg-article-cta-band {
  background: var(--surface-light);
  padding: 56px 0;
}
.asg-article-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.asg-article-cta-inner h3 { font-size: 20px; color: var(--ink-900); margin-bottom: 12px; }
.asg-article-cta-inner p { font-size: 15px; color: var(--ink-600); margin-bottom: 20px; }

.asg-footer {
  background: var(--surface-dark);
  color: var(--ink-50);
  padding: 64px 0 0;
}
.asg-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.asg-footer__brand { padding-right: 16px; }
.asg-footer__logo { margin-bottom: 16px; }
.asg-footer__logo img { height: 26px; width: auto; }
.asg-footer__tagline { font-size: 14px; color: var(--ink-muted-dark); line-height: 1.65; }
.asg-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted-dark);
  margin-bottom: 16px;
}
.asg-footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.asg-footer__col-link {
  font-size: 14px;
  color: rgba(245,243,239,0.65);
  transition: color var(--transition);
}
.asg-footer__col-link:hover { color: var(--ink-50); }
.asg-footer__address {
  font-size: 14px;
  color: rgba(245,243,239,0.65);
  line-height: 1.8;
}
.asg-footer__address a { color: rgba(245,243,239,0.65); transition: color var(--transition); }
.asg-footer__address a:hover { color: var(--ink-50); }

.asg-footer__bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(168,196,184,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.asg-footer__copy { font-size: 13px; color: var(--ink-muted-dark); }
.asg-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.asg-footer__legal-link { font-size: 13px; color: var(--ink-muted-dark); transition: color var(--transition); }
.asg-footer__legal-link:hover { color: var(--ink-50); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface-dark-alt);
  border-top: 1px solid rgba(168,196,184,0.15);
  padding: 16px 0;
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 14px; color: var(--ink-muted-dark); flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner__text a { color: var(--ink-50); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.cookie-banner__btn--primary {
  background: var(--amber-fill);
  color: var(--ink-900);
  border-color: var(--amber-fill);
}
.cookie-banner__btn--primary:hover { background: #b06c14; border-color: #b06c14; }
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--ink-50);
  border-color: rgba(245,243,239,0.35);
}
.cookie-banner__btn--secondary:hover { background: rgba(245,243,239,0.08); border-color: var(--ink-50); }

.asg-auth-page {
  min-height: 100vh;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.asg-auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface-white);
  border: 1px solid rgba(14,30,25,0.1);
  border-radius: 8px;
  padding: 40px;
}
.asg-auth-card__logo { text-align: center; margin-bottom: 32px; }
.asg-auth-card__logo img { height: 26px; width: auto; display: inline-block; }
.asg-auth-card__title { font-family: 'DM Serif Display', Georgia, serif; font-size: 24px; color: var(--ink-900); text-align: center; margin-bottom: 28px; }
.asg-auth-card .asg-btn--primary { width: 100%; justify-content: center; }
.asg-auth-card__link-row { text-align: center; margin-top: 16px; font-size: 14px; color: var(--ink-600); }
.asg-auth-card__link-row a { color: var(--brand-text); font-weight: 600; }
.asg-auth-card__link-row a:hover { text-decoration: underline; }
.asg-auth-card__legal { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(14,30,25,0.08); font-size: 12px; color: var(--ink-600); }
.asg-auth-card__legal a { color: var(--ink-600); text-decoration: underline; }

.asg-story-block { max-width: 720px; }
.asg-story-block p { font-size: 17px; color: var(--ink-600); line-height: 1.75; margin-bottom: 20px; }

.asg-subhero {
  background: var(--surface-light);
  padding: calc(var(--nav-h) + 56px) 0 56px;
  text-align: center;
}
.asg-subhero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.asg-subhero__headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--ink-900);
  margin-bottom: 14px;
  line-height: 1.2;
}
.asg-subhero__sub { font-size: 17px; color: var(--ink-600); max-width: 600px; margin: 0 auto 32px; line-height: 1.65; }
.asg-subhero__ornament {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.asg-ornament-dots {
  display: grid;
  grid-template-columns: repeat(7, 12px);
  grid-template-rows: repeat(3, 12px);
  gap: 8px;
  justify-content: center;
}
.asg-ornament-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(21,122,92,0.18);
}
.asg-ornament-dot.asg-dot--brand { background: var(--brand-fill); }
.asg-ornament-dot.asg-dot--amber { background: var(--amber-fill); opacity: 0.5; }

.asg-prose { max-width: 720px; }
.asg-prose h2 { font-size: 26px; color: var(--ink-900); margin: 40px 0 14px; }
.asg-prose h3 { font-size: 20px; color: var(--ink-900); margin: 28px 0 10px; }
.asg-prose p { font-size: 16px; color: var(--ink-600); line-height: 1.75; margin-bottom: 18px; }
.asg-prose ul { padding-left: 20px; margin-bottom: 18px; }
.asg-prose ul li { font-size: 16px; color: var(--ink-600); line-height: 1.7; margin-bottom: 6px; list-style: disc; }

@media (max-width: 1024px) {
  .asg-capability-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .asg-nav__links, .asg-nav__actions { display: none; }
  .asg-nav__hamburger { display: flex; }
  .asg-hero--two-col .asg-hero__inner { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .asg-hero__visual { order: -1; }
  .asg-problem { grid-template-columns: 1fr; gap: 40px; }
  .asg-how { grid-template-columns: 1fr; }
  .asg-how__step { border-right: none; border-bottom: 1px solid rgba(168,196,184,0.12); }
  .asg-how__step:last-child { border-bottom: none; }
  .asg-evidence-grid { grid-template-columns: 1fr; }
  .asg-preview { grid-template-columns: 1fr; gap: 40px; }
  .asg-capability-grid { grid-template-columns: 1fr; }
  .asg-data-integration { grid-template-columns: 1fr; gap: 40px; }
  .asg-scoring-section { grid-template-columns: 1fr; gap: 40px; }
  .asg-omics-grid { grid-template-columns: 1fr; }
  .asg-validation-grid { grid-template-columns: 1fr; }
  .asg-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .asg-team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .asg-location-block { grid-template-columns: 1fr; gap: 32px; }
  .asg-contact-form-row { grid-template-columns: 1fr; gap: 40px; }
  .asg-footer__inner { grid-template-columns: 1fr 1fr; }
  .asg-footer__bottom { flex-direction: column; text-align: center; }
  .asg-featured-card { grid-template-columns: 1fr; }
  .asg-featured-card__image { aspect-ratio: 16/9; }
  .asg-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .asg-detail-card__scores { grid-template-columns: 1fr; gap: 16px; }
  .asg-tier { grid-template-columns: 1fr; }
  .asg-tier__num { display: none; }
}

@media (max-width: 480px) {
  .asg-blog-grid { grid-template-columns: 1fr; }
  .asg-footer__inner { grid-template-columns: 1fr; }
  .asg-hero__headline { font-size: 28px; }
  .asg-detail-card__header { flex-direction: column; gap: 10px; align-items: flex-start; }
}

.asg-auth-form { width: 100%; }

.asg-contact-form-el { width: 100%; }

.asg-price--monthly { display: inline; }
.asg-price--annual { display: none; }

.asg-annual-note {
  font-size: 13px;
  color: var(--ink-600);
  min-height: 18px;
  margin-bottom: 8px;
}

.asg-pricing-toggle__label--monthly,
.asg-pricing-toggle__label--annual {
  transition: color var(--transition);
  color: var(--ink-600);
}
.asg-pricing-toggle__label--monthly.asg-active,
.asg-pricing-toggle__label--annual.asg-active {
  color: var(--ink-900);
  font-weight: 600;
}

.legal-article {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-900);
}

.legal-article h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink-900);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-article h3 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-article p {
  margin-bottom: 1rem;
}

.legal-article ul,
.legal-article ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-article ol { list-style: decimal; }

.legal-article li {
  margin-bottom: 0.4rem;
}

.legal-article section { margin-bottom: 2rem; }

.legal-header { margin-bottom: 2rem; }

.legal-meta {
  font-size: 13px;
  color: var(--ink-600);
  margin-bottom: 0;
}

.legal-link {
  color: var(--brand-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-link:hover { color: var(--brand-fill); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #D9D5CE;
  vertical-align: top;
}

.legal-table th {
  background: var(--surface-light);
  font-weight: 600;
  color: var(--ink-900);
}

.legal-table td { color: var(--ink-900); }

@media (max-width: 640px) {
  .legal-table { display: block; overflow-x: auto; }
}
