:root {
  color-scheme: dark;
  --bg: #08090b;
  --ink: #f7f4ed;
  --muted: rgba(247, 244, 237, 0.68);
  --dim: rgba(247, 244, 237, 0.44);
  --panel: #14161a;
  --panel-2: #1b1d22;
  --line: rgba(247, 244, 237, 0.11);
  --cyan: #52dbcc;
  --amber: #ffbb4a;
  --red: #ff4b55;
  --green: #2bd65f;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SF Mono", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
}

.brand small,
.site-footer small,
.bridge-title small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
}

.brand small {
  display: inline-block;
  transform: translateY(2px);
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(#07100f, #07100f) 11px 13px / 3px 13px no-repeat,
    linear-gradient(#07100f, #07100f) 17px 8px / 3px 23px no-repeat,
    linear-gradient(#07100f, #07100f) 23px 6px / 3px 27px no-repeat,
    linear-gradient(#07100f, #07100f) 29px 12px / 3px 15px no-repeat,
    var(--cyan);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 25px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 780;
}

.site-header nav a,
.site-footer nav a {
  position: relative;
  transition: color 140ms ease;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.site-header nav a.is-active {
  color: var(--ink);
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0;
  transform: scaleX(0.38);
  transition: opacity 140ms ease, transform 140ms ease;
}

.site-header nav a:hover::after,
.site-header nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header nav a.nav-buy {
  margin-left: clamp(4px, 1.2vw, 18px);
  padding: 10px 17px;
  border: 1px solid rgba(255, 187, 74, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 187, 74, 0.24), rgba(255, 187, 74, 0.08)),
    rgba(255, 187, 74, 0.06);
  color: var(--amber);
  box-shadow:
    0 0 0 1px rgba(255, 187, 74, 0.04),
    0 0 28px rgba(255, 187, 74, 0.10);
}

.site-header nav a.nav-buy:hover,
.site-header nav a.nav-buy.is-active {
  color: #08090b;
  background: var(--amber);
  border-color: rgba(255, 237, 178, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 237, 178, 0.20),
    0 0 34px rgba(255, 187, 74, 0.22);
}

.site-header nav a.nav-buy::after {
  display: none;
}

.site-header nav a.nav-trial {
  padding: 10px 15px;
  border: 1px solid rgba(82, 219, 204, 0.38);
  border-radius: 999px;
  background: rgba(82, 219, 204, 0.08);
  color: var(--cyan);
}

.site-header nav a.nav-trial:hover,
.site-header nav a.nav-trial.is-active {
  color: #06100f;
  background: var(--cyan);
  border-color: rgba(168, 255, 245, 0.74);
  box-shadow: 0 0 30px rgba(82, 219, 204, 0.18);
}

.site-header nav a.nav-trial::after {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 190px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 58px) clamp(54px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 940;
  line-height: 0.92;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5.6vw, 76px);
  font-weight: 930;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 880;
  line-height: 1.05;
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(247, 244, 237, 0.78);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.42;
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.button.primary {
  background: var(--cyan);
  color: #06100f;
}

.button.secondary {
  border: 1px solid rgba(247, 244, 237, 0.16);
  background: rgba(247, 244, 237, 0.07);
}

.inline-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(82, 219, 204, 0.28);
  border-radius: 8px;
  background: rgba(82, 219, 204, 0.09);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.disabled-button {
  cursor: default;
  opacity: 0.78;
}

.hero-stack {
  position: relative;
  min-height: 650px;
}

.hero-product-images {
  min-height: min(650px, calc(100vh - 180px));
}

.product-shot {
  position: absolute;
  margin: 0;
}

.product-shot img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(247, 244, 237, 0.16);
  background: #08090b;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.bridge-shot {
  left: 0;
  right: clamp(68px, 12vw, 172px);
  bottom: 0;
  z-index: 1;
}

.bridge-shot img {
  border-radius: 16px;
}

.iphone-shot {
  top: 0;
  right: 0;
  z-index: 2;
  width: min(310px, 31vw);
  padding: 8px 8px 22px;
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 34px;
  background: #08090b;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.iphone-shot img {
  border: 0;
  border-radius: 26px;
  box-shadow: none;
}

.phone-card {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: min(315px, 38vw);
  min-width: 260px;
  padding: 24px;
  border: 1px solid rgba(247, 244, 237, 0.15);
  border-radius: 26px;
  background: #15181d;
  transform: rotate(4deg);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.phone-card h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.record-disc {
  width: 140px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 54px auto 44px;
  border-radius: 50%;
  background: var(--cyan);
}

.record-disc span {
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #07100f;
  box-shadow: 0 0 0 12px rgba(7, 16, 15, 0.35);
}

.phone-wave,
.wave-line {
  display: flex;
  align-items: center;
}

.phone-wave {
  justify-content: center;
  gap: 8px;
  height: 70px;
}

.phone-wave i {
  display: block;
  width: 8px;
  border-radius: 99px;
  background: var(--cyan);
}

.phone-wave i:nth-child(1) { height: 10px; opacity: 0.5; }
.phone-wave i:nth-child(2) { height: 22px; opacity: 0.7; }
.phone-wave i:nth-child(3) { height: 52px; }
.phone-wave i:nth-child(4) { height: 66px; }
.phone-wave i:nth-child(5) { height: 34px; }
.phone-wave i:nth-child(6) { height: 48px; }
.phone-wave i:nth-child(7) { height: 44px; }
.phone-wave i:nth-child(8) { height: 24px; }
.phone-wave i:nth-child(9) { height: 12px; opacity: 0.6; }

.take-row {
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.07);
}

.take-row strong,
.take-row span {
  display: block;
}

.take-row strong {
  font-size: 18px;
}

.take-row span {
  margin-top: 6px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
}

.bridge-window {
  position: absolute;
  left: 0;
  right: clamp(22px, 7vw, 110px);
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 0.64fr);
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 16px;
  background: #090a0d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.window-dots {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 10px;
}

.window-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: var(--red); }
.window-dots span:nth-child(2) { background: #ffc928; }
.window-dots span:nth-child(3) { background: var(--green); }

.bridge-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 78px 22px 24px;
  border-right: 1px solid var(--line);
}

.bridge-title {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.bridge-title .brand-mark {
  width: 54px;
  height: 54px;
  background:
    linear-gradient(#07100f, #07100f) 15px 17px / 4px 21px no-repeat,
    linear-gradient(#07100f, #07100f) 24px 10px / 4px 36px no-repeat,
    linear-gradient(#07100f, #07100f) 33px 7px / 4px 42px no-repeat,
    linear-gradient(#07100f, #07100f) 42px 16px / 4px 23px no-repeat,
    var(--cyan);
}

.bridge-title .eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
}

.bridge-title strong {
  display: block;
  font-size: 44px;
  font-weight: 930;
  line-height: 0.98;
}

.status-card,
.device-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border-radius: 8px;
  background: var(--panel-2);
}

.status-card > span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
}

.status-card strong,
.device-card strong {
  display: block;
  font-size: 18px;
}

.status-card small,
.device-card small {
  display: block;
  margin-top: 5px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 800;
}

.device-card {
  margin-top: auto;
  border: 1px solid rgba(82, 219, 204, 0.24);
  background: #101316;
}

.phone-glyph {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
}

.phone-glyph::before {
  content: "";
  position: absolute;
  inset: 10px 14px;
  border: 3px solid #07100f;
  border-radius: 5px;
}

.sample-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 78px 24px 24px;
}

.sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.sample-head strong {
  display: block;
  font-size: 38px;
  font-weight: 930;
  line-height: 1;
}

.sample-head span {
  display: block;
  margin-top: 8px;
  color: var(--dim);
  font-size: 17px;
  font-weight: 820;
}

.favorite-pill {
  min-width: 140px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 187, 74, 0.22);
  border-radius: 999px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.sample-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(247, 244, 237, 0.08);
  border-radius: 8px;
  background: var(--panel);
}

.sample-row button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #24272d;
  color: var(--cyan);
  font-size: 21px;
}

.sample-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.sample-title strong {
  font-size: 24px;
  font-weight: 900;
}

.sample-title span {
  padding: 4px 9px;
  border: 1px solid rgba(255, 187, 74, 0.32);
  border-radius: 999px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.sample-info p {
  margin: 12px 0 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 850;
}

.wave-line {
  gap: 5px;
  height: 34px;
  opacity: 0.8;
}

.wave-line span {
  flex: 1 1 auto;
  min-width: 6px;
  height: 4px;
  border-radius: 999px;
  background: #565a63;
}

.wave-line span:nth-child(2) { height: 18px; }
.wave-line span:nth-child(3) { height: 26px; }
.wave-line span:nth-child(4) { height: 14px; }
.wave-line span:nth-child(5) { height: 31px; }
.wave-line span:nth-child(6) { height: 18px; }
.wave-line span:nth-child(7) { height: 12px; }
.wave-line span:nth-child(8) { height: 28px; }
.wave-line span:nth-child(9) { height: 22px; }
.wave-line span:nth-child(10) { height: 9px; }
.wave-line span:nth-child(11) { height: 34px; }
.wave-line span:nth-child(12) { height: 16px; }

.wave-line.quiet span:nth-child(2) { height: 8px; }
.wave-line.quiet span:nth-child(3) { height: 11px; }
.wave-line.quiet span:nth-child(4) { height: 16px; }
.wave-line.quiet span:nth-child(5) { height: 12px; }
.wave-line.quiet span:nth-child(6) { height: 21px; }
.wave-line.quiet span:nth-child(7) { height: 28px; }
.wave-line.quiet span:nth-child(8) { height: 20px; }

.section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding: clamp(70px, 9vw, 126px) clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}

.use-cases {
  padding-top: clamp(48px, 5vw, 70px);
}

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

.section-copy p:not(.eyebrow),
.case-grid p,
.steps p,
.feature-list li,
.product-card p,
.license-card p,
.license-card dd,
.plan-grid p,
.checkout-card p,
.copy-page p,
.copy-page li,
.store-note {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.section-copy p:not(.eyebrow) {
  margin-top: 24px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-grid article,
.steps article,
.feature-list li {
  border: 1px solid rgba(247, 244, 237, 0.09);
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.045);
}

.case-grid article {
  min-height: 190px;
  padding: 22px;
}

.case-grid article:first-child {
  grid-row: span 2;
}

.case-grid span,
.steps span {
  display: block;
  margin-bottom: 30px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid p,
.steps p {
  margin-top: 12px;
}

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

.workflow .section-copy {
  max-width: 880px;
}

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

.steps article {
  min-height: 240px;
  padding: 22px;
}

.mac-section {
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.95fr);
}

.mac-stack {
  display: grid;
  gap: 16px;
}

.product-card,
.license-card,
.checkout-card,
.plan-grid article {
  border: 1px solid rgba(247, 244, 237, 0.10);
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.045);
}

.product-card,
.checkout-card {
  padding: 24px;
}

.product-card {
  border-color: rgba(255, 187, 74, 0.28);
  background: rgba(255, 187, 74, 0.07);
}

.launch-offer-card {
  position: relative;
  border-color: rgba(255, 187, 74, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 187, 74, 0.16), rgba(255, 187, 74, 0.045) 42%, rgba(82, 219, 204, 0.055)),
    #15110b;
  box-shadow:
    inset 0 1px 0 rgba(255, 237, 178, 0.13),
    0 18px 48px rgba(0, 0, 0, 0.24);
}

.launch-offer-card > * {
  position: relative;
  z-index: 1;
}

.launch-kicker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 187, 74, 0.22);
  color: var(--amber);
  font-family: var(--mono);
}

.launch-kicker span,
.launch-kicker em {
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.launch-kicker strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(60px, 7vw, 104px);
  font-weight: 1000;
  line-height: 0.78;
  text-shadow: 0 0 28px rgba(255, 187, 74, 0.18);
}

.launch-kicker em {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgba(255, 187, 74, 0.38);
  border-radius: 999px;
  background: rgba(255, 187, 74, 0.12);
}

.shine-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.shine-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 2;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      112deg,
      rgba(95, 57, 16, 0.08) 0%,
      rgba(255, 187, 74, 0.22) 24%,
      rgba(255, 237, 178, 0.92) 36%,
      rgba(255, 187, 74, 0.34) 47%,
      rgba(95, 57, 16, 0.10) 68%
    );
  background-size: 220% 100%;
  background-position: 110% 0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.shine-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: -36%;
  z-index: 1;
  width: 34%;
  height: 2px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 237, 178, 0.78), transparent);
}

.shine-frame.is-shining {
  animation: frame-glow 2100ms ease-out;
}

.shine-frame.is-shining::before {
  animation: frame-shine 2100ms cubic-bezier(0.18, 0.72, 0.2, 1);
}

.shine-frame.is-shining::after {
  animation: frame-edge-glint 2100ms cubic-bezier(0.18, 0.72, 0.2, 1);
}

@keyframes frame-shine {
  0% {
    opacity: 0;
    background-position: 112% 0;
  }

  18% {
    opacity: 0.52;
  }

  54% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    background-position: -112% 0;
  }
}

@keyframes frame-edge-glint {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  24% {
    opacity: 0.42;
  }

  56% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(390%);
  }
}

@keyframes frame-glow {
  0%,
  100% {
    box-shadow: none;
  }

  45% {
    box-shadow:
      0 0 0 1px rgba(255, 187, 74, 0.10),
      0 0 34px rgba(255, 187, 74, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
.shine-frame.is-shining,
  .shine-frame.is-shining::before,
  .shine-frame.is-shining::after {
    animation: none;
  }
}

.product-card h3,
.checkout-card h2,
.license-card h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.price-line,
.checkout-price {
  margin-top: 16px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 900;
}

.price-line,
.checkout-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
}

.checkout-price span {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.price-line small,
.checkout-price small {
  color: var(--muted);
  font-size: 15px;
}

.price-line del,
.checkout-price del {
  color: var(--dim);
  text-decoration-color: rgba(255, 75, 85, 0.88);
  text-decoration-thickness: 2px;
}

.launch-code {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(82, 219, 204, 0.30);
  border-radius: 8px;
  background: rgba(82, 219, 204, 0.10);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.product-card p:not(.eyebrow),
.checkout-card p:not(.eyebrow),
.license-card p {
  margin-top: 18px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 18px 18px 18px 42px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.app-download {
  grid-template-columns: minmax(320px, 1fr) 236px;
  align-items: center;
}

.product-hero,
.buy-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.56fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 170px);
  padding: clamp(54px, 8vw, 100px) clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}

.tester-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 170px);
  padding: clamp(54px, 8vw, 100px) clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 22%, rgba(82, 219, 204, 0.11), transparent 34%),
    radial-gradient(circle at 10% 85%, rgba(255, 187, 74, 0.10), transparent 30%);
}

.tester-access-card {
  padding: 26px;
  border: 1px solid rgba(255, 187, 74, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 187, 74, 0.13), rgba(247, 244, 237, 0.045)),
    #101216;
}

.tester-access-card h2 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.tester-access-card p:not(.eyebrow),
.tester-access-card dd,
.tester-code-note {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.tester-access-card p:not(.eyebrow) {
  margin-top: 18px;
}

.tester-access-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.tester-access-card dl div {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 187, 74, 0.18);
}

.tester-access-card dt {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tester-access-card dd {
  margin-top: 7px;
}

.tester-step-grid article {
  min-height: 220px;
}

.tester-downloads {
  align-items: stretch;
}

.tester-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tester-download-grid .checkout-card {
  display: flex;
  flex-direction: column;
}

.tester-download-grid .card-actions {
  margin-top: auto;
  padding-top: 24px;
}

.tester-bundle-card {
  border-color: rgba(255, 187, 74, 0.30);
  background:
    linear-gradient(135deg, rgba(255, 187, 74, 0.10), rgba(82, 219, 204, 0.045)),
    #101316;
}

.tester-code-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(82, 219, 204, 0.30);
  border-radius: 8px;
  background: rgba(82, 219, 204, 0.10);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.press-assets-page .product-hero {
  min-height: 48vh;
}

.press-assets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.press-asset-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(280px, 0.65fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: #101216;
}

.press-asset-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.press-asset-card h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.press-asset-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.press-asset-card code {
  display: block;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(82, 219, 204, 0.25);
  border-radius: 8px;
  background: rgba(82, 219, 204, 0.08);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.license-card {
  padding: 26px;
  background: #101216;
}

.license-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.license-card dl div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.license-card dt {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.license-card dd {
  margin: 7px 0 0;
}

.product-columns,
.buy-section,
.checkout-details {
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
}

.buy-page .buy-hero {
  min-height: auto;
}

.checkout-card {
  border-color: rgba(82, 219, 204, 0.24);
  background: #101316;
}

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

.plan-grid article {
  min-height: 240px;
  padding: 22px;
}

.plan-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.plan-grid p {
  margin-top: 12px;
}

.app-download .button {
  margin-top: 28px;
}

.qr-card,
.qr-lockup {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: #f7f4ed;
  color: #07100f;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.qr-card img,
.qr-lockup img {
  width: 174px;
  height: 174px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand > span {
  font-weight: 900;
}

.developer-credit {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 760;
  transition: color 140ms ease;
}

.developer-credit:hover {
  color: var(--cyan);
}

.app-page,
.copy-page {
  min-height: calc(100vh - 132px);
  padding: clamp(54px, 8vw, 98px) clamp(18px, 4vw, 58px);
}

.manual-page {
  padding: clamp(54px, 8vw, 98px) clamp(18px, 4vw, 58px);
}

.manual-hero {
  padding-bottom: clamp(38px, 7vw, 78px);
}

.manual-hero-rich {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 190px);
  border-bottom: 1px solid var(--line);
}

.manual-hero-copy {
  max-width: 720px;
}

.manual-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(54px, 6vw, 84px);
}

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

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

.manual-shot {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(247, 244, 237, 0.13);
  background: #08090b;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.44);
}

.manual-shot img {
  width: 100%;
  height: auto;
}

.manual-shot-phone {
  top: 0;
  right: 0;
  z-index: 2;
  width: min(300px, 32vw);
  padding: 8px 8px 22px;
  border-radius: 34px;
}

.manual-shot-phone img {
  border-radius: 25px;
}

.manual-shot-bridge {
  left: 0;
  right: clamp(54px, 9vw, 140px);
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
}

.manual-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(26px, 4vw, 46px) 0 clamp(34px, 6vw, 68px);
}

.home-manual-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 4vw, 34px) clamp(18px, 4vw, 58px) clamp(36px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}

.manual-feature-strip article,
.home-manual-strip article {
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(82, 219, 204, 0.20);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 219, 204, 0.11), rgba(247, 244, 237, 0.035)),
    #101216;
}

.manual-icon,
.manual-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(82, 219, 204, 0.34);
  border-radius: 50%;
  background: rgba(82, 219, 204, 0.13);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
}

.manual-feature-strip h2,
.home-manual-strip h2 {
  margin-top: 20px;
  font-size: 24px;
}

.manual-feature-strip p,
.home-manual-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.home-workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-workflow-steps article {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 187, 74, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 187, 74, 0.10), rgba(247, 244, 237, 0.035)),
    #11100d;
}

.home-workflow-steps article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: #08090b;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
}

.home-workflow-steps strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.home-workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.manual-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.manual-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(82, 219, 204, 0.055), rgba(247, 244, 237, 0.035)),
    rgba(8, 9, 11, 0.94);
}

.manual-toc strong {
  margin-bottom: 8px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.manual-toc a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 850;
}

.manual-toc a:hover {
  background: rgba(82, 219, 204, 0.09);
  color: var(--cyan);
}

.manual-content {
  display: grid;
  gap: 26px;
  max-width: 1040px;
}

.manual-section {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 244, 237, 0.045), rgba(247, 244, 237, 0.018)),
    #0d0f12;
}

.manual-section-highlight {
  border-color: rgba(255, 187, 74, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 187, 74, 0.12), rgba(82, 219, 204, 0.045)),
    #11100d;
}

.manual-section-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.manual-section-head .eyebrow {
  margin-bottom: 10px;
}

.manual-section-icon {
  margin-top: 3px;
}

.manual-section h2 {
  font-size: clamp(32px, 4.4vw, 58px);
}

.manual-section h3 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 22px;
}

.manual-section p,
.manual-section li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.manual-section ol,
.manual-section ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 24px;
}

.manual-section li::marker {
  color: var(--amber);
  font-family: var(--mono);
  font-weight: 900;
}

.manual-big-steps {
  counter-reset: manual-step;
  display: grid;
  gap: 12px;
  padding-left: 0 !important;
  list-style: none;
}

.manual-big-steps li {
  counter-increment: manual-step;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 187, 74, 0.18);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.32);
}

.manual-big-steps li::before {
  content: counter(manual-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: #08090b;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
}

.manual-big-steps strong,
.manual-big-steps span {
  grid-column: 2;
}

.manual-big-steps strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.manual-big-steps span {
  color: var(--muted);
}

.manual-note {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(82, 219, 204, 0.22);
  border-radius: 8px;
  background: rgba(82, 219, 204, 0.07);
}

.manual-note a {
  color: var(--cyan);
}

.manual-note-amber {
  border-color: rgba(255, 187, 74, 0.28);
  background: rgba(255, 187, 74, 0.08);
}

.manual-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  margin-top: 26px;
}

.manual-visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.12);
  border-radius: 8px;
  background: #090b0d;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.manual-visual-card img {
  width: 100%;
  height: auto;
}

.phone-preview-card {
  max-width: 360px;
  justify-self: end;
}

.phone-preview-card img {
  border-radius: 0 0 28px 28px;
}

.manual-visual-card figcaption {
  padding: 13px 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.45;
}

.manual-wide-shot {
  margin-top: 26px;
  margin-bottom: 8px;
}

.manual-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.manual-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(82, 219, 204, 0.28);
  border-radius: 999px;
  background: rgba(82, 219, 204, 0.10);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.manual-tool-grid,
.manual-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.manual-tool-grid article,
.manual-checklist article {
  padding: 18px;
  border: 1px solid rgba(247, 244, 237, 0.10);
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.04);
}

.manual-tool-grid strong,
.manual-checklist strong,
.manual-callout strong {
  color: var(--ink);
  font-size: 18px;
}

.manual-tool-grid p,
.manual-checklist span,
.manual-callout span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.manual-callout-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.manual-callout {
  padding: 18px;
  border: 1px solid rgba(255, 187, 74, 0.28);
  border-radius: 8px;
  background: rgba(255, 187, 74, 0.08);
}

.manual-drag-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.manual-drag-path span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(82, 219, 204, 0.30);
  border-radius: 8px;
  background: rgba(82, 219, 204, 0.10);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.manual-drag-path span:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: -18px;
  z-index: 2;
  color: var(--amber);
}

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

.manual-faq {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.manual-faq details {
  border: 1px solid rgba(247, 244, 237, 0.11);
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.04);
}

.manual-faq summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 880;
}

.manual-faq ul {
  margin: 0;
  padding: 0 22px 18px 42px;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 236px;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.app-hero h1,
.copy-page h1 {
  font-size: clamp(52px, 8vw, 108px);
}

.store-note {
  margin-top: 18px;
  max-width: 580px;
  font-size: 15px;
}

.copy-page {
  max-width: 860px;
}

.copy-page h2 {
  margin-top: 48px;
  font-size: clamp(30px, 4vw, 48px);
}

.copy-page p,
.copy-page ul {
  margin-top: 18px;
}

.copy-page a {
  color: var(--cyan);
}

.copy-page ul {
  padding-left: 22px;
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-product-images {
    min-height: 600px;
  }

  .phone-card {
    width: min(320px, 42vw);
  }

  .manual-hero-rich {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .manual-hero-visual {
    min-height: 600px;
  }

  .manual-shot-phone {
    width: min(300px, 38vw);
  }

  .section,
  .workflow,
  .mac-section,
  .product-hero,
  .tester-hero,
  .buy-hero,
  .product-columns,
  .buy-section,
  .checkout-details,
  .manual-layout {
    grid-template-columns: 1fr;
  }

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

  .section-copy {
    max-width: 840px;
  }

  .manual-toc {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 840px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-stack {
    min-height: auto;
  }

  .hero-product-images {
    display: grid;
    gap: 16px;
  }

  .manual-hero-visual {
    display: grid;
    gap: 16px;
    min-height: auto;
  }

  .product-shot,
  .manual-shot {
    position: relative;
  }

  .bridge-shot {
    left: auto;
    right: auto;
    bottom: auto;
    order: 2;
  }

  .iphone-shot {
    top: auto;
    right: auto;
    order: 1;
    justify-self: center;
    width: min(100%, 360px);
    max-height: none;
    overflow: visible;
    border-radius: 28px;
  }

  .manual-shot-phone,
  .manual-shot-bridge {
    inset: auto;
    width: 100%;
  }

  .manual-shot-phone {
    justify-self: center;
    max-width: 360px;
    order: 1;
  }

  .manual-shot-bridge {
    order: 2;
  }

  .phone-card,
  .bridge-window {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .phone-card {
    width: 100%;
    max-width: 420px;
    min-width: 0;
    margin: 0 auto 16px;
  }

  .bridge-window {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .bridge-rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sample-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .case-grid article:first-child {
    grid-row: auto;
  }

  .app-download,
  .app-hero,
  .tester-download-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .manual-split,
  .manual-tool-grid,
  .manual-checklist,
  .manual-callout-row {
    grid-template-columns: 1fr;
  }

  .phone-preview-card {
    justify-self: start;
  }

  .qr-card,
  .qr-lockup {
    justify-self: start;
  }
}

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

  .hero,
  .section,
  .product-hero,
  .tester-hero,
  .buy-hero,
  .app-page,
  .copy-page,
  .manual-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .manual-toc {
    grid-template-columns: 1fr;
  }

  .manual-section {
    padding: 20px;
  }

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

  .manual-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(48px, 16vw, 70px);
    line-height: 0.94;
  }

  .manual-feature-strip,
  .home-manual-strip,
  .manual-license-grid,
  .manual-drag-path {
    grid-template-columns: 1fr;
  }

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

  .manual-drag-path span:not(:last-child)::after {
    right: auto;
    bottom: -18px;
    content: "v";
  }

  .manual-section-head {
    grid-template-columns: 1fr;
  }

  .manual-big-steps li {
    grid-template-columns: 1fr;
  }

  .manual-big-steps strong,
  .manual-big-steps span {
    grid-column: auto;
  }

  .hero {
    display: block;
    padding-right: 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: 334px;
  }

  .hero-actions {
    max-width: 334px;
  }

  .hero-stack {
    margin-top: 28px;
  }

  .hero-product-images {
    margin-top: 28px;
  }

  .bridge-shot {
    display: none;
  }

  .iphone-shot {
    width: min(100%, 330px);
    max-height: none;
  }

  .phone-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    align-items: center;
    gap: 12px 18px;
    padding: 20px;
  }

  .phone-top {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .phone-card .eyebrow {
    grid-column: 1;
    margin-bottom: 10px;
  }

  .phone-card h2 {
    grid-column: 1;
    font-size: 36px;
  }

  .record-disc {
    grid-column: 2;
    grid-row: 2 / 4;
    width: 96px;
    margin: 0;
  }

  .phone-wave {
    display: none;
  }

  .take-row {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 54px);
    line-height: 0.96;
  }

  .lede {
    font-size: 19px;
  }

  h2 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .button {
    width: 100%;
  }

  .bridge-title {
    grid-template-columns: 1fr;
  }

  .sample-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .sample-row button {
    width: 48px;
    height: 48px;
  }

  .sample-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-header nav,
  .site-footer nav {
    gap: 10px;
    font-size: 11px;
  }
}
