:root {
  color-scheme: dark;
  --ink: #f6f8ff;
  --muted: #9ea9c2;
  --navy: #050816;
  --navy-soft: #0a1024;
  --panel: rgba(13, 21, 46, 0.72);
  --line: rgba(144, 164, 210, 0.18);
  --blue: #2e72ff;
  --blue-bright: #5ca9ff;
  --cyan: #76e9ff;
  --lime: #c8ff58;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 12%, rgba(35, 91, 226, 0.18), transparent 34rem),
    linear-gradient(180deg, #050816 0%, #070b19 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: white;
  color: #050816;
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 0.9;
  letter-spacing: 0.13em;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #c7cfe0;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.header-cta,
.button {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: white;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(118, 233, 255, 0.38);
  border-radius: 999px;
  background: rgba(33, 93, 213, 0.13);
  padding: 0 18px;
  color: #dff9ff;
  font-size: 12px;
  font-weight: 800;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--cyan);
  background: rgba(33, 93, 213, 0.24);
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  padding: 72px 0 92px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -190px;
  top: 10%;
  border-radius: 50%;
  background: rgba(48, 108, 255, 0.14);
  filter: blur(90px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6d3ef;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(200, 255, 88, 0.72);
}

h1 {
  max-width: 760px;
  margin: 24px 0 26px;
  font-size: clamp(58px, 7.4vw, 108px);
  font-weight: 900;
  letter-spacing: -0.074em;
  line-height: 0.87;
}

h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.4px rgba(118, 233, 255, 0.95);
  text-shadow: 0 0 32px rgba(46, 114, 255, 0.24);
}

.hero-lede {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 850;
}

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

.button-primary {
  background: var(--lime);
  color: #07101e;
  box-shadow: 0 12px 38px rgba(141, 205, 41, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d7ff86;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(144, 164, 210, 0.46);
  background: rgba(255, 255, 255, 0.06);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: #7f8aa3;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.trust-line strong {
  color: #bcc7dc;
  font-weight: 750;
}

.trust-line strong::after {
  content: "•";
  margin-left: 10px;
  color: #3b455d;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(200, 255, 88, 0.8);
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.art-card {
  position: relative;
  z-index: 2;
  width: min(100%, 490px);
  overflow: hidden;
  border: 1px solid rgba(110, 152, 255, 0.28);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(17, 28, 58, 0.94), rgba(4, 8, 21, 0.9));
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(2deg);
}

.art-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 5, 15, 0.8) 100%);
  content: "";
  pointer-events: none;
}

.art-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.art-topline,
.art-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  letter-spacing: 0.14em;
}

.art-topline {
  top: 0;
  color: rgba(224, 236, 255, 0.76);
  font-size: 9px;
  font-weight: 850;
}

.art-caption {
  bottom: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.art-caption span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
}

.art-caption strong {
  font-size: clamp(20px, 3vw, 29px);
  letter-spacing: -0.04em;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(75, 124, 245, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 650px;
  height: 650px;
}

.orbit-two {
  width: 510px;
  height: 510px;
  border-style: dashed;
  transform: rotate(-16deg);
}

.metric-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 200px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(142, 165, 219, 0.22);
  border-radius: 14px;
  background: rgba(7, 12, 29, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  padding: 13px 15px;
  backdrop-filter: blur(16px);
}

.metric-card div {
  display: grid;
  gap: 3px;
}

.metric-card small {
  color: #7e8ba6;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.metric-card strong {
  color: #eef3ff;
  font-size: 12px;
  font-weight: 800;
}

.metric-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--lime);
  color: #0a1422;
  font-size: 18px;
  font-weight: 900;
}

.metric-blue {
  background: #226cff;
  color: white;
}

.metric-left {
  left: -34px;
  top: 21%;
}

.metric-right {
  right: -18px;
  bottom: 17%;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.signal-strip {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding: 20px 24px;
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip span,
.card-index {
  color: #68738b;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.signal-strip strong {
  color: #cdd6e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(64px, 9vw, 132px);
  padding-top: 150px;
  padding-bottom: 170px;
}

.product-media {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
}

.product-media::before {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(24, 91, 255, 0.2);
  content: "";
  filter: blur(90px);
}

.product-image-wrap {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(128, 153, 213, 0.22);
  border-radius: 220px 220px 28px 28px;
  background: #0b1021;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
}

.product-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(3, 6, 16, 0.86));
  content: "";
}

.product-image-wrap img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(126, 154, 221, 0.22);
  border-radius: 12px;
  background: rgba(7, 12, 28, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  padding: 8px 14px;
  color: #cbd5e8;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
}

.product-tag span {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  color: #07101e;
  font-size: 11px;
  font-weight: 900;
}

.tag-top {
  top: 18%;
  left: -28px;
}

.tag-bottom {
  right: -28px;
  bottom: 12%;
}

.tag-bottom span {
  background: var(--blue);
  color: white;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-copy h2,
.section-heading h2,
.method-copy h2,
.company-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-copy h2 em,
.section-heading h2 em,
.method-copy h2 em,
.company-copy h2 em {
  color: var(--blue-bright);
  font-style: normal;
}

.product-copy > p:not(.section-kicker),
.method-copy > p:not(.section-kicker),
.company-copy > p:not(.section-kicker) {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.product-points {
  display: grid;
  margin-top: 30px;
}

.product-points article {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.product-points article > span {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-points article div {
  display: grid;
  gap: 7px;
}

.product-points strong {
  font-size: 15px;
}

.product-points p {
  margin: 0;
  color: #818da6;
  font-size: 13px;
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(118, 233, 255, 0.4);
  padding-bottom: 7px;
  color: #dff9ff;
  font-size: 12px;
  font-weight: 850;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--cyan);
  color: white;
}

.capabilities-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 16, 36, 0.9), rgba(5, 8, 22, 0.78));
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

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

.capability-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(11, 17, 37, 0.72);
  padding: 26px;
}

.capability-card::after {
  position: absolute;
  width: 130px;
  height: 130px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(43, 101, 244, 0.14);
  content: "";
  filter: blur(20px);
}

.capability-featured {
  grid-row: span 2;
  min-height: 674px;
  background: #0a0f22;
}

.capability-art {
  position: relative;
  height: 330px;
  margin: 22px -10px 27px;
  overflow: hidden;
  border-radius: 14px;
}

.capability-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, #090e20 100%);
  content: "";
}

.capability-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-art span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 10px;
  color: rgba(200, 255, 88, 0.78);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.capability-card h3 {
  margin: 26px 0 12px;
  font-size: clamp(22px, 2.2vw, 31px);
  letter-spacing: -0.038em;
}

.capability-featured h3 {
  margin-top: 0;
}

.capability-card > p,
.capability-wide > div > p {
  max-width: 410px;
  margin: 0;
  color: #8793ab;
  font-size: 13px;
  line-height: 1.68;
}

.line-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-top: 56px;
  place-items: center;
  border: 1px solid rgba(92, 169, 255, 0.3);
  border-radius: 16px;
  background: rgba(46, 114, 255, 0.12);
  color: var(--blue-bright);
  font-size: 25px;
}

.line-icon-lime {
  border-color: rgba(200, 255, 88, 0.25);
  background: rgba(200, 255, 88, 0.08);
  color: var(--lime);
}

.mini-data {
  display: flex;
  gap: 7px;
  margin-top: 30px;
}

.mini-data span {
  border: 1px solid rgba(104, 136, 208, 0.2);
  border-radius: 999px;
  background: rgba(28, 48, 95, 0.2);
  padding: 7px 10px;
  color: #a8b9dc;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.nutrition-bars {
  display: flex;
  height: 34px;
  align-items: end;
  gap: 5px;
  margin-top: 25px;
}

.nutrition-bars i {
  width: 28px;
  border-radius: 5px 5px 2px 2px;
  background: var(--lime);
  opacity: 0.82;
}

.nutrition-bars i:nth-child(1) { height: 42%; }
.nutrition-bars i:nth-child(2) { height: 72%; background: var(--blue-bright); }
.nutrition-bars i:nth-child(3) { height: 100%; background: #866cff; }

.progress-track {
  height: 5px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(113, 133, 177, 0.14);
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(92, 169, 255, 0.62);
}

.capability-wide {
  display: grid;
  min-height: 330px;
  grid-column: span 2;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 36px;
  background:
    linear-gradient(120deg, rgba(14, 24, 52, 0.92), rgba(8, 13, 29, 0.86)),
    radial-gradient(circle at 84% 40%, rgba(47, 107, 255, 0.24), transparent 19rem);
}

.control-list {
  display: grid;
  gap: 10px;
}

.control-list span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(128, 151, 204, 0.16);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0 15px;
  color: #bdc8dd;
  font-size: 11px;
  font-weight: 750;
}

.control-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200, 255, 88, 0.58);
}

.method-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 10vw, 150px);
  padding-top: 150px;
  padding-bottom: 170px;
}

.method-copy {
  align-self: start;
  position: sticky;
  top: 40px;
}

.method-steps {
  display: grid;
}

.method-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 34px 0 42px;
}

.method-steps article:last-child {
  border-bottom: 1px solid var(--line);
}

.method-steps span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.method-steps strong {
  font-size: 19px;
}

.method-steps p {
  margin: 11px 0 0;
  color: #8995ad;
  font-size: 14px;
  line-height: 1.7;
}

.company-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(112, 149, 233, 0.22);
  border-bottom: 1px solid rgba(112, 149, 233, 0.22);
  background:
    radial-gradient(circle at 22% 50%, rgba(67, 126, 255, 0.2), transparent 27rem),
    linear-gradient(125deg, #09132d, #070a18 66%);
}

.company-inner {
  display: grid;
  min-height: 620px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.company-monogram {
  position: relative;
  display: flex;
  min-height: 410px;
  align-items: center;
  justify-content: center;
}

.company-monogram::before,
.company-monogram::after {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(99, 150, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.company-monogram::after {
  width: 260px;
  height: 260px;
  border-style: dashed;
}

.company-monogram span {
  position: relative;
  z-index: 2;
  font-size: clamp(110px, 14vw, 190px);
  font-weight: 950;
  letter-spacing: -0.16em;
  line-height: 0.8;
}

.company-monogram span:first-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(118, 233, 255, 0.72);
}

.company-monogram span:last-child {
  color: var(--blue);
  mix-blend-mode: screen;
}

.company-copy {
  max-width: 610px;
}

.company-copy .text-link {
  margin-top: 32px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  padding-top: 145px;
  padding-bottom: 145px;
}

.final-actions {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.final-actions p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

footer {
  border-top: 1px solid var(--line);
  background: #03050c;
}

.footer-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 132px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner p {
  color: #626d84;
  font-size: 10px;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #909bb1;
  font-size: 10px;
  font-weight: 700;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: white;
}

:focus-visible {
  outline: 3px solid rgba(118, 233, 255, 0.78);
  outline-offset: 3px;
}

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

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

  .hero-visual {
    min-height: 620px;
  }

  .desktop-nav {
    display: none;
  }

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

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

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

  .product-section,
  .method-section,
  .company-inner,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .product-section {
    gap: 70px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 580px;
  }

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

  .capability-featured {
    grid-row: span 2;
  }

  .capability-wide {
    grid-column: span 2;
  }

  .method-copy {
    position: static;
    max-width: 740px;
  }

  .company-inner {
    gap: 20px;
  }

  .company-monogram {
    min-height: 320px;
  }

  .company-copy {
    padding-bottom: 50px;
  }

  .final-cta {
    align-items: start;
    gap: 34px;
  }

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

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0 0 26px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section-shell,
  .signal-strip,
  .footer-inner {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    min-height: 76px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 72px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-line strong::after {
    display: none;
  }

  .trust-line span:last-child {
    width: 100%;
    margin-left: 17px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .art-card {
    width: min(86vw, 430px);
    border-radius: 22px;
  }

  .orbit-one {
    width: 480px;
    height: 480px;
  }

  .orbit-two {
    width: 380px;
    height: 380px;
  }

  .metric-card {
    min-width: 176px;
    padding: 10px 12px;
  }

  .metric-left {
    left: 0;
    top: 12%;
  }

  .metric-right {
    right: 0;
    bottom: 8%;
  }

  .signal-strip div {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 16px;
  }

  .product-section,
  .method-section {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .product-media {
    min-height: 560px;
  }

  .product-image-wrap {
    width: min(88vw, 390px);
  }

  .product-image-wrap img {
    height: 540px;
  }

  .tag-top {
    left: 0;
  }

  .tag-bottom {
    right: 0;
  }

  .capabilities-section {
    padding: 100px 0;
  }

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

  .capability-featured,
  .capability-wide {
    min-height: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .capability-featured {
    padding-bottom: 34px;
  }

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

  .method-steps article {
    grid-template-columns: 42px 1fr;
  }

  .company-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .company-monogram::before {
    width: 280px;
    height: 280px;
  }

  .company-monogram::after {
    width: 210px;
    height: 210px;
  }

  .company-copy .text-link {
    font-size: 11px;
  }

  .final-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .footer-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 34px 0;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-inner p {
    order: 3;
    margin: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
