:root {
  --ink: #0a1120;
  --ink-soft: #121d31;
  --slate: #566174;
  --paper: #f4f1e9;
  --paper-deep: #e8e3d8;
  --white: #fffefd;
  --signal: #c9ff63;
  --signal-strong: #b8f248;
  --blue: #7692ff;
  --coral: #ff8e6e;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(10, 17, 32, 0.13);
  --shadow: 0 24px 70px rgba(10, 17, 32, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

::selection {
  background: var(--signal);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(10, 17, 32, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-legal {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 7px;
  padding-inline: 17px;
  background: var(--signal);
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--signal-strong);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: -260px;
  left: 55%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 146, 255, 0.19), rgba(118, 146, 255, 0) 67%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 80px;
  min-height: 690px;
  padding-block: 92px 108px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.hero .eyebrow,
.dark-panel .eyebrow,
.page-hero .eyebrow {
  color: var(--signal);
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.25rem);
  font-weight: 720;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.hero-title .accent {
  display: block;
  color: var(--signal);
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--signal);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--signal-strong);
}

.button-secondary {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline-dark {
  border-color: var(--line-light);
  color: var(--ink);
}

.arrow {
  font-size: 17px;
  line-height: 1;
  transition: transform 160ms ease;
}

.button:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(3px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-meta span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.product-visual {
  position: relative;
  min-height: 510px;
}

.visual-orbit {
  position: absolute;
  top: 10%;
  right: 3%;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.visual-orbit::before {
  top: 23px;
  left: 48px;
  width: 18px;
  height: 18px;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 142, 110, 0.08);
}

.visual-orbit::after {
  right: 22px;
  bottom: 91px;
  width: 12px;
  height: 12px;
  background: var(--signal);
  box-shadow: 0 0 0 7px rgba(201, 255, 99, 0.08);
}

.device {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 270px;
  min-height: 500px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px;
  background: #060b15;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%) rotate(4deg);
}

.device-screen {
  position: relative;
  min-height: 474px;
  overflow: hidden;
  padding: 32px 20px 20px;
  border-radius: 33px;
  background:
    radial-gradient(circle at 85% 8%, rgba(118, 146, 255, 0.52), transparent 28%),
    linear-gradient(155deg, #1b2945 0%, #101828 48%, #0d1422 100%);
}

.device-screen::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 78px;
  height: 20px;
  border-radius: 999px;
  background: #050913;
  content: "";
  transform: translateX(-50%);
}

.device-kicker {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.device-heading {
  margin: 9px 0 0;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.device-signal {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 142px;
  margin-top: 23px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.06);
}

.signal-bars {
  display: flex;
  height: 90px;
  align-items: end;
  gap: 5px;
}

.signal-bars i {
  display: block;
  width: 11px;
  border-radius: 6px 6px 2px 2px;
  background: var(--signal);
}

.signal-bars i:nth-child(1) { height: 28%; opacity: 0.38; }
.signal-bars i:nth-child(2) { height: 43%; opacity: 0.52; }
.signal-bars i:nth-child(3) { height: 64%; opacity: 0.66; }
.signal-bars i:nth-child(4) { height: 52%; opacity: 0.75; }
.signal-bars i:nth-child(5) { height: 84%; opacity: 0.88; }
.signal-bars i:nth-child(6) { height: 100%; }

.signal-value {
  text-align: right;
}

.signal-value strong {
  display: block;
  color: var(--signal);
  font-size: 28px;
  letter-spacing: -0.05em;
}

.signal-value span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  text-transform: uppercase;
}

.device-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.device-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.device-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--coral);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.device-row:nth-child(2) .device-icon {
  background: var(--blue);
}

.device-row:nth-child(3) .device-icon {
  background: var(--signal);
}

.device-row strong,
.device-row small {
  display: block;
}

.device-row strong {
  font-size: 11px;
}

.device-row small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.device-row em {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-style: normal;
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(20, 31, 52, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.float-card strong,
.float-card small {
  display: block;
}

.float-card strong {
  font-size: 13px;
}

.float-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
}

.float-card-one {
  top: 88px;
  left: 0;
}

.float-card-two {
  right: -5px;
  bottom: 82px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(201, 255, 99, 0.09);
}

.statement-strip {
  border-bottom: 1px solid var(--line-light);
  background: var(--white);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.55fr);
  min-height: 114px;
  align-items: stretch;
}

.statement-intro,
.statement-item {
  display: flex;
  align-items: center;
  padding: 24px 28px;
}

.statement-intro {
  padding-left: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.statement-item {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid var(--line-light);
}

.statement-item strong {
  font-size: 14px;
}

.statement-item span {
  color: var(--slate);
  font-size: 12px;
}

.section {
  padding-block: 118px;
}

.section-tight {
  padding-block: 84px;
}

.section-white {
  background: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  margin-bottom: 62px;
}

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

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 680;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.section-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 18px;
}

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

.capability-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.capability-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.capability-number {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.capability-card:nth-child(2) .capability-number {
  background: var(--blue);
  color: var(--ink);
}

.capability-card:nth-child(3) .capability-number {
  background: var(--coral);
  color: var(--ink);
}

.capability-card h3 {
  margin: 85px 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.capability-card p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

.card-glyph {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 76px;
  height: 76px;
  opacity: 0.11;
}

.dark-panel-wrap {
  padding: 0 20px;
  background: var(--paper);
}

.dark-panel {
  position: relative;
  width: min(100%, 1440px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.dark-panel::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.dark-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  padding-block: 108px;
}

.dark-panel h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 670;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.dark-panel-copy {
  align-self: end;
}

.dark-panel-copy > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.principle-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
}

.principle-list span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
}

.principle-list strong {
  font-size: 14px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  color: var(--white);
}

.work-card-secondary {
  background: var(--paper-deep);
  color: var(--ink);
}

.work-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-card-secondary .work-status {
  border-color: var(--line-light);
  color: var(--slate);
}

.work-card h3 {
  max-width: 500px;
  margin: 110px 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.work-card-secondary h3 {
  margin-top: 150px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.work-card p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.work-card-secondary p {
  color: var(--slate);
}

.work-shape {
  position: absolute;
  top: 30px;
  right: 35px;
  width: 150px;
  height: 150px;
  border: 26px solid var(--signal);
  border-radius: 42% 58% 65% 35% / 45% 34% 66% 55%;
  transform: rotate(18deg);
}

.work-card-secondary .work-shape {
  width: 120px;
  height: 120px;
  border: 0;
  border-radius: 28px;
  background: var(--coral);
  box-shadow: -32px 32px 0 var(--blue);
  transform: rotate(10deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cta-section {
  padding-block: 108px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 58px 64px;
  border-radius: var(--radius-lg);
  background: var(--signal);
}

.cta-card h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.cta-card p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(10, 17, 32, 0.64);
}

.cta-card .button {
  min-width: 154px;
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 80px;
  padding-bottom: 62px;
}

.footer-intro p {
  max-width: 410px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 96px;
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -240px;
  right: -90px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 690;
  letter-spacing: -0.068em;
  line-height: 0.96;
}

.page-hero p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 19px;
}

.page-content {
  padding-block: 96px 120px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: 100px;
}

.side-note {
  position: sticky;
  top: 112px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.side-note strong {
  display: block;
  font-size: 13px;
}

.side-note p {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 13px;
}

.side-note a {
  font-weight: 700;
}

.content-main {
  max-width: 780px;
}

.content-main > :first-child {
  margin-top: 0;
}

.content-main h2 {
  margin: 56px 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.content-main h3 {
  margin: 34px 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.content-main p,
.content-main li {
  color: #485368;
}

.content-main ul,
.content-main ol {
  padding-left: 22px;
}

.content-main li + li {
  margin-top: 8px;
}

.content-main a {
  color: #304cbd;
  font-weight: 650;
}

.legal-updated {
  display: inline-flex;
  margin-bottom: 38px;
  padding: 7px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(118, 146, 255, 0.1);
}

.notice p {
  margin: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
}

.support-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--signal);
  font-size: 21px;
}

.support-card:nth-child(2) .support-card-icon {
  background: var(--coral);
}

.support-card h2 {
  margin: 52px 0 10px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.support-card p {
  margin: 0;
  color: var(--slate);
}

.support-card .text-link {
  color: var(--ink);
}

.faq-section {
  margin-top: 88px;
}

.faq-section > h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "+";
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 750px;
  margin: -4px 44px 24px 0;
  color: var(--slate);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
}

.contact-lead h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-lead > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.contact-card {
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  color: var(--signal);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

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

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

.form-field label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 130px;
  padding: 13px;
  line-height: 1.5;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--signal);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 255, 99, 0.12);
}

.form-field select option {
  background: var(--ink);
  color: var(--white);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-disclosure {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.5;
}

.form-disclosure a {
  color: var(--white);
  font-weight: 700;
}

.form-status {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(255, 142, 110, 0.42);
  border-radius: 10px;
  background: rgba(255, 142, 110, 0.1);
  color: #ffd5ca;
  font-size: 13px;
}

.form-status[hidden] {
  display: none;
}

.contact-form .button {
  justify-self: start;
  margin-top: 2px;
}

.thanks-card {
  max-width: 820px;
  padding: 56px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  background: var(--signal);
  color: var(--ink);
  font-size: 27px;
  font-weight: 800;
}

.thanks-card h2 {
  margin: 34px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.thanks-card p {
  max-width: 620px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.contact-meta span,
.contact-meta strong {
  display: block;
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-meta strong {
  margin-top: 4px;
  font-size: 13px;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.contact-point > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.contact-point strong,
.contact-point small {
  display: block;
}

.contact-point small {
  margin-top: 3px;
  color: var(--slate);
}

.not-found {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 80px 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.not-found-code {
  color: var(--signal);
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found h1 {
  margin: 30px 0 10px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.05em;
}

.not-found p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.not-found .button {
  margin-top: 30px;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 80px;
  }

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

  .product-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .statement-intro,
  .statement-item {
    padding: 21px 18px;
  }

  .statement-intro {
    padding-left: 0;
  }

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

  .capability-card {
    min-height: 260px;
  }

  .capability-card h3 {
    margin-top: 65px;
  }

  .dark-panel-grid,
  .work-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .dark-panel-copy {
    max-width: 700px;
  }

  .work-card,
  .work-card-secondary {
    min-height: 420px;
  }

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

  .cta-card .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 40px;
  }

  .content-grid {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 22px 14px;
    background: rgba(10, 17, 32, 0.98);
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .site-nav a {
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 18px;
  }

  .site-nav .nav-cta {
    margin: 10px 0 0;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 70px 88px;
  }

  .hero-title {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-meta {
    gap: 8px 16px;
  }

  .product-visual {
    min-height: 470px;
  }

  .device {
    width: 250px;
    transform: translateX(-50%) rotate(2.5deg);
  }

  .device-screen {
    min-height: 450px;
  }

  .visual-orbit {
    right: 50%;
    width: 355px;
    height: 355px;
    transform: translateX(50%);
  }

  .float-card-one {
    top: 64px;
    left: 2px;
  }

  .float-card-two {
    right: 0;
    bottom: 38px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }

  .statement-intro,
  .statement-item {
    padding: 15px 0;
  }

  .statement-item {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .section,
  .section-tight {
    padding-block: 78px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 38px;
  }

  .section-heading-row .eyebrow {
    margin-top: 0;
  }

  .section-copy {
    font-size: 16px;
  }

  .capability-card {
    min-height: 290px;
    padding: 25px;
  }

  .dark-panel-wrap {
    padding-inline: 8px;
  }

  .dark-panel {
    border-radius: 26px;
  }

  .dark-panel-grid {
    gap: 52px;
    padding-block: 75px;
  }

  .work-card,
  .work-card-secondary {
    min-height: 430px;
    padding: 28px;
  }

  .work-card h3,
  .work-card-secondary h3 {
    margin-top: 160px;
  }

  .work-shape {
    top: 34px;
    right: 32px;
    width: 120px;
    height: 120px;
    border-width: 21px;
  }

  .cta-section {
    padding-block: 78px;
  }

  .cta-card {
    gap: 30px;
    padding: 38px 28px;
    border-radius: 26px;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

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

  .page-hero {
    padding: 78px 0 72px;
  }

  .page-content {
    padding-block: 68px 90px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .side-note {
    position: static;
  }

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

  .support-card {
    min-height: 250px;
  }

  .contact-layout {
    gap: 50px;
  }

  .contact-card {
    padding: 28px;
  }

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

  .thanks-card {
    padding: 38px 28px;
    border-radius: 26px;
  }
}

@media (max-width: 430px) {
  .brand-legal {
    display: none;
  }

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

  .product-visual {
    min-height: 450px;
  }

  .float-card {
    padding: 10px 12px;
  }

  .float-card-one {
    left: -4px;
  }

  .float-card-two {
    right: -5px;
  }

  .device {
    width: 238px;
  }

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

  .footer-intro {
    grid-column: auto;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }
}

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

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

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
