:root {
  --paper: #f4f0e8;
  --paper-bright: #fbfaf6;
  --paper-soft: #ebe6dc;
  --ink: #050505;
  --ink-soft: #242321;
  --muted: #78736b;
  --line: #d9d2c6;
  --line-dark: #161514;
  --wash: #e6ded2;
  --warm: #cfc3b4;
  --radius-card: 26px;
  --radius-button: 12px;
  --container: 1180px;
  --display:
    "Eurostile", "Bank Gothic", "Rajdhani", "Arial Black", ui-sans-serif,
    system-ui, sans-serif;
  --body:
    "Plus Jakarta Sans", "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 10%, rgba(5, 5, 5, 0.07), transparent 24rem),
    radial-gradient(circle at 80% 12%, rgba(120, 115, 107, 0.13), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 5, 5, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.032) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.48;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(0, 0, 0, 0.045) 0 1px, transparent 1.2px),
    radial-gradient(circle at 70% 74%, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.2px);
  background-size: 31px 37px, 43px 47px;
}

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

button,
input {
  font: inherit;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  min-height: 74px;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 24px;
  background: rgba(244, 240, 232, 0.72);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav.is-scrolled {
  border-color: rgba(5, 5, 5, 0.16);
  background: rgba(251, 250, 246, 0.86);
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 202px;
  height: 54px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
}

.nav-links a {
  min-height: 38px;
  border-radius: 12px;
  padding: 11px 15px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.nav-cta,
.button,
.access-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta {
  justify-self: end;
  padding: 0 18px;
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.14);
}

.nav-cta:hover,
.button:hover,
.access-form button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0 58px;
}

.hero-art {
  position: absolute;
  inset: 78px -104px auto;
  z-index: 0;
  height: 600px;
  overflow: hidden;
  pointer-events: none;
}

.signal-system {
  position: absolute;
  right: 32px;
  bottom: 0;
  left: 32px;
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(120px, 0.44fr) 176px minmax(120px, 0.44fr) minmax(220px, 0.92fr);
  gap: 18px;
  align-items: center;
}

.speech-stream,
.structured-output {
  position: relative;
  display: grid;
  gap: 10px;
  transform: rotate(-3deg);
}

.structured-output {
  transform: rotate(3deg);
}

.speech-stream span,
.structured-output span {
  display: block;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(5, 5, 5, 0.15);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(251, 250, 246, 0.72);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(5, 5, 5, 0.05);
  white-space: nowrap;
}

.speech-stream span:nth-child(2) {
  margin-left: 52px;
  opacity: 0.72;
}

.speech-stream span:nth-child(3) {
  margin-left: 20px;
  opacity: 0.48;
}

.structured-output span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.structured-output span:nth-child(2) {
  margin-left: 34px;
  opacity: 0.82;
}

.structured-output span:nth-child(3) {
  margin-left: 12px;
  opacity: 0.64;
}

.signal-line {
  position: relative;
  height: 26px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(5, 5, 5, 0.22), transparent) 50% 50% / 100% 3px no-repeat;
}

.signal-line span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 72%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--ink) 42%, var(--ink) 58%, transparent);
  transform: translate(-110%, -50%);
}

.input-line span {
  animation: signalIntoEngine 3.4s linear infinite;
}

.output-line span {
  animation: signalOutOfEngine 3.4s linear infinite;
}

.sadha-engine {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.sadha-engine small {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.engine-sphere {
  position: relative;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  filter: drop-shadow(0 18px 28px rgba(5, 5, 5, 0.13));
}

.engine-sphere::before,
.engine-sphere::after {
  position: absolute;
  inset: 0;
  content: "";
  background: url("assets/sadha-waveform.png") center / contain no-repeat;
  opacity: 0.38;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.engine-sphere::before {
  mask-image: repeating-linear-gradient(
    to bottom,
    transparent 0 10px,
    black 10px 17px,
    transparent 17px 26px
  );
  animation: waveformBandsA 2.9s ease-in-out infinite alternate;
}

.engine-sphere::after {
  mask-image: repeating-linear-gradient(
    to bottom,
    black 0 7px,
    transparent 7px 18px,
    black 18px 24px,
    transparent 24px 34px
  );
  animation: waveformBandsB 3.4s ease-in-out infinite alternate-reverse;
}

.engine-sphere img {
  position: relative;
  z-index: 1;
  display: block;
  width: 104%;
  max-width: 104%;
  height: 104%;
  object-fit: contain;
  transform-origin: center;
  opacity: 0.86;
}

@keyframes signalIntoEngine {
  0% { transform: translate(-110%, -50%); opacity: 0; }
  8% { opacity: 1; }
  42% { transform: translate(42%, -50%); opacity: 1; }
  48%, 100% { transform: translate(42%, -50%); opacity: 0; }
}

@keyframes signalOutOfEngine {
  0%, 48% { transform: translate(-110%, -50%); opacity: 0; }
  56% { opacity: 1; }
  92% { transform: translate(42%, -50%); opacity: 1; }
  100% { transform: translate(42%, -50%); opacity: 0; }
}

@keyframes waveformBandsA {
  from {
    transform: translateX(-9px) skewX(-2deg);
  }
  to {
    transform: translateX(9px) skewX(2deg);
  }
}

@keyframes waveformBandsB {
  from {
    transform: translateX(7px) skewX(2deg);
    opacity: 0.16;
  }
  to {
    transform: translateX(-7px) skewX(-2deg);
    opacity: 0.44;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.mini-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.trust-card h2,
.access-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: min(1040px, 100%);
  margin: 10px auto 0;
  font-size: clamp(3.2rem, 4.75vw, 5.15rem);
  text-wrap: balance;
}

.hero-title {
  max-width: min(1040px, 100%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 4.75vw, 5.15rem);
  font-weight: 500;
  line-height: 0.92;
  text-transform: none;
}

.hero-title span:first-child {
  color: rgba(5, 5, 5, 0.42);
}

.hero-title span {
  display: inline-block;
}

.hero-title span:last-child {
  color: var(--ink);
}

.subhead {
  max-width: 390px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
}

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

.hero-actions .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button {
  border: 1px solid var(--ink);
  padding: 0 20px;
}

.button-primary {
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: 0 16px 36px rgba(5, 5, 5, 0.16);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
}

.button-ghost:hover {
  background: var(--paper-bright);
}

.product-stage {
  position: relative;
  z-index: 1;
  margin-top: 390px;
}

@media (min-width: 1440px) {
  .hero {
    padding-top: 118px;
  }

  .hero h1,
  .hero-title {
    max-width: min(1100px, 100%);
    font-size: clamp(3.7rem, 3.25vw, 4.15rem);
  }

  .hero-art {
    inset-inline: -70px;
  }

  .product-stage {
    margin-top: 390px;
  }
}

.dashboard-shell,
.bento-card,
.feature-panel,
.trust-card,
.access-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(251, 250, 246, 0.76);
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 32px 90px rgba(5, 5, 5, 0.13);
}

.dashboard-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 10%, rgba(5, 5, 5, 0.08), transparent 14rem),
    linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  pointer-events: none;
}

.dashboard-topbar,
.dashboard-layout,
.call-brief,
.timeline-card,
.action-card {
  position: relative;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper-bright);
}

.dashboard-topbar span {
  display: block;
  color: rgba(251, 250, 246, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-topbar strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-pill {
  border: 1px solid rgba(251, 250, 246, 0.26);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--paper-bright);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 255px minmax(250px, 1fr) 205px;
  gap: 14px;
  margin-top: 14px;
}

.call-brief,
.timeline-card,
.action-card {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
  padding: 22px;
}

.call-brief h2 {
  margin: 14px 0 20px;
  font-family: var(--display);
  font-size: clamp(1.28rem, 2.1vw, 1.48rem);
  line-height: 1.02;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.brief-grid,
.tracker-grid {
  display: grid;
  gap: 10px;
}

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

.brief-grid div,
.tracker-grid div {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 16px;
  padding: 14px;
  background: rgba(244, 240, 232, 0.7);
}

.brief-grid strong,
.tracker-grid strong,
.sync-meter strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.brief-grid span,
.tracker-grid span,
.sync-meter span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.signal-list,
.action-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.action-card li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 650;
  line-height: 1.42;
}

.signal-list li span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

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

.timeline-header h3 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.language-pills {
  display: flex;
  gap: 6px;
}

.language-pills span,
.dialect-row span {
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(244, 240, 232, 0.74);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.utterance {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 16px;
  background: rgba(251, 250, 246, 0.66);
  cursor: default;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.utterance.active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: var(--paper-bright);
  transform: translateY(-1px);
}

.utterance time,
.utterance strong {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.utterance p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.action-card li::before {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 2px;
}

.sync-meter {
  margin-top: 26px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  padding: 18px;
  background: var(--ink);
  color: var(--paper-bright);
}

.sync-meter span {
  color: rgba(251, 250, 246, 0.62);
}

.sync-meter strong {
  margin-top: 10px;
  color: var(--paper-bright);
  font-size: 3rem;
}

.section {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 0;
}

.section-heading {
  display: block;
  margin-bottom: 24px;
  text-align: center;
}

.section-heading h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  text-wrap: balance;
}

.section-heading .eyebrow {
  margin-top: 22px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.24fr 0.88fr 0.88fr;
  gap: 18px;
}

.bento-card {
  min-height: 360px;
  overflow: hidden;
  padding: 32px;
}

.bento-large {
  min-height: 420px;
  background:
    radial-gradient(circle at 25% 22%, rgba(5, 5, 5, 0.08), transparent 18rem),
    rgba(251, 250, 246, 0.72);
}

.bento-card h3 {
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.bento-card p,
.feature-copy p,
.trust-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 520;
  line-height: 1.6;
}

.wire-sphere {
  width: 132px;
  height: 132px;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      172deg,
      rgba(5, 5, 5, 0.9) 0 1px,
      transparent 1px 6px
    );
  filter: contrast(1.08);
  mask-image: radial-gradient(circle, black 64%, transparent 66%);
}

.wire-sphere::after {
  display: block;
  width: 132px;
  height: 132px;
  content: "";
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      28deg,
      rgba(5, 5, 5, 0.76) 0 1px,
      transparent 1px 7px
    );
  transform: scaleX(0.78) rotate(10deg);
  mask-image: radial-gradient(circle, black 60%, transparent 63%);
}

.dialect-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.crm-visual {
  margin-top: 34px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 20px;
  background: var(--ink);
  color: var(--paper-bright);
}

.crm-visual {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.crm-visual span {
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: 12px;
  padding: 12px;
  font-weight: 800;
}

.crm-visual i {
  display: block;
  width: 1px;
  height: 22px;
  margin-left: 18px;
  background: rgba(251, 250, 246, 0.5);
}

.feature-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  padding: 54px 0;
}

.feature-row.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.feature-copy p {
  margin-top: 20px;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(235, 230, 220, 0.76)),
    var(--paper-bright);
}

.feature-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.panel-header,
.scan-track,
.tracker-grid,
.commitments {
  position: relative;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-header strong {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper-bright);
}

.scan-track {
  height: 124px;
  margin-top: 40px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 18px;
  background: rgba(251, 250, 246, 0.68);
}

.bar,
.scan-track i {
  position: absolute;
  display: block;
}

.bar {
  left: 6%;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
}

.bar-one {
  top: 32px;
  width: 70%;
}

.bar-two {
  top: 58px;
  width: 49%;
  opacity: 0.48;
}

.bar-three {
  top: 84px;
  width: 84%;
  opacity: 0.72;
}

.scan-track i {
  top: 18px;
  width: 2px;
  height: 88px;
  background: var(--ink);
}

.tracker-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
}

.commitments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.commitments div {
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 18px;
  padding: 20px;
  background: rgba(251, 250, 246, 0.68);
}

.commitments h3 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: 1.14rem;
  text-transform: uppercase;
}

.commitments label {
  display: flex;
  gap: 10px;
  margin: 13px 0;
  color: var(--ink-soft);
  font-weight: 650;
  line-height: 1.36;
}

.commitments input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--ink);
}

.trust-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  padding: 40px;
  background: var(--ink);
  color: var(--paper-bright);
  text-align: center;
}

.trust-card .eyebrow,
.trust-card > p {
  color: rgba(251, 250, 246, 0.68);
}

.trust-card h2 {
  margin-top: 16px;
  color: var(--paper-bright);
  font-size: clamp(2.5rem, 4.6vw, 5.2rem);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-metrics div {
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: 18px;
  padding: 20px;
}

.trust-metrics strong {
  display: block;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 1.65rem;
  text-transform: uppercase;
}

.trust-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(251, 250, 246, 0.6);
}

.access-section {
  padding-bottom: 62px;
}

.access-card {
  overflow: hidden;
  padding: 70px 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(5, 5, 5, 0.1), transparent 23rem),
    var(--paper-bright);
}

.access-card h2 {
  max-width: 920px;
  margin: 18px auto 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  text-wrap: balance;
}

.access-form {
  display: grid;
  grid-template-columns: minmax(280px, 430px) auto;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.access-form input {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  outline: none;
  background: rgba(244, 240, 232, 0.66);
  color: var(--ink);
  font-weight: 650;
}

.access-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(5, 5, 5, 0.08);
}

.access-form button {
  min-height: 54px;
  border: 1px solid var(--ink);
  padding: 0 20px;
  background: var(--ink);
  color: var(--paper-bright);
  cursor: pointer;
}

.access-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #194f43;
}

.form-status.is-error {
  color: #7f1d1d;
}

.footer {
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  grid-template-columns: 210px auto 1fr;
  gap: 26px;
  align-items: center;
  margin: 0 auto;
  padding: 0 0 44px;
}

.footer img {
  width: 190px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  text-align: right;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .bento-grid,
  .feature-row,
  .feature-row.reverse,
  .section-heading,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy {
    order: 0;
  }

  .tracker-grid,
  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1,
  .hero-title {
    max-width: min(880px, 100%);
    font-size: clamp(3.1rem, 7.2vw, 4.45rem);
  }

  .hero-art {
    inset-inline: -70px;
    height: 610px;
  }

  .signal-system {
    grid-template-columns: 1fr 120px 1fr;
    right: 18px;
    left: 18px;
  }

  .input-line,
  .output-line {
    display: none;
  }

  .speech-stream span,
  .structured-output span {
    font-size: 0.78rem;
    white-space: normal;
  }

  .engine-sphere {
    width: 120px;
    height: 120px;
  }

  .subhead {
    max-width: 480px;
  }

  .call-brief h2 {
    font-size: 1.22rem;
  }

  .bento-card h3 {
    font-size: 1.72rem;
  }

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

  .footer p {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav,
  .hero,
  .section,
  .footer {
    width: calc(100% - 28px);
  }

  .nav {
    top: 10px;
  }

  .brand {
    width: 156px;
    height: 42px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 120px;
  }

  .hero-copy {
    order: 1;
  }

  .hero h1,
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.32rem, 10.6vw, 3.12rem);
    line-height: 0.98;
  }

  .subhead {
    font-size: 1rem;
  }

  .hero-art {
    position: relative;
    order: 2;
    inset: auto;
    height: 250px;
    margin-top: 48px;
    overflow: visible;
  }

  .signal-system {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .speech-stream,
  .structured-output {
    display: none;
  }

  .sadha-engine {
    gap: 8px;
  }

  .engine-sphere {
    width: 118px;
    height: 118px;
  }

  .product-stage {
    order: 3;
    margin-top: 70px;
  }

  .dashboard-topbar,
  .dashboard-layout,
  .timeline-header,
  .hero-actions,
  .access-form,
  .commitments,
  .tracker-grid,
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .dashboard-topbar,
  .timeline-header {
    display: grid;
  }

  .status-pill {
    width: max-content;
  }

  .dashboard-shell,
  .bento-card,
  .feature-panel,
  .trust-card,
  .access-card {
    padding: 18px;
  }

  .section {
    padding-top: 58px;
  }

  .access-card {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
