:root {
  color-scheme: dark;
  --bg: #07090b;
  --panel: #0c1116;
  --panel-2: #111820;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f4f7fb;
  --muted: #99a3af;
  --muted-2: #67717f;
  --cyan: #22d3ee;
  --cyan-2: #0891b2;
  --green: #20d6a3;
  --amber: #f59e0b;
  --rose: #fb7185;
  --thread: #ff4057;
  --thread-soft: rgba(255, 64, 87, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 8%, rgba(34, 211, 238, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(32, 214, 163, 0.1), transparent 26rem),
    linear-gradient(180deg, #0a0d10 0%, var(--bg) 52%, #050608 100%);
  color: var(--text);
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 9, 11, 0.9);
  backdrop-filter: blur(20px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 188px;
}
.brand-mark-image {
  display: inline-flex;
  overflow: hidden;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-wordmark {
  width: 136px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
}
.nav a {
  border-radius: 999px;
  padding: 8px 7px;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav .universe-link,
.mobile-nav .universe-link {
  border: 1px solid rgba(34, 211, 238, 0.42);
  background: rgba(34, 211, 238, 0.1);
  color: #67e8f9;
}
.nav .universe-link {
  padding-inline: 10px;
  font-weight: 800;
}
.mobile-nav .universe-link {
  margin-bottom: 4px;
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-cta {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--text);
  color: #071014;
  font-size: 13px;
  font-weight: 850;
}
.header-cta:hover {
  background: #dff6f7;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.22s ease;
}
.site-header.is-menu-open .nav-toggle span:first-child {
  transform: translateX(4px) rotate(42deg);
}
.site-header.is-menu-open .nav-toggle span:last-child {
  transform: translateX(-4px) rotate(-42deg);
}
.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(14px, 4vw, 56px);
  left: clamp(14px, 4vw, 56px);
  z-index: 30;
  display: grid;
  grid-auto-rows: min-content;
  gap: 6px;
  max-height: min(calc(100vh - 92px), 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(11, 15, 19, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-overflow-scrolling: touch;
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav a {
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  font-weight: 800;
}
.anchor-target {
  position: relative;
  top: -90px;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.mobile-nav-tools {
  display: none;
  justify-content: flex-end;
  padding: 2px 2px 8px;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
}
main {
  overflow: hidden;
}
.hero,
.section {
  scroll-margin-top: 92px;
  width: min(1480px, calc(100% - 36px));
  margin-inline: auto;
}
.feature-card,
.compact-grid article {
  scroll-margin-top: 92px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-block: clamp(54px, 8vw, 116px);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.lede,
.section-head p,
.closing-section p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
}
.button-primary {
  background: var(--cyan);
  color: #031015;
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.12);
}
.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 12px;
  transition: transform 160ms ease, filter 160ms ease;
}
.app-store-badge-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.app-store-badge-link:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.45);
  outline-offset: 4px;
}
.app-store-badge {
  display: block;
  width: 162px;
  height: auto;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}
.proof-strip div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}
.proof-strip dt {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.proof-strip dd {
  margin: 7px 0 0;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  font-weight: 800;
}
.hero-stage {
  position: relative;
  min-height: min(760px, 68vw);
}
.screen-frame,
.phone-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050607;
  box-shadow: var(--shadow);
}
.screen-frame {
  border-radius: 32px;
  padding: 10px;
}
.screen-frame img {
  aspect-ratio: 3 / 2;
  border-radius: 24px;
  object-fit: cover;
  object-position: left top;
}
.screen-frame-desktop {
  transform: rotate(-1.4deg);
}
.phone-frame {
  border-radius: 38px;
  padding: 9px;
}
.phone-frame img {
  aspect-ratio: 0.462;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
}
.hero-stage .phone-frame {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(255px, 31vw);
  transform: rotate(4deg);
}
.section {
  padding-block: clamp(60px, 8vw, 120px);
}
.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}
.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: end;
  max-width: none;
}
.workflow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.thread-3d {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 40px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 64, 87, 0.12), transparent 22rem),
    radial-gradient(circle at 86% 20%, rgba(34, 211, 238, 0.06), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 90px rgba(0, 0, 0, 0.28);
}
.thread-3d::before {
  position: absolute;
  z-index: 0;
  content: "";
  top: 62px;
  right: clamp(40px, 4vw, 68px);
  left: clamp(40px, 4vw, 68px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 64, 87, 0.1), rgba(255, 64, 87, 0.78), rgba(255, 64, 87, 0.12));
  box-shadow: 0 0 22px rgba(255, 64, 87, 0.16);
}
.thread-3d::after {
  position: absolute;
  inset: auto 8% 0;
  z-index: 0;
  height: 120px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(255, 64, 87, 0.1), transparent 70%);
  filter: blur(24px);
  opacity: 0.52;
  pointer-events: none;
}
.workflow li {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  padding: 80px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.024)),
    rgba(8, 12, 16, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transform: translateY(0);
}
.workflow li::before {
  position: absolute;
  top: 28px;
  left: 20px;
  width: 18px;
  height: 18px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: var(--thread);
  box-shadow:
    0 0 0 8px rgba(255, 64, 87, 0.12),
    0 14px 36px rgba(255, 64, 87, 0.32);
}
.workflow li::after {
  position: absolute;
  top: 37px;
  right: 18px;
  left: 48px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 64, 87, 0.75), rgba(255, 255, 255, 0.08));
}
.workflow span {
  position: absolute;
  top: 27px;
  right: 18px;
  color: var(--thread);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 900;
}
.workflow strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}
.workflow p,
.feature-card p {
  color: var(--muted);
  line-height: 1.48;
}
.workflow li {
  animation: threadCardIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--step) * 0.08s);
}
@keyframes threadCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.newsletter-section {
  padding-top: clamp(36px, 6vw, 86px);
}
.newsletter-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.13), transparent 22rem),
    radial-gradient(circle at 92% 18%, rgba(32, 214, 163, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(16, 22, 29, 0.98), rgba(7, 10, 14, 0.98));
  box-shadow: var(--shadow);
}
.newsletter-panel::before {
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  content: "";
  pointer-events: none;
}
.newsletter-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(34, 211, 238, 0.1) 42.6%, transparent 44.5%),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(255, 255, 255, 0.032) 23px, transparent 25px);
  mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 88%, transparent 100%);
  opacity: 0.72;
  pointer-events: none;
}
.newsletter-stripes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.newsletter-stripes::before {
  position: absolute;
  top: -18%;
  right: -20%;
  width: 62%;
  height: 136%;
  border-left: 1px solid rgba(34, 211, 238, 0.22);
  border-right: 1px solid rgba(32, 214, 163, 0.14);
  content: "";
  transform: rotate(17deg);
  background:
    repeating-linear-gradient(90deg, rgba(34, 211, 238, 0.2) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.1), transparent);
  mask-image: linear-gradient(90deg, transparent 0%, black 17%, black 78%, transparent 100%);
}
.newsletter-stripes::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 42%;
  height: 34%;
  border: 1px solid rgba(34, 211, 238, 0.23);
  border-left-color: transparent;
  border-radius: 999px;
  box-shadow:
    0 0 38px rgba(34, 211, 238, 0.1),
    inset 0 0 26px rgba(34, 211, 238, 0.06);
  content: "";
  transform: skewX(-10deg) rotate(-8deg);
}
.newsletter-stripes span {
  position: absolute;
  right: -14%;
  width: 58%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 64, 87, 0.68), rgba(34, 211, 238, 0.72), transparent);
  box-shadow:
    0 0 18px rgba(255, 64, 87, 0.2),
    0 0 32px rgba(34, 211, 238, 0.16);
  transform: rotate(-13deg);
  opacity: 0.72;
}
.newsletter-stripes span:nth-child(1) {
  top: 18%;
}
.newsletter-stripes span:nth-child(2) {
  top: 28%;
  right: -8%;
  width: 48%;
  opacity: 0.46;
}
.newsletter-stripes span:nth-child(3) {
  top: 44%;
  width: 72%;
  opacity: 0.58;
}
.newsletter-stripes span:nth-child(4) {
  top: 58%;
  right: -22%;
  width: 66%;
  opacity: 0.38;
}
.newsletter-stripes span:nth-child(5) {
  top: 72%;
  right: -10%;
  width: 52%;
  opacity: 0.52;
}
.newsletter-stripes span:nth-child(6) {
  top: 84%;
  width: 64%;
  opacity: 0.28;
}
.newsletter-copy,
.newsletter-stack {
  position: relative;
  z-index: 2;
}
.newsletter-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.newsletter-copy h2 {
  max-width: 680px;
}
.newsletter-copy > p {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.newsletter-mail-card {
  max-width: 560px;
  margin-top: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.newsletter-mail-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 850;
  letter-spacing: -0.02em;
}
.newsletter-mail-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.48;
}
.newsletter-mail-card p:empty {
  display: none;
}
.newsletter-form {
  display: grid;
  gap: 10px;
}
.newsletter-input-label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.newsletter-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.newsletter-email-input {
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  outline: none;
}
.newsletter-email-input::placeholder {
  color: #7c8795;
}
.newsletter-email-input:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
}
.newsletter-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--cyan);
  color: #031015;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}
.newsletter-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}
.newsletter-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.4;
}
.newsletter-status[data-status="success"] {
  color: #34d399;
}
.newsletter-status[data-status="error"] {
  color: #fb7185;
}
.newsletter-status[data-status="loading"] {
  color: #67e8f9;
}
.newsletter-stack {
  display: grid;
  gap: 14px;
}
.newsletter-current {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.newsletter-current:hover {
  border-color: rgba(34, 211, 238, 0.46);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-2px);
}
.newsletter-current-label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.newsletter-current img {
  width: min(100%, 260px);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #020305;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}
.newsletter-current-copy {
  display: grid;
  gap: 6px;
}
.newsletter-current-copy span {
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}
.newsletter-current-copy strong {
  font-size: 22px;
  letter-spacing: -0.035em;
}
.newsletter-current-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.44;
}
.newsletter-issues {
  display: grid;
  gap: 10px;
}
.newsletter-issues a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.032);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.newsletter-issues a:hover {
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(255, 255, 255, 0.055);
}
.newsletter-issues span {
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 900;
}
.newsletter-issues strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.92), rgba(8, 11, 15, 0.96));
  box-shadow: var(--shadow);
}
.feature-card.is-wide {
  grid-column: span 2;
}
.card-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 22px;
  align-items: end;
  padding: clamp(24px, 4vw, 42px);
}
.card-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.feature-card img {
  height: min(560px, 54vw);
  border-top: 1px solid var(--line-soft);
  object-fit: cover;
  object-position: left top;
}
.feature-card:not(.is-wide) img {
  height: 360px;
}
.chart-product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
  border-top: 1px solid var(--line-soft);
  padding: 0 clamp(16px, 3vw, 26px) clamp(18px, 3vw, 28px);
}
.chart-shot-wrap {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: #020303;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}
.chart-product-stage .chart-main-shot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-top: 0;
  object-fit: cover;
  object-position: left top;
}
.sidecar-rondell {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 520px;
  padding: 8px 0;
}
.sidecar-rondell::before {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  z-index: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.34), rgba(255, 64, 87, 0.22), transparent);
}
.sidecar-tile {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(9, 13, 18, 0.86);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}
.sidecar-tile:nth-child(1) {
  transform: rotate(-1.8deg) translateX(4px);
}
.sidecar-tile:nth-child(2) {
  transform: rotate(1.4deg) translateX(-14px);
}
.sidecar-tile:nth-child(3) {
  transform: rotate(-0.8deg) translateX(16px);
}
.sidecar-tile:nth-child(4) {
  transform: rotate(1.2deg) translateX(-4px);
}
.sidecar-tile img {
  display: block;
  width: 100%;
  height: clamp(64px, 8vw, 118px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  object-fit: cover;
  object-position: left top;
}
.sidecar-tile-stock img {
  height: clamp(92px, 10vw, 148px);
}
.sidecar-tile-checklist img {
  height: clamp(112px, 12vw, 168px);
}
.sidecar-tile strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 16px;
  letter-spacing: -0.02em;
}
.sidecar-tile span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.feature-strip-section {
  padding-top: clamp(36px, 6vw, 86px);
}
.feature-strip-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-strip-copy p {
  margin-bottom: 22px;
}
.feature-strip-cta {
  min-height: 46px;
  padding-inline: 22px;
  text-decoration: none;
  white-space: nowrap;
}
.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.compact-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.022)),
    rgba(8, 12, 16, 0.72);
  box-shadow: var(--shadow);
}
.compact-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.compact-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.compact-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}
.mobile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: center;
}
.phone-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
}
.phone-frame-large {
  width: min(310px, 42vw);
}
.phone-frame-raised {
  margin-top: -80px;
}
.closing-section {
  max-width: 980px;
  text-align: center;
}
.closing-section .button {
  margin-top: 18px;
}
.footer {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 13px;
}
.footer-brand {
  display: grid;
  gap: 6px;
  min-width: min(100%, 280px);
}
.footer-brand > span:first-child {
  color: var(--text);
  font-weight: 900;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  max-width: 760px;
}
.footer-links a {
  color: var(--muted);
  font-weight: 750;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  outline: none;
}
.footer-disclaimer {
  flex-basis: 100%;
  color: var(--muted-2);
}
@media (min-width: 981px) {
  .mobile-nav {
    display: none !important;
  }
}
@media (max-width: 1240px) {
  .workflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .thread-3d::before {
    display: none;
  }
}
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .brand {
    min-width: auto;
  }
  .brand-wordmark {
    width: 124px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .mobile-nav {
    top: calc(100% + 8px);
    max-height: calc(100svh - 82px);
    padding: 8px;
  }
  .hero,
  .mobile-section,
  .newsletter-panel,
  .section-head-row {
    grid-template-columns: 1fr;
  }
  .feature-strip-cta {
    width: fit-content;
  }
  .hero {
    min-height: auto;
  }
  .hero-stage {
    min-height: 640px;
  }
  .hero-stage .phone-frame {
    width: min(240px, 46vw);
  }
  .workflow,
  .feature-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }
  .workflow li {
    min-height: auto;
  }
  .feature-card.is-wide {
    grid-column: span 1;
  }
  .card-copy {
    grid-template-columns: 1fr;
  }
  .chart-product-stage {
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }
  .chart-shot-wrap,
  .chart-product-stage .chart-main-shot,
  .sidecar-rondell {
    min-height: auto;
  }
  .chart-product-stage .chart-main-shot {
    height: 420px;
  }
  .sidecar-rondell {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    align-content: stretch;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .sidecar-rondell::-webkit-scrollbar {
    display: none;
  }
  .sidecar-rondell::before {
    display: none;
  }
  .sidecar-tile,
  .sidecar-tile:nth-child(n) {
    scroll-snap-align: start;
    transform: none;
  }
}
@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
    gap: 10px;
  }
  .brand-wordmark {
    width: 116px;
  }
  .header-cta {
    display: none;
  }
  .mobile-nav-tools {
    display: flex;
  }
  .hero,
  .section {
    width: min(100% - 24px, 1480px);
  }
  body {
    overflow-x: hidden;
  }
  .section-head,
  .workflow-section,
  .thread-3d,
  .workflow,
  .workflow li {
    max-width: 100%;
    min-width: 0;
  }
  .workflow-section {
    inline-size: calc(100vw - 24px);
    overflow: hidden;
  }
  .workflow-section .section-head {
    inline-size: min(100%, 330px);
  }
  .thread-3d {
    inline-size: 100%;
  }
  .workflow {
    display: flex;
    flex-direction: column;
    inline-size: 100%;
  }
  .workflow li {
    inline-size: 100%;
  }
  .workflow-section .section-head h2,
  .workflow-section .section-head p,
  .workflow strong,
  .workflow p {
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }
  .workflow p {
    max-inline-size: 25ch;
  }
  .workflow-section .section-head h2 {
    font-size: clamp(32px, 10.4vw, 43px);
  }
  h1 {
    font-size: clamp(38px, 11.2vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }
  h2 {
    font-size: clamp(34px, 12vw, 54px);
  }
  .proof-strip {
    display: none;
  }
  .footer {
    display: grid;
    justify-content: stretch;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .lede {
    font-size: 19px;
    line-height: 1.42;
  }
  .hero {
    gap: 22px;
    padding-block: 34px 54px;
  }
  .hero-stage {
    min-height: 390px;
  }
  .screen-frame {
    margin-right: -62vw;
  }
  .hero-stage .phone-frame {
    right: 0;
    width: 210px;
  }
  .feature-card {
    min-height: auto;
    border-radius: 26px;
  }
  .feature-card img,
  .feature-card:not(.is-wide) img {
    height: 320px;
  }
  .chart-product-stage {
    padding: 0 10px 16px;
  }
  .chart-product-stage .chart-main-shot {
    height: 330px;
  }
  .sidecar-rondell {
    grid-template-columns: repeat(4, minmax(205px, 1fr));
  }
  .sidecar-tile {
    border-radius: 20px;
  }
  .sidecar-tile img,
  .sidecar-tile-stock img,
  .sidecar-tile-checklist img {
    height: 96px;
  }
  .thread-3d {
    border-radius: 28px;
    padding: 16px;
  }
  .newsletter-panel {
    border-radius: 28px;
    padding: 20px;
  }
  .newsletter-panel::before {
    inset: 9px;
    border-radius: 22px;
  }
  .newsletter-panel::after {
    opacity: 0.48;
  }
  .newsletter-stripes::before {
    right: -58%;
    width: 116%;
    opacity: 0.58;
  }
  .newsletter-stripes::after {
    right: -16%;
    bottom: 28%;
    width: 70%;
    height: 24%;
    opacity: 0.62;
  }
  .newsletter-stripes span {
    right: -46%;
    width: 98%;
    opacity: 0.42;
  }
  .newsletter-stripes span:nth-child(n + 4) {
    display: none;
  }
  .newsletter-actions .button {
    width: 100%;
  }
  .newsletter-mail-card {
    border-radius: 20px;
  }
  .newsletter-current {
    border-radius: 24px;
  }
  .newsletter-current img {
    width: min(100%, 220px);
  }
  .workflow li {
    padding: 72px 18px 20px;
    border-radius: 22px;
  }
  .compact-grid article {
    min-height: auto;
    border-radius: 24px;
  }
  .phone-grid {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
  }
  .phone-frame-large {
    flex: 0 0 236px;
    width: 236px;
  }
  .phone-frame-raised {
    margin-top: 0;
  }
  .footer {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .workflow li {
    animation: none !important;
  }
  .workflow li {
    opacity: 1;
    transform: none;
  }
}
