@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --ink: #07070b;
  --ink-soft: #0d0d14;
  --panel: #11111a;
  --panel-light: #181823;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f4ff;
  --muted: #b8b2c7;
  --muted-strong: #d7d1df;
  --magenta: #ff3fb4;
  --purple: #a863ff;
  --cyan: #5ee7f2;
  --green: #64e3a1;
  --amber: #ffca6a;
  --red: #ff7285;
  --cream: #f4efe9;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(255, 63, 180, 0.35);
  color: white;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  z-index: 100;
  inset: 18px 0 auto;
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  min-height: 64px;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(8, 8, 13, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.brand strong {
  letter-spacing: 0.08em;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 63, 180, 0.25), rgba(94, 231, 242, 0.08));
  box-shadow: inset 0 0 16px rgba(168, 99, 255, 0.2), 0 0 18px rgba(255, 63, 180, 0.16);
}

.brand-mark span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 8px var(--magenta);
}

.brand-mark span:nth-child(1) {
  transform: translate(-7px, 3px);
}

.brand-mark span:nth-child(2) {
  transform: translate(2px, -6px);
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

.brand-mark span:nth-child(3) {
  transform: translate(7px, 7px);
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links a,
.footer-bottom a,
.invest-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-bottom a:hover,
.invest-links a:hover {
  color: white;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.experience-tabs button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(94, 231, 242, 0.7);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.button-outline:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.button-primary {
  color: #10050d;
  background: linear-gradient(135deg, #ff68c2, #b87bff 64%, #6be7ef);
  box-shadow: 0 14px 36px rgba(255, 63, 180, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(255, 63, 180, 0.33);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 48px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.98) 0%, rgba(7, 7, 11, 0.92) 38%, rgba(7, 7, 11, 0.2) 70%, rgba(7, 7, 11, 0.5) 100%),
    radial-gradient(circle at 78% 22%, rgba(255, 63, 180, 0.15), transparent 34%),
    #07070b;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 35%, transparent 88%);
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.hero-ambient-one {
  width: 420px;
  height: 420px;
  left: -180px;
  top: 120px;
  background: var(--purple);
}

.hero-ambient-two {
  width: 500px;
  height: 500px;
  right: -220px;
  bottom: -80px;
  background: var(--magenta);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 44px 0 66px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: #e4bfd9;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 16px var(--magenta);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(3.3rem, 6vw, 6.65rem);
  font-weight: 540;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(95deg, #ffffff 5%, #ff9bd6 42%, #b682ff 72%, #8ef1f6);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 670px;
  margin: 30px 0 0;
  color: #d2ccd8;
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

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

.trust-row {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #aaa5b6;
  font-size: 0.77rem;
}

.trust-row span {
  position: relative;
  padding-left: 13px;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto 40%;
  height: 800px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, #07070b 0%, rgba(7, 7, 11, 0.76) 20%, transparent 47%),
    linear-gradient(0deg, #07070b 0%, transparent 24%),
    url("../images/alma-presence-hero.png");
  background-size: cover;
  background-position: center right;
  filter: saturate(0.95) contrast(1.02);
}

.glass-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 10, 16, 0.68);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.hero-status {
  left: 47%;
  bottom: 94px;
  min-width: 280px;
  padding: 14px 18px;
  gap: 13px;
  border-radius: 16px;
}

.hero-status small,
.hero-status strong {
  display: block;
}

.hero-status small {
  margin-bottom: 3px;
  color: #b9b4c1;
  font-size: 0.7rem;
}

.hero-status strong {
  font-size: 0.96rem;
}

.status-signal {
  width: 12px;
  height: 12px;
  border: 3px solid rgba(100, 227, 161, 0.24);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.source-chip {
  right: 5%;
  top: 33%;
  padding: 10px 14px;
  gap: 8px;
  color: #d8d5df;
  border-radius: 999px;
  font-size: 0.72rem;
}

.source-chip span {
  color: var(--green);
}

.hero-proof {
  position: relative;
  z-index: 4;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 1.45fr;
  gap: 32px;
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-proof strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.hero-proof span,
.hero-proof p {
  color: #9f99a9;
  font-size: 0.74rem;
  line-height: 1.45;
}

.hero-proof p {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.section {
  position: relative;
  padding: 130px 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.9rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section h3 {
  letter-spacing: -0.025em;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.section-problem {
  color: #15131a;
  background: var(--cream);
}

.section-problem .section-kicker,
.section-opportunity .section-kicker {
  color: #8c2d67;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 110px;
  align-items: start;
}

.problem-grid h2 {
  max-width: 720px;
}

.problem-copy {
  padding-top: 44px;
}

.problem-copy p {
  margin: 0 0 20px;
  color: #5f5965;
  font-size: 1.08rem;
}

.problem-copy blockquote {
  margin: 42px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(21, 19, 26, 0.18);
  color: #241b25;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.35;
}

.section-product {
  background:
    radial-gradient(circle at 0% 50%, rgba(168, 99, 255, 0.13), transparent 30%),
    var(--ink-soft);
}

.section-heading {
  margin-bottom: 64px;
}

.wide-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.wide-heading > p {
  margin: 0 0 7px;
  max-width: 530px;
}

.centered-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.pillar-card {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: background 180ms ease;
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.pillar-card > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #de9dcc;
  font-size: 0.7rem;
}

.pillar-card h3 {
  margin: 76px 0 14px;
  font-size: 1.28rem;
}

.pillar-card p {
  margin: 0;
  font-size: 0.92rem;
}

.section-demo {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 63, 180, 0.11), transparent 32%),
    #08080d;
  overflow: hidden;
}

.experience {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.4);
}

.experience-tabs {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.experience-tabs button {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #aaa5b3;
  background: transparent;
  font-size: 0.72rem;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.experience-tabs button:hover,
.experience-tabs button.active {
  color: white;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.07);
}

.experience-stage {
  min-height: 610px;
  padding: 50px 50px 32px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 50px;
  align-items: center;
}

.device-demo {
  position: relative;
  width: min(450px, 100%);
  margin: 0 auto;
}

.device-screen {
  position: relative;
  min-height: 470px;
  padding: 22px 26px;
  overflow: hidden;
  border: 10px solid #20202b;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 25%, rgba(168, 99, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #151520, #0c0c12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13), 0 28px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(168, 99, 255, 0.08);
}

.device-camera {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 50%;
  width: 28px;
  height: 10px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 8px;
  background: #2a2932;
}

.device-camera span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4f5361;
}

.device-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9b3c1;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.device-offline .live-dot {
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}

.device-private .live-dot {
  background: #9892a2;
  box-shadow: none;
}

.device-private .device-camera::after {
  content: "";
  position: absolute;
  inset: 1px 3px;
  border-radius: 4px;
  background: var(--red);
}

.avatar-face {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 26px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-halo {
  position: absolute;
  border: 1px solid rgba(255, 63, 180, 0.38);
  border-radius: 48% 52% 46% 54%;
  animation: halo-float 7s ease-in-out infinite;
}

.avatar-halo-one {
  inset: 2px;
  box-shadow: 0 0 24px rgba(255, 63, 180, 0.23);
}

.avatar-halo-two {
  inset: 16px -5px 8px;
  border-color: rgba(94, 231, 242, 0.28);
  animation-delay: -2s;
}

.avatar-core {
  position: relative;
  width: 104px;
  height: 124px;
  border-radius: 48% 52% 45% 45%;
  background: linear-gradient(160deg, #f4c6b7, #cd8f9f 62%, #6f465e);
  box-shadow: 0 -13px 0 #5d244d, 0 0 50px rgba(255, 63, 180, 0.25);
}

.eye {
  position: absolute;
  top: 51px;
  width: 8px;
  height: 10px;
  border-radius: 50%;
  background: #35203d;
}

.eye-left {
  left: 28px;
}

.eye-right {
  right: 28px;
}

.mouth {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 24px;
  height: 9px;
  transform: translateX(-50%);
  border-bottom: 2px solid #69344c;
  border-radius: 50%;
}

.device-private .avatar-face {
  filter: grayscale(1);
  opacity: 0.42;
}

.conversation-card {
  min-height: 128px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.conversation-card small {
  display: block;
  margin-bottom: 4px;
  color: #8e8797;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversation-card p {
  margin: 0 0 12px;
  color: #aaa5b4;
  font-size: 0.76rem;
  line-height: 1.35;
}

.conversation-card strong {
  display: block;
  color: white;
  font-size: 0.9rem;
  font-weight: 540;
  line-height: 1.42;
}

.verified-source {
  margin-top: 11px;
  padding: 9px 12px;
  border-radius: 10px;
  color: #a9e5c3;
  background: rgba(100, 227, 161, 0.08);
  font-size: 0.63rem;
}

.device-confirm .verified-source {
  color: #ffe1a0;
  background: rgba(255, 202, 106, 0.08);
}

.device-blocked .verified-source {
  color: #ffb4bd;
  background: rgba(255, 114, 133, 0.08);
}

.device-neck {
  width: 62px;
  height: 35px;
  margin: 0 auto -7px;
  border-radius: 0 0 12px 12px;
  background: #24232c;
}

.device-base {
  position: relative;
  width: 88%;
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: linear-gradient(180deg, #2a2933, #121218);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.42), inset 0 4px 10px rgba(255, 255, 255, 0.05), 0 2px 0 var(--magenta);
}

.device-base strong {
  color: #d9d5dd;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.base-button {
  position: absolute;
  left: 32px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #121219;
}

.base-button::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 7px;
  height: 1px;
  transform: rotate(45deg);
  background: var(--red);
}

.help-button {
  right: 32px;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.8rem;
}

.help-button::after {
  display: none;
}

.policy-console {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  overflow: hidden;
  background: #0f0f16;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.console-heading {
  padding: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.console-heading small,
.console-rule span {
  color: #7f7988;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.console-heading h3 {
  margin: 8px 0 0;
  font-size: 1.05rem;
}

.decision-badge {
  padding: 7px 9px;
  border: 1px solid;
  border-radius: 8px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.decision-allowed {
  color: var(--green);
  border-color: rgba(100, 227, 161, 0.35);
  background: rgba(100, 227, 161, 0.08);
}

.decision-confirm,
.decision-offline {
  color: var(--amber);
  border-color: rgba(255, 202, 106, 0.35);
  background: rgba(255, 202, 106, 0.08);
}

.decision-blocked {
  color: var(--red);
  border-color: rgba(255, 114, 133, 0.35);
  background: rgba(255, 114, 133, 0.08);
}

.decision-private {
  color: #c1bbc8;
  border-color: rgba(193, 187, 200, 0.25);
  background: rgba(193, 187, 200, 0.07);
}

.console-trace {
  padding: 10px 22px;
}

.trace-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trace-row:last-child {
  border-bottom: 0;
}

.trace-row > span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: #8f8998;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
}

.trace-row p {
  margin: 0;
  color: #c4bfca;
  font-size: 0.76rem;
}

.trace-row i {
  color: var(--green);
  font-style: normal;
  text-align: right;
}

.trace-active i {
  color: var(--amber);
}

.trace-blocked i {
  color: var(--red);
}

.console-rule {
  margin: 0 14px 14px;
  padding: 15px;
  border: 1px solid rgba(168, 99, 255, 0.18);
  border-radius: 12px;
  background: rgba(168, 99, 255, 0.06);
}

.console-rule p {
  margin: 7px 0 0;
  color: #bbb5c4;
  font-size: 0.68rem;
  line-height: 1.45;
}

.demo-note {
  margin: 22px auto 0;
  color: #827c8b !important;
  font-size: 0.7rem;
  text-align: center;
}

.section-opportunity {
  color: #19151c;
  background: #f0e9e3;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 0.83fr;
  gap: 110px;
  align-items: center;
}

.market-panel h2 {
  max-width: 720px;
}

.market-stat {
  margin-top: 58px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1fr;
  gap: 34px;
  align-items: baseline;
  border-top: 1px solid rgba(25, 21, 28, 0.18);
}

.market-stat-secondary {
  margin-top: 0;
  border-bottom: 1px solid rgba(25, 21, 28, 0.18);
}

.market-stat strong {
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 530;
  letter-spacing: -0.06em;
}

.market-stat span {
  max-width: 240px;
  color: #665e68;
  line-height: 1.45;
}

.source-link {
  display: inline-block;
  margin-top: 20px;
  color: #78305b;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.opportunity-copy {
  padding: 44px;
  border: 1px solid rgba(25, 21, 28, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.3);
}

.opportunity-copy > p {
  margin: 0;
  color: #5d5661;
  font-size: 1.04rem;
}

.opportunity-copy h3 {
  margin: 42px 0 18px;
  font-size: 1.3rem;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.channel-list span {
  padding: 9px 11px;
  border: 1px solid rgba(25, 21, 28, 0.14);
  border-radius: 999px;
  color: #625b66;
  font-size: 0.72rem;
}

.section-safety {
  background:
    linear-gradient(135deg, rgba(94, 231, 242, 0.055), transparent 40%),
    var(--ink-soft);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
  align-items: center;
}

.safety-grid > div:first-child > p:not(.section-kicker) {
  max-width: 560px;
  margin: 25px 0;
}

.text-link {
  color: #e8b5d9;
  font-size: 0.86rem;
}

.safety-flow {
  display: grid;
  gap: 8px;
}

.flow-step {
  position: relative;
  min-height: 72px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.flow-step > span {
  color: #8d8796;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
}

.flow-step strong {
  font-size: 0.92rem;
  font-weight: 560;
}

.flow-step i {
  position: absolute;
  z-index: 2;
  left: 38px;
  bottom: -15px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cyan);
  background: var(--ink-soft);
  font-size: 0.7rem;
  font-style: normal;
}

.section-moat {
  background: #08080d;
}

.moat-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 120px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 126px;
}

.sticky-heading > p:last-child {
  max-width: 490px;
  margin-top: 24px;
}

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

.moat-item {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.moat-item > span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 63, 180, 0.25);
  border-radius: 50%;
  color: #dc88bd;
  font-size: 0.65rem;
}

.moat-item p {
  margin: 0;
  color: #ddd7e3;
  font-size: 1.03rem;
}

.section-business {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 63, 180, 0.1), transparent 28%),
    #101018;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.business-card {
  min-height: 180px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.business-card strong {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 520;
  letter-spacing: -0.055em;
}

.business-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.planning-note {
  margin: 20px 0 0 !important;
  color: #85808e !important;
  font-size: 0.7rem;
}

.section-roadmap {
  background: var(--ink);
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.roadmap-item {
  position: relative;
  min-height: 320px;
  padding: 0 24px 28px;
  border-right: 1px solid var(--line);
}

.roadmap-item:first-child {
  padding-left: 0;
}

.roadmap-item:last-child {
  border-right: 0;
}

.roadmap-marker {
  position: relative;
  height: 74px;
}

.roadmap-marker span {
  position: absolute;
  top: -16px;
  left: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 63, 180, 0.38);
  border-radius: 50%;
  color: #ef9ccd;
  background: var(--ink);
  font-size: 0.67rem;
}

.roadmap-item small {
  color: #d482b7;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-item h3 {
  margin: 13px 0;
  font-size: 1.08rem;
}

.roadmap-item p {
  margin: 0;
  font-size: 0.83rem;
}

.section-fund {
  color: #18151b;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 63, 180, 0.08), transparent 30%),
    #efe8e2;
}

.section-fund .section-kicker {
  color: #8c2d67;
}

.fund-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.fund-grid > div:first-child > p:last-child {
  max-width: 600px;
  margin-top: 25px;
  color: #5f5862;
}

.fund-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  border: 1px solid rgba(24, 21, 27, 0.15);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.33);
}

.fund-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fund-number small {
  color: #6f6672;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fund-number strong {
  margin: 14px 0 7px;
  color: #211a23;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 520;
  letter-spacing: -0.06em;
}

.fund-number span {
  color: #756d78;
  font-size: 0.75rem;
}

.fund-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fund-card li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid rgba(24, 21, 27, 0.1);
  color: #5c555f;
  font-size: 0.78rem;
}

.fund-card li:last-child {
  border-bottom: 0;
}

.fund-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a52f78;
}

.section-invest {
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 20% 50%, rgba(168, 99, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255, 63, 180, 0.12), transparent 28%),
    #09090e;
}

.invest-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 110px;
  align-items: center;
}

.invest-copy > p:not(.section-kicker) {
  max-width: 530px;
  margin: 25px 0;
}

.invest-links {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  color: #eab5d8;
  font-size: 0.84rem;
}

.investor-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading > span {
  color: #c484af;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.form-heading h3 {
  margin: 9px 0 0;
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.investor-form label:not(.consent-label) {
  margin-bottom: 13px;
  display: block;
}

.investor-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: #b9b3c0;
  font-size: 0.7rem;
}

.investor-form input:not([type="checkbox"]),
.investor-form select,
.investor-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  color: white;
  background: rgba(5, 5, 9, 0.55);
  transition: border-color 180ms ease, background 180ms ease;
}

.investor-form input:not([type="checkbox"]),
.investor-form select {
  height: 45px;
  padding: 0 13px;
}

.investor-form textarea {
  padding: 12px 13px;
  resize: vertical;
}

.investor-form input:hover,
.investor-form select:hover,
.investor-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.investor-form select option {
  color: #111;
}

.consent-label {
  margin: 4px 0 18px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #9993a1;
  font-size: 0.68rem;
  line-height: 1.45;
}

.consent-label input {
  margin: 2px 0 0;
  accent-color: var(--magenta);
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-message {
  margin: 15px 0 0 !important;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 0.72rem;
}

.form-success {
  color: #b7f0cf !important;
  background: rgba(100, 227, 161, 0.08);
}

.form-error {
  color: #ffc0c8 !important;
  background: rgba(255, 114, 133, 0.08);
}

.form-privacy {
  display: block;
  margin-top: 11px;
  color: #77717e;
  font-size: 0.6rem;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: #07070b;
}

.footer-grid {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.footer-grid > div p {
  max-width: 360px;
  margin: 20px 0 0;
  color: #817b89;
  font-size: 0.78rem;
}

.footer-disclaimer {
  margin: 0;
  color: #77717f;
  font-size: 0.68rem;
  line-height: 1.65;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f6976;
  font-size: 0.65rem;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

@keyframes halo-float {
  0%,
  100% {
    transform: rotate(-3deg) scale(1);
  }
  50% {
    transform: rotate(4deg) scale(1.04);
  }
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    inset: 0 0 auto 22%;
    opacity: 0.58;
  }

  .hero-image {
    background-image:
      linear-gradient(90deg, #07070b 0%, rgba(7, 7, 11, 0.88) 35%, rgba(7, 7, 11, 0.15) 75%),
      linear-gradient(0deg, #07070b 0%, transparent 28%),
      url("../images/alma-presence-hero.png");
  }

  .hero-status,
  .source-chip {
    display: none;
  }

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

  .pillar-card:nth-child(2) {
    border-right: 0;
  }

  .pillar-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .experience-stage {
    grid-template-columns: 1fr;
  }

  .policy-console {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .opportunity-grid,
  .safety-grid,
  .moat-grid,
  .fund-grid,
  .invest-grid {
    gap: 65px;
  }

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

  .roadmap-list {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 0;
  }

  .roadmap-item {
    min-height: 260px;
    border-top: 1px solid var(--line);
  }

  .roadmap-item:nth-child(odd) {
    padding-left: 0;
  }

  .roadmap-item:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .site-nav {
    width: min(100% - 28px, 1240px);
  }

  .site-nav {
    inset: 10px 0 auto;
    min-height: 58px;
    padding-left: 14px;
    gap: 12px;
    border-radius: 15px;
  }

  .site-nav .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  .brand {
    gap: 8px;
    font-size: 0.85rem;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 34px;
  }

  .hero-grid {
    min-height: 650px;
  }

  .hero-copy {
    padding: 250px 0 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .hero-visual {
    inset: 75px -80px auto -80px;
    height: 420px;
    opacity: 0.82;
  }

  .hero-image {
    background-image:
      linear-gradient(0deg, #07070b 0%, transparent 48%),
      linear-gradient(90deg, rgba(7, 7, 11, 0.65), transparent 70%),
      url("../images/alma-presence-hero.png");
    background-position: 66% center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 10px 14px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .hero-proof p {
    grid-column: 1 / -1;
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-proof > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .section {
    padding: 88px 0;
  }

  .problem-grid,
  .wide-heading,
  .opportunity-grid,
  .safety-grid,
  .moat-grid,
  .fund-grid,
  .invest-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .problem-copy {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

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

  .pillar-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

  .pillar-card h3 {
    margin-top: 44px;
  }

  .experience {
    padding: 8px;
    border-radius: 22px;
  }

  .experience-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .experience-stage {
    min-height: auto;
    padding: 28px 8px 12px;
    gap: 34px;
  }

  .device-screen {
    min-height: 440px;
    padding: 20px 20px;
    border-width: 8px;
  }

  .opportunity-copy {
    padding: 27px;
  }

  .market-stat {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sticky-heading {
    position: static;
  }

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

  .business-card {
    min-height: 145px;
  }

  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    min-height: 220px;
    padding-left: 0;
    border-right: 0;
  }

  .fund-card {
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .investor-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    padding-bottom: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@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;
  }
}

/* Technical build-plan route */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.build-page {
  background: #08080d;
}

.build-hero {
  position: relative;
  min-height: 780px;
  padding: 172px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 70% 28%, rgba(168, 99, 255, 0.15), transparent 30%),
    #08080d;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.build-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.build-orb-one {
  width: 420px;
  height: 420px;
  left: -220px;
  top: 240px;
  background: var(--magenta);
}

.build-orb-two {
  width: 480px;
  height: 480px;
  right: -240px;
  bottom: -120px;
  background: var(--cyan);
}

.build-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 100px;
  align-items: center;
}

.build-hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 6.7rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.build-hero-grid > div:first-child > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.build-summary-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.build-summary-card > small {
  color: #c286ad;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.build-summary-card h2 {
  margin: 12px 0 26px;
  font-size: 1.65rem;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.build-summary-card > div {
  padding: 19px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid var(--line);
}

.build-summary-card strong {
  font-size: 1.6rem;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.build-summary-card span,
.build-summary-card p {
  color: #9993a1;
  font-size: 0.72rem;
}

.build-summary-card p {
  margin: 18px 0 0;
  line-height: 1.5;
}

.build-section {
  padding: 120px 0;
}

.build-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.build-section p {
  color: var(--muted);
  line-height: 1.7;
}

.build-principle {
  color: #18151c;
  background: #efe8e3;
}

.build-principle .section-kicker {
  color: #8c2d67;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.principle-statement > p {
  margin: 0 0 30px;
  color: #5e5761;
  font-size: 1.04rem;
}

.principle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.principle-badges span {
  padding: 9px 11px;
  border: 1px solid rgba(24, 21, 28, 0.14);
  border-radius: 999px;
  color: #5f5561;
  font-size: 0.7rem;
}

.backend-section {
  background:
    radial-gradient(circle at 0% 20%, rgba(94, 231, 242, 0.08), transparent 28%),
    #0b0b11;
}

.architecture-stack {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 12px;
  align-items: center;
}

.architecture-stack > i {
  color: #918a99;
  font-style: normal;
  transform: rotate(-90deg);
}

.architecture-layer {
  min-height: 260px;
  min-width: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.architecture-layer > span {
  min-height: 44px;
  color: #9c95a3;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.architecture-layer > div {
  display: grid;
  gap: 8px;
}

.architecture-layer strong {
  min-height: 48px;
  padding: 10px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(5, 5, 9, 0.22);
  font-size: 0.72rem;
  font-weight: 540;
}

.layer-sense {
  background: rgba(94, 231, 242, 0.06);
}

.layer-edge {
  background: rgba(100, 227, 161, 0.06);
}

.layer-policy {
  border-color: rgba(255, 114, 133, 0.23);
  background: rgba(168, 99, 255, 0.08);
}

.layer-tools {
  background: rgba(255, 202, 106, 0.06);
}

.api-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.api-grid article {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.api-grid article:nth-child(3n) {
  border-right: 0;
}

.api-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.api-grid h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.api-grid code {
  margin: 8px 0;
  display: block;
  color: #afa8b6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.63rem;
}

.backend-delivery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.backend-delivery-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.backend-delivery-grid span {
  color: #cd8eb7;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.backend-delivery-grid h3 {
  margin: 11px 0 10px;
  font-size: 1.1rem;
}

.backend-delivery-grid p {
  margin: 0;
  font-size: 0.78rem;
}

.bom-section {
  color: #19151c;
  background: #efe9e4;
}

.bom-section .section-kicker {
  color: #8c2d67;
}

.bom-section .wide-heading > p {
  color: #5f5862;
}

.bom-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(25, 21, 28, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.27);
}

.bom-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.bom-table th,
.bom-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(25, 21, 28, 0.1);
  text-align: left;
  vertical-align: top;
}

.bom-table th {
  color: #817785;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bom-table td {
  color: #5f5762;
  font-size: 0.71rem;
  line-height: 1.45;
}

.bom-table tbody tr:last-child td {
  border-bottom: 0;
}

.bom-table td strong {
  color: #201a22;
  font-weight: 630;
}

.bom-table td:nth-child(2),
.bom-table td:nth-child(5) {
  white-space: nowrap;
}

.bom-table td:last-child a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 21, 28, 0.15);
  border-radius: 8px;
  color: #8c2d67;
  background: rgba(255, 255, 255, 0.32);
}

.group-chip {
  padding: 6px 8px;
  border-radius: 999px;
  color: #6f5268;
  background: rgba(140, 45, 103, 0.08);
  font-size: 0.59rem;
}

.cost-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cost-cards > div {
  min-height: 180px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(25, 21, 28, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.cost-cards small {
  color: #8c2d67;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.cost-cards strong {
  margin: 18px 0 8px;
  font-size: 2rem;
  font-weight: 540;
  letter-spacing: -0.045em;
}

.cost-cards p {
  margin: auto 0 0;
  color: #645c67;
  font-size: 0.71rem;
  line-height: 1.5;
}

.optional-section {
  background: #0c0c12;
}

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

.optional-grid > a {
  min-height: 235px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.optional-grid > a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.optional-grid span {
  color: #d990bf;
  font-size: 0.67rem;
  font-weight: 700;
}

.optional-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.12rem;
}

.optional-grid p {
  margin: 0;
  font-size: 0.76rem;
}

.optional-grid i {
  margin-top: auto;
  padding-top: 18px;
  color: #918a98;
  font-size: 0.64rem;
  font-style: normal;
}

.assembly-section {
  background:
    radial-gradient(circle at 100% 30%, rgba(255, 63, 180, 0.08), transparent 30%),
    #08080d;
}

.assembly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.assembly-grid article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assembly-grid article:nth-child(3n) {
  border-right: 0;
}

.assembly-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.assembly-grid span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 63, 180, 0.28);
  border-radius: 50%;
  color: #e691c2;
  font-size: 0.64rem;
}

.assembly-grid h3 {
  margin: 54px 0 12px;
  font-size: 1.16rem;
}

.assembly-grid p {
  margin: 0;
  font-size: 0.78rem;
}

.validation-section {
  color: #19151c;
  background: #efe8e3;
}

.validation-section .section-kicker {
  color: #8c2d67;
}

.validation-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.validation-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: validation;
  border-top: 1px solid rgba(25, 21, 28, 0.16);
}

.validation-grid li {
  counter-increment: validation;
  min-height: 70px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(25, 21, 28, 0.13);
  color: #534c57;
  font-size: 0.84rem;
  line-height: 1.45;
}

.validation-grid li::before {
  content: counter(validation, decimal-leading-zero);
  color: #9a4e7b;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
}

.build-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 99, 255, 0.18), transparent 34%),
    #08080d;
}

.build-cta-card {
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.build-cta-card h2 {
  max-width: 740px;
}

.build-cta-card p:not(.section-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
}

.build-cta-card > div:last-child {
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.build-footer {
  padding-bottom: 0;
}

@media (max-width: 1080px) {
  .build-hero-grid,
  .principle-grid,
  .validation-grid {
    gap: 55px;
  }

  .architecture-stack {
    grid-template-columns: 1fr;
  }

  .architecture-stack > i {
    justify-self: center;
    transform: none;
  }

  .architecture-layer {
    min-height: auto;
  }

  .architecture-layer > div {
    grid-template-columns: repeat(3, 1fr);
  }

  .api-grid,
  .assembly-grid {
    grid-template-columns: 1fr 1fr;
  }

  .api-grid article:nth-child(3n),
  .assembly-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .api-grid article:nth-child(2n),
  .assembly-grid article:nth-child(2n) {
    border-right: 0;
  }

  .api-grid article:nth-last-child(-n + 3),
  .assembly-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .api-grid article:nth-last-child(-n + 2),
  .assembly-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .build-cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .build-hero {
    min-height: auto;
    padding: 125px 0 80px;
  }

  .build-hero-grid,
  .principle-grid,
  .validation-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .build-hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .build-section {
    padding: 88px 0;
  }

  .architecture-layer > div {
    grid-template-columns: 1fr;
  }

  .api-grid,
  .backend-delivery-grid,
  .cost-cards,
  .optional-grid,
  .assembly-grid {
    grid-template-columns: 1fr;
  }

  .api-grid article,
  .api-grid article:nth-child(3n),
  .api-grid article:nth-child(2n),
  .assembly-grid article,
  .assembly-grid article:nth-child(3n),
  .assembly-grid article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .api-grid article:last-child,
  .assembly-grid article:last-child {
    border-bottom: 0;
  }

  .build-cta-card {
    padding: 32px 24px;
  }

  .build-cta-card > div:last-child {
    min-width: 0;
  }
}


/* Static-package additions */
.brand-logo {
  display: block;
  width: 106px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.brand-product {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.static-form-note {
  margin: 12px 0 0;
  color: #8f8999;
  font-size: 0.7rem;
  line-height: 1.5;
}

.static-form-result {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(94, 231, 242, 0.24);
  border-radius: 16px;
  background: rgba(94, 231, 242, 0.055);
}

.static-form-result h4 {
  margin: 0 0 7px;
  font-size: 0.95rem;
}

.static-form-result > p {
  margin: 0 0 12px;
  color: #b8b2c7;
  font-size: 0.75rem;
  line-height: 1.5;
}

.static-form-result textarea {
  width: 100%;
  min-height: 190px;
  resize: vertical;
}

.static-result-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.static-result-actions .button {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.76rem;
}

.noscript-note {
  margin: 0;
  padding: 12px 20px;
  color: #23151e;
  background: #ffca6a;
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 620px) {
  .brand-logo { width: 88px; }
  .brand-product { display: none; }
}
