@font-face {
  font-family: "Legocia Poppins";
  src: url("assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Legocia Poppins";
  src: url("assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Legocia Poppins";
  src: url("assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Legocia DM Sans";
  src: url("assets/fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Legocia DM Sans";
  src: url("assets/fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}



:root {
  --ink: #10110f;
  --paper: #efefef;
  --paper-soft: #e5e5e2;
  --charcoal: #27272a;
  --charcoal-2: #1c1c1e;
  --mist: #d8d8d5;
  --text-main: #f7f7f4;
  --text-dark: #27272a;
  --text-muted: #848484;
  --accent: #d8d8d5;
  --accent-deep: #686868;
  --surface: rgba(255, 255, 255, 0.5);
  --surface-solid: #fbfaf7;
  --danger: #8f1d1d;
  --ok: #285f3b;
  --border: rgba(20, 20, 20, 0.16);
  --border-dark: rgba(246, 241, 232, 0.14);
  --font-sans:  Poppins, Inter, Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Poppins, Inter, Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  --font-mono: Consolas, Monaco, "Courier New", monospace;
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.5;
   -webkit-font-smoothing: auto;
  text-rendering: auto;
  overflow-x: hidden;
}

body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
  overflow-wrap: anywhere;
}

ul {
  list-style: none;
}

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

.container {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-nav,
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(251, 250, 247, 0.88);
  color: var(--text-dark);
  backdrop-filter: blur(18px);
}

.nav-shell,
nav .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-nav .container,
nav .container {
  position: static;
}

.brand-mark,
.logo {
  display: inline-flex;
  align-items: center;
  width: 184px;
  height: 42px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark img,
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 1.2rem);
  color: rgba(23, 23, 19, 0.58);
  font-size: 0.93rem;
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.nav-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-menu a.active,
.nav-menu a:hover,
.nav-item.active > .nav-trigger,
.nav-trigger:hover {
  color: var(--text-dark);
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(239, 239, 239, 0.97);
  box-shadow: 0 28px 70px rgba(20, 20, 20, 0.12);
  backdrop-filter: blur(22px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(220px, 0.8fr) minmax(0, 1.5fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: clamp(1.7rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.7rem, 3vw, 2.4rem);
}

.mega-intro h3 {
  max-width: 12ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.mega-intro .text-link {
  font-size: 0.9rem;
}

.mega-featured,
.mega-links {
  display: grid;
  align-content: start;
  gap: 0.35rem 1rem;
}

.mega-featured a,
.mega-links a {
  display: block;
  margin: 0;
  padding: 0.42rem 0;
  color: rgba(39, 39, 42, 0.66);
}

.mega-featured a {
  color: var(--text-dark);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 800;
}

.mega-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 0.92rem;
}

.mega-featured a:hover,
.mega-links a:hover,
.mega-featured a.active,
.mega-links a.active {
  color: var(--text-dark);
}

.mobile-nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
}

.mobile-nav-toggle span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text-dark);
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.8px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.8px) rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  top: calc(100% + 10px);
  z-index: 95;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.98);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.14);
  padding: 1rem;
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-nav-panel > a,
.mobile-group summary,
.mobile-group-links a {
  display: block;
  padding: 0.9rem 0;
}

.mobile-nav-panel > a,
.mobile-group-links a {
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.mobile-nav-panel > a:first-child {
  border-top: 0;
}

.mobile-nav-panel a.active,
.mobile-group-links a.active {
  color: var(--text-dark);
  font-weight: 800;
}

.mobile-group summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group-links {
  display: grid;
  padding-left: 0.8rem;
}

.mobile-group-links a {
  color: rgba(39, 39, 42, 0.68);
}

.mobile-contact {
  margin-top: 1rem;
  width: 100%;
}

.nav-cta,
.btn,
.btn-primary,
.btn-outline,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  max-width: 100%;
}

.nav-cta {
  border-color: rgba(20, 20, 20, 0.14);
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.04);
}

.nav-cta:hover,
.primary-action:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

.primary-action,
.btn-primary {
  background: var(--charcoal);
  color: var(--text-main);
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.16);
}

.primary-action.dark {
  background: var(--paper);
  color: var(--text-dark);
  box-shadow: none;
}

.btn-outline {
  border-color: var(--border-dark);
  background: transparent;
  color: inherit;
}

.landing section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.hero-section {
  min-height: calc(100svh - 72px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(132, 132, 132, 0.14), transparent 32%),
    var(--paper);
  color: var(--text-dark);
  padding: clamp(4rem, 7vw, 6.2rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.hero-media {
  position: relative;
  inset: auto;
  width: min(1180px, calc(100vw - 40px));
  height: clamp(360px, 52vw, 660px);
  order: 2;
  border: 1px solid rgba(20, 20, 20, 0.11);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(20, 20, 20, 0.15);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 10, 8, 0.38) 0%, transparent 38%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.18), transparent 35%, rgba(10, 10, 8, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  order: 1;
}

.kicker,
.mono-tag,
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body:not(.landing) {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(216, 216, 213, 0.42), transparent 420px),
    var(--paper);
}

body:not(.landing) nav {
  background: rgba(239, 239, 239, 0.84);
}

body:not(.landing) nav .container {
  width: min(1220px, calc(100vw - 40px));
}

body:not(.landing) nav .btn-outline {
  border-color: rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text-dark);
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.04);
}

body:not(.landing) main > section,
body:not(.landing) main > .section,
body:not(.landing) > .section,
body:not(.landing) header.section,
body:not(.landing) section.section {
  padding: clamp(3.7rem, 7vw, 6.4rem) 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

body:not(.landing) main > section:nth-of-type(even),
body:not(.landing) main > .section:nth-of-type(even),
body:not(.landing) > .section:nth-of-type(even) {
  background: rgba(229, 229, 226, 0.48);
}

body:not(.landing) .hero,
body:not(.landing) header.section:first-of-type,
body:not(.landing) > .section:first-of-type,
body:not(.landing) main > .section:first-child {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 58svh, 640px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(180deg, rgba(229, 229, 226, 0.9), rgba(239, 239, 239, 0.96));
}

body:not(.landing) .hero::after,
body:not(.landing) header.section:first-of-type::after,
body:not(.landing) > .section:first-of-type::after,
body:not(.landing) main > .section:first-child::after {
  content: "";
  position: absolute;
  right: max(2rem, calc((100vw - 1180px) / 2));
  bottom: -18%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 39, 42, 0.08), transparent 40%),
    repeating-radial-gradient(circle, transparent 0 24px, rgba(20, 20, 20, 0.055) 25px 26px);
  opacity: 0.8;
  pointer-events: none;
}

body:not(.landing) .hero > .container,
body:not(.landing) header.section:first-of-type > .container,
body:not(.landing) > .section:first-of-type > .container,
body:not(.landing) main > .section:first-child > .container {
  position: relative;
  z-index: 1;
}

body:not(.landing) .section[style*="background"],
body:not(.landing) header[style*="background"] {
  color: var(--text-main);
  background-color: var(--charcoal) !important;
}

body:not(.landing) .section[style*="background"] p,
body:not(.landing) header[style*="background"] p {
  color: rgba(247, 247, 244, 0.68);
}

body:not(.landing) .section[style*="background"]::after,
body:not(.landing) header[style*="background"]::after {
  border-color: rgba(247, 247, 244, 0.13);
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 247, 244, 0.1), transparent 38%),
    repeating-radial-gradient(circle, transparent 0 24px, rgba(247, 247, 244, 0.06) 25px 26px);
}

body:not(.landing) h1 {
  max-width: 980px;
  font-size: clamp(3.15rem, 9vw, 8rem);
  line-height: 0.92;
}

body:not(.landing) h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4.8vw, 4.35rem);
}

body:not(.landing) p {
  color: rgba(39, 39, 42, 0.62);
}

body:not(.landing) .hero p,
body:not(.landing) header.section:first-of-type p,
body:not(.landing) > .section:first-of-type p,
body:not(.landing) main > .section:first-child p {
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

body:not(.landing) .hero-actions {
  justify-content: flex-start;
}

body:not(.landing) .card,
body:not(.landing) .panel,
body:not(.landing) .metric {
  min-height: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.045);
}

body:not(.landing) .card:hover,
body:not(.landing) .panel:hover,
body:not(.landing) .metric:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

body:not(.landing) .grid-2,
body:not(.landing) .grid-3,
body:not(.landing) .grid-4,
body:not(.landing) .metric-row {
  gap: clamp(1rem, 2vw, 1.45rem);
}

body:not(.landing) ul:not(.nav-menu):not(footer ul) {
  display: grid;
  gap: 0.8rem;
  color: rgba(39, 39, 42, 0.66);
}

body:not(.landing) li strong {
  color: var(--text-dark) !important;
}

body:not(.landing) .section[style*="background"] li strong,
body:not(.landing) header[style*="background"] li strong {
  color: var(--text-main) !important;
}

body:not(.landing) .data-table {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.04);
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-dark);
  padding: 0.9rem 1rem;
}

button {
  cursor: pointer;
}

.hero-section .kicker,
.dark-panel .kicker {
  color: var(--accent-deep);
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  font-family: var(--font-display);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  font-size: clamp(4.3rem, 14vw, 12rem);
  line-height: 0.9;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.25rem, 5.3vw, 4.85rem);
  line-height: 1;
  margin-bottom: 1.2rem;
  font-weight: 850;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  margin-bottom: 0.65rem;
  font-weight: 800;
}

p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  max-width: 64ch;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
}

.hero-line {
  color: var(--text-muted);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
  max-width: 650px;
  margin: 0 auto 1.8rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: #fff;
  color: var(--text-dark);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.04);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.innovation-section {
  background: var(--paper);
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  align-items: stretch;
}

.product-tile {
  width: 100%;
  min-height: 430px;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--charcoal);
  box-shadow: 0 16px 45px rgba(20, 20, 20, 0.08);
}

.product-tile.wide {
  grid-row: span 2;
}

.statement {
  display: flex;
  align-items: center;
  min-height: 190px;
  color: var(--text-dark);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.spec-tile {
  min-height: 210px;
  padding: 1.6rem;
  border: 1px solid rgba(20, 20, 20, 0.11);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 20, 20, 0.04);
}

.spec-tile span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-weight: 800;
}

.spec-tile strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.surface-light {
  background: var(--paper-soft);
}

.split-layout,
.feature-stack,
.proof-layout,
.cta-layout,
.faq-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.feature-copy p:not(.kicker) {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  border-bottom: 1px solid currentColor;
  color: var(--text-dark);
  font-weight: 800;
}

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

.text-link.light {
  color: var(--text-main);
}

.device-stage {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(239, 239, 239, 0.14), transparent 32%),
    linear-gradient(145deg, #22221f, #0e0e0d);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.08);
}

.device-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(46vw, 280px);
  aspect-ratio: 0.58;
  transform: translate(-50%, -50%);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #2d2d2a, #10100f);
  border: 1px solid rgba(246, 241, 232, 0.18);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.lens {
  position: absolute;
  left: 50%;
  top: 12%;
  width: 72px;
  height: 72px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, #060606 0 24%, #4a4a4a 25% 46%, #050505 47% 100%);
  border: 1px solid rgba(239, 239, 239, 0.28);
}

.status-dot {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #efefef;
  box-shadow: 0 0 28px rgba(239, 239, 239, 0.72);
}

.signal {
  position: absolute;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(246, 241, 232, 0.13);
  border-radius: 999px;
  color: rgba(246, 241, 232, 0.78);
  background: rgba(15, 15, 13, 0.56);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-one {
  left: 8%;
  top: 18%;
}

.signal-two {
  right: 8%;
  top: 46%;
}

.signal-three {
  left: 12%;
  bottom: 16%;
}

.dark-panel {
  background: #111110;
  color: var(--text-main);
}

.dark-panel p {
  color: rgba(246, 241, 232, 0.68);
}

.feature-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #090909;
  border: 1px solid rgba(246, 241, 232, 0.08);
}

.feature-image video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.proof-section {
  background: var(--paper);
}

.proof-metrics {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.proof-metrics div {
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--border);
}

.proof-metrics strong {
  display: block;
  color: var(--text-dark);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1;
  font-weight: 850;
}

.proof-metrics span {
  color: var(--text-muted);
}

.gallery-section {
  background: #111110;
  color: var(--text-main);
  overflow: hidden;
}

.gallery-heading {
  max-width: 680px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.gallery-section p {
  color: rgba(246, 241, 232, 0.66);
}

.marquee {
  width: 100vw;
  margin-left: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  color: rgba(246, 241, 232, 0.92);
  font-size: clamp(2.1rem, 6vw, 5.2rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.faq-blog-section {
  background: var(--paper-soft);
}

details {
  border-top: 1px solid var(--border);
  padding: 1.15rem 0;
}

details:last-of-type {
  border-bottom: 1px solid var(--border);
}

summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 1.08rem;
}

details p {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.blog-block a {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
}

.blog-block a:last-child {
  border-bottom: 1px solid var(--border);
}

.blog-block span {
  font-size: clamp(1.16rem, 1.8vw, 1.45rem);
  font-weight: 800;
}

.blog-block time {
  color: var(--text-muted);
}

.cta-section {
  background: var(--charcoal);
  color: var(--text-main);
}

.cta-section h2 {
  margin-bottom: 0;
}

.cta-section p {
  color: rgba(247, 247, 244, 0.72);
  font-size: 1.25rem;
}

footer {
  padding: clamp(3rem, 7vw, 5.5rem) 0 2rem;
  background: var(--charcoal);
  color: var(--text-main);
}

.footer-cols {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(140px, 1fr));
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.footer-top .logo {
  margin-bottom: 0.9rem;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.footer-brand {
  margin-bottom: 1rem;
  width: 220px;
  height: 58px;
}

footer p {
  color: rgba(246, 241, 232, 0.62);
  max-width: 34ch;
}

footer h4 {
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(246, 241, 232, 0.7);
}

footer a:hover {
  color: var(--text-main);
}

.footer-meta {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.9rem;
}

.footer-meta a {
  display: inline;
  margin: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card,
.panel,
.metric {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric strong {
  display: block;
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--border);
  text-align: left;
  padding: 1rem;
  overflow-wrap: anywhere;
}

.data-table th {
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-list li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.form-panel,
.directory-panel,
.notice-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.045);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list li,
.directory-panel li {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: rgba(39, 39, 42, 0.66);
}

.info-list strong,
.directory-panel strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.product-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.product-row strong {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.product-row span {
  color: var(--text-muted);
}

.product-row .btn-outline {
  border-color: rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.48);
  color: var(--text-dark);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.policy-body {
  display: grid;
  gap: 2rem;
}

.policy-body article {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.page-index {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.page-index li {
  margin: 0;
}

.terminal-shell {
  overflow: hidden;
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 18px;
  background: #111110;
  color: rgba(247, 247, 244, 0.88);
  box-shadow: 0 28px 70px rgba(20, 20, 20, 0.18);
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.12);
  color: rgba(247, 247, 244, 0.62);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.terminal-body {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  line-height: 1.7;
}

.terminal-line {
  display: grid;
  grid-template-columns: 8ch 1fr;
  gap: 0.8rem;
}

.terminal-line span {
  color: rgba(247, 247, 244, 0.42);
}

.terminal-command {
  color: #f7f7f4;
}

.endpoint-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.endpoint-row {
  display: grid;
  grid-template-columns: 9ch minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.endpoint-row code,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.25rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  white-space: nowrap;
}

.status-board {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.status-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 10ch minmax(0, 1.4fr);
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.status-ok {
  border-color: rgba(40, 95, 59, 0.28);
  color: var(--ok);
  background: rgba(40, 95, 59, 0.08);
}

.article-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr) 12ch;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.article-row time,
.article-row span {
  color: var(--text-muted);
}

.setup-hero,
.career-hero,
.job-detail-hero,
.editorial-hero,
.post-hero {
  min-height: clamp(520px, 66svh, 760px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(180deg, rgba(229, 229, 226, 0.9), rgba(239, 239, 239, 0.96));
}

.setup-hero-grid,
.career-hero-grid,
.job-detail-grid,
.setup-layout,
.job-content-grid,
.editorial-hero-grid,
.editorial-grid,
.post-hero-shell,
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.setup-status,
.career-note,
.role-facts,
.role-sidebar,
.feature-journal,
.article-aside {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.045);
}

.setup-status {
  display: grid;
  gap: 1.1rem;
}

.setup-status div {
  display: grid;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.setup-status strong {
  color: var(--text-dark);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.setup-status span,
.role-facts dt,
.role-sidebar p {
  color: rgba(39, 39, 42, 0.62);
}

.editorial-hero-grid,
.editorial-grid,
.post-hero-shell,
.article-shell {
  align-items: start;
}

.feature-journal h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.feature-journal p,
.post-dek {
  color: rgba(39, 39, 42, 0.68);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.journal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.journal-entry {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.journal-entry h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.journal-entry p {
  max-width: 64ch;
}

.journal-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-link {
  color: inherit;
}

.article-link strong {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.article-link p {
  margin: 0;
}

.post-hero-shell {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
}

.article-shell {
  align-items: start;
}

.article-prose {
  display: grid;
  gap: clamp(2rem, 4vw, 3.1rem);
  max-width: 760px;
}

.article-prose section {
  padding-bottom: 1.7rem;
  border-bottom: 1px solid var(--border);
}

.article-prose h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.article-aside {
  display: grid;
  gap: 0.8rem;
  position: sticky;
  top: 96px;
}

.article-aside a {
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
}

.setup-steps {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.setup-card {
  display: grid;
  grid-template-columns: 4ch minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.04);
}

.setup-card > span {
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-weight: 800;
}

.setup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.career-note p {
  color: rgba(39, 39, 42, 0.68);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.job-group {
  margin-top: 2.6rem;
  border-top: 1px solid var(--border);
}

.job-card {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2rem 0;
  transition: opacity 0.2s ease;
}

.job-card:hover {
  opacity: 0.78;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.job-meta {
  color: var(--text-sub);
  font-size: 0.9rem;
}

.apply-btn {
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.role-facts dl {
  display: grid;
  gap: 1rem;
}

.role-facts div {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.role-facts dt {
  margin-bottom: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.role-facts dd {
  color: var(--text-dark);
  font-weight: 700;
}

.job-content-grid {
  align-items: start;
}

.role-sidebar {
  position: sticky;
  top: 96px;
}

.role-body {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.role-section {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.role-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.step-list {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 4ch minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.step-list li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-weight: 800;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.utility-shell {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.utility-shell.narrow {
  max-width: 720px;
}

.utility-shell.compact {
  max-width: 560px;
}

.utility-lead {
  color: var(--text-muted);
  max-width: 58ch;
}

.form-shell {
  margin-top: 2.25rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.95rem 1rem;
  background: #000;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 6px;
}

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

.inline-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.inline-check input {
  width: auto !important;
  margin-top: 0.2rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-response {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.form-response h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.form-response p,
.form-response li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-response ul {
  margin-top: 0.8rem;
  margin-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.form-response.success {
  border-color: rgba(102, 204, 153, 0.5);
  background: rgba(102, 204, 153, 0.08);
}

.form-response.warning {
  border-color: rgba(255, 179, 71, 0.5);
  background: rgba(255, 179, 71, 0.08);
}

.support-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.support-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.support-card p,
.support-card li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.support-card ul {
  margin-top: 0.9rem;
  margin-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.resource-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.resource-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.resource-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.utility-aside {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.archive-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

@media (max-width: 1000px) {
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .innovation-grid,
  .split-layout,
  .feature-stack,
  .proof-layout,
  .cta-layout,
  .faq-blog-grid {
    grid-template-columns: 1fr;
  }

  .product-tile.wide {
    grid-row: auto;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell,
  nav .container {
    min-height: 64px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .mobile-nav-panel:not([hidden]) {
    display: block;
  }

  body:not(.landing) nav .btn-outline {
    display: none;
  }

  body:not(.landing) table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: auto;
    font-size: 0.86rem;
  }

  body:not(.landing) th,
  body:not(.landing) td {
    padding: 0.75rem !important;
    overflow-wrap: anywhere;
  }

  body:not(.landing) .btn,
  body:not(.landing) .btn-primary,
  body:not(.landing) .btn-outline,
  body:not(.landing) .primary-action,
  button {
    white-space: normal;
    text-align: center;
  }

  body:not(.landing) input,
  body:not(.landing) textarea,
  body:not(.landing) select {
    width: 100% !important;
    max-width: 100%;
  }

  body:not(.landing) [style*="inline-flex"] {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
  }

  body:not(.landing) [style*="display: flex; justify-content: space-between"] {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  body:not(.landing) [style*="width: 350px"] {
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem);
    left: 1rem !important;
    right: 1rem !important;
  }

  .brand-mark,
  .logo {
    width: 150px;
    height: 36px;
  }

  body:not(.landing) main > section,
  body:not(.landing) main > .section,
  body:not(.landing) > .section,
  body:not(.landing) header.section,
  body:not(.landing) section.section {
    padding: clamp(3.1rem, 12vw, 4.8rem) 0;
  }

  body:not(.landing) .hero,
  body:not(.landing) header.section:first-of-type,
  body:not(.landing) > .section:first-of-type,
  body:not(.landing) main > .section:first-child {
    min-height: auto;
  }

  body:not(.landing) .hero::after,
  body:not(.landing) header.section:first-of-type::after,
  body:not(.landing) > .section:first-of-type::after,
  body:not(.landing) main > .section:first-child::after {
    right: -32vw;
    bottom: -24vw;
    width: 82vw;
  }

  .hero-section {
    min-height: calc(92svh - 64px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 8, 0.88), rgba(10, 10, 8, 0.36)),
      linear-gradient(0deg, rgba(10, 10, 8, 0.92) 0%, transparent 58%);
  }

  .product-tile,
  .device-stage,
  .feature-image,
  .feature-image video {
    min-height: 360px;
  }

  .statement {
    min-height: auto;
  }

  .signal {
    font-size: 0.66rem;
  }

  .marquee {
    width: 100%;
    margin-left: 0;
    overflow: visible;
  }

  .marquee-track {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.7rem;
    animation: none;
    padding: 0.8rem 0;
  }

  .marquee-track span {
    flex: 1 1 auto;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border-dark);
    border-radius: 999px;
    font-size: clamp(1rem, 6vw, 1.65rem);
    line-height: 1;
    text-align: center;
    white-space: normal;
  }

  .footer-cols,
  .footer-top,
  .footer-link-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-row,
  .inline-fields,
  .policy-layout,
  .product-row,
  .page-index,
  .endpoint-row,
  .status-row,
  .article-row {
    grid-template-columns: 1fr;
  }

  .setup-hero-grid,
  .career-hero-grid,
  .job-detail-grid,
  .setup-layout,
  .job-content-grid,
  .editorial-hero-grid,
  .editorial-grid,
  .post-hero-shell,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .setup-hero,
  .career-hero,
  .job-detail-hero,
  .editorial-hero,
  .post-hero {
    min-height: auto;
    padding: clamp(3.2rem, 12vw, 5rem) 0;
  }

  .job-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-sidebar {
    position: static;
  }

  .article-aside {
    position: static;
  }

  .terminal-line,
  .step-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .policy-nav {
    position: static;
  }

  .product-row {
    align-items: start;
  }

  .footer-meta {
    flex-direction: column;
  }

  .form-grid.two-col,
  .support-grid,
  .resource-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }
}
