:root {
  --bg: #050505;
  --bg-elev: #0c0c0c;
  --surface: #121212;
  --border: #1f1f1f;
  --border-strong: #2a2a2a;
  --text: #ededed;
  --text-dim: #9a9a9a;
  --text-faint: #626262;
  --accent: #b0d747;
  --accent-dim: #8aab32;
  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --grid-line: rgba(255, 255, 255, 0.04);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.section--no-border {
  border-top: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 12px var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
}

h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 500;
}

h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  font-weight: 500;
}

p {
  margin: 0;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 60ch;
}

/* ---------- Header ---------- */

.banner {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

.banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 0;
  text-align: center;
}

.banner__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  padding: 3px 8px;
  border-radius: 2px;
}

.banner a {
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
}

.banner a:hover {
  border-bottom-color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 22px;
  height: 22px;
  position: relative;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}

.nav__links a {
  position: relative;
  padding: 6px 0;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a.is-active {
  color: var(--text);
}

.nav__links a.nav__signin {
  color: var(--text);
  background: rgba(176, 215, 71, 0.08);
  border: 1px solid rgba(176, 215, 71, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
  margin-left: 4px;
  transition: background 120ms ease, border-color 120ms ease;
}

.nav__links a.nav__signin:hover {
  background: rgba(176, 215, 71, 0.16);
  border-color: rgba(176, 215, 71, 0.6);
}

@media (max-width: 720px) {
  .nav__links {
    gap: 18px;
    font-size: 13px;
  }
  .nav__links a.nav__signin {
    padding: 5px 12px;
  }
}

/* On small phones, drop the lower-priority nav links so the Sign in
   pill stays visible and the row doesn't overflow the container. */
@media (max-width: 540px) {
  .nav__links a:nth-child(1),
  .nav__links a:nth-child(2) {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(32px, 5vw, 64px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

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

.hero__copy h1 {
  margin-bottom: 28px;
}

.hero__copy h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}

.hero__copy .lede {
  margin-bottom: 36px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  border-color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
}

.btn--primary {
  background: var(--accent);
  color: #0b0b0b;
  border-color: var(--accent);
  font-weight: 600;
}

.btn--primary:hover {
  background: #c0e859;
  border-color: #c0e859;
  color: #0b0b0b;
}

.btn__arrow {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.btn:hover .btn__arrow {
  transform: translateX(2px);
}

/* Hero visual: cluster animation */

.cluster {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: #050505;
  background-image: url("/assets/img/hero-fabric.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(176, 215, 71, 0.1);
}

.cluster__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  z-index: 2;
}

.cluster__label span:last-child {
  color: var(--accent);
}

.cluster__corner {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  z-index: 2;
}

/* ---------- Stat row ---------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(60px, 8vw, 90px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 760px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat:last-child {
  border-right: 0;
}

@media (max-width: 760px) {
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

.stat__value {
  font-family: var(--sans);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Section heads ---------- */

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

@media (max-width: 880px) {
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }
}

/* ---------- Growth ---------- */

.growth {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
}

.growth__legend {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.growth__chart {
  width: 100%;
  height: clamp(280px, 36vw, 420px);
}

.growth__milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px dashed var(--border-strong);
}

@media (max-width: 760px) {
  .growth__milestones {
    grid-template-columns: repeat(2, 1fr);
  }
}

.milestone {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.milestone__year {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.milestone__title {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.milestone__note {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- Beliefs (manifesto) ---------- */

.beliefs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.beliefs li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease;
}

.beliefs li:hover {
  background: rgba(255, 255, 255, 0.012);
}

@media (max-width: 720px) {
  .beliefs li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.beliefs__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  padding-top: 8px;
}

.beliefs__body h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--text);
  max-width: 28ch;
}

.beliefs__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 64ch;
}

/* ---------- Research pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 880px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.pillar {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}

.pillar__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}

.pillar h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.pillar p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Infrastructure ---------- */

.infra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

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

.infra__copy h2 {
  margin-bottom: 24px;
}

.infra__copy p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 52ch;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.chip__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.infra__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.infra__visual {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #050505;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infra__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.infra__panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #080808;
  padding: 28px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.85;
  color: var(--text-dim);
  position: relative;
  overflow: hidden;
}

.infra__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.infra__panel-head span:last-child {
  color: var(--accent);
}

.infra__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.infra__row:last-child {
  border-bottom: 0;
}

.infra__row span:first-child {
  color: var(--text-faint);
}

.infra__row span:last-child {
  color: var(--text);
}

/* ---------- Mission ---------- */

.mission {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mission__visual {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 48px;
  border-radius: 999px;
  mask-image: radial-gradient(circle at center, #000 55%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, #000 55%, transparent 80%);
}

.mission h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 40px;
}

.mission p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.mission p:last-child {
  margin-bottom: 0;
}

/* ---------- Origin ---------- */

.origin {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

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

.origin__head h2 {
  margin-bottom: 16px;
}

.origin__head p {
  color: var(--text-dim);
  font-size: 14px;
}

.origin__visual {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 32px;
  border-radius: 16px;
  mask-image: radial-gradient(circle at center, #000 60%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, #000 60%, transparent 90%);
}

.origin__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 18px;
  max-width: 64ch;
}

.origin__body p strong {
  color: var(--text);
  font-weight: 500;
}

/* ---------- Platform ---------- */

.platform {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

@media (max-width: 980px) {
  .platform {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.platform__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
}

.platform__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.platform__features li:first-child {
  border-top: 1px solid var(--border);
}

.platform__feature-bullet {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 1px;
  margin-top: 8px;
  box-shadow: 0 0 12px rgba(176, 215, 71, 0.45);
}

.platform__features strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.platform__features p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 52ch;
}

.platform__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 160ms ease, background 160ms ease;
}

.store-badge:hover {
  border-color: var(--text-dim);
  background: #161616;
}

.store-badge svg {
  flex: none;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.store-badge small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.store-badge strong {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---------- Device mockup ---------- */

.device {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 19;
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 30px 80px -30px rgba(176, 215, 71, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.device__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #050505;
  border-radius: 4px;
  z-index: 3;
}

.device__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0c0c0c;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.device__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.device__statusbar-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}

.device__appbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #181818;
}

.device__avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #141414;
  border: 1px solid #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.device__avatar svg {
  width: 16px;
  height: 16px;
}

.device__appbar-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.device__appbar-meta strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.device__appbar-meta span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.device__chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px;
  overflow: hidden;
}

.msg {
  max-width: 78%;
  padding: 9px 13px;
  font-size: 12.5px;
  line-height: 1.4;
  border-radius: 16px;
  letter-spacing: -0.005em;
}

.msg--in {
  background: #181818;
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.msg--out {
  background: var(--accent);
  color: #0b0b0b;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.msg--voice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}

.msg__voice-bars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}

.msg__voice-bars span {
  display: inline-block;
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  animation: voiceWave 1.6s ease-in-out infinite;
}

.msg__voice-bars span:nth-child(1)  { height: 4px;  animation-delay: 0.0s; }
.msg__voice-bars span:nth-child(2)  { height: 9px;  animation-delay: 0.1s; }
.msg__voice-bars span:nth-child(3)  { height: 12px; animation-delay: 0.2s; }
.msg__voice-bars span:nth-child(4)  { height: 7px;  animation-delay: 0.3s; }
.msg__voice-bars span:nth-child(5)  { height: 11px; animation-delay: 0.4s; }
.msg__voice-bars span:nth-child(6)  { height: 14px; animation-delay: 0.5s; }
.msg__voice-bars span:nth-child(7)  { height: 9px;  animation-delay: 0.6s; }
.msg__voice-bars span:nth-child(8)  { height: 6px;  animation-delay: 0.7s; }
.msg__voice-bars span:nth-child(9)  { height: 11px; animation-delay: 0.8s; }
.msg__voice-bars span:nth-child(10) { height: 8px;  animation-delay: 0.9s; }
.msg__voice-bars span:nth-child(11) { height: 5px;  animation-delay: 1.0s; }
.msg__voice-bars span:nth-child(12) { height: 4px;  animation-delay: 1.1s; }

@keyframes voiceWave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

.msg--voice span:last-child {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.device__composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 16px;
  border-top: 1px solid #181818;
}

.device__composer-input {
  flex: 1;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--text-faint);
  background: #181818;
  border-radius: 999px;
}

.device__composer-mic {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0b0b0b;
  border-radius: 999px;
  flex: none;
}

/* ---------- CTA strip ---------- */

.cta-strip {
  border-top: 1px solid var(--border);
  padding: clamp(60px, 7vw, 100px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(176, 215, 71, 0.08), transparent 70%);
}

.cta-strip h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 28px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip__cta {
  display: inline-flex;
  gap: 12px;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: #030303;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

@media (max-width: 1080px) {
  .footer__top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 36px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

.footer__brand .brand {
  margin-bottom: 18px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-faint);
  max-width: 36ch;
  line-height: 1.55;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom-left {
  flex: 1 1 auto;
  min-width: 0;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer__social a:hover {
  color: var(--accent);
  border-color: var(--border-strong);
  background: var(--surface);
}

.footer__bottom .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 8px;
  transform: translateY(-1px);
}

/* ---------- Inner page hero (smaller) ---------- */

.page-hero {
  padding: clamp(80px, 9vw, 130px) 0 clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.page-hero .lede {
  max-width: 56ch;
}

/* ---------- Page banner ---------- */

.page-banner {
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: #050505;
  overflow: hidden;
}

.page-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.page-banner--thin img {
  max-height: 220px;
}

/* ---------- Long-form text ---------- */

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-top: 60px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.prose p strong {
  color: var(--text);
  font-weight: 500;
}

.prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.prose ul li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 1px;
}

.prose ul li strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.prose a {
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
}

.prose a:hover {
  border-bottom-color: var(--accent);
}

/* ---------- News list ---------- */

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.news-item:first-child {
  border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.news-item__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 4px;
}

.news-item h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.news-item p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}

/* ---------- Contact card ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

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

.contact-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.contact-card a {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--border-strong);
  align-self: flex-start;
  margin-top: 6px;
  padding-bottom: 2px;
}

.contact-card a:hover {
  border-bottom-color: var(--accent);
}

/* ---------- Roles ---------- */

.role-list {
  border-top: 1px solid var(--border);
}

.role {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

@media (max-width: 720px) {
  .role {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.role__title {
  font-weight: 500;
  color: var(--text);
}

.role__team,
.role__loc {
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.role__cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
}

.empty {
  border: 1px dashed var(--border-strong);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  color: var(--text-dim);
}

.empty p {
  font-size: 15px;
  line-height: 1.6;
}

/* ── Companions ─────────────────────────────────────────── */

.companions-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px) {
  .companions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.companion-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.companion-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.companion-card__avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 2px 12px rgba(0, 0, 0, 0.35);
}

.companion-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.companion-card__name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.companion-card__role {
  margin: 2px 0 8px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}

.companion-card__desc {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-dim);
}

.companion-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: var(--text-faint);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

.companion-card__chats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.companion-card__chats svg {
  opacity: 0.7;
}

.companions-foot {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
}

.companions-foot__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 120ms ease;
}

.companions-foot__cta:hover {
  border-bottom-color: var(--accent);
}

.companions-foot__cta svg {
  width: 12px;
  height: 12px;
}

.empty p strong {
  color: var(--text);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 17px;
}
