:root {
  color-scheme: dark;
  --bg: #030611;
  --bg-2: #06101f;
  --panel: rgba(8, 18, 34, 0.78);
  --panel-strong: rgba(9, 22, 42, 0.92);
  --line: rgba(86, 186, 255, 0.24);
  --line-strong: rgba(86, 186, 255, 0.46);
  --text: #f5f8ff;
  --muted: rgba(229, 239, 255, 0.66);
  --soft: rgba(229, 239, 255, 0.42);
  --blue: #1fa8ff;
  --cyan: #55f2ff;
  --green: #63f2bf;
  --silver: #dce7f8;
  --shadow: 0 24px 80px rgba(0, 85, 180, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(22, 126, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 22%, rgba(67, 235, 255, 0.15), transparent 26rem),
    linear-gradient(180deg, #02040a 0%, var(--bg) 44%, #030914 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(85, 242, 255, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 242, 255, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(31, 168, 255, 0.055) 48%, transparent 52%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 34rem);
  animation: fieldDrift 18s ease-in-out infinite alternate;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(86, 186, 255, 0.18);
  background: rgba(3, 6, 17, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(85, 242, 255, 0.38);
  box-shadow: 0 0 32px rgba(31, 168, 255, 0.36);
}

.brand-word {
  display: grid;
  gap: 1px;
}

.brand-word strong {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.brand-word em {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 2px 6px 1px;
  border: 1px solid rgba(85, 242, 255, 0.42);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.62em;
  font-style: normal;
  letter-spacing: 0.12em;
  vertical-align: 0.14em;
}

.brand-word span {
  color: var(--soft);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(86, 186, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.84rem;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(31, 168, 255, 0.14);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(86, 186, 255, 0.32);
  color: var(--text);
  background: rgba(31, 168, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  padding: 9px 15px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.btn {
  padding: 12px 18px;
  font-weight: 760;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 242, 255, 0.68);
  box-shadow: 0 16px 46px rgba(31, 168, 255, 0.22);
}

.btn.primary {
  border-color: rgba(85, 242, 255, 0.52);
  background: linear-gradient(135deg, #1169e6, #19c6ff 55%, #67f0d2);
  color: #02101e;
}

.btn.ghost {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(86, 186, 255, 0.18);
  background:
    radial-gradient(circle at 78% 46%, rgba(31, 168, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 18% 42%, rgba(85, 242, 255, 0.1), transparent 20rem),
    linear-gradient(135deg, rgba(3, 6, 17, 0.98), rgba(4, 12, 25, 0.92));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  position: absolute;
  right: min(6vw, 80px);
  top: 50%;
  width: min(48vw, 620px);
  height: auto;
  object-fit: contain;
  opacity: 0.18;
  filter: saturate(1.08) contrast(1.04) blur(0.2px);
  transform: translateY(-50%) scale(1);
  animation: slowFloat 18s ease-in-out infinite alternate;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  background:
    linear-gradient(180deg, rgba(3, 6, 17, 0.08) 0%, rgba(3, 6, 17, 0.42) 58%, rgba(3, 6, 17, 0.94) 100%),
    linear-gradient(90deg, rgba(3, 6, 17, 0.7), rgba(3, 6, 17, 0.22) 55%, rgba(3, 6, 17, 0.68)),
    repeating-linear-gradient(90deg, rgba(85, 242, 255, 0.08) 0 1px, transparent 1px 120px);
}

.hero-media::after {
  background: linear-gradient(105deg, transparent 22%, rgba(85, 242, 255, 0.2) 47%, transparent 58%);
  transform: translateX(-70%);
  animation: scanLight 7s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 78px 22px 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(310px, 0.62fr);
  gap: 32px;
  align-items: center;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #b9f7ff;
  border: 1px solid rgba(85, 242, 255, 0.38);
  background: rgba(5, 21, 39, 0.68);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1,
.page-hero h1 {
  margin-top: 18px;
  max-width: 830px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
}

.hero h1 span,
.page-hero h1 span,
.accent {
  color: var(--cyan);
  text-shadow: 0 0 36px rgba(85, 242, 255, 0.36);
}

.hero-copy,
.page-copy {
  margin-top: 22px;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.72;
  overflow-wrap: anywhere;
}

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

.hero-status {
  align-self: center;
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.94), rgba(5, 12, 25, 0.97));
  border: 1px solid rgba(86, 186, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.status-head {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(86, 186, 255, 0.18);
}

.status-head strong {
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(99, 242, 191, 0.55);
  animation: pulse 1.8s infinite;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.roadmap-list {
  display: grid;
}

.roadmap-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(86, 186, 255, 0.12);
}

.roadmap-list div:last-child {
  border-bottom: 0;
}

.roadmap-list span {
  color: var(--text);
  font-weight: 760;
}

.roadmap-list strong {
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.metric {
  padding: 18px;
  min-height: 92px;
  border-right: 1px solid rgba(86, 186, 255, 0.12);
  border-bottom: 1px solid rgba(86, 186, 255, 0.12);
}

.metric:nth-child(2n) {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: 1.54rem;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 92px 22px;
}

.section.tight {
  padding-top: 56px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.kicker {
  color: var(--cyan);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 780;
}

.section h2 {
  margin-top: 10px;
  max-width: 760px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-head p,
.section > p {
  color: var(--muted);
  line-height: 1.72;
  max-width: 520px;
}

.product-grid,
.capability-grid,
.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card,
.feature-card,
.contact-card {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(86, 186, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--panel);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover,
.feature-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 242, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(31, 168, 255, 0.11), rgba(255, 255, 255, 0.018)),
    var(--panel-strong);
}

.card {
  padding: 22px;
}

.card::before,
.feature-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(85, 242, 255, 0.18), transparent 36%);
  opacity: 0.55;
}

.card > *,
.feature-card > *,
.contact-card > * {
  position: relative;
}

.card-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  color: #02101e;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
  box-shadow: 0 0 28px rgba(31, 168, 255, 0.35);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 7px;
  color: var(--cyan);
  border: 1px solid rgba(85, 242, 255, 0.34);
  background: rgba(31, 168, 255, 0.09);
  box-shadow: 0 0 28px rgba(31, 168, 255, 0.2);
}

.product-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.feature-card h3,
.contact-card h3 {
  margin-top: 18px;
  font-size: 1.08rem;
}

.card p,
.feature-card p,
.contact-card p,
.mini-copy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.tag {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(85, 242, 255, 0.28);
  border-radius: 999px;
  color: #b9f7ff;
  background: rgba(31, 168, 255, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase {
  position: relative;
  margin-top: 22px;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(310px, 0.55fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-media,
.page-media {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(86, 186, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: #02040a;
  box-shadow: var(--shadow);
}

.showcase-media img,
.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.showcase-media::after,
.page-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 17, 0.48));
}

.showcase-panel {
  padding: 28px;
  border: 1px solid rgba(86, 186, 255, 0.18);
  border-radius: var(--radius);
  background: var(--panel-strong);
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.rail-list {
  display: grid;
  gap: 12px;
}

.rail-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(86, 186, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.rail-item b {
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.rail-item strong {
  display: block;
  margin-bottom: 4px;
}

.rail-item span {
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--cyan);
  font-weight: 780;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(310px, 0.62fr);
  gap: 28px;
  align-items: center;
}

.statement {
  padding: 30px;
  border: 1px solid rgba(86, 186, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(31, 168, 255, 0.11), rgba(255, 255, 255, 0.02));
}

.statement p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.pull-quote {
  padding: clamp(30px, 5vw, 48px);
  border-color: rgba(85, 242, 255, 0.4);
  background:
    linear-gradient(135deg, rgba(31, 168, 255, 0.2), rgba(99, 242, 191, 0.06)),
    rgba(6, 16, 31, 0.88);
  box-shadow: var(--shadow);
}

.pull-quote p {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.statement strong {
  color: var(--text);
}

.page-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 86px 22px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.54fr);
  gap: 34px;
  align-items: center;
}

.contact-hero {
  grid-template-columns: minmax(0, 0.9fr);
  padding-bottom: 28px;
}

.about-hero {
  grid-template-columns: minmax(0, 0.92fr);
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
}

.page-media {
  min-height: 360px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-card.wide {
  grid-column: span 2;
}

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

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.static-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(86, 186, 255, 0.24);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  padding: 13px 14px;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(85, 242, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(31, 168, 255, 0.14);
}

.form-note {
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

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

.interest-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(86, 186, 255, 0.18);
  border-radius: 7px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.interest-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 242, 255, 0.5);
  background: rgba(31, 168, 255, 0.12);
}

.interest-list a span {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.interest-list a.is-selected,
.interest-list a:focus-visible {
  border-color: rgba(99, 242, 191, 0.72);
  background: rgba(99, 242, 191, 0.12);
  outline: none;
}

.form-note a,
.mini-copy a {
  color: var(--cyan);
}

.social-proof {
  padding-top: 48px;
  padding-bottom: 48px;
}

.cta-band {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto 86px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(85, 242, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(31, 168, 255, 0.2), rgba(99, 242, 191, 0.07)),
    rgba(6, 16, 31, 0.88);
  box-shadow: var(--shadow);
}

.notify-form {
  display: flex;
  gap: 10px;
  min-width: min(100%, 420px);
}

.notify-form input {
  min-width: 0;
  flex: 1;
  color: var(--text);
  border: 1px solid rgba(86, 186, 255, 0.3);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  padding: 12px 14px;
  outline: none;
}

.notify-form input:focus {
  border-color: rgba(85, 242, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(31, 168, 255, 0.14);
}

.btn.is-confirmed {
  border-color: rgba(99, 242, 191, 0.78);
  background: linear-gradient(135deg, #37dfaa, #55f2ff);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  line-height: 1;
}

.cta-band p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 610px;
  line-height: 1.7;
}

.footer {
  border-top: 1px solid rgba(86, 186, 255, 0.16);
  background: rgba(0, 0, 0, 0.26);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--soft);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero .reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes slowFloat {
  from {
    transform: translateY(-50%) scale(1);
  }
  to {
    transform: translateY(-52%) scale(1.04);
  }
}

@keyframes scanLight {
  0%,
  45% {
    transform: translateX(-80%);
    opacity: 0;
  }
  62% {
    opacity: 0.75;
  }
  100% {
    transform: translateX(78%);
    opacity: 0;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(99, 242, 191, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 242, 191, 0);
  }
}

@keyframes fieldDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(18px, -10px, 0);
  }
}

@media (max-width: 940px) {
  .nav {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-inner,
  .page-hero,
  .split,
  .showcase,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 150px;
  }

  .hero-media img {
    right: -90px;
    width: 620px;
    opacity: 0.12;
  }

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

  .section-head,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .notify-form {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .brand-word strong {
    font-size: 0.82rem;
  }

  .brand-word span {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner,
  .page-hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.6rem);
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11.4vw, 2.86rem);
    max-width: 340px;
  }

  .hero-copy,
  .page-copy {
    font-size: 0.98rem;
    max-width: min(340px, calc(100vw - 40px));
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: min(340px, calc(100vw - 40px));
  }

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

  .notify-form {
    display: grid;
  }

  .hero-status {
    max-width: min(100%, calc(100vw - 32px));
  }

  .roadmap-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .roadmap-list strong {
    font-size: 0.72rem;
    white-space: normal;
  }

  .hero-media img {
    right: -170px;
    width: 500px;
    opacity: 0.1;
  }

  .product-grid,
  .capability-grid,
  .values-grid,
  .status-grid,
  .interest-list {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    grid-column: auto;
  }

  .showcase-media,
  .page-media {
    min-height: 280px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
