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

:root {
  color-scheme: light;
  --aya-bg: #f6f7fb;
  --aya-bg-elevated: #ffffff;
  --aya-surface: #ffffff;
  --aya-surface-2: #f1f3f9;
  --aya-surface-3: #e9edf5;
  --aya-text: #111827;
  --aya-text-soft: #4f596b;
  --aya-text-muted: #677184;
  --aya-line: rgba(17, 24, 39, 0.08);
  --aya-line-strong: rgba(17, 24, 39, 0.14);
  --aya-brand: #005f6d;
  --aya-brand-strong: #004b57;
  --aya-brand-soft: rgba(15, 118, 110, 0.10);
  --aya-brand-deep-lagoon: #005f6d;
  --aya-danger: #b42318;
  --aya-warning: #b54708;
  --aya-success: #067647;
  --aya-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --aya-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --aya-shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
  --aya-radius-sm: 12px;
  --aya-radius-md: 18px;
  --aya-radius-lg: 24px;
  --aya-header-bg: rgba(255, 255, 255, 0.82);
  --aya-backdrop: blur(18px);
  --site-max: 1240px;
  --content-max: 760px;
}

html[data-theme='dark'] {
  color-scheme: dark;
  --aya-bg: #121416;
  --aya-bg-elevated: #171a1d;
  --aya-surface: #1b1f23;
  --aya-surface-2: #23282e;
  --aya-surface-3: #2b3138;
  --aya-text: #eef2f6;
  --aya-text-soft: #c2c9d2;
  --aya-text-muted: #8f98a3;
  --aya-line: rgba(255, 255, 255, 0.07);
  --aya-line-strong: rgba(255, 255, 255, 0.12);
  --aya-brand: #1f5a64;
  --aya-brand-strong: #2f6f78;
  --aya-brand-soft: rgba(31, 90, 100, 0.16);
  --aya-brand-deep-lagoon: #003841;
  --aya-danger: #ff7b72;
  --aya-warning: #f0b36a;
  --aya-success: #4ade80;
  --aya-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.24);
  --aya-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.34);
  --aya-shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.44);
  --aya-header-bg: rgba(18, 20, 22, 0.78);
  --aya-backdrop: blur(18px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--aya-bg);
  color: var(--aya-text);
  font-family: var(--aya-font-ui, 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: var(--aya-brand);
  text-decoration: none;
}

a:hover {
  color: var(--aya-brand-strong);
}

::selection {
  background: var(--aya-brand-soft);
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(0, 95, 109, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  z-index: -1;
}

html[data-theme='dark'] .page-bg {
  background:
    radial-gradient(circle at top center, rgba(103, 232, 214, 0.028), transparent 32%),
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.035), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.site-shell {
  width: min(calc(100% - 32px), var(--site-max));
  margin: 0 auto;
  padding: 88px 0 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid var(--aya-line);
  background: var(--aya-header-bg);
  backdrop-filter: var(--aya-backdrop);
  -webkit-backdrop-filter: var(--aya-backdrop);
}

.site-header-inner {
  width: min(calc(100% - 32px), var(--site-max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0;
}

.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--aya-text);
  flex: 0 0 auto;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  animation: none;
}

html[data-theme='dark'] .brand-mark {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 50% 50%, rgba(103, 232, 214, 0.18), rgba(103, 232, 214, 0.10) 45%, rgba(0, 95, 109, 0.36) 70%, rgba(0, 95, 109, 0.74) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #ffffff;
  transform: translateX(0.08em);
  text-transform: uppercase;
}

.brand-word {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  color: var(--aya-text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  color: var(--aya-text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 0 2px;
  border-top: 1px solid var(--aya-line);
  margin-left: 0;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--aya-text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--aya-text);
  background: var(--aya-brand-soft);
  border-color: var(--aya-line);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.theme-toggle {
  appearance: none;
  border: 1px solid var(--aya-line-strong);
  background: var(--aya-surface);
  color: var(--aya-text);
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--aya-shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--aya-brand);
}

.theme-toggle-icon {
  position: absolute;
  font-size: 16px;
  line-height: 1;
  transition: opacity 160ms ease, transform 160ms ease;
}

.theme-toggle-sun {
  opacity: 1;
  transform: scale(1);
}

.theme-toggle-moon {
  opacity: 0;
  transform: scale(0.7);
}

html[data-theme='dark'] .theme-toggle-sun {
  opacity: 0;
  transform: scale(0.7);
}

html[data-theme='dark'] .theme-toggle-moon {
  opacity: 1;
  transform: scale(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-panel,
.surface-card,
.kpi-card,
.note-card,
.module-card,
.update-card,
.download-card,
.timeline-card,
.quote-card {
  background: var(--aya-surface);
  border: 1px solid var(--aya-line);
  border-radius: var(--aya-radius-lg);
  box-shadow: var(--aya-shadow-md);
}

.hero-panel {
  padding: 36px;
}

.hero-panel.hero-emphasis {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(0, 95, 109, 0.08), rgba(15, 118, 110, 0.03) 55%, transparent 100%),
    var(--aya-surface);
}

html[data-theme='dark'] .hero-panel.hero-emphasis {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(103, 232, 214, 0.035), rgba(0, 95, 109, 0.045) 46%, transparent 82%),
    var(--aya-surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aya-brand-strong);
  background: var(--aya-brand-soft);
  border: 1px solid var(--aya-line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 14px;
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 18ch;
  margin: 0 0 16px;
  color: var(--aya-text-soft);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: var(--content-max);
  color: var(--aya-text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--aya-brand-deep-lagoon);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: var(--aya-shadow-sm);
}

.button-primary:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--aya-surface);
  color: var(--aya-text);
  border: 1px solid var(--aya-line-strong);
}

.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--aya-brand);
}

.button-ghost {
  background: transparent;
  color: var(--aya-text-soft);
  border: 1px solid var(--aya-line);
}

.hero-side {
  display: grid;
  gap: 16px;
}

.signal-stack {
  display: grid;
  gap: 14px;
}

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

.kpi-card,
.note-card {
  padding: 20px;
}

.kpi-value {
  color: var(--aya-text);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 8px;
}

.kpi-label {
  color: var(--aya-text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.note-card h3,
.surface-card h2,
.surface-card h3,
.module-card h3,
.update-card h3,
.download-card h3,
.timeline-card h3,
.quote-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.note-card p,
.surface-card p,
.surface-card li,
.module-card p,
.update-card p,
.download-card p,
.timeline-card p,
.timeline-card li,
.quote-card p {
  margin: 0;
  color: var(--aya-text-soft);
  font-size: 15px;
  line-height: 1.68;
}

.stack-lg {
  display: grid;
  gap: 28px;
}

.stack-md {
  display: grid;
  gap: 20px;
}

.surface-card,
.quote-card {
  padding: 28px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.section-kicker {
  color: var(--aya-brand-strong);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-lead {
  max-width: 68ch;
  color: var(--aya-text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.module-card,
.update-card,
.download-card,
.timeline-card {
  padding: 22px;
}

.module-card ul,
.surface-card ul,
.timeline-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.module-card li + li,
.surface-card li + li,
.timeline-card li + li {
  margin-top: 8px;
}

.module-label,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--aya-surface-2);
  border: 1px solid var(--aya-line);
  color: var(--aya-text-soft);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.status-pill.is-brand {
  background: var(--aya-brand-soft);
  color: var(--aya-brand-strong);
}

.status-pill.is-warm {
  background: rgba(181, 71, 8, 0.10);
  color: var(--aya-warning);
}

.status-pill.is-safe {
  background: rgba(6, 118, 71, 0.10);
  color: var(--aya-success);
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--aya-text-soft);
  font-size: 15px;
  line-height: 1.66;
}

.feature-dot {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--aya-brand);
  flex: 0 0 auto;
}

.timeline {
  display: grid;
  gap: 16px;
  position: relative;
}

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--aya-brand), transparent);
}

.download-card.is-empty {
  border-style: dashed;
  background: var(--aya-surface-2);
}

.callout {
  border-left: 3px solid var(--aya-brand);
  padding-left: 14px;
  color: var(--aya-text-soft);
}

.page-footer {
  margin-top: 32px;
  margin-bottom: 24px;
}

.site-footer {
  background: var(--aya-surface);
  border: 1px solid var(--aya-line);
  border-radius: var(--aya-radius-lg);
  box-shadow: var(--aya-shadow-sm);
  padding: 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

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

.footer-nav,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-meta a,
.footer-meta span,
.footer-brand p {
  color: var(--aya-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand p {
  margin: 0;
  max-width: 34ch;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--aya-line);
  margin: 8px 0;
}

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

.hero-visual {
  min-height: 100%;
  display: grid;
  align-items: stretch;
}

.visual-stage {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(0, 95, 109, 0.06), rgba(15, 118, 110, 0.03) 58%, transparent 100%),
    var(--aya-surface);
  border: 1px solid var(--aya-line);
  border-radius: var(--aya-radius-lg);
  box-shadow: var(--aya-shadow-lg);
  padding: 28px;
  overflow: hidden;
}

html[data-theme='dark'] .visual-stage {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(103, 232, 214, 0.03), rgba(0, 95, 109, 0.04) 56%, transparent 100%),
    var(--aya-surface);
}

.visual-stage::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 95, 109, 0.08), rgba(0, 95, 109, 0) 70%);
  pointer-events: none;
}

.visual-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.visual-browser {
  background: var(--aya-bg-elevated);
  border: 1px solid var(--aya-line);
  border-radius: 20px;
  box-shadow: var(--aya-shadow-md);
  overflow: hidden;
}

.visual-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--aya-line);
  background: var(--aya-surface-2);
}

.visual-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--aya-line-strong);
}

.visual-browser-dot.is-brand {
  background: var(--aya-brand);
}

.visual-browser-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.visual-block {
  min-height: 68px;
  border-radius: 16px;
  background: var(--aya-surface-2);
  border: 1px solid var(--aya-line);
}

.visual-block.is-large {
  min-height: 136px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.visual-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visual-chip {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--aya-brand-soft);
  border: 1px solid var(--aya-line);
  color: var(--aya-brand-strong);
  font-size: 13px;
  font-weight: 600;
}

.meta-line {
  color: var(--aya-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.page-hero-note {
  color: var(--aya-text-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 14px;
}

.text-block > * + * {
  margin-top: 14px;
}

.text-block p,
.text-block li {
  color: var(--aya-text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.text-block ul {
  margin: 0;
  padding-left: 18px;
}

@keyframes ayaPulse {
  0% {
    transform: scale(1);
    opacity: 0.90;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.90;
  }
}

@media (max-width: 1120px) {
  .site-header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-nav {
    margin-left: 0;
  }

  .header-actions {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--site-max));
    padding-top: 76px;
  }

  .hero-panel,
  .surface-card,
  .quote-card,
  .module-card,
  .update-card,
  .download-card,
  .timeline-card,
  .note-card,
  .kpi-card {
    padding: 22px;
  }

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

  .hero-title {
    max-width: none;
  }

  .hero-lead {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    width: min(calc(100% - 20px), var(--site-max));
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--site-max));
    padding-bottom: 28px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-title {
    font-size: 38px;
  }

  .section-title {
    font-size: 30px;
  }

  .visual-stage {
    min-height: 340px;
    padding: 20px;
  }
}

/* foundation patch: header controls, mobile nav, reduced motion */
.nav-toggle {
  appearance: none;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--aya-line-strong);
  background: var(--aya-surface);
  color: var(--aya-text);
  box-shadow: var(--aya-shadow-sm);
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--aya-brand);
}

.nav-toggle-label {
  font-size: 14px;
  font-weight: 600;
}

.brand-mark-image {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform-origin: 50% 50%;
  animation: ayaLogoPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(0, 95, 109, 0.12));
}

.hero-panel .brand-mark {
  width: 84px;
  height: 84px;
}

.hero-panel .brand-mark-text {
  font-size: 18px;
  letter-spacing: 0.18em;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-top: 6px;
    margin-left: 0;
    padding: 12px;
    border: 1px solid var(--aya-line);
    border-radius: var(--aya-radius-md);
    background: var(--aya-surface);
    box-shadow: var(--aya-shadow-md);
  }

  .site-nav[data-open='true'] {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 14px;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand-mark {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

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

.screenshot-card {
  background: var(--aya-surface);
  border: 1px solid var(--aya-line);
  border-radius: var(--aya-radius-lg);
  box-shadow: var(--aya-shadow-md);
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--aya-surface-2);
}

.screenshot-card-body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 10px;
}

.screenshot-card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.screenshot-card-body p {
  margin: 0;
  color: var(--aya-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

.surface-card,
.module-card,
.note-card,
.quote-card {
  position: relative;
  overflow: hidden;
}

.surface-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 15px;
  line-height: 1;
  color: var(--aya-text-muted);
  opacity: 0.58;
  pointer-events: none;
}

.surface-card h3,
.module-card h3,
.note-card h3,
.quote-card h3 {
  max-width: calc(100% - 36px);
}

.icon-memory .surface-icon,
.note-memory .surface-icon {
  color: rgba(0, 95, 109, 0.72);
}

.icon-family .surface-icon {
  color: rgba(123, 132, 150, 0.86);
}

.icon-docs .surface-icon {
  color: rgba(17, 24, 39, 0.48);
}

.icon-health .surface-icon {
  color: rgba(6, 118, 71, 0.72);
}

.icon-home .surface-icon {
  color: rgba(128, 90, 42, 0.62);
}

.icon-context .surface-icon,
.note-context .surface-icon {
  color: rgba(0, 95, 109, 0.62);
}

.icon-trust .surface-icon,
.note-trust .surface-icon {
  color: rgba(181, 71, 8, 0.66);
}

.icon-heritage .surface-icon {
  color: rgba(93, 63, 211, 0.58);
}


html[data-theme='dark'] .icon-memory .surface-icon,
html[data-theme='dark'] .note-memory .surface-icon,
html[data-theme='dark'] .icon-context .surface-icon,
html[data-theme='dark'] .note-context .surface-icon {
  color: rgba(103, 232, 214, 0.72);
}

html[data-theme='dark'] .icon-trust .surface-icon,
html[data-theme='dark'] .note-trust .surface-icon {
  color: rgba(247, 178, 103, 0.78);
}

html[data-theme='dark'] .icon-health .surface-icon {
  color: rgba(74, 222, 128, 0.78);
}

html[data-theme='dark'] .icon-docs .surface-icon,
html[data-theme='dark'] .icon-family .surface-icon,
html[data-theme='dark'] .icon-home .surface-icon,
html[data-theme='dark'] .icon-heritage .surface-icon {
  color: rgba(237, 242, 255, 0.45);
}

/* PTM FINAL SHELL POLISH */
:root {
  --aya-font-ui: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
--aya-font-heading: "Geist", "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
--aya-font-premium: var(--aya-font-ui);
}

body {
  font-family: var(--aya-font-premium);
}

.site-shell {
  padding-top: 118px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: none;
}

.site-header-inner {
  width: min(calc(100% - 32px), var(--site-max));
  min-height: 74px;
  margin: 0 auto;
  display: block;
  padding: 14px 0 10px;
}

.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-nav-shell {
  position: sticky;
  top: 84px;
  z-index: 39;
  width: 100%;
  border-top: 1px solid var(--aya-line);
  border-bottom: 1px solid var(--aya-line);
  background: color-mix(in srgb, var(--aya-bg-elevated) 82%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav-inner {
  width: min(calc(100% - 32px), var(--site-max));
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  flex-wrap: wrap;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0) 27%),
    radial-gradient(circle at 50% 50%, rgba(0,95,109,0.08), rgba(0,95,109,0.18) 42%, rgba(0,95,109,0.86) 72%, rgba(0,75,87,1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.40),
    0 14px 28px rgba(0,95,109,0.22);
  border: 1px solid rgba(255,255,255,0.30);
  animation: ayaPulseSoft 3.8s ease-in-out infinite;
}

html[data-theme='dark'] .brand-mark {
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.28), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 50% 50%, rgba(103,232,214,0.18), rgba(103,232,214,0.16) 44%, rgba(0,95,109,0.50) 72%, rgba(0,95,109,0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 14px 30px rgba(0,0,0,0.36);
}

.brand-mark-text {
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

@keyframes ayaPulseSoft {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.40),
      0 14px 28px rgba(0,95,109,0.22);
  }
  50% {
    transform: scale(1.045);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.44),
      0 16px 34px rgba(0,95,109,0.28);
  }
}

.theme-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  min-height: 44px;
  border-radius: 999px;
}

.theme-toggle-icon {
  font-size: 16px;
  line-height: 1;
}



@media (max-width: 1120px) {
  .site-shell {
    padding-top: 122px;
  }

  .site-nav-shell {
    top: 84px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding-top: 112px;
  }

  .site-header-inner {
    padding: 12px 0 8px;
  }

  .site-nav-shell {
    top: 80px;
  }

  .site-nav-inner {
    width: min(calc(100% - 20px), var(--site-max));
  }
}

.ask-aya-section {
  margin-top: 8px;
}

.home-ask-aya-section .section-heading {
  margin-bottom: 8px;
}

.ask-aya-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--aya-surface);
  border: 1px solid var(--aya-line);
  border-radius: var(--aya-radius-lg);
  box-shadow: var(--aya-shadow-md);
}

.ask-aya-topline {
  display: grid;
  gap: 10px;
}

.ask-aya-note {
  margin: 0;
  color: var(--aya-text-soft);
  font-size: 15px;
  line-height: 1.66;
}

.ask-aya-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ask-aya-chip {
  appearance: none;
  border: 1px solid var(--aya-line-strong);
  background: var(--aya-surface-2);
  color: var(--aya-text);
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.ask-aya-chip:hover {
  transform: translateY(-1px);
  border-color: var(--aya-brand);
  color: var(--aya-text);
}

.ask-aya-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.ask-aya-field {
  display: grid;
  gap: 8px;
}

.ask-aya-label {
  color: var(--aya-text-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

/* PUBLIC SHELL CONSOLIDATED FINAL */
.site-header {
  z-index: 60 !important;
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-header-inner {
  padding-top: 8px !important;
  padding-bottom: 4px !important;
  margin-bottom: 0 !important;
  gap: 0 !important;
}

.site-header-top {
  min-height: 58px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-nav-shell {
  position: sticky !important;
  top: 74px !important;
  z-index: 55 !important;
  margin-top: 4px !important;
  border-top: 1px solid var(--aya-line) !important;
  border-bottom: 1px solid var(--aya-line) !important;
  background: color-mix(in srgb, var(--aya-header-bg) 92%, transparent) !important;
  backdrop-filter: var(--aya-backdrop) !important;
  -webkit-backdrop-filter: var(--aya-backdrop) !important;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.10) !important;
}

.site-nav-inner {
  width: min(calc(100% - 32px), var(--site-max)) !important;
  margin: 0 auto !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  margin-top: 0 !important;
}

.site-nav {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  margin: 0 !important;
  border-top: 0 !important;
  min-height: 0 !important;
  gap: 8px !important;
}

.site-header .brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.site-header .brand-mark {
  width: 48px !important;
  height: 48px !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform-origin: 50% 50% !important;
  animation: ayaLogoBreath 3.2s ease-in-out infinite !important;
}

.site-header .brand-mark-image {
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  box-shadow: none !important;
  transform-origin: 50% 50% !important;
  filter: drop-shadow(0 0 0 rgba(31, 164, 174, 0)) drop-shadow(0 0 0 rgba(255, 153, 34, 0)) !important;
  animation: ayaLogoPulse 3.2s ease-in-out infinite !important;
}

html[data-theme='dark'] .site-header .brand-mark-image {
  filter: drop-shadow(0 0 0 rgba(31, 164, 174, 0)) drop-shadow(0 0 0 rgba(255, 153, 34, 0)) !important;
  box-shadow: none !important;
}

.site-header .brand-word {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  margin-left: 0px !important;
}

.site-header .brand-wordmark-image,
.site-header .brand-wordmark-svg {
  display: none !important;
}


.site-header .brand-subtitle {
  display: none !important;
}

/* NON-HEADER BRAND LOCKUP NORMALIZATION */
.visual-panel > .brand-lockup,
.site-footer .brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  align-self: start !important;
  justify-self: start !important;
  gap: 12px !important;
  width: fit-content !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.visual-panel > .brand-lockup .brand-mark,
.site-footer .brand-lockup .brand-mark {
  width: 48px !important;
  height: 48px !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform-origin: 50% 50% !important;
  animation: ayaLogoBreath 3.2s ease-in-out infinite !important;
}

.visual-panel > .brand-lockup .brand-mark-image,
.site-footer .brand-lockup .brand-mark-image {
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  box-shadow: none !important;
  transform-origin: 50% 50% !important;
  filter: drop-shadow(0 0 0 rgba(31, 164, 174, 0)) drop-shadow(0 0 0 rgba(255, 153, 34, 0)) !important;
  animation: ayaLogoPulse 3.2s ease-in-out infinite !important;
}

html[data-theme='dark'] .visual-panel > .brand-lockup .brand-mark-image,
html[data-theme='dark'] .site-footer .brand-lockup .brand-mark-image {
  filter: drop-shadow(0 0 0 rgba(31, 164, 174, 0)) drop-shadow(0 0 0 rgba(255, 153, 34, 0)) !important;
  box-shadow: none !important;
}

.visual-panel > .brand-lockup .brand-word,
.site-footer .brand-lockup .brand-word {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  margin: 0 !important;
}

.visual-panel > .brand-lockup .brand-wordmark-image,
.visual-panel > .brand-lockup .brand-wordmark-svg,
.site-footer .brand-lockup .brand-wordmark-image,
.site-footer .brand-lockup .brand-wordmark-svg {
  display: none !important;
}


.visual-panel > .brand-lockup .brand-subtitle,
.site-footer .brand-lockup .brand-subtitle {
  display: none !important;
}

@media (max-width: 900px) {
  .visual-panel > .brand-lockup,
  .site-footer .brand-lockup {
    gap: 10px !important;
  }

  .visual-panel > .brand-lockup .brand-mark,
  .visual-panel > .brand-lockup .brand-mark-image,
  .site-footer .brand-lockup .brand-mark,
  .site-footer .brand-lockup .brand-mark-image {
    width: 44px !important;
    height: 44px !important;
  }

  .visual-panel > .brand-lockup .brand-title,
  .site-footer .brand-lockup .brand-title {
    font-size: 21px !important;
  }
}

@media (max-width: 640px) {
  .visual-panel > .brand-lockup .brand-mark,
  .visual-panel > .brand-lockup .brand-mark-image,
  .site-footer .brand-lockup .brand-mark,
  .site-footer .brand-lockup .brand-mark-image {
    width: 38px !important;
    height: 38px !important;
  }

  .visual-panel > .brand-lockup .brand-title,
  .site-footer .brand-lockup .brand-title {
    font-size: 18px !important;
  }
}

/* HOME HERO / NAV TUNE */
.home-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr) !important;
  gap: 16px !important;
  align-items: start !important;
  margin-top: -48px !important;
  margin-bottom: 12px !important;
}

.home-hero-panel {
  padding: 20px !important;
  height: 100% !important;
}

/* FIX H1 — NO MID-WORD BREAKS */
.home-hero-panel .hero-title {
  margin: 8px 0 8px !important;
  max-width: 16ch !important;
  font-size: clamp(26px, 2.6vw, 38px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;

  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.home-hero-panel .hero-lead {
  max-width: 34ch !important;
  margin: 0 0 8px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.home-hero-panel .hero-copy {
  max-width: 62ch !important;
  font-size: 13px !important;
  line-height: 1.52 !important;
}

.home-hero-panel .hero-actions {
  margin-top: 12px !important;
  gap: 10px !important;
}

/* RIGHT COLUMN — ALIGN */
.home-hero-side {
  display: grid !important;
  gap: 10px !important;
  align-content: start !important;
}

.home-hero .signal-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.home-hero-side .kpi-card,
.home-hero-side .note-card {
  padding: 16px !important;
  min-height: 0 !important;
}

/* tighten cards */
.home-hero-side .note-card h3 {
  margin-bottom: 8px !important;
  font-size: 15px !important;
}

.home-hero-side .note-card p,
.home-hero-side .note-card li {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.home-hero-status-card {
  padding: 16px !important;
}

/* MOBILE SAFE */
@media (max-width: 1120px) {
  .home-hero {
    grid-template-columns: 1fr !important;
    margin-top: -12px !important;
  }

  .home-hero-panel .hero-title {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .home-hero-panel,
  .home-hero-side .kpi-card,
  .home-hero-side .note-card {
    padding: 18px !important;
  }

  .home-hero-panel .hero-title {
    font-size: 30px !important;
    line-height: 1.06 !important;
  }
}
/* /HOME HERO / NAV TUNE */


/* NO MID-WORD BREAKS ON PUBLIC HEADINGS */
.hero-title,
.section-title,
.note-card h3,
.surface-card h2,
.surface-card h3,
.module-card h3,
.update-card h3,
.download-card h3,
.timeline-card h3,
.quote-card h3,
.screenshot-card-body h3 {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.hero-title,
.section-title {
  text-wrap: pretty !important;
}

@media (max-width: 640px) {
  .hero-title,
  .section-title,
  .note-card h3,
  .surface-card h2,
  .surface-card h3,
  .module-card h3,
  .update-card h3,
  .download-card h3,
  .timeline-card h3,
  .quote-card h3,
  .screenshot-card-body h3 {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}
/* /NO MID-WORD BREAKS ON PUBLIC HEADINGS */


/* INTERNAL PAGES BALANCE PASS */
.site-shell > .hero:not(.home-hero):not(.product-hero) {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
  margin-top: -52px !important;
  margin-bottom: 16px !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-panel {
  padding: 24px !important;
  min-height: 0 !important;
  height: auto !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title {
  margin: 10px 0 10px !important;
  max-width: 34ch !important;
  width: 100% !important;
  font-size: clamp(24px, 2.1vw, 34px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-lead {
  max-width: 58ch !important;
  margin: 0 0 10px !important;
  font-size: 15px !important;
  line-height: 1.56 !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-copy {
  max-width: 82ch !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-actions,
.site-shell > .hero:not(.home-hero):not(.product-hero) .inline-actions {
  margin-top: 16px !important;
  gap: 10px !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .button-primary,
.site-shell > .hero:not(.home-hero):not(.product-hero) .button-secondary,
.site-shell > .hero:not(.home-hero):not(.product-hero) .button-ghost {
  min-height: 42px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side {
  display: grid !important;
  gap: 12px !important;
  align-content: start !important;
  align-self: stretch !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side .note-card,
.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side .surface-card,
.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side .timeline-card,
.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side .download-card,
.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side .update-card {
  padding: 18px !important;
  min-height: 0 !important;
  height: auto !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side h3 {
  margin: 0 0 12px !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side p,
.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side li {
  font-size: 14px !important;
  line-height: 1.52 !important;
}

.site-shell > .stack-md {
  gap: 16px !important;
  margin-top: 32px !important;
}

.site-shell > .stack-md:first-of-type,
.site-shell > .hero + .stack-md {
  margin-top: 32px !important;
}

.site-shell .section-heading {
  gap: 8px !important;
  margin-bottom: 0 !important;
  max-width: none !important;
}

.site-shell .section-kicker {
  margin-bottom: 0 !important;
}

.site-shell .section-title {
  max-width: none !important;
  width: 100% !important;
  font-size: clamp(24px, 2.9vw, 40px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance !important;
}

.site-shell .section-lead {
  max-width: 68ch !important;
  font-size: 16px !important;
  line-height: 1.62 !important;
}

.site-shell .grid-2,
.site-shell .grid-3,
.site-shell .screenshot-grid,
.site-shell .footer-grid {
  align-items: stretch !important;
}

.site-shell .grid-2 > *,
.site-shell .grid-3 > *,
.site-shell .screenshot-grid > * {
  min-height: 0 !important;
}

.site-shell .surface-card,
.site-shell .note-card,
.site-shell .timeline-card,
.site-shell .download-card,
.site-shell .update-card,
.site-shell .screenshot-card {
  padding: 20px !important;
}

.site-shell .surface-card h2,
.site-shell .surface-card h3,
.site-shell .note-card h2,
.site-shell .note-card h3,
.site-shell .timeline-card h3,
.site-shell .download-card h3,
.site-shell .update-card h3,
.site-shell .screenshot-card h3 {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance !important;
}

.site-shell .surface-card p,
.site-shell .note-card p,
.site-shell .timeline-card p,
.site-shell .download-card p,
.site-shell .update-card p,
.site-shell .screenshot-card p,
.site-shell li {
  font-size: 15px !important;
  line-height: 1.58 !important;
}

@media (max-width: 1120px) {
  .site-shell > .hero:not(.home-hero):not(.product-hero) {
    grid-template-columns: 1fr !important;
    margin-top: -8px !important;
  }

  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title,
  .site-shell .section-title {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-panel,
  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side .note-card,
  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-side .surface-card,
  .site-shell .surface-card,
  .site-shell .note-card,
  .site-shell .timeline-card,
  .site-shell .download-card,
  .site-shell .update-card,
  .site-shell .screenshot-card {
    padding: 18px !important;
  }

  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title {
  width: 100% !important;
    font-size: 29px !important;
    line-height: 1.08 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .site-shell .section-title {
    font-size: 29px !important;
    line-height: 1.08 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .site-shell .surface-card h2,
  .site-shell .surface-card h3,
  .site-shell .note-card h2,
  .site-shell .note-card h3,
  .site-shell .timeline-card h3,
  .site-shell .download-card h3,
  .site-shell .update-card h3,
  .site-shell .screenshot-card h3 {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}
/* /INTERNAL PAGES BALANCE PASS */


/* INTERNAL HERO SIDE GRID BALANCE */
.site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-areas:
    "card1 card2"
    "card3 card3" !important;
  grid-auto-rows: 1fr !important;
  gap: 12px !important;
  align-items: stretch !important;
  align-content: start !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card:nth-child(1) {
  grid-area: card1 !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card:nth-child(2) {
  grid-area: card2 !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card:nth-child(3):last-child {
  grid-area: card3 !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card:only-child {
  grid-column: 1 / -1 !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card {
  display: grid !important;
  align-content: start !important;
  align-self: stretch !important;
  height: 100% !important;
  min-height: 0 !important;
}

@media (max-width: 1120px) {
  .site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "card1"
      "card2"
      "card3" !important;
    grid-auto-rows: auto !important;
  }

  .site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card:nth-child(3):last-child,
  .site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card:only-child {
    grid-column: auto !important;
  }

  .site-shell > .hero:not(.home-hero):not(.product-hero):not(.manifesto-hero) .hero-side > .note-card {
    height: auto !important;
  }
}
/* /INTERNAL HERO SIDE GRID BALANCE */








@media (prefers-reduced-motion: reduce) {
  .visual-panel > .brand-lockup .brand-mark,
  .visual-panel > .brand-lockup .brand-mark-image,
  .visual-panel > .brand-lockup .brand-title,
  .site-footer .brand-lockup .brand-mark,
  .site-footer .brand-lockup .brand-mark-image,
  .site-footer .brand-lockup .brand-title {
    animation: none !important;
    transform: none !important;
  }
}
/* /NON-HEADER BRAND LOCKUP NORMALIZATION */

@keyframes ayaLogoBreath {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-0.5px) scale(1.03);
  }
}

@keyframes ayaLogoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.97;
    filter: drop-shadow(0 0 0 rgba(31, 164, 174, 0)) drop-shadow(0 0 0 rgba(255, 153, 34, 0));
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(31, 164, 174, 0.28)) drop-shadow(0 0 18px rgba(255, 153, 34, 0.24));
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 900px) {
  .site-header-inner {
    padding-top: 2px !important;
    gap: 2px !important;
  }

  .site-nav-shell {
    top: 62px !important;
    margin-top: -1px !important;
  }

  .site-header .brand-lockup {
    gap: 10px !important;
  }

  .site-header .brand-mark,
  .site-header .brand-mark-image {
    width: 44px !important;
    height: 44px !important;
  }

  .site-header .brand-title {
    font-size: 21px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand-mark,
  .site-header .brand-mark-image {
    width: 38px !important;
    height: 38px !important;
  }

  .site-header .brand-title {
    font-size: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .brand-mark,
  .site-header .brand-mark-image,
  .site-header .brand-title {
    animation: none !important;
    transform: none !important;
  }
}

/* HOME EXPLAINER BALANCE */
.home-explainer {
  gap: 16px !important;
}

.home-explainer-heading {
  margin-bottom: 0 !important;
}

.home-explainer .section-title {
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.home-explainer .section-lead {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.66;
}

.home-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.home-explainer-grid .note-card {
  padding: 22px !important;
  min-height: 220px !important;
  display: grid !important;
  align-content: start !important;
}

.home-explainer-grid .note-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.home-explainer-grid .note-card p {
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .home-explainer-grid {
    grid-template-columns: 1fr !important;
  }

  .home-explainer .section-title,
  .home-explainer .section-lead {
    max-width: none;
  }

  .home-explainer-grid .note-card {
    min-height: 0 !important;
  }
}
/* /HOME EXPLAINER BALANCE */

/* PRODUCT PAGE MATURITY PASS */
.product-page-main {
  padding-top: 66px !important;
}

.product-hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

.product-hero-panel {
  padding: 24px !important;
  height: 100% !important;
}

.product-hero .hero-title {
  margin: 10px 0 10px !important;
  max-width: 15.8ch !important;
  font-size: clamp(25px, 2.25vw, 34px) !important;
  line-height: 1.085 !important;
  letter-spacing: -0.04em !important;
  text-wrap: pretty !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.product-hero .hero-lead {
  max-width: 33ch !important;
  margin: 0 0 12px !important;
  font-size: clamp(15px, 1vw, 17px) !important;
  line-height: 1.55 !important;
}

.product-hero .hero-copy {
  max-width: 64ch !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
}

.product-hero .hero-actions {
  margin-top: 18px !important;
}

.product-hero-side {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-rows: minmax(0, 1fr) !important;
  gap: 16px !important;
  align-content: stretch !important;
  align-self: stretch !important;
  height: 100% !important;
}

.product-hero-side .note-card {
  padding: 18px !important;
  min-height: 0 !important;
  height: 100% !important;
}

.product-hero-side .note-card:nth-of-type(3),
.product-hero-side .note-card:nth-of-type(4),
.product-hero-side .product-hero-bridge-card {
  grid-column: 1 / -1 !important;
}

.product-hero-side .note-card h3 {
  margin-bottom: 8px !important;
  font-size: 15px !important;
  line-height: 1.28 !important;
}

.product-hero-side .note-card p {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.product-page-main .section-heading {
  gap: 10px !important;
  margin-bottom: 14px !important;
  max-width: none !important;
}

.product-page-main .section-title {
  max-width: none !important;
  width: 100% !important;
  font-size: clamp(22px, 2.05vw, 30px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  text-wrap: pretty !important;
}

.product-page-main .section-lead {
  max-width: 88ch !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.product-why-now {
  max-width: none !important;
}

.product-why-now .grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.product-why-now .surface-card,
.product-why-now .note-card {
  min-height: 0 !important;
}

.product-why-now .surface-card h3,
.product-why-now .note-card h3,
.product-why-now .surface-card p,
.product-why-now .note-card p {
  max-width: none !important;
}

.product-spaces .module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-spaces .module-card {
  min-height: 0;
}

.product-preview .section-heading,
.product-preview .section-title,
.product-preview .section-lead {
  max-width: none !important;
}

.product-preview-scene {
  padding: 18px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.78), rgba(241, 245, 249, 0.94));
}

html[data-theme='dark'] .product-preview-scene {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(103, 232, 214, 0.028), rgba(0, 95, 109, 0.038) 56%, transparent 100%),
    rgba(27, 31, 35, 0.96);
}

html[data-theme='dark'] .product-preview-chip {
  background: rgba(103, 232, 214, 0.08);
  color: rgba(194, 249, 240, 0.94);
}

html[data-theme='dark'] .product-preview-line {
  background: rgba(255, 255, 255, 0.10);
}

html[data-theme='dark'] .product-preview-tile {
  background: rgba(255, 255, 255, 0.065);
}

.product-preview-layout {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
}

.product-preview-sidebar {
  display: grid;
  gap: 10px;
}

.product-preview-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 95, 109, 0.08);
  color: rgba(0, 95, 109, 0.90);
  font-size: 13px;
  font-weight: 700;
}

.product-preview-content {
  display: grid;
  gap: 10px;
}

.product-preview-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.10);
}

.product-preview-line.is-lg {
  height: 16px;
  width: 72%;
}

.product-preview-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-preview-tile {
  min-height: 92px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.08);
}

.product-preview-tile.is-tall {
  min-height: 122px;
}

.product-preview .screenshot-caption {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.product-preview .screenshot-caption h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.product-preview .screenshot-caption p {
  margin: 0;
}

.product-final-cta .inline-actions {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .product-page-main {
    padding-top: 32px !important;
  }

  .product-hero {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .product-hero .hero-lead,
  .product-hero .hero-copy,
  .product-page-main .section-lead {
    max-width: none !important;
  }

  .product-hero-side {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    height: auto !important;
  }

  .product-hero-side .note-card,
  .product-hero-side .note-card:nth-of-type(3),
  .product-hero-side .note-card:nth-of-type(4),
  .product-hero-side .product-hero-bridge-card {
    min-height: 0 !important;
    height: auto !important;
  }

  .product-spaces .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-why-now .grid-3 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .product-page-main {
    padding-top: 26px !important;
  }

  .product-hero-panel,
  .product-hero-side .note-card,
  .product-preview .screenshot-caption {
    padding: 20px !important;
  }

  .product-hero .hero-title {
    max-width: none !important;
    font-size: 34px !important;
    line-height: 1.04 !important;
  }

  .product-page-main .section-title {
    font-size: 28px !important;
    line-height: 1.14 !important;
  }

  .product-preview-layout,
  .product-preview-stack,
  .product-spaces .module-grid {
    grid-template-columns: 1fr;
  }
}
/* /PRODUCT PAGE MATURITY PASS */

/* === ASK AYA FINAL CHAT POLISH === */
.ask-aya-section {
  display: grid;
  gap: 18px;
}

.ask-aya-heading {
  margin-bottom: 0;
}

/* === /ASK AYA FINAL CHAT POLISH === */

/* GLOBAL PRIMARY BUTTON COLOR */
.button-primary,
a.button-primary,
button.button-primary {
  background: linear-gradient(180deg, #1f5a64 0%, #003841 100%) !important;
  border-color: rgba(47, 111, 120, 0.24) !important;
  color: #f7fffe !important;
  box-shadow: 0 10px 24px rgba(0, 56, 65, 0.24) !important;
}

.button-primary:hover,
.button-primary:focus-visible,
a.button-primary:hover,
a.button-primary:focus-visible,
button.button-primary:hover,
button.button-primary:focus-visible {
  background: linear-gradient(180deg, #2f6f78 0%, #1f5a64 100%) !important;
  border-color: rgba(47, 111, 120, 0.30) !important;
  color: #ffffff !important;
}

.button-primary:active,
a.button-primary:active,
button.button-primary:active {
  background: linear-gradient(180deg, #15525b 0%, #003841 100%) !important;
}

html[data-theme='dark'] .button-primary,
html[data-theme='dark'] a.button-primary,
html[data-theme='dark'] button.button-primary {
  background: linear-gradient(180deg, #1f5a64 0%, #003841 100%) !important;
  border-color: rgba(47, 111, 120, 0.22) !important;
  color: #f7fffe !important;
  box-shadow: 0 10px 24px rgba(0, 56, 65, 0.28) !important;
}
/* /GLOBAL PRIMARY BUTTON COLOR */



/* MANIFESTO HERO CLEAN TAIL */
.site-shell > .hero.manifesto-hero {
  align-items: stretch !important;
  margin-bottom: 10px !important;
}

.site-shell > .hero.manifesto-hero .hero-panel,
.site-shell > .hero.manifesto-hero .hero-panel.hero-emphasis {
  align-self: stretch !important;
  min-height: 0 !important;
  height: auto !important;
  padding-bottom: 10px !important;
}

.site-shell > .hero.manifesto-hero .hero-title {
  margin-bottom: 12px !important;
}

.site-shell > .hero.manifesto-hero .hero-lead {
  margin-bottom: 10px !important;
}

.site-shell > .hero.manifesto-hero .hero-copy {
  margin-bottom: 0 !important;
}

.site-shell > .hero.manifesto-hero .hero-side {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  align-self: stretch !important;
  align-items: stretch !important;
  align-content: stretch !important;
  height: 100% !important;
  min-height: 0 !important;
  gap: 14px !important;
}

.site-shell > .hero.manifesto-hero .hero-side > .note-card {
  align-self: stretch !important;
  min-height: 0 !important;
  height: 100% !important;
}

.site-shell > .hero.manifesto-hero .hero-side > .note-card h3 {
  margin-bottom: 18px !important;
}

.manifesto-main-sense-card {
  margin-top: 8px !important;
}

@media (max-width: 1120px) {
  .site-shell > .hero.manifesto-hero {
    align-items: start !important;
  }

  .site-shell > .hero.manifesto-hero .hero-side {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    height: auto !important;
    align-self: start !important;
  }

  .site-shell > .hero.manifesto-hero .hero-side > .note-card {
    height: auto !important;
  }

  .manifesto-main-sense-card {
    margin-top: 10px !important;
  }
}
/* /MANIFESTO HERO CLEAN TAIL */





/* === FOOTER CANONICAL UNIFY === */
.page-footer {
  margin-top: clamp(24px, 3vw, 44px) !important;
  width: 100% !important;
}

.site-footer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.4vw, 30px) !important;
  border-radius: 24px !important;
  box-sizing: border-box !important;
}

.site-shell .footer-grid,
.footer-grid {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.08fr) minmax(420px, 0.92fr) !important;
  gap: clamp(20px, 2.4vw, 40px) !important;
  align-items: start !important;
}

.footer-nav {
  display: none !important;
}

.footer-brand {
  max-width: 460px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  align-items: flex-start !important;
}

.footer-brand p {
  max-width: 28ch !important;
  margin: 0 !important;
}

.footer-meta {
  display: grid !important;
  grid-template-columns: minmax(190px, 1fr) minmax(220px, 1fr) !important;
  gap: 14px 26px !important;
  align-content: start !important;
  align-items: start !important;
  justify-items: start !important;
}

.footer-meta-group {
  display: grid !important;
  gap: 10px !important;
  align-content: start !important;
}

.footer-brand p,
.footer-meta span,
.footer-meta a {
  font-size: 14px !important;
  line-height: 1.52 !important;
}

.site-footer .brand-lockup {
  gap: 12px !important;
  align-items: center !important;
}

.site-footer .brand-lockup .brand-mark,
.site-footer .brand-lockup .brand-mark-image {
  width: 38px !important;
  height: 38px !important;
}

.site-footer .brand-lockup .brand-title {
  font-size: 15px !important;
}

@media (max-width: 980px) {
  .site-footer {
    padding: 20px 18px !important;
  }

  .site-shell .footer-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-brand {
    max-width: 100% !important;
  }

  .footer-brand p {
    max-width: 38ch !important;
  }

  .footer-meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 18px !important;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }

  .footer-meta {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .footer-brand p,
  .footer-meta span,
  .footer-meta a {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}
/* === /FOOTER CANONICAL UNIFY === */

/* === CARD SURFACE + TYPE RHYTHM PASS === */
.hero-panel,
.surface-card,
.kpi-card,
.note-card,
.module-card,
.update-card,
.download-card,
.timeline-card,
.quote-card,
.screenshot-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.07)),
    radial-gradient(circle at 14% 16%, rgba(76, 168, 180, 0.070), rgba(76, 168, 180, 0) 31%),
    linear-gradient(145deg, rgba(231, 241, 245, 0.988), rgba(240, 246, 249, 0.994) 58%, rgba(251, 253, 255, 0.998) 100%),
    var(--aya-surface) !important;
  border: 1px solid rgba(114, 132, 142, 0.14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.80),
    0 22px 46px rgba(15, 23, 42, 0.044),
    0 8px 18px rgba(52, 122, 140, 0.024) !important;
}

html[data-theme='dark'] .hero-panel,
html[data-theme='dark'] .surface-card,
html[data-theme='dark'] .kpi-card,
html[data-theme='dark'] .note-card,
html[data-theme='dark'] .module-card,
html[data-theme='dark'] .update-card,
html[data-theme='dark'] .download-card,
html[data-theme='dark'] .timeline-card,
html[data-theme='dark'] .quote-card,
html[data-theme='dark'] .screenshot-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(103,232,214,0.040), rgba(0,95,109,0.050) 48%, transparent 80%),
    var(--aya-surface) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.026),
    0 14px 34px rgba(0,0,0,0.34) !important;
}

.hero-panel.hero-emphasis {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08)),
    radial-gradient(circle at 14% 18%, rgba(76, 168, 180, 0.090), rgba(76, 168, 180, 0) 34%),
    linear-gradient(145deg, rgba(222, 236, 241, 0.990), rgba(235, 243, 247, 0.994) 56%, rgba(250, 253, 255, 0.998) 100%),
    var(--aya-surface) !important;
  border: 1px solid rgba(106, 128, 140, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.83),
    0 26px 54px rgba(15, 23, 42, 0.054),
    0 10px 22px rgba(52, 122, 140, 0.034) !important;
}

html[data-theme='dark'] .hero-panel.hero-emphasis {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.040), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(103,232,214,0.050), rgba(0,95,109,0.060) 46%, transparent 80%),
    var(--aya-surface) !important;
}

.hero-title,
.section-title {
  font-weight: 700 !important;
}

.hero-lead,
.section-lead,
.hero-copy,
.site-shell p,
.site-shell li,
.site-footer p,
.site-footer span,
.site-footer a {
  font-weight: 500 !important;
  letter-spacing: -0.012em !important;
}

.note-card h2,
.note-card h3,
.surface-card h2,
.surface-card h3,
.module-card h3,
.update-card h3,
.download-card h3,
.timeline-card h3,
.quote-card h3,
.screenshot-card h3 {
  font-weight: 700 !important;
  letter-spacing: -0.024em !important;
}

.note-card p,
.surface-card p,
.surface-card li,
.module-card p,
.update-card p,
.download-card p,
.timeline-card p,
.timeline-card li,
.quote-card p,
.screenshot-card p {
  font-weight: 500 !important;
  line-height: 1.60 !important;
}

.footer-brand p,
.footer-meta span,
.footer-meta a {
  font-size: 14.5px !important;
  line-height: 1.56 !important;
}
/* === /CARD SURFACE + TYPE RHYTHM PASS === */



/* === TYPOGRAPHY SYSTEM CANONICAL PASS === */
:root {
  --aya-font-ui: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
--aya-font-heading: "Geist", "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
--aya-font-premium: var(--aya-font-ui);
  --aya-step-hero-home: clamp(42px, 3.125vw, 50px);
  --aya-step-hero-product: clamp(38px, 2.75vw, 44px);
  --aya-step-hero-page: clamp(36px, 2.45vw, 40px);
  --aya-step-section: clamp(32px, 2.5vw, 40px);
  --aya-step-card-title: 21px;
  --aya-step-lead: 18px;
  --aya-step-body: 17px;
  --aya-step-meta: 15px;
}

body {
  font-family: var(--aya-font-premium) !important;
  font-size: var(--aya-step-body) !important;
  line-height: 1.72 !important;
  letter-spacing: -0.012em !important;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.site-header,
.site-header *,
.site-nav,
.site-nav *,
.site-shell,
.site-shell *,
.site-footer,
.site-footer * {
  font-family: var(--aya-font-premium) !important;
}

.hero-title,
.section-title,
.note-card h2,
.note-card h3,
.surface-card h2,
.surface-card h3,
.module-card h3,
.update-card h3,
.download-card h3,
.timeline-card h3,
.quote-card h3,
.screenshot-card h3 {
  font-family: var(--aya-font-heading) !important;
  font-optical-sizing: auto;
}

.brand-title,
.brand-title-base,
.brand-title-fill {
  font-family: var(--aya-font-ui) !important;
  font-optical-sizing: auto;
}

.site-nav a,
.site-footer a,
.site-footer span,
.site-footer p,
.site-shell p,
.site-shell li {
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.site-header .brand-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.035em !important;
  line-height: 1.05 !important;
}

.site-nav a {
  font-size: var(--aya-step-meta) !important;
  font-weight: 500 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.012em !important;
}

.section-kicker,
.eyebrow,
.ask-aya-message-role {
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

.hero-title,
.section-title,
.note-card h2,
.note-card h3,
.surface-card h2,
.surface-card h3,
.module-card h3,
.update-card h3,
.download-card h3,
.timeline-card h3,
.quote-card h3,
.screenshot-card h3 {
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-wrap: balance !important;
}

.home-hero-panel .hero-title {
  font-size: var(--aya-step-hero-home) !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.052em !important;
  max-width: 16ch !important;
  margin: 10px 0 14px !important;
}

.product-hero .hero-title {
  font-size: var(--aya-step-hero-product) !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.05em !important;
  max-width: 16ch !important;
  margin: 10px 0 14px !important;
}

.site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title {
  font-size: var(--aya-step-hero-page) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
  max-width: 26ch !important;
  margin: 10px 0 14px !important;
}

.site-shell > .hero.manifesto-hero .hero-title {
  font-size: clamp(30px, 2.10vw, 35px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.032em !important;
  max-width: 25ch !important;
}

.hero-lead,
.section-lead {
  font-size: var(--aya-step-lead) !important;
  font-weight: 500 !important;
  line-height: 1.52 !important;
  letter-spacing: -0.018em !important;
}

.hero-copy,
.site-shell .surface-card p,
.site-shell .note-card p,
.site-shell .timeline-card p,
.site-shell .download-card p,
.site-shell .update-card p,
.site-shell .screenshot-card p,
.site-shell .module-card p,
.site-shell li {
  font-size: var(--aya-step-body) !important;
  font-weight: 400 !important;
  line-height: 1.68 !important;
  letter-spacing: -0.012em !important;
}

.section-title {
  font-size: var(--aya-step-section) !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.044em !important;
  max-width: 26ch !important;
}

.product-page-main .section-title {
  font-size: clamp(40px, 3.4vw, 52px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.046em !important;
  max-width: 22ch !important;
}

.note-card h2,
.note-card h3,
.surface-card h2,
.surface-card h3,
.module-card h3,
.update-card h3,
.download-card h3,
.timeline-card h3,
.quote-card h3,
.screenshot-card h3 {
  font-size: var(--aya-step-card-title) !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.028em !important;
}

.button-primary,
.button-secondary,
.button-ghost,
.ask-aya-input,
.ask-aya-submit {
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.012em !important;
}

.footer-brand p,
.footer-meta span,
.footer-meta a {
  font-size: var(--aya-step-meta) !important;
  font-weight: 500 !important;
  line-height: 1.58 !important;
  letter-spacing: -0.012em !important;
}

@media (max-width: 1120px) {
  .home-hero-panel .hero-title {
    max-width: 16ch !important;
  }

  .product-hero .hero-title,
  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title,
  .site-shell > .hero.manifesto-hero .hero-title,
  .section-title,
  .product-page-main .section-title {
    max-width: none !important;
  }

  .note-card h2,
  .note-card h3,
  .surface-card h2,
  .surface-card h3,
  .module-card h3,
  .update-card h3,
  .download-card h3,
  .timeline-card h3,
  .quote-card h3,
  .screenshot-card h3 {
    font-size: 21px !important;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px !important;
    line-height: 1.66 !important;
  }

  .site-nav a,
  .footer-brand p,
  .footer-meta span,
  .footer-meta a,
  .button-primary,
  .button-secondary,
  .button-ghost,
  .ask-aya-input,
  .ask-aya-submit {
    font-size: 14px !important;
  }

  .home-hero-panel .hero-title {
    font-size: clamp(38px, 11vw, 52px) !important;
    line-height: 1.00 !important;
    letter-spacing: -0.048em !important;
  }

  .product-hero .hero-title {
    font-size: clamp(36px, 10vw, 48px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
  }

  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title,
  .site-shell > .hero.manifesto-hero .hero-title {
    font-size: clamp(34px, 9.4vw, 44px) !important;
    line-height: 1.0 !important;
    letter-spacing: -0.04em !important;
  }

  .section-title,
  .product-page-main .section-title {
    font-size: clamp(31px, 8.4vw, 38px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.032em !important;
  }

  .hero-lead,
  .section-lead {
    font-size: 17px !important;
    line-height: 1.48 !important;
  }

  .hero-copy,
  .site-shell .surface-card p,
  .site-shell .note-card p,
  .site-shell .timeline-card p,
  .site-shell .download-card p,
  .site-shell .update-card p,
  .site-shell .screenshot-card p,
  .site-shell .module-card p,
  .site-shell li {
    font-size: 16px !important;
    line-height: 1.64 !important;
  }

  .note-card h2,
  .note-card h3,
  .surface-card h2,
  .surface-card h3,
  .module-card h3,
  .update-card h3,
  .download-card h3,
  .timeline-card h3,
  .quote-card h3,
  .screenshot-card h3 {
    font-size: 19px !important;
    line-height: 1.2 !important;
  }
}
/* === /TYPOGRAPHY SYSTEM CANONICAL PASS === */








/* === MOBILE NAV CLEAN PASS === */
@media (max-width: 1120px) {
  .site-nav-shell {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: rgba(15, 23, 42, 0.18) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 180ms ease, visibility 180ms ease !important;
    z-index: 120 !important;
  }

  body.nav-open .site-nav-shell {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-nav-inner {
    width: min(calc(100% - 24px), 520px) !important;
    margin: 0 auto !important;
    padding-top: 84px !important;
    padding-bottom: 0 !important;
  }

  .site-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid var(--aya-line) !important;
    border-radius: 20px !important;
    background: color-mix(in srgb, var(--aya-surface) 96%, transparent) !important;
    box-shadow: 0 20px 48px rgba(2, 8, 23, 0.18) !important;
    transform: translateY(-8px) scale(0.985) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  .site-nav[data-open='false'] {
    display: grid !important;
  }

  body.nav-open .site-nav[data-open='true'] {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav a {
    min-height: 44px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
  }

  .site-shell {
    padding-top: 84px !important;
  }

  .site-shell > .hero:first-child,
  .site-shell > .stack-md:first-child,
  .site-shell > section:first-child {
    margin-top: 8px !important;
  }
}

@media (max-width: 720px) {
  .site-nav-inner {
    width: min(calc(100% - 20px), 520px) !important;
    padding-top: 78px !important;
  }

  .site-shell {
    padding-top: 76px !important;
  }

  .site-shell > .hero:first-child,
  .site-shell > .stack-md:first-child,
  .site-shell > section:first-child {
    margin-top: 6px !important;
  }
}

@media (max-width: 640px) {
  .site-nav-inner {
    width: min(calc(100% - 16px), 520px) !important;
    padding-top: 74px !important;
  }

  .site-shell {
    padding-top: 72px !important;
  }

  .site-shell > .hero:first-child,
  .site-shell > .stack-md:first-child,
  .site-shell > section:first-child {
    margin-top: 4px !important;
  }
}
/* === /MOBILE NAV CLEAN PASS === */


/* === MOBILE HEADER DENSITY PASS === */
@media (max-width: 1120px) {
  .site-nav-inner {
    padding-top: 96px !important;
  }

  .site-shell {
    padding-top: 20px !important;
  }

  .site-shell > .hero:first-child,
  .site-shell > .stack-md:first-child,
  .site-shell > section:first-child {
    margin-top: 0 !important;
  }

  .site-header .brand-lockup {
    gap: 14px !important;
  }

  .site-header .brand-mark,
  .site-header .brand-mark-image {
    width: 58px !important;
    height: 58px !important;
  }

  .site-header .brand-title {
    font-size: 20px !important;
    line-height: 1.02 !important;
  }
}

@media (max-width: 720px) {
  .site-nav-inner {
    padding-top: 92px !important;
  }

  .site-shell {
    padding-top: 16px !important;
  }

  .site-header .brand-mark,
  .site-header .brand-mark-image {
    width: 56px !important;
    height: 56px !important;
  }

  .site-header .brand-title {
    font-size: 19px !important;
  }
}

@media (max-width: 640px) {
  .site-nav-inner {
    padding-top: 88px !important;
  }

  .site-shell {
    padding-top: 16px !important;
  }

  .site-header .brand-mark,
  .site-header .brand-mark-image {
    width: 54px !important;
    height: 54px !important;
  }

  .site-header .brand-title {
    font-size: 18px !important;
  }
}
/* === /MOBILE HEADER DENSITY PASS === */


/* === MOBILE HERO TITLE SIZE PASS === */
@media (max-width: 720px) {
  .home-hero-panel .hero-title {
    font-size: 36px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
    max-width: 12ch !important;
  }

  .product-hero .hero-title {
    font-size: 32px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.042em !important;
    max-width: 14ch !important;
  }

  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title,
  .site-shell > .hero.manifesto-hero .hero-title {
    font-size: 30px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.031em !important;
    max-width: 18ch !important;
  }
}

@media (max-width: 640px) {
  .home-hero-panel .hero-title {
    font-size: 34px !important;
    line-height: 1.06 !important;
    max-width: 11ch !important;
  }

  .product-hero .hero-title {
    font-size: 30px !important;
    line-height: 1.082 !important;
    max-width: 13ch !important;
  }

  .site-shell > .hero:not(.home-hero):not(.product-hero) .hero-title,
  .site-shell > .hero.manifesto-hero .hero-title {
    font-size: 28px !important;
    line-height: 1.09 !important;
    max-width: 17ch !important;
  }
}
/* === /MOBILE HERO TITLE SIZE PASS === */\n\n/* === LIGHT SECTION HEADING COMPOSITION PASS === */
html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading,
html:not([data-theme='dark']) .site-shell > section > .section-heading {
  position: relative !important;
  isolation: isolate !important;
  gap: 10px !important;
  max-width: min(1120px, 100%) !important;
  margin-bottom: 0 !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading::before,
html:not([data-theme='dark']) .site-shell > section > .section-heading::before {
  content: "" !important;
  position: absolute !important;
  inset: -14px -18px -10px -18px !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 95, 109, 0.024), rgba(0, 95, 109, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-kicker,
html:not([data-theme='dark']) .site-shell > section > .section-heading .section-kicker {
  color: #0b5f6b !important;
  letter-spacing: 0.11em !important;
  line-height: 1.1 !important;
  opacity: 0.98 !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-title,
html:not([data-theme='dark']) .site-shell > section > .section-heading .section-title {
  max-width: 1100px !important;
  font-size: clamp(34px, 2.75vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  text-wrap: balance !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading:has(.section-lead) .section-title,
html:not([data-theme='dark']) .site-shell > section > .section-heading:has(.section-lead) .section-title {
  max-width: 920px !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-lead,
html:not([data-theme='dark']) .site-shell > section > .section-heading .section-lead {
  max-width: 60ch !important;
  margin-top: 4px !important;
  color: rgba(79, 89, 107, 0.96) !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
  letter-spacing: -0.014em !important;
}

@media (max-width: 1120px) {
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading,
  html:not([data-theme='dark']) .site-shell > section > .section-heading {
    max-width: none !important;
  }

  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading::before,
  html:not([data-theme='dark']) .site-shell > section > .section-heading::before {
    inset: -12px -12px -8px -12px !important;
  }

  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-title,
  html:not([data-theme='dark']) .site-shell > section > .section-heading .section-title,
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading:has(.section-lead) .section-title,
  html:not([data-theme='dark']) .site-shell > section > .section-heading:has(.section-lead) .section-title,
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-lead,
  html:not([data-theme='dark']) .site-shell > section > .section-heading .section-lead {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading::before,
  html:not([data-theme='dark']) .site-shell > section > .section-heading::before {
    inset: -10px -8px -6px -8px !important;
    border-radius: 24px !important;
  }

  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-title,
  html:not([data-theme='dark']) .site-shell > section > .section-heading .section-title {
    font-size: clamp(30px, 8vw, 38px) !important;
    line-height: 1.08 !important;
  }

  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-lead,
  html:not([data-theme='dark']) .site-shell > section > .section-heading .section-lead {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}
/* === /LIGHT SECTION HEADING COMPOSITION PASS === */\n

/* === LIGHT SECTION HEADING POLISH PASS === */
html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading,
html:not([data-theme='dark']) .site-shell > section > .section-heading {
  gap: 10px !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-title,
html:not([data-theme='dark']) .site-shell > section > .section-heading .section-title,
html:not([data-theme='dark']) .product-page-main .section-title,
html:not([data-theme='dark']) .home-explainer .section-title,
html:not([data-theme='dark']) .home-ask-aya-section .section-title {
  max-width: 1040px !important;
  font-size: clamp(33px, 2.30vw, 37px) !important;
  line-height: 1.092 !important;
  letter-spacing: -0.031em !important;
  text-wrap: balance !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading:has(.section-lead) .section-title,
html:not([data-theme='dark']) .site-shell > section > .section-heading:has(.section-lead) .section-title {
  max-width: 880px !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-lead,
html:not([data-theme='dark']) .site-shell > section > .section-heading .section-lead,
html:not([data-theme='dark']) .product-page-main .section-lead,
html:not([data-theme='dark']) .home-explainer .section-lead,
html:not([data-theme='dark']) .home-ask-aya-section .section-lead {
  max-width: 820px !important;
  color: rgba(72, 82, 97, 0.90) !important;
}

html:not([data-theme='dark']) .hero-lead {
  color: rgba(70, 80, 95, 0.91) !important;
}

html:not([data-theme='dark']) .hero-copy,
html:not([data-theme='dark']) .site-shell .surface-card p,
html:not([data-theme='dark']) .site-shell .note-card p,
html:not([data-theme='dark']) .site-shell .timeline-card p,
html:not([data-theme='dark']) .site-shell .download-card p,
html:not([data-theme='dark']) .site-shell .update-card p,
html:not([data-theme='dark']) .site-shell .screenshot-card p,
html:not([data-theme='dark']) .site-shell .module-card p,
html:not([data-theme='dark']) .site-shell li {
  color: rgba(79, 89, 104, 0.92) !important;
}

@media (max-width: 1120px) {
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-title,
  html:not([data-theme='dark']) .site-shell > section > .section-heading .section-title,
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading:has(.section-lead) .section-title,
  html:not([data-theme='dark']) .site-shell > section > .section-heading:has(.section-lead) .section-title,
  html:not([data-theme='dark']) .product-page-main .section-title,
  html:not([data-theme='dark']) .home-explainer .section-title,
  html:not([data-theme='dark']) .home-ask-aya-section .section-title,
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-lead,
  html:not([data-theme='dark']) .site-shell > section > .section-heading .section-lead {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading .section-title,
  html:not([data-theme='dark']) .site-shell > section > .section-heading .section-title,
  html:not([data-theme='dark']) .product-page-main .section-title {
    font-size: clamp(30px, 7.7vw, 36px) !important;
    line-height: 1.082 !important;
  }
}
/* === /LIGHT SECTION HEADING POLISH PASS === */

/* === LIGHT SECTION DEPTH PASS === */
html:not([data-theme='dark']) .site-shell > .stack-md {
  position: relative !important;
  isolation: isolate !important;
  padding-top: 18px !important;
  padding-bottom: 6px !important;
  border-radius: 32px !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md::before {
  content: "" !important;
  position: absolute !important;
  inset: -10px -14px -8px -14px !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 12% 14%, rgba(74, 164, 176, 0.018), rgba(74, 164, 176, 0) 30%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015) 34%, rgba(226,233,238,0.06) 100%),
    linear-gradient(145deg, rgba(247,250,252,0.34), rgba(237,242,246,0.18) 58%, rgba(231,236,240,0.09) 100%) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 8px 18px rgba(15, 23, 42, 0.010) !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

html:not([data-theme='dark']) .site-shell > .stack-md > .section-heading,
html:not([data-theme='dark']) .site-shell > .stack-md > .grid-2,
html:not([data-theme='dark']) .site-shell > .stack-md > .grid-3,
html:not([data-theme='dark']) .site-shell > .stack-md > .screenshot-grid,
html:not([data-theme='dark']) .site-shell > .stack-md > .timeline,
html:not([data-theme='dark']) .site-shell > .stack-md > .inline-actions,
html:not([data-theme='dark']) .site-shell > .stack-md > .footer-grid {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 1120px) {
  html:not([data-theme='dark']) .site-shell > .stack-md::before {
    inset: -10px -10px -8px -10px !important;
    border-radius: 28px !important;
  }
}

@media (max-width: 640px) {
  html:not([data-theme='dark']) .site-shell > .stack-md {
    padding-top: 16px !important;
    padding-bottom: 6px !important;
    border-radius: 24px !important;
  }

  html:not([data-theme='dark']) .site-shell > .stack-md::before {
    inset: -8px -6px -6px -6px !important;
    border-radius: 22px !important;
  }
}
/* === /LIGHT SECTION DEPTH PASS === */

/* === MANIFESTO HERO DESKTOP HARD RELIEF PASS === */
@media (min-width: 1121px) {
  .site-shell > .hero.manifesto-hero .hero-title {
    font-size: clamp(26px, 1.82vw, 29px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.026em !important;
    max-width: 23ch !important;
    margin-bottom: 14px !important;
  }

  .site-shell > .hero.manifesto-hero .hero-lead {
    font-size: 15px !important;
    line-height: 1.56 !important;
    max-width: 35ch !important;
  }

  .site-shell > .hero.manifesto-hero .hero-copy {
    font-size: 15px !important;
    line-height: 1.54 !important;
    max-width: 36ch !important;
  }
}
/* === /MANIFESTO HERO DESKTOP HARD RELIEF PASS === */

/* === MANIFESTO HERO DESKTOP SPECIFICITY FIX === */
@media (min-width: 1121px) {
  .site-shell > .hero.manifesto-hero:not(.home-hero):not(.product-hero) .hero-title {
    font-size: clamp(26px, 1.82vw, 29px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.026em !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
  }
}
/* === /MANIFESTO HERO DESKTOP SPECIFICITY FIX === */
