:root {
  --bg: #0f1923;
  --bg-2: #111c29;
  --surface: #1e293b;
  --surface-2: #172131;
  --primary: #1c3557;
  --accent: #e87722;
  --white: #ffffff;
  --muted: #94a3b8;
  --success: #22c55e;
  --line: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(28, 53, 87, 0.35), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(232, 119, 34, 0.18), transparent 24%),
    linear-gradient(180deg, #0c1520 0%, #0f1923 42%, #0f1923 100%);
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  overflow: clip;
}

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

.narrow {
  width: min(800px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 25, 35, 0.82);
  backdrop-filter: blur(16px);
}

.nav-bar {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 220px;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

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

.nav-cta {
  margin-left: 6px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.5);
  color: var(--white);
  padding: 0;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

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

.section-dark {
  background: linear-gradient(180deg, rgba(15, 25, 35, 0.95), rgba(15, 25, 35, 0.98));
}

.section-surface {
  background: linear-gradient(180deg, rgba(18, 29, 41, 0.9), rgba(15, 25, 35, 0.96));
}

.hero {
  padding: 56px 0 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(28, 53, 87, 0.42), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(232, 119, 34, 0.2), transparent 23%),
    linear-gradient(180deg, rgba(15, 25, 35, 0.98), rgba(15, 25, 35, 0.98));
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3,
.brand,
.badge,
.step-number {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 100%;
}

.hero-subhead {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.7;
  margin-bottom: 30px;
}

.imessage-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.18), rgba(0, 122, 255, 0.08));
  border: 1px solid rgba(0, 122, 255, 0.38);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: left;
  max-width: 680px;
}

.imessage-strip strong {
  color: #7ab8ff;
}

.imessage-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ── iMessage Differentiator Section ── */
.section-imessage {
  background: linear-gradient(135deg, #06101c 0%, #091524 50%, #0a1928 100%);
  border-top: 1px solid rgba(0, 122, 255, 0.15);
  border-bottom: 1px solid rgba(0, 122, 255, 0.15);
  overflow: hidden;
}

.imessage-diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.imessage-diff-copy .eyebrow {
  color: #7ab8ff;
}

.imessage-diff-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.imessage-diff-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.imessage-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 10px;
  justify-content: center;
}

.imessage-stat {
  display: flex;
  flex-direction: column;
}

.imessage-stat strong {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #7ab8ff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.imessage-stat span {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Phone mockup */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-shell {
  width: 280px;
  background: #1c1c1e;
  border-radius: 44px;
  padding: 16px 12px;
  box-shadow:
    0 0 0 10px #2c2c2e,
    0 0 0 12px #3a3a3c,
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0, 122, 255, 0.12);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #1c1c1e;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 4px;
  font-size: 0.65rem;
  color: #fff;
  font-weight: 600;
}

.phone-contact-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90d9, #1c6fc5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.phone-contact-name {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 600;
}

.phone-contact-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
}

.phone-messages {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.hero-phone-wrap .hero-msg,
.hero-phone-wrap .hero-typing,
.hero-phone-wrap .hero-read,
.hero-phone-wrap .msg-time {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.hero-phone-wrap .is-visible {
  opacity: 1;
  transform: translateY(0);
}

.msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #fff;
}

.msg-in {
  align-self: flex-start;
  background: #3a3a3c;
  border-bottom-left-radius: 4px;
}

.msg-out {
  align-self: flex-end;
  background: #007aff;
  border-bottom-right-radius: 4px;
}

.msg-time {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.38);
  text-align: right;
  padding-right: 4px;
  margin-top: -4px;
}

.msg-read {
  font-size: 0.6rem;
  color: #007aff;
  text-align: right;
  padding-right: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #3a3a3c;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.phone-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.phone-input-field {
  flex: 1;
  background: #2c2c2e;
  border-radius: 18px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}

.phone-send-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #007aff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero-stat-card {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(34, 197, 94, 0.08);
  min-width: 180px;
  z-index: 10;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hero-stat-active {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-stat-chart {
  width: 80px;
  height: 28px;
  display: block;
  margin-bottom: 8px;
}

.hero-stat-value {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

.hero-stat-value strong {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #ef8a31 0%, #d9670c 100%);
  box-shadow: 0 16px 30px rgba(232, 119, 34, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(232, 119, 34, 0.32);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(232, 119, 34, 0.5);
  background: rgba(232, 119, 34, 0.08);
}

.btn-wide {
  width: 100%;
}

.btn-xl {
  min-height: 58px;
  padding-inline: 1.8rem;
  font-size: 1rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
}

.trust-item span:first-child {
  font-size: 1.15rem;
}

.hero-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(232, 119, 34, 0.26);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(23, 33, 49, 0.98));
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 119, 34, 0.75), rgba(28, 53, 87, 0.2), rgba(34, 197, 94, 0.18));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card-header {
  position: relative;
  z-index: 1;
}

.pill,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  background: rgba(232, 119, 34, 0.14);
  border: 1px solid rgba(232, 119, 34, 0.28);
  color: #ffba7a;
}

.hero-card-header p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.hero-card-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.hero-card-list > div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 25, 35, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-card-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.45;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-subhead {
  margin: 0 auto;
  max-width: 44rem;
  color: rgba(148, 163, 184, 0.95);
  font-size: 1.06rem;
  line-height: 1.75;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.problem-grid > .feature-card {
  flex: 0 1 calc(33.333% - 12px);
  min-width: 220px;
}

.feature-card,
.benefit-card,
.step-card,
.pricing-card,
.qualifier-form,
.callout,
.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(23, 33, 49, 0.96));
  box-shadow: var(--shadow-soft);
}

.feature-card,
.benefit-card {
  padding: 24px;
}

.feature-card.accent {
  position: relative;
  overflow: hidden;
}

.feature-card.accent::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #f0a463, var(--accent));
}

.feature-icon {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.feature-card h3,
.benefit-card h3,
.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.feature-card p,
.benefit-card p,
.step-card p {
  color: rgba(148, 163, 184, 0.96);
  margin-bottom: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stat {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 119, 34, 0.16);
  background: rgba(28, 53, 87, 0.2);
  text-align: left;
}

.stat strong {
  display: block;
  color: #ffb062;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 0.95;
  margin-bottom: 10px;
}

.stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ef8a31, #d9670c);
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 12px 20px rgba(232, 119, 34, 0.24);
}

.step-card p {
  max-width: 58rem;
}

.effort-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #22c55e;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.callout {
  margin-top: 18px;
  padding: 20px 22px;
  text-align: center;
  background: rgba(28, 53, 87, 0.18);
}

.callout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

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

.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-anchor {
  margin-bottom: 4px;
}

.price-was {
  font-size: 1.1rem;
  color: rgba(148, 163, 184, 0.6);
  text-decoration: line-through;
  text-decoration-color: rgba(232, 119, 34, 0.5);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}

.price-was span {
  font-size: 0.85rem;
  font-weight: 500;
}

.pricing-card {
  width: min(720px, 100%);
  padding: 30px;
  border: 1px solid rgba(232, 119, 34, 0.22);
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.98), rgba(23, 33, 49, 0.98));
}

.pricing-card h3 {
  margin: 18px 0 8px;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.pricing-card h3 span {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
}

.pricing-note,
.pricing-footnote {
  color: rgba(148, 163, 184, 0.96);
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.checklist li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.pricing-footnote {
  margin: 18px 0 0;
  text-align: center;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.territory-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(23, 33, 49, 0.96));
  text-align: center;
}

.territory-icon {
  font-size: 1.8rem;
}

.territory-item strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.territory-status {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.status-open {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.status-taken {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.territory-cta {
  text-align: center;
}

.qualifier-form {
  padding: 28px;
}

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

.form-full {
  grid-column: 1 / -1;
}

.qualifier-form label:not(.consent-option) {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.qualifier-form small {
  color: var(--muted);
  font-size: 0.84rem;
}

.qualifier-form input:not([type="checkbox"]):not([type="radio"]),
.qualifier-form select,
.qualifier-form textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 25, 35, 0.58);
  color: var(--white);
  padding: 0.9rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.qualifier-form textarea {
  min-height: 120px;
  resize: vertical;
}

.qualifier-form input::placeholder,
.qualifier-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.qualifier-form input:not([type="checkbox"]):not([type="radio"]):focus,
.qualifier-form select:focus,
.qualifier-form textarea:focus,
.qualifier-form input:not([type="checkbox"]):not([type="radio"]):focus-visible,
.qualifier-form select:focus-visible,
.qualifier-form textarea:focus-visible {
  outline: none;
  border-color: rgba(232, 119, 34, 0.6);
  box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.12);
  background: rgba(15, 25, 35, 0.78);
}

.qualifier-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.consent-block {
  margin: 22px 0 24px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 25, 35, 0.32);
}

.consent-option {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  color: rgba(148, 163, 184, 0.98);
  font-size: 0.85rem;
  line-height: 1.7;
}

.consent-option span {
  flex: 1;
}

.consent-option strong {
  color: var(--white);
  font-weight: 700;
}

.consent-option + .consent-option {
  margin-top: 14px;
}

.consent-option input {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 0;
  min-width: 0;
  max-width: 18px;
  max-height: 18px;
  margin-top: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.58);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease;
}

.consent-option input:checked {
  border-color: var(--accent);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 4l3.5 3.5L11 1'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.consent-option input:focus-visible {
  outline: 3px solid rgba(255, 176, 98, 0.55);
  outline-offset: 3px;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  font-size: 0.86rem;
}

.consent-links a {
  color: #ffb062;
  text-decoration: underline;
  text-decoration-color: rgba(232, 119, 34, 0.6);
  text-underline-offset: 3px;
}

.consent-links a:hover,
.consent-links a:focus-visible {
  color: var(--white);
}

.consent-notice,
.consent-disclaimer {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

.consent-notice {
  margin-top: 18px;
}

.consent-notice {
  color: rgba(148, 163, 184, 0.92);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0.9rem 1.1rem 0.9rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
}

.faq-trigger span:first-child {
  font-size: 1.02rem;
  font-weight: 600;
}

.faq-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-plus::after {
  opacity: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 260ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: rgba(148, 163, 184, 0.96);
}

.faq-item.open .faq-panel {
  opacity: 1;
}

.final-cta {
  padding-bottom: 108px;
}

.final-cta-inner {
  text-align: center;
}

.final-cta .section-heading {
  margin-bottom: 18px;
}

.trust-line {
  margin: 16px 0 0;
  color: rgba(148, 163, 184, 0.95);
}

.site-footer {
  padding: 32px 0 44px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(9, 16, 24, 0.98);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-meta a {
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--accent);
}

.footer-meta p {
  margin: 0;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.95rem;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 8%, rgba(28, 53, 87, 0.35), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(232, 119, 34, 0.18), transparent 24%),
    linear-gradient(180deg, #0f1923 0%, #0c141d 100%);
  color: var(--white);
}

.legal-shell {
  padding: 28px 0 56px;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.legal-home {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(30, 41, 59, 0.45);
  color: var(--white);
  font-weight: 600;
}

.legal-home:hover,
.legal-home:focus-visible {
  color: var(--accent);
  border-color: rgba(232, 119, 34, 0.42);
}

.legal-content {
  width: min(800px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 28px;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(30, 41, 59, 0.7);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.02;
}

.effective-date {
  margin: 0 0 28px;
  color: rgba(148, 163, 184, 0.95);
}

.legal-section + .legal-section {
  margin-top: 28px;
}

.legal-section h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.legal-section p,
.legal-section li {
  color: rgba(255, 255, 255, 0.84);
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: 8px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

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

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

@media (max-width: 1100px) {
  .hero-card {
    max-width: 640px;
  }

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .imessage-strip {
    text-align: center;
  }

  .hero-phone-wrap {
    order: -1;
  }

  .hero-stat-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .problem-grid,
  .stats-row,
  .benefits-grid,
  .form-grid,
  .imessage-diff-grid {
    grid-template-columns: 1fr;
  }

  .imessage-stat-row {
    gap: 20px;
  }

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

  .section {
    padding: 76px 0;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 16px 18px;
    background: rgba(15, 25, 35, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-bar {
    position: relative;
  }

  .site-nav a + a {
    border-top: 1px solid rgba(148, 163, 184, 0.08);
  }

  .brand-mark {
    width: 180px;
  }

  .hero {
    padding-top: 38px;
  }

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

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

  .legal-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 100%);
  }

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

  .btn,
  .btn-xl,
  .legal-home {
    width: 100%;
  }

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

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .hero-card,
  .pricing-card,
  .qualifier-form,
  .legal-content {
    padding: 22px 18px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 12px;
  }

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

  .stat,
  .feature-card,
  .benefit-card,
  .callout {
    padding: 20px;
  }

  .faq-trigger {
    padding: 0.9rem 0.95rem;
  }

  .faq-panel p {
    padding-inline: 0.95rem;
  }

  .brand-mark {
    width: 150px;
  }
}
