/* RadiumQR Coming Soon v1.1.0 — responsive inspection-card fix */
:root {
  --ink: #031d21;
  --ink-deep: #021416;
  --teal: #08383f;
  --teal-light: #0d4d56;
  --green: #00dc84;
  --green-bright: #1ef4a1;
  --light: #f2f2f2;
  --white: #ffffff;
  --muted: #a8bfbc;
  --muted-strong: #c8d7d5;
  --line: rgba(209, 239, 233, 0.13);
  --line-light: rgba(209, 239, 233, 0.08);
  --glass: rgba(7, 48, 54, 0.54);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --container: 1180px;
  --header-height: 92px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--light);
  background:
    radial-gradient(circle at 80% 4%, rgba(0, 220, 132, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 50%, #061f23 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--green);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.36;
}

.ambient-orb--one {
  width: 33rem;
  height: 33rem;
  top: -18rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(0, 220, 132, 0.28), transparent 68%);
}

.ambient-orb--two {
  width: 24rem;
  height: 24rem;
  top: 42rem;
  left: -15rem;
  background: radial-gradient(circle, rgba(18, 118, 127, 0.28), transparent 68%);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0, transparent 62rem);
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(2, 20, 22, 0.76);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 220, 132, 0.32);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(0, 220, 132, 0.14), transparent 50%),
    rgba(3, 29, 33, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 9px 28px rgba(0, 220, 132, 0.08);
}

.brand-mark__corner,
.coming-soon-mark__corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--green);
  border-style: solid;
}

.brand-mark__corner--tl,
.coming-soon-mark__corner--tl {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
  border-radius: 2px 0 0;
}

.brand-mark__corner--tr,
.coming-soon-mark__corner--tr {
  top: 8px;
  right: 8px;
  border-width: 2px 2px 0 0;
  border-radius: 0 2px 0 0;
}

.brand-mark__corner--bl,
.coming-soon-mark__corner--bl {
  bottom: 8px;
  left: 8px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 2px;
}

.brand-mark__corner--br,
.coming-soon-mark__corner--br {
  right: 8px;
  bottom: 8px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 2px;
}

.brand-mark__core,
.coming-soon-mark__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
  box-shadow:
    9px 0 0 -1px rgba(0, 220, 132, 0.38),
    -9px 0 0 -1px rgba(0, 220, 132, 0.38),
    0 9px 0 -1px rgba(0, 220, 132, 0.38),
    0 -9px 0 -1px rgba(0, 220, 132, 0.38);
  transform: translate(-50%, -50%);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wordmark {
  display: inline-block;
  color: var(--light);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.065em;
  white-space: nowrap;
}

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

.endorsement {
  margin-top: 5px;
  color: #91aaa7;
  font-size: 0.54rem;
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.launch-status__pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 220, 132, 0.8);
}

.launch-status__pulse::before {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(0, 220, 132, 0.35);
  border-radius: inherit;
  animation: status-pulse 2.2s ease-out infinite;
  content: "";
}

@keyframes status-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.7);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.header-link:hover {
  color: var(--white);
}

.header-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  overflow: clip;
  padding: calc(var(--header-height) + 76px) 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
  min-height: 610px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(0, 220, 132, 0.2);
  border-radius: 999px;
  color: #cce0dc;
  background: rgba(0, 220, 132, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 730;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.eyebrow__icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(0, 220, 132, 0.11);
}

.eyebrow__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--light);
  font-size: clamp(4rem, 7.25vw, 7.2rem);
  font-weight: 770;
  line-height: 0.88;
  letter-spacing: -0.067em;
}

.hero h1 span {
  display: block;
  margin-top: 0.11em;
  color: var(--green);
  text-shadow: 0 0 48px rgba(0, 220, 132, 0.1);
}

.hero-lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: #b6c9c6;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.72;
  letter-spacing: -0.012em;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 21px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.89rem;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.01em;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms var(--ease);
}

.button:hover svg {
  transform: translateX(2px);
}

.button--primary {
  color: var(--ink);
  background: var(--green);
  box-shadow:
    0 14px 38px rgba(0, 220, 132, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button--primary:hover {
  background: var(--green-bright);
  box-shadow:
    0 18px 46px rgba(0, 220, 132, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button--secondary {
  border-color: rgba(221, 244, 239, 0.14);
  color: var(--light);
  background: rgba(242, 242, 242, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button--secondary:hover {
  border-color: rgba(0, 220, 132, 0.32);
  background: rgba(0, 220, 132, 0.055);
}

.hero-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 23px;
  margin-top: 28px;
  color: #8fa8a5;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.hero-principles svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  place-items: center;
  isolation: isolate;
  perspective: 1200px;
}

.visual-halo {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-halo--outer {
  width: min(590px, 110%);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 220, 132, 0.075);
  background:
    radial-gradient(circle at center, rgba(0, 220, 132, 0.09), transparent 46%),
    conic-gradient(from 100deg, transparent, rgba(0, 220, 132, 0.045), transparent 32%);
  box-shadow: inset 0 0 100px rgba(0, 220, 132, 0.025);
}

.visual-halo--inner {
  width: 390px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 220, 132, 0.08);
  background: radial-gradient(circle, rgba(0, 220, 132, 0.09), transparent 70%);
  filter: blur(0.2px);
}

.orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(142, 208, 196, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 35s linear infinite;
}

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

.orbit--two {
  width: 350px;
  height: 350px;
  animation-direction: reverse;
  animation-duration: 28s;
}

.orbit span {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(0, 220, 132, 0.8);
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.phone-wrap {
  position: relative;
  z-index: 3;
  width: 310px;
  transform: rotateY(-5deg) rotateX(2deg) rotateZ(1.2deg);
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.phone-shadow {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -18px;
  left: 8%;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(25px);
  transform: rotate(-2deg);
}

.phone {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(225, 255, 248, 0.17);
  border-radius: 43px;
  background: linear-gradient(145deg, #0b4249, #031d21 70%);
  box-shadow:
    0 42px 86px rgba(0, 0, 0, 0.42),
    0 0 0 7px rgba(4, 38, 43, 0.68),
    inset 0 2px 0 rgba(255, 255, 255, 0.11),
    inset -2px -2px 0 rgba(0, 0, 0, 0.5);
}

.phone-frame {
  position: relative;
  padding: 9px;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  width: 76px;
  height: 21px;
  border-radius: 999px;
  background: #021416;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.phone-screen {
  min-height: 594px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 34px;
  color: var(--ink);
  background: #f3f8f7;
}

.phone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 18px;
  color: #12383d;
  font-size: 0.64rem;
  font-weight: 750;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-status-icons svg {
  width: 14px;
  height: 10px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0.8;
}

.phone-status-icons svg:nth-child(2) {
  fill: none;
  stroke-linecap: round;
  stroke-width: 1.3;
}

.phone-status-icons svg:nth-child(3) {
  width: 18px;
  fill: none;
  stroke-width: 1;
}

.phone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px 12px;
  border-top: 1px solid rgba(3, 29, 33, 0.045);
  border-bottom: 1px solid rgba(3, 29, 33, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.phone-brand {
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.phone-brand span {
  color: #00b96f;
}

.phone-secure {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4d6c68;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-secure svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #00a763;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.phone-content {
  padding: 14px 13px 17px;
}

.site-context {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(3, 29, 33, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 20px rgba(3, 29, 33, 0.035);
}

.site-context__icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: #00a763;
  background: rgba(0, 220, 132, 0.1);
}

.site-context__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.site-context > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-context small,
.scanner-card__heading small,
.phone-task__copy small {
  color: #718985;
  font-size: 0.45rem;
  font-weight: 770;
  letter-spacing: 0.09em;
}

.site-context strong {
  margin-top: 2px;
  overflow: hidden;
  color: #12383d;
  font-size: 0.66rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scanner-card {
  margin-top: 11px;
  padding: 12px;
  border: 1px solid rgba(3, 29, 33, 0.085);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 29, 33, 0.065);
}

.scanner-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.scanner-card__heading > span:first-child {
  display: flex;
  flex-direction: column;
}

.scanner-card__heading strong {
  margin-top: 2px;
  color: #12383d;
  font-size: 0.66rem;
  font-weight: 760;
}

.scanner-live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
  padding: 4px 6px;
  border-radius: 999px;
  color: #008c55;
  background: rgba(0, 220, 132, 0.1);
  font-size: 0.44rem;
  font-weight: 770;
  text-transform: uppercase;
}

.scanner-live i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00b96f;
}

.qr-stage {
  position: relative;
  display: grid;
  width: 165px;
  margin: 11px auto 2px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
}

.qr-code {
  width: 136px;
  height: 136px;
  padding: 6px;
  border-radius: 6px;
  background: #f8fbfa;
  shape-rendering: crispEdges;
}

.qr-code rect {
  fill: #08383f;
}

.qr-code .finder-core {
  fill: #00b96f;
}

.qr-corner {
  position: absolute;
  z-index: 2;
  width: 25px;
  height: 25px;
  border-color: #00b96f;
  border-style: solid;
}

.qr-corner--tl {
  top: 2px;
  left: 2px;
  border-width: 2px 0 0 2px;
  border-radius: 7px 0 0;
}

.qr-corner--tr {
  top: 2px;
  right: 2px;
  border-width: 2px 2px 0 0;
  border-radius: 0 7px 0 0;
}

.qr-corner--bl {
  bottom: 2px;
  left: 2px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 7px;
}

.qr-corner--br {
  right: 2px;
  bottom: 2px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 7px;
}

.scan-line {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 12px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 13px rgba(0, 220, 132, 0.8);
  animation: scan 3.4s ease-in-out infinite;
}

@keyframes scan {
  0%,
  8% {
    opacity: 0;
    transform: translateY(0);
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  92%,
  100% {
    opacity: 0;
    transform: translateY(128px);
  }
}

.phone-task {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  padding: 11px;
  border: 1px solid rgba(3, 29, 33, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.phone-task__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #00a763;
  background: rgba(0, 220, 132, 0.1);
}

.phone-task__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.phone-task__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.phone-task__copy strong {
  margin-top: 2px;
  color: #12383d;
  font-size: 0.62rem;
}

.phone-task__copy > span {
  margin-top: 2px;
  color: #718985;
  font-size: 0.48rem;
}

.phone-task__arrow {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #40605d;
  background: #eef4f2;
}

.phone-task__arrow svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.phone-footerline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding: 0 3px;
  color: #6c827f;
  font-size: 0.45rem;
  font-weight: 620;
}

.phone-footerline span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #14805a;
}

.phone-footerline i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00b96f;
}

.floating-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 230px;
  padding: 11px 13px;
  border: 1px solid rgba(218, 245, 239, 0.14);
  border-radius: 14px;
  color: var(--light);
  background: rgba(4, 35, 40, 0.79);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  transition: transform 160ms ease-out;
}

.floating-chip--inspection {
  top: 96px;
  left: 0;
}

.floating-chip--sds {
  top: 226px;
  right: -22px;
}

.floating-chip--signed {
  bottom: 80px;
  left: -5px;
}

.floating-chip__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 220, 132, 0.18);
  border-radius: 10px;
  color: var(--green);
  background: rgba(0, 220, 132, 0.08);
}

.floating-chip__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.floating-chip > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-chip small {
  color: #83a19d;
  font-size: 0.5rem;
  font-weight: 760;
  letter-spacing: 0.085em;
}

.floating-chip strong {
  margin-top: 2px;
  color: #e5efed;
  font-size: 0.67rem;
  font-weight: 680;
  letter-spacing: -0.01em;
}

.module-rail-wrap {
  margin-top: 58px;
}

.module-rail-label {
  margin: 0 0 15px;
  color: #6f8b87;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.module-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.module-rail span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  border-right: 1px solid var(--line-light);
  color: #9fb5b2;
  font-size: 0.76rem;
  font-weight: 650;
}

.module-rail span:last-child {
  border-right: 0;
}

.module-rail i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0, 220, 132, 0.45);
  transform: rotate(45deg);
}

.platform-section {
  position: relative;
  padding: 132px 0 140px;
  border-top: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 20% 42%, rgba(0, 220, 132, 0.045), transparent 32rem),
    linear-gradient(180deg, rgba(3, 29, 33, 0.28), rgba(3, 29, 33, 0.78));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.15em;
}

.section-heading h2,
.workflow-copy h2,
.coming-soon-card h2 {
  margin: 0;
  color: var(--light);
  font-size: clamp(2.45rem, 4.6vw, 4.5rem);
  font-weight: 730;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section-heading p,
.workflow-copy > p {
  margin: 0;
  color: #a9bfbc;
  font-size: 1rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 52%),
    rgba(3, 29, 33, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background-color 260ms ease;
}

.feature-card:hover,
.feature-card.reveal.is-visible:hover {
  border-color: rgba(0, 220, 132, 0.21);
  background-color: rgba(5, 44, 49, 0.8);
  transform: translateY(-5px);
}

.feature-card--wide {
  grid-column: span 2;
  min-height: 390px;
}

.feature-card--accent {
  border-color: rgba(0, 220, 132, 0.17);
  background:
    radial-gradient(circle at 90% 90%, rgba(0, 220, 132, 0.13), transparent 44%),
    linear-gradient(145deg, rgba(0, 220, 132, 0.04), transparent 55%),
    rgba(3, 29, 33, 0.8);
}

.feature-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-number {
  color: #688581;
  font-size: 0.67rem;
  font-weight: 690;
  letter-spacing: 0.11em;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0, 220, 132, 0.12);
  border-radius: 12px;
  color: var(--green);
  background: rgba(0, 220, 132, 0.06);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.feature-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 64px;
}

.feature-tag {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.61rem;
  font-weight: 770;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  max-width: 470px;
  margin: 0;
  color: #e8f0ee;
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
  font-weight: 690;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 480px;
  margin: 13px 0 0;
  color: #8fa8a5;
  font-size: 0.88rem;
  line-height: 1.65;
}

.feature-card--wide .feature-card__body {
  width: 48%;
  padding-top: 100px;
}

.feature-visual--inspection {
  position: absolute;
  right: 26px;
  bottom: 25px;
  width: 43%;
}

.mini-window {
  padding: 15px;
  border: 1px solid rgba(216, 245, 239, 0.13);
  border-radius: 16px;
  background: rgba(7, 50, 56, 0.74);
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotate(-2deg);
}

.mini-window__bar {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}

.mini-window__bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(214, 239, 234, 0.23);
}

.mini-check {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 9px;
  border-top: 1px solid rgba(225, 247, 243, 0.07);
  color: #d4e2e0;
  font-size: 0.58rem;
}

.mini-check > span {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(212, 236, 231, 0.2);
  border-radius: 5px;
}

.mini-check--done > span {
  border-color: rgba(0, 220, 132, 0.3);
  background: rgba(0, 220, 132, 0.12);
}

.mini-check--done > span::after {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 7px;
  border: solid var(--green);
  border-width: 0 1.5px 1.5px 0;
  content: "";
  transform: rotate(45deg);
}

.mini-check b {
  font-weight: 630;
}

.mini-check em {
  color: #7c9995;
  font-size: 0.5rem;
  font-style: normal;
}

.mini-check--done em {
  color: #49d79b;
}

.mini-progress {
  height: 4px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(230, 249, 245, 0.07);
}

.mini-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00aa67, var(--green));
  box-shadow: 0 0 12px rgba(0, 220, 132, 0.27);
}

.document-stack {
  position: absolute;
  right: -13px;
  bottom: -6px;
  width: 115px;
  height: 110px;
  opacity: 0.6;
}

.document-stack span {
  position: absolute;
  display: block;
  width: 74px;
  height: 92px;
  border: 1px solid rgba(0, 220, 132, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(rgba(0, 220, 132, 0.2), rgba(0, 220, 132, 0.2)) 13px 20px / 38px 3px no-repeat,
    linear-gradient(rgba(222, 245, 240, 0.11), rgba(222, 245, 240, 0.11)) 13px 33px / 45px 3px no-repeat,
    linear-gradient(rgba(222, 245, 240, 0.08), rgba(222, 245, 240, 0.08)) 13px 43px / 39px 3px no-repeat,
    rgba(5, 47, 52, 0.8);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.document-stack span:nth-child(1) {
  right: 38px;
  bottom: 0;
  transform: rotate(-13deg);
}

.document-stack span:nth-child(2) {
  right: 20px;
  bottom: 2px;
  transform: rotate(-3deg);
}

.document-stack span:nth-child(3) {
  right: 0;
  bottom: 0;
  transform: rotate(9deg);
}

.workflow-section {
  padding: 135px 0 145px;
  border-top: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 78% 53%, rgba(0, 220, 132, 0.07), transparent 28rem),
    #021a1e;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.workflow-copy h2 {
  margin-top: 2px;
}

.workflow-copy > p {
  max-width: 550px;
  margin-top: 25px;
}

.workflow-steps {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
}

.workflow-steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.workflow-steps > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 220, 132, 0.17);
  border-radius: 10px;
  color: var(--green);
  background: rgba(0, 220, 132, 0.055);
  font-size: 0.58rem;
  font-weight: 760;
}

.workflow-steps h3 {
  margin: 1px 0 4px;
  color: #e0ebe9;
  font-size: 1rem;
  font-weight: 680;
}

.workflow-steps p {
  margin: 0;
  color: #819b97;
  font-size: 0.84rem;
  line-height: 1.55;
}

.activity-panel {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(212, 244, 237, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 42%),
    rgba(4, 38, 43, 0.88);
  box-shadow:
    0 36px 86px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.activity-panel__glow {
  position: absolute;
  top: -190px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 220, 132, 0.13), transparent 68%);
}

.activity-panel__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.activity-panel__header small {
  color: #6f908b;
  font-size: 0.57rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.activity-panel__header h3 {
  margin: 6px 0 0;
  color: #e6efed;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.026em;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 220, 132, 0.15);
  border-radius: 999px;
  color: #74e8b2;
  background: rgba(0, 220, 132, 0.065);
  font-size: 0.59rem;
  font-weight: 740;
}

.live-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(0, 220, 132, 0.7);
}

.activity-summary {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: end;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(220, 246, 241, 0.08);
  border-radius: 18px;
  background: rgba(1, 20, 23, 0.3);
}

.activity-summary > div:first-child {
  display: flex;
  flex-direction: column;
}

.activity-summary span,
.activity-summary small {
  color: #789692;
  font-size: 0.63rem;
  font-weight: 640;
}

.activity-summary strong {
  margin: 2px 0 -2px;
  color: var(--light);
  font-size: 3.2rem;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.06em;
}

.activity-chart {
  display: flex;
  gap: 6px;
  align-items: end;
  height: 83px;
  padding-bottom: 3px;
}

.activity-chart span {
  display: block;
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--green), rgba(0, 220, 132, 0.18));
  box-shadow: 0 0 15px rgba(0, 220, 132, 0.06);
}

.activity-list {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(220, 246, 241, 0.08);
  border-radius: 18px;
  background: rgba(1, 20, 23, 0.23);
}

.activity-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(220, 246, 241, 0.07);
}

.activity-item:last-child {
  border-bottom: 0;
}

.activity-item__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(235, 183, 63, 0.16);
  border-radius: 11px;
  color: #f0c75c;
  background: rgba(235, 183, 63, 0.07);
}

.activity-item__icon--check,
.activity-item__icon--signature {
  border-color: rgba(0, 220, 132, 0.15);
  color: var(--green);
  background: rgba(0, 220, 132, 0.065);
}

.activity-item__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.activity-item > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.activity-item strong {
  overflow: hidden;
  color: #d9e6e3;
  font-size: 0.73rem;
  font-weight: 660;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-item > div span {
  margin-top: 3px;
  overflow: hidden;
  color: #6f8c88;
  font-size: 0.59rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-item em {
  color: #67d9a6;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 680;
}

.activity-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 17px;
  color: #6f8f8a;
  font-size: 0.59rem;
  font-weight: 620;
}

.activity-panel__footer > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #93b3ae;
}

.activity-panel__footer svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.coming-soon-section {
  padding: 80px 0 95px;
  background: #021a1e;
}

.coming-soon-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(0, 220, 132, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 77% 50%, rgba(0, 220, 132, 0.16), transparent 20rem),
    linear-gradient(120deg, #00bd72, #00dc84 52%, #11e997);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.27);
}

.coming-soon-card__grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(3, 29, 33, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 29, 33, 0.25) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, black, transparent 86%);
}

.coming-soon-card__orb {
  position: absolute;
  top: -100px;
  right: -40px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(3, 29, 33, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(3, 29, 33, 0.03),
    0 0 0 100px rgba(3, 29, 33, 0.025);
}

.coming-soon-card__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
  padding: 66px;
}

.section-kicker--light {
  color: rgba(3, 29, 33, 0.68);
}

.coming-soon-card h2 {
  color: var(--ink);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
}

.coming-soon-card p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(3, 29, 33, 0.75);
  font-size: 1.05rem;
  font-weight: 530;
  line-height: 1.7;
}

.button--light {
  margin-top: 31px;
  color: var(--light);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(3, 29, 33, 0.2);
}

.button--light:hover {
  background: #06292e;
}

.coming-soon-mark {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(3, 29, 33, 0.19);
  border-radius: 54px;
  background: rgba(3, 29, 33, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 30px 80px rgba(3, 29, 33, 0.12);
  transform: rotate(4deg);
}

.coming-soon-mark__corner {
  width: 48px;
  height: 48px;
  border-color: var(--ink);
}

.coming-soon-mark__corner--tl,
.coming-soon-mark__corner--tr {
  top: 35px;
}

.coming-soon-mark__corner--bl,
.coming-soon-mark__corner--br {
  bottom: 35px;
}

.coming-soon-mark__corner--tl,
.coming-soon-mark__corner--bl {
  left: 35px;
}

.coming-soon-mark__corner--tr,
.coming-soon-mark__corner--br {
  right: 35px;
}

.coming-soon-mark__corner--tl {
  border-width: 6px 0 0 6px;
  border-radius: 7px 0 0;
}

.coming-soon-mark__corner--tr {
  border-width: 6px 6px 0 0;
  border-radius: 0 7px 0 0;
}

.coming-soon-mark__corner--bl {
  border-width: 0 0 6px 6px;
  border-radius: 0 0 0 7px;
}

.coming-soon-mark__corner--br {
  border-width: 0 6px 6px 0;
  border-radius: 0 0 7px;
}

.coming-soon-mark__core {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--ink);
  box-shadow:
    36px 0 0 -3px rgba(3, 29, 33, 0.55),
    -36px 0 0 -3px rgba(3, 29, 33, 0.55),
    0 36px 0 -3px rgba(3, 29, 33, 0.55),
    0 -36px 0 -3px rgba(3, 29, 33, 0.55);
}

.site-footer {
  padding: 31px 0;
  border-top: 1px solid var(--line-light);
  background: #021416;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .wordmark {
  font-size: 0.83rem;
}

.footer-brand > span:last-child {
  padding-left: 14px;
  border-left: 1px solid rgba(214, 241, 236, 0.12);
  color: #647f7b;
  font-size: 0.67rem;
}

.footer-inner p {
  display: flex;
  gap: 7px;
  margin: 0;
  color: #607b77;
  font-size: 0.66rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .reveal:nth-child(2),
.workflow-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.feature-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.feature-grid .reveal:nth-child(4) {
  transition-delay: 190ms;
}

.feature-grid .reveal:nth-child(5) {
  transition-delay: 240ms;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 30px;
  }

  .floating-chip--inspection {
    left: -26px;
  }

  .floating-chip--sds {
    right: -38px;
  }

  .floating-chip--signed {
    left: -22px;
  }

  .feature-card--wide .feature-card__body {
    width: 52%;
  }

  .feature-visual--inspection {
    width: 41%;
  }

  .workflow-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 58px;
  }
}

@media (max-width: 930px) {
  :root {
    --header-height: 82px;
  }

  .header-link {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 64px);
  }

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

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

  .hero h1 {
    font-size: clamp(4rem, 12vw, 6.8rem);
  }

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

  .floating-chip--inspection {
    left: 8px;
  }

  .floating-chip--sds {
    right: 0;
  }

  .floating-chip--signed {
    left: 18px;
  }

  .module-rail-wrap {
    margin-top: 36px;
  }

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

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

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

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

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

  .workflow-copy {
    max-width: 720px;
  }

  .activity-panel {
    width: min(100%, 700px);
  }

  .coming-soon-card {
    grid-template-columns: 1fr 220px;
  }

  .coming-soon-card__content {
    padding: 52px;
  }

  .coming-soon-mark {
    width: 150px;
    height: 150px;
    border-radius: 42px;
  }

  .coming-soon-mark__corner {
    width: 38px;
    height: 38px;
  }

  .coming-soon-mark__corner--tl,
  .coming-soon-mark__corner--tr {
    top: 28px;
  }

  .coming-soon-mark__corner--bl,
  .coming-soon-mark__corner--br {
    bottom: 28px;
  }

  .coming-soon-mark__corner--tl,
  .coming-soon-mark__corner--bl {
    left: 28px;
  }

  .coming-soon-mark__corner--tr,
  .coming-soon-mark__corner--br {
    right: 28px;
  }
}

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

  .site-header {
    height: 76px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .brand-mark__corner--tl,
  .brand-mark__corner--tr {
    top: 7px;
  }

  .brand-mark__corner--bl,
  .brand-mark__corner--br {
    bottom: 7px;
  }

  .brand-mark__corner--tl,
  .brand-mark__corner--bl {
    left: 7px;
  }

  .brand-mark__corner--tr,
  .brand-mark__corner--br {
    right: 7px;
  }

  .wordmark {
    font-size: 1rem;
  }

  .endorsement {
    font-size: 0.45rem;
  }

  .launch-status {
    gap: 7px;
    font-size: 0.67rem;
  }

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

  .hero-grid {
    min-height: 0;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 18vw, 5.1rem);
    line-height: 0.92;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 23px;
  }

  .hero-visual,
  .hero-visual.reveal.is-visible {
    min-height: 565px;
    margin-top: 5px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .visual-halo--outer {
    width: 530px;
  }

  .phone-wrap {
    width: 282px;
  }

  .phone-screen {
    min-height: 548px;
  }

  .floating-chip {
    max-width: 185px;
    padding: 9px 10px;
  }

  .floating-chip__icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .floating-chip strong {
    font-size: 0.58rem;
  }

  .floating-chip--inspection {
    top: 70px;
    left: -19px;
  }

  .floating-chip--sds {
    top: 224px;
    right: -28px;
  }

  .floating-chip--signed {
    bottom: 66px;
    left: -21px;
  }

  .module-rail-wrap {
    margin-top: -22px;
  }

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

  .module-rail span {
    min-height: 50px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .module-rail span:nth-child(2n) {
    border-right: 0;
  }

  .module-rail span:last-child {
    grid-column: span 2;
    border-bottom: 0;
  }

  .platform-section,
  .workflow-section {
    padding: 90px 0 96px;
  }

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

  .section-heading h2,
  .workflow-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

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

  .feature-card,
  .feature-card--wide {
    grid-column: auto;
    min-height: 315px;
  }

  .feature-card--wide {
    min-height: 0;
  }

  .feature-card--wide .feature-card__body {
    width: 100%;
    margin-top: 38px;
    padding-top: 0;
  }

  .feature-visual--inspection {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 28px;
  }

  .feature-card--wide .mini-window {
    transform: rotate(-1deg);
  }

  .workflow-grid {
    gap: 55px;
  }

  .activity-panel {
    padding: 20px;
    border-radius: 23px;
  }

  .activity-summary {
    grid-template-columns: 0.85fr 1.15fr;
    padding: 17px;
  }

  .activity-item {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .activity-item em {
    display: none;
  }

  .activity-panel__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .coming-soon-section {
    padding: 45px 0 66px;
  }

  .coming-soon-card {
    grid-template-columns: 1fr;
    min-height: 600px;
    border-radius: 26px;
  }

  .coming-soon-card__content {
    align-self: start;
    padding: 42px 27px 0;
  }

  .coming-soon-card h2 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  .coming-soon-card p {
    font-size: 0.96rem;
  }

  .button--light {
    width: auto;
  }

  .coming-soon-mark {
    align-self: end;
    margin-top: 12px;
    margin-bottom: 45px;
  }

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

  .footer-inner {
    gap: 18px;
  }

  .footer-brand {
    gap: 9px;
  }

  .footer-brand > span:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .footer-inner p {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .launch-status {
    font-size: 0;
  }

  .launch-status::after {
    font-size: 0.65rem;
    content: "Soon";
  }

  .hero-visual,
  .hero-visual.reveal.is-visible {
    width: 108%;
    margin-left: -4%;
    transform: scale(0.86);
  }

  .floating-chip--sds {
    right: -38px;
  }

  .floating-chip--inspection,
  .floating-chip--signed {
    left: -34px;
  }

  .module-rail-wrap {
    margin-top: -66px;
  }
}

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

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

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