:root {
  --bg: #0d0d0d;
  --bg-deep: #090909;
  --surface: #141414;
  --surface-soft: #1a1a1a;
  --surface-strong: #222222;
  --line: #2c2c2c;
  --line-soft: #1f1f1f;
  --text: #e0e0e0;
  --muted: #a8a8a8;
  --accent: #1a4a8a;
  --accent-2: #2e65b0;
  --accent-3: #7aaad8;
  --danger: #d98874;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  --container: 1160px;
  --ease: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Work Sans", sans-serif;
  line-height: 1.6;
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(168deg, #090909 0%, #0d0d0d 44%, #090909 100%),
    radial-gradient(circle at 12% -10%, rgba(26, 74, 138, 0.07), transparent 52%),
    radial-gradient(circle at 84% 0%, rgba(26, 74, 138, 0.05), transparent 46%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% -8%, rgba(26, 74, 138, 0.05), transparent 48%),
    radial-gradient(circle at 84% 8%, rgba(26, 74, 138, 0.04), transparent 42%);
  z-index: -1;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.25rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: #ffffff;
  font-weight: 500;
  transition: color var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  border-radius: 0;
  width: 42px;
  height: 42px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  padding-top: clamp(3rem, 8vw, 5.75rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(1200px, 170vw, 2600px);
  height: clamp(560px, 84vw, 1240px);
  transform: translate(-62%, -56%);
  background: radial-gradient(
    ellipse at 30% 45%,
    rgba(26, 74, 138, 0.14) 0%,
    rgba(26, 74, 138, 0.07) 30%,
    rgba(26, 74, 138, 0.02) 56%,
    rgba(26, 74, 138, 0) 74%
  );
  pointer-events: none;
  z-index: -1;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5878a8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.69rem;
  font-weight: 700;
  margin-bottom: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 2px;
  transform: rotate(45deg);
  border: 1px solid rgba(26, 74, 138, 0.38);
  background: rgba(26, 74, 138, 0.15);
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.7rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-emphasis {
  color: #e8e8e8;
  background: linear-gradient(90deg, #f2f2f2 0%, #aaccee 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(100, 150, 220, 0.22);
}

.hero-lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: clamp(1rem, 2.1vw, 1.15rem);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-note {
  margin-top: 0.55rem;
  color: #5878a8;
  font-size: 0.86rem;
}

.btn {
  border: 1px solid rgba(26, 74, 138, 0.7);
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-family: "Sora", sans-serif;
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
  background: linear-gradient(135deg, #1e55a0, #162f6e);
  color: #f0f4ff;
  box-shadow: 0 8px 22px rgba(26, 74, 138, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #2460b0, #1a4a8a);
  border-color: rgba(46, 101, 176, 0.8);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface-soft);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.btn-small {
  padding-inline: 1rem;
  padding-block: 0.48rem;
  font-size: 0.85rem;
}

.btn-wide {
  width: 100%;
}

.hero-points {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.8rem;
  height: 0.42rem;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

.hero-app-preview {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  padding-left: 0;
}

.app-mockup {
  margin: 4% 0 0;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  position: relative;
  transform: none;
}

.app-layer {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: auto;
  backface-visibility: visible;
  transform: none;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.72)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.app-light {
  -webkit-mask-image: none;
  mask-image: none;
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.7);
}

.quick-test {
  padding: 1.2rem 0;
  display: grid;
  gap: 0.85rem;
}

.quick-test .eyebrow {
  margin-bottom: 0;
}

.flow-diagram {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.flow-step {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: var(--surface);
  color: #c8c8c8;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  line-height: 1.2;
  padding: 0.44rem 0.74rem;
}

.flow-arrow {
  color: var(--accent-2);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.quick-caption {
  color: var(--muted);
  font-size: 0.94rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem 0;
}

.proof-grid article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--surface);
  border-radius: 14px;
  padding: 1rem;
}

.proof-grid strong {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  display: block;
}

.proof-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section-heading,
.section-intro {
  max-width: 760px;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  position: relative;
}

.section-heading::before,
.section-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(48vw, 280px);
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 74, 138, 0.7), rgba(26, 74, 138, 0));
}

.section-heading h2,
.section-intro h2 {
  margin-bottom: 0.62rem;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.section-intro p:not(.eyebrow) {
  color: var(--muted);
}

.card-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.workflow-step {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
}

.step-index {
  margin-bottom: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.workflow-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.workflow-step p {
  font-size: 0.93rem;
  color: var(--muted);
}

.workflow-step .step-index {
  color: var(--accent);
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.pas-list {
  margin: 0 0 0.7rem 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.38rem;
  color: #b4b4b4;
}

.pas-list li {
  padding-left: 0.1rem;
}

.info-card ul li {
  padding-left: 1.1rem;
  position: relative;
  color: #b4b4b4;
}

.info-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent-2);
}

.section-alt {
  background: rgba(10, 10, 10, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.feature-copy h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.feature-copy .section-intro p + p {
  margin-top: 0.65rem;
}

.feature-points {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.feature-points article {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 0.95rem;
}

.feature-points h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-points p {
  color: var(--muted);
  font-size: 0.93rem;
}

.integration-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.integration-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 90%, #000 10%);
  padding: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.integration-head {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.integration-head h3 {
  font-size: 1.03rem;
}

.integration-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
}

.integration-logo svg {
  width: 2.55rem;
  height: 2.55rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.32));
}

.logo-email svg,
.logo-webhook svg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-twilio svg {
  fill: #f2465f;
}

.logo-twilio svg > circle:first-child {
  fill: none;
  stroke: #f2465f;
  stroke-width: 1.8;
}

.integration-card > p {
  color: var(--muted);
  font-size: 0.93rem;
}

.integration-meta {
  margin-top: 0.55rem;
  color: #d3d3d3;
  font-size: 0.86rem;
}

.policy-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.policy-panel h3 {
  font-size: 1.05rem;
}

.policy-title {
  margin-top: 0.25rem;
  color: var(--accent);
  font-weight: 600;
}

.policy-list {
  list-style: none;
  margin: 1rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.policy-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  background: #111111;
  display: grid;
  gap: 0.2rem;
}

.policy-list span {
  color: var(--muted);
  font-size: 0.83rem;
}

.policy-list strong {
  font-size: 0.94rem;
  color: #e0e0e0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.video-path {
  margin-top: 0.8rem;
  color: var(--accent-3);
  font-family: "Sora", sans-serif;
  letter-spacing: 0.01em;
}

.video-frame {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0f0f0f;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 9;
}

.outcome-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.outcome-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 1rem;
}

.outcome-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.outcome-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.offer-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(125deg, rgba(22, 22, 22, 0.9), rgba(14, 14, 14, 0.96));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offer-price {
  color: #e0e0e0;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.offer-price span {
  font-size: 1.42rem;
  font-weight: 700;
  color: #f2f2f2;
  margin-right: 0.3rem;
}

.cta-band {
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.cta-grid h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.interest-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.interest-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.91rem;
  font-weight: 600;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0f0f0f;
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.interest-form input:focus,
.interest-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(26, 74, 138, 0.28);
}

.form-status {
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status--success {
  color: #6ecf8a;
}

.form-status--error {
  color: var(--danger);
}

.muted {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 1.15rem;
  background: #080808;
}

section[id] {
  scroll-margin-top: 96px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-wrap a {
  color: #2e65b0;
  font-weight: 600;
}

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

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

/* ══════════════════════════════════════════
   PROOF STRIP — COLOR-CODED FLOW STEPS
══════════════════════════════════════════ */

.flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.flow-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.flow-step--danger {
  background: rgba(180, 55, 50, 0.14);
  border-color: rgba(210, 90, 80, 0.38);
  color: #f5b8b4;
}

.flow-step--warn {
  background: rgba(175, 128, 28, 0.14);
  border-color: rgba(210, 160, 55, 0.38);
  color: #f5dfa0;
}

.flow-step--success {
  background: rgba(38, 138, 74, 0.14);
  border-color: rgba(60, 180, 100, 0.36);
  color: #a0f0b8;
}

/* ══════════════════════════════════════════
   PROBLEM CARDS — COLOR VARIANTS + ICONS
══════════════════════════════════════════ */

.info-card-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.info-card--problem {
  border-color: rgba(200, 65, 55, 0.3);
  background: linear-gradient(155deg, rgba(36, 14, 14, 0.72) 0%, var(--surface) 55%);
}

.info-card--problem .info-card-icon {
  background: rgba(200, 65, 55, 0.16);
  color: #e89090;
  border: 1px solid rgba(200, 65, 55, 0.28);
}

.info-card--pain {
  border-color: rgba(188, 138, 36, 0.3);
  background: linear-gradient(155deg, rgba(34, 26, 8, 0.72) 0%, var(--surface) 55%);
}

.info-card--pain .info-card-icon {
  background: rgba(188, 138, 36, 0.16);
  color: #e8c870;
  border: 1px solid rgba(188, 138, 36, 0.28);
}

.info-card--solution {
  border-color: rgba(26, 74, 138, 0.34);
  background: linear-gradient(155deg, rgba(8, 20, 44, 0.8) 0%, var(--surface) 55%);
}

.info-card--solution .info-card-icon {
  background: rgba(26, 74, 138, 0.18);
  color: #7aaad8;
  border: 1px solid rgba(26, 74, 138, 0.28);
}

/* ══════════════════════════════════════════
   HOW IT WORKS — STEPS LAYOUT
══════════════════════════════════════════ */

.steps-intro {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--text);
  margin: 2.5rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.steps-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.4rem;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 1.2rem;
}

.step-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e1e1e, #131313);
  border: 1px solid rgba(26, 74, 138, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e65b0;
  box-shadow: 0 0 0 8px rgba(26, 74, 138, 0.06), 0 8px 26px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.step-bubble svg {
  width: 1.65rem;
  height: 1.65rem;
}

.step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 74, 138, 0.42), rgba(26, 74, 138, 0.04));
  pointer-events: none;
}

.step-item:last-child .step-connector {
  display: none;
}

.step-content {
  margin-top: 1.4rem;
  text-align: center;
  padding: 0 0.3rem;
}

.step-num {
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.step-content h3 {
  font-size: 1.08rem;
  margin-bottom: 0.52rem;
}

.step-content p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   ALERTS — SAMPLE NOTIFICATION PREVIEW
══════════════════════════════════════════ */

.alert-preview {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
  align-items: flex-start;
}

.alert-preview-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 700;
}

.alert-mock {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
}

.alert-mock-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.alert-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf7a;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(62, 207, 122, 0.48);
}

.alert-mock-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.alert-mock-time {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.8rem;
}

.alert-mock-service {
  font-size: 0.93rem;
  margin-bottom: 0.42rem;
}

.alert-mock-detail {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 0.22rem;
}

.alert-tag {
  display: inline-block;
  padding: 0.1rem 0.52rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.alert-tag--stopped {
  background: rgba(200, 55, 48, 0.2);
  color: #f0a0a0;
  border: 1px solid rgba(200, 55, 48, 0.32);
}

.alert-tag--running {
  background: rgba(38, 158, 78, 0.2);
  color: #80e8a8;
  border: 1px solid rgba(38, 158, 78, 0.32);
}

.muted-sm {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════
   DEMO VIDEO — LAYOUT + CAPTIONS
══════════════════════════════════════════ */

.demo-video-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.2rem;
  align-items: start;
  margin-top: 1.8rem;
}

.demo-captions {
  display: grid;
  gap: 1.4rem;
  padding-top: 0.6rem;
}

.demo-caption-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.demo-caption-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-caption-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.demo-caption-icon--red {
  background: rgba(200, 55, 48, 0.15);
  color: #e89090;
  border: 1px solid rgba(200, 55, 48, 0.28);
}

.demo-caption-icon--amber {
  background: rgba(188, 138, 28, 0.15);
  color: #e8c870;
  border: 1px solid rgba(188, 138, 28, 0.28);
}

.demo-caption-icon--green {
  background: rgba(38, 158, 78, 0.15);
  color: #80e8a8;
  border: 1px solid rgba(38, 158, 78, 0.28);
}

.demo-caption-item strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.22rem;
}

.demo-caption-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.56;
  margin: 0;
}

/* ══════════════════════════════════════════
   PRICING CARD — FULL LAYOUT
══════════════════════════════════════════ */

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  border: 1px solid rgba(26, 74, 138, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.99));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.52);
  overflow: hidden;
  margin-top: 1.8rem;
}

.pricing-card-left {
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pricing-card-right {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  line-height: 1;
}

.pricing-currency {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f2f2f2;
  margin-top: 0.45rem;
}

.pricing-number {
  font-family: "Sora", sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  color: #f2f2f2;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-cents {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: super;
  color: #f2f2f2;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 0.65rem;
  margin-left: 0.3rem;
}

.pricing-desc {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.pricing-no-sub {
  color: #5a5a5a;
  font-size: 0.82rem;
}

.pricing-includes-label {
  font-family: "Sora", sans-serif;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.68rem;
}

.pricing-features li {
  padding-left: 1.55rem;
  position: relative;
  font-size: 0.94rem;
  color: #b4b4b4;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.78rem;
  height: 0.42rem;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

.pricing-upgrade-note {
  margin-top: auto;
  background: rgba(26, 74, 138, 0.08);
  border: 1px solid rgba(26, 74, 138, 0.24);
  border-radius: 10px;
  padding: 0.88rem 1rem;
  display: flex;
  gap: 0.72rem;
  align-items: flex-start;
}

.pricing-upgrade-note svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 0.22rem;
}

.pricing-upgrade-note p {
  font-size: 0.87rem;
  color: #788898;
  line-height: 1.62;
  margin: 0;
}

.pricing-upgrade-note strong {
  color: #f0f4ff;
}

@media (max-width: 1080px) {
  .proof-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    gap: clamp(2.4rem, 5.4vw, 4rem);
  }

  .app-mockup {
    margin-top: 4%;
    width: 100%;
    transform: none;
  }

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

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

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

  .demo-video-wrap {
    grid-template-columns: 1fr;
  }

  .demo-captions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-soft);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .feature-layout,
  .demo-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.3rem;
    padding: 0;
  }

  .step-bubble {
    flex-shrink: 0;
  }

  .step-connector {
    display: none;
  }

  .step-content {
    text-align: left;
    margin-top: 0.1rem;
    padding: 0;
  }

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

  .pricing-card-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .demo-captions {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
    gap: 1.5rem;
  }

  .hero::before {
    left: 50%;
    top: 14%;
    width: 165%;
    height: 70%;
    transform: translateX(-50%);
    opacity: 0.56;
  }

  .hero-app-preview {
    margin-top: 0;
    justify-items: center;
    padding-left: 0;
    overflow: visible;
  }

  .app-mockup {
    margin-top: 0;
    width: 100%;
    max-width: 640px;
    transform: none;
    border-radius: 0;
  }

  .offer-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding-block: clamp(2.4rem, 7vw, 3.5rem);
  }

  .section-heading,
  .section-intro {
    margin-bottom: 1rem;
    padding-top: 0.6rem;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }

  .proof-grid,
  .outcome-grid,
  .workflow-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    backdrop-filter: blur(4px);
  }

  .btn,
  .btn-ghost,
  .btn-small {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .flow-diagram {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    text-align: center;
  }

  .app-mockup {
    border-radius: 0;
  }
}

/* ── Architecture Grid (How It Works) ── */
.arch-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0.5rem 0 3rem;
}

.arch-card {
  flex: 1;
  position: relative;
  background: color-mix(in srgb, var(--surface) 90%, #000 10%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 1.6rem 1.25rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.arch-card--watchdog {
  border-color: color-mix(in srgb, var(--accent-2) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
}

.arch-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 10px;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.arch-card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: var(--accent-3);
}

.arch-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.arch-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.arch-card-badge {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.18em 0.7em;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent-3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arch-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  padding: 0 0.1rem;
}

.arch-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--line);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .arch-grid {
    flex-direction: column;
    gap: 0.75rem;
  }
  .arch-arrow {
    width: auto;
    height: 1.5rem;
    transform: rotate(90deg);
  }
}

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

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