@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/manrope-latin.woff2") format("woff2");
}

:root {
  --bg: #090806;
  --bg-soft: #100e0b;
  --surface: #17130e;
  --surface-2: #211a11;
  --surface-3: #2b2113;
  --text: #f7f3eb;
  --muted: #aaa197;
  --muted-strong: #cac1b5;
  --gold: #f4bd3d;
  --gold-light: #ffd975;
  --gold-dark: #a66f00;
  --coral: #ef5f82;
  --green: #45c38b;
  --blue: #5aa9ff;
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(244, 189, 61, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(244, 189, 61, 0.06), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

::selection {
  background: var(--gold);
  color: #171006;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--gold);
  color: #151007;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.section {
  position: relative;
  padding: 112px 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 790px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 750;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted-strong);
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 34px rgba(244, 189, 61, 0.18);
  color: #161006;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  box-shadow: 0 16px 42px rgba(244, 189, 61, 0.3);
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 0.92rem;
}

.button-full {
  width: 100%;
  margin-top: 8px;
  border-radius: 14px;
}

.text-link {
  padding: 10px 4px;
  border-bottom: 1px solid var(--border-gold);
  color: var(--text);
  font-weight: 700;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--gold);
}

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

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(9, 8, 6, 0.84);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 11px;
}

.brand strong {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 90px);
  padding-bottom: 54px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 2%;
  right: -12%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 189, 61, 0.14), transparent 64%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--green);
  border-radius: inherit;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-lead {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.hero-points li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "✓";
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(100%, 310px);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 39px;
  background: #050504;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.phone img {
  width: 100%;
  border-radius: 31px;
}

.phone-hero {
  width: 326px;
  transform: rotate(2deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 56px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(29, 24, 17, 0.9);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.signal-card strong {
  display: block;
  color: var(--text);
}

.signal-card-one {
  top: 30%;
  left: -7%;
}

.signal-card-two {
  right: -9%;
  bottom: 26%;
}

.signal-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(244, 189, 61, 0.16);
  color: var(--gold);
  font-weight: 800;
}

.signal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(69, 195, 139, 0.13);
}

.trust-strip {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trust-arrow {
  color: var(--gold);
}

.problem-section {
  background: var(--bg-soft);
}

.pain-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent);
}

.pain-card .number {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.pain-card h3 {
  margin-bottom: 12px;
}

.workflow-section {
  overflow: hidden;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 80px;
}

.split-heading > p {
  padding-bottom: 8px;
  font-size: 1.05rem;
}

.workflow-list {
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.workflow-list li {
  display: grid;
  min-height: 132px;
  align-items: center;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  border-bottom: 1px solid var(--border);
  transition:
    background 180ms ease,
    padding 180ms ease;
}

.workflow-list li:hover {
  padding-inline: 18px;
  background: rgba(244, 189, 61, 0.035);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.workflow-list h3 {
  margin-bottom: 8px;
}

.step-tag {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-section {
  background:
    linear-gradient(180deg, transparent, rgba(244, 189, 61, 0.025) 40%, transparent),
    var(--bg-soft);
}

.feature-stack {
  margin-top: 84px;
}

.feature-row {
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  border-top: 1px solid var(--border);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-kicker.coral {
  color: var(--coral);
}

.feature-copy h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.feature-copy > p {
  max-width: 550px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.check-list li::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 11px;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 189, 61, 0.14);
  color: var(--gold);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
}

.coral-checks li::before {
  background: rgba(239, 95, 130, 0.14);
  color: var(--coral);
}

.screenshot-stage {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 80%, rgba(244, 189, 61, 0.1), transparent 45%),
    #0c0a08;
  overflow: hidden;
}

.screenshot-stage .phone {
  width: 286px;
  margin-bottom: -130px;
  transition: transform 300ms ease;
}

.feature-row:hover .screenshot-stage .phone {
  transform: translateY(-8px);
}

.gold-stage {
  background:
    radial-gradient(circle at 50% 72%, rgba(244, 189, 61, 0.22), transparent 46%),
    #100d08;
}

.coral-stage {
  background:
    radial-gradient(circle at 50% 72%, rgba(239, 95, 130, 0.17), transparent 46%),
    #10090b;
}

.capabilities-section {
  border-top: 1px solid var(--border);
}

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

.capability-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
  overflow: hidden;
}

.capability-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--bg);
}

.capability-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 13px;
  background: rgba(244, 189, 61, 0.08);
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.capability-grid h3 {
  margin-bottom: 11px;
}

.businesses-section {
  padding-block: 70px;
}

.business-panel {
  display: grid;
  padding: 72px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 100%, rgba(244, 189, 61, 0.12), transparent 42%),
    var(--surface);
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.business-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.business-copy > p:last-child {
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.business-types {
  display: grid;
  align-content: center;
  gap: 0;
}

.business-types div {
  display: flex;
  padding: 18px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.business-types div:first-child {
  border-top: 1px solid var(--border);
}

.business-types span {
  color: var(--muted);
  font-size: 0.86rem;
  text-align: right;
}

.control-section {
  background: var(--bg-soft);
}

.control-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.control-visual {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
}

.phone-small {
  width: 290px;
  transform: rotate(-2deg);
}

.panda-mark {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 130px;
  border: 6px solid var(--surface);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(6deg);
}

.control-copy h2 {
  max-width: 640px;
}

.control-list {
  margin-top: 46px;
  border-top: 1px solid var(--border);
}

.control-list > div {
  display: grid;
  padding: 22px 0;
  align-items: start;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.control-list > div > span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.control-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 1.03rem;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-heading p:last-child {
  margin-top: 22px;
}

.faq-heading a,
.waitlist-copy a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(244, 189, 61, 0.4);
  text-underline-offset: 3px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion details {
  border-bottom: 1px solid var(--border);
}

.accordion summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  content: "+";
  font-family: sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 680px;
  padding: 0 50px 26px 0;
}

.waitlist-section {
  padding-top: 70px;
}

.waitlist-panel {
  display: grid;
  padding: 72px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 189, 61, 0.14), transparent 42%),
    var(--surface);
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.waitlist-copy {
  align-self: start;
}

.waitlist-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.waitlist-copy > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 1.05rem;
}

.contact-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.waitlist-form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.waitlist-form label > span {
  color: var(--muted);
  font-weight: 400;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  appearance: none;
  background: #0d0b08;
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 189, 61, 0.12);
  outline: none;
}

.waitlist-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 15px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.waitlist-form input.is-invalid,
.waitlist-form select.is-invalid {
  border-color: #d9484b;
  box-shadow: 0 0 0 3px rgba(217, 72, 75, 0.12);
}

.field-error {
  color: #d9484b;
  font-size: 0.76rem;
  font-weight: 600;
}

.consent {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px !important;
  cursor: pointer;
  line-height: 1.45;
}

.consent .field-error {
  flex: 1 0 100%;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.consent a {
  color: var(--text);
  text-decoration: underline;
}

.hidden-field {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-fineprint {
  text-align: center;
  font-size: 0.76rem;
}

.site-footer {
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  padding-bottom: 64px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-main > div:first-child > p {
  max-width: 380px;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: 0.86rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Legal and system pages */
.page-main {
  min-height: calc(100vh - 300px);
  padding: calc(var(--header-height) + 76px) 0 100px;
}

.page-hero {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.legal-content {
  max-width: 780px;
  margin-top: 62px;
}

.legal-content h2 {
  margin: 52px 0 16px;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted-strong);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.updated {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  font-size: 0.76rem;
}

.system-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  text-align: center;
}

.system-card {
  width: min(100%, 620px);
}

.system-card img {
  width: 110px;
  margin: 0 auto 30px;
  border-radius: 28px;
}

.system-card h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.system-card p {
  max-width: 500px;
  margin: 22px auto 32px;
  font-size: 1.06rem;
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 88px 0;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    align-items: stretch;
    background: rgba(17, 14, 10, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav.legal-nav {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
  }

  .legal-nav .button {
    display: none;
  }

  .site-nav > a:not(.button) {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
  }

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

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .phone-hero {
    width: 300px;
  }

  .signal-card-one {
    left: calc(50% - 250px);
  }

  .signal-card-two {
    right: calc(50% - 250px);
  }

  .split-heading,
  .business-panel,
  .control-grid,
  .faq-grid,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .faq-grid {
    gap: 30px;
  }

  .feature-row {
    min-height: auto;
    padding: 72px 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-row.reverse .feature-copy {
    order: initial;
  }

  .feature-copy {
    max-width: 650px;
  }

  .screenshot-stage {
    min-height: 580px;
  }

  .business-panel,
  .waitlist-panel {
    padding: 54px;
    gap: 50px;
  }

  .control-grid {
    gap: 40px;
  }

  .control-visual {
    min-height: 600px;
  }

  .faq-heading {
    position: static;
  }
}

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

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.05rem, 9vw, 3.1rem);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-points {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

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

  .phone-hero {
    width: min(76vw, 290px);
  }

  .signal-card {
    font-size: 0.72rem;
  }

  .signal-card-one {
    top: 24%;
    left: 0;
  }

  .signal-card-two {
    right: 0;
    bottom: 20%;
  }

  .trust-strip {
    min-height: 100px;
    gap: 9px;
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

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

  .pain-card {
    min-height: 210px;
  }

  .pain-card .number {
    margin-bottom: 44px;
  }

  .workflow-list li {
    padding: 24px 0;
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .workflow-list li:hover {
    padding-inline: 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .step-tag {
    display: none;
  }

  .feature-stack {
    margin-top: 60px;
  }

  .feature-row {
    padding: 58px 0;
  }

  .screenshot-stage {
    min-height: 510px;
  }

  .screenshot-stage .phone {
    width: min(78vw, 275px);
    margin-bottom: -110px;
  }

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

  .business-panel,
  .waitlist-panel {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .business-types div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .business-types span {
    text-align: left;
  }

  .control-visual {
    min-height: 530px;
  }

  .phone-small {
    width: min(75vw, 275px);
  }

  .panda-mark {
    right: 4px;
    bottom: 40px;
    width: 100px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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