:root {
  --blue: #0a84ff;
  --blue-dark: #075bb2;
  --blue-soft: #eaf4ff;
  --gold: #d7a11f;
  --gold-dark: #8a6100;
  --gold-soft: #fff3c8;
  --ink: #111317;
  --muted: #626a75;
  --line: #dce5ee;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --dark: #050505;
  --dark-2: #111417;
  --green: #19a66a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

h1,
h2 {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 172px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #111317;
  font-size: 14px;
  font-weight: 760;
}

.desktop-nav a:hover {
  color: #000000;
}

.nav-cta,
.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 760;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(10, 132, 255, 0.18);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.button.full {
  width: 100%;
}

.link-cta {
  color: var(--blue);
  background: var(--blue-soft);
  box-shadow: none;
}

.section-shell {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 46px 0 64px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow,
.kicker,
.plan-label {
  width: fit-content;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 760;
}

.kicker {
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.hero h1,
.pay-hero h1 {
  max-width: 620px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 780;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  padding-top: 8px;
}

.proof-stack {
  position: absolute;
  right: 4px;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 140px;
  gap: 10px;
  transform: translateY(-50%);
}

.proof-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 10px;
  background: var(--paper);
  color: #566270;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.proof-item strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.1;
}

.proof-item.gold strong {
  color: var(--gold-dark);
}

.phone-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.phone-stage::before {
  content: none;
}

.start-hint {
  position: absolute;
  right: 62px;
  bottom: 138px;
  z-index: 2;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid #f1d990;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 760;
  animation: hint-float 2.6s ease-in-out infinite;
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: 308px;
  height: 586px;
  border: 10px solid #15171a;
  border-radius: 44px;
  background: var(--dark-2);
  box-shadow: 0 36px 68px rgba(17, 19, 23, 0.2);
  animation: phone-attention 4.8s ease-in-out infinite;
}

.phone-screen {
  position: absolute;
  inset: 7px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  border-radius: 32px;
  background: var(--dark);
  overflow: hidden;
}

.ios-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
}

.status-icons {
  font-size: 12px;
  opacity: 0.88;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 6px 16px 12px;
  color: #fff;
  border-bottom: 1px solid #1d1d1f;
}

.contact-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.contact-header div {
  display: grid;
  gap: 1px;
}

.contact-header strong {
  font-size: 13px;
}

.contact-header span {
  color: #aeb4bd;
  font-size: 11px;
}

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

.message {
  width: fit-content;
  max-width: 78%;
  border-radius: 18px;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 1.28;
}

.message.angie {
  align-self: flex-start;
  color: #fff;
  background: #2c2c2e;
  border-bottom-left-radius: 5px;
}

.message.visitor {
  align-self: flex-end;
  color: #fff;
  background: #0a84ff;
  border-bottom-right-radius: 5px;
}

.message-form {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  gap: 7px;
  align-items: center;
  padding: 9px 10px 13px;
  background: #050505;
}

.message-form input {
  min-width: 0;
  height: 34px;
  border: 1px solid #3a3a3c;
  border-radius: 18px;
  padding: 0 12px;
  color: #fff;
  background: #1c1c1e;
  outline: 0;
  animation: input-glow 2.4s ease-in-out infinite;
  cursor: pointer;
}

.message-form input::placeholder {
  color: #8e8e93;
}

.message-plus,
.message-send {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
}

.message-plus {
  color: #8e8e93;
  background: #1c1c1e;
  font-size: 20px;
  line-height: 1;
}

.message-send {
  color: #fff;
  background: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.roadmap-section {
  display: grid;
  gap: 24px;
  padding: 28px 0 76px;
}

.roadmap-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.roadmap-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

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

.roadmap-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
}

.roadmap-label {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-size: 13px;
  font-weight: 760;
}

.roadmap-steps {
  display: grid;
  gap: 14px;
}

.roadmap-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}

.roadmap-step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.roadmap-step h3 {
  font-size: 19px;
}

.roadmap-step p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.setter-options {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 36px;
  align-items: center;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.setter-options-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.setter-options-copy h2 {
  max-width: 620px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.setter-options-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

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

.setter-option-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
}

.setter-option-card.featured {
  border-color: #c7ddfb;
  box-shadow: 0 22px 54px rgba(10, 132, 255, 0.08);
}

.setter-option-card span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.setter-option-card.featured span {
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.setter-option-card h3 {
  font-size: 25px;
  line-height: 1.08;
}

.setter-option-card p {
  color: var(--muted);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 42px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.split-section h2,
.section-heading h2,
.final-cta h2 {
  margin-top: 12px;
  max-width: 720px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.feature-dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.feature-dot.gold {
  background: var(--gold);
}

.feature-row h3 {
  font-size: 18px;
}

.feature-row p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.page-pricing,
.about-hero {
  padding-top: 58px;
  border-top: 0;
}

.page-pricing h1,
.about-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 780;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

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

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 360px);
  gap: 42px;
  align-items: end;
}

.about-snapshot,
.about-proof,
.fit-grid article,
.managed-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.about-snapshot {
  display: grid;
  gap: 10px;
  padding: 22px;
  box-shadow: 0 22px 54px rgba(17, 19, 23, 0.06);
}

.snapshot-label {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 760;
}

.about-snapshot strong {
  font-size: 28px;
  line-height: 1.02;
}

.about-snapshot span {
  color: var(--muted);
  line-height: 1.5;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0 76px;
}

.about-proof {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.about-proof span {
  width: fit-content;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.about-proof:nth-child(2) span {
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.about-proof h2 {
  font-size: 25px;
  line-height: 1.08;
}

.about-proof p,
.section-copy,
.fit-grid p,
.managed-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.section-copy {
  margin-top: 14px;
  max-width: 470px;
  font-size: 17px;
}

.about-fit {
  display: grid;
  gap: 24px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fit-grid article {
  padding: 18px;
}

.fit-grid h3 {
  font-size: 18px;
  line-height: 1.12;
}

.fit-grid p {
  margin-top: 8px;
}

.managed-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.managed-panel div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.managed-panel div + div {
  border-top: 1px solid var(--line);
}

.managed-panel span {
  color: var(--blue);
  font-weight: 800;
}

.about-managed {
  padding-bottom: 76px;
}

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

.pricing-guide,
.pricing-process,
.faq-section {
  display: grid;
  gap: 24px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.choice-grid,
.process-steps,
.faq-grid {
  display: grid;
  gap: 14px;
}

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

.process-steps,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.choice-card,
.process-steps article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.choice-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.choice-card.featured {
  border-color: #c7ddfb;
  box-shadow: 0 22px 54px rgba(10, 132, 255, 0.08);
}

.choice-card h3,
.process-steps h3,
.faq-grid h3 {
  font-size: 22px;
  line-height: 1.12;
}

.choice-card p:not(.plan-label),
.process-copy p,
.process-steps p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.process-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.process-copy h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.process-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 17px;
}

.process-steps article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.process-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.process-steps article:nth-child(2) span {
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.faq-grid article {
  padding: 20px;
}

.faq-grid p {
  margin-top: 8px;
}

.pricing-final {
  margin-bottom: 42px;
}

.pricing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-card,
.pay-panel,
.pay-summary,
.modal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.price-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
}

.price-card.popular {
  border-color: #c7ddfb;
  box-shadow: 0 22px 54px rgba(10, 132, 255, 0.08);
}

.popular-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid #f1d990;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.price-card.featured {
  border-color: #c7ddfb;
  box-shadow: 0 22px 54px rgba(10, 132, 255, 0.1);
}

.price-card-top {
  display: grid;
  gap: 10px;
}

.price-card h3 {
  font-size: 25px;
  line-height: 1.1;
}

.price-card p:not(.plan-label),
.monthly-note {
  color: var(--muted);
  line-height: 1.5;
}

.price-main strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.price-main span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #39424e;
  line-height: 1.4;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

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

.seat-tool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.seat-tool label {
  color: #39424e;
  font-size: 14px;
  font-weight: 720;
}

.stepper {
  display: grid;
  grid-template-columns: 34px 54px 34px;
  gap: 6px;
  align-items: center;
}

.stepper button,
.stepper input {
  height: 34px;
  border: 1px solid #cbd8e5;
  border-radius: 7px;
  background: #fff;
  text-align: center;
}

.stepper button {
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

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

.calc-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.calc-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.calc-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.demo-header {
  position: relative;
}

.demo-header .button,
.demo-header .nav-cta {
  white-space: nowrap;
}

.demo-page {
  padding-bottom: 72px;
}

.demo-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 44px 0 64px;
}

.demo-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.demo-copy h1 {
  max-width: 650px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 780;
}

.demo-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.demo-phone-card {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.demo-phone {
  display: grid;
  grid-template-rows: auto auto 1fr;
  width: 318px;
  height: 640px;
  border: 10px solid #15171a;
  border-radius: 44px;
  background: var(--dark);
  overflow: hidden;
  box-shadow: 0 36px 68px rgba(17, 19, 23, 0.2);
}

.demo-messages {
  justify-content: start;
  padding-top: 18px;
  overflow-y: auto;
  scrollbar-width: none;
}

.demo-messages::-webkit-scrollbar {
  display: none;
}

.imessage-demo-form {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.phone-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.imessage-demo-form label {
  gap: 4px;
}

.imessage-demo-form label span {
  color: #b7c0cb;
  font-size: 10px;
  font-weight: 760;
}

.imessage-demo-form input {
  width: 100%;
  min-width: 0;
  height: 34px;
  border: 1px solid #3a3a3c;
  border-radius: 12px;
  padding: 0 10px;
  color: #fff;
  background: #1c1c1e;
  outline: 0;
}

.imessage-demo-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.22);
}

.phone-consent {
  color: #9da6b2;
  font-size: 9.5px;
  line-height: 1.35;
}

.phone-consent a,
.consent-check a {
  color: var(--blue);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.imessage-demo-form .button {
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.imessage-demo-form .form-status {
  min-height: 14px;
  color: #b7c0cb;
  font-size: 10px;
  line-height: 1.35;
}

.demo-form-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 0.45fr);
  gap: 18px;
  align-items: start;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.demo-form-card,
.demo-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.demo-form-card {
  display: grid;
  gap: 13px;
  padding: 24px;
}

.demo-form-card h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.demo-form-card p:not(.eyebrow),
.demo-consent,
.demo-note p {
  color: var(--muted);
  line-height: 1.5;
}

.demo-form-card div:first-child p:not(.eyebrow) {
  margin-top: 10px;
  max-width: 560px;
}

.demo-consent {
  font-size: 13px;
}

.demo-note {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.demo-note span {
  color: var(--gold-dark);
  font-weight: 800;
}

.legal-page {
  display: grid;
  gap: 18px;
  max-width: 920px;
  padding: 58px 0 76px;
}

.legal-page h1 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
}

.legal-updated {
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.legal-copy {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.legal-copy pre {
  margin: 0;
  color: #28313b;
  font: inherit;
  font-size: 16px;
  line-height: 1.62;
  white-space: pre-wrap;
  word-break: break-word;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
  color: var(--muted);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  font-size: 13px;
  font-weight: 720;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-inner a {
  color: #39424e;
  font-size: 13px;
  font-weight: 720;
}

.footer-inner a:hover {
  color: var(--blue);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  padding: 18px;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 23, 0.42);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(17, 19, 23, 0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #58616d;
  background: #fff;
  font-size: 22px;
}

.modal-panel h2 {
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.1;
}

.modal-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.lead-form,
.pay-panel {
  display: grid;
  gap: 13px;
}

.lead-form {
  margin-top: 18px;
}

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

label {
  display: grid;
  gap: 6px;
}

label[hidden] {
  display: none;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
}

.consent-check span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
}

label span,
legend {
  color: #3c4652;
  font-size: 13px;
  font-weight: 740;
}

input,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd8e5;
  border-radius: 7px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.12);
}

.form-status {
  min-height: 20px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 720;
}

.pay-hero {
  padding: 58px 0 80px;
}

.pay-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 410px);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.pay-panel,
.pay-summary {
  padding: 22px;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-card,
.radio-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  cursor: pointer;
}

.radio-card strong {
  display: block;
  margin-bottom: 4px;
}

.radio-card span,
.radio-pill span {
  color: #4d5662;
  line-height: 1.4;
}

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

.radio-pill {
  grid-template-columns: auto 1fr;
  padding: 11px;
}

.pay-summary {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 14px;
}

.pay-summary h2 {
  font-size: 48px;
  line-height: 1;
}

.pay-summary p:not(.plan-label) {
  color: var(--muted);
  line-height: 1.5;
}

.summary-lines {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.summary-lines span {
  color: var(--muted);
}

.fine-print {
  font-size: 12px;
}

.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;
}

@keyframes phone-attention {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes input-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(10, 132, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.16);
  }
}

@keyframes hint-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .demo-header .desktop-nav {
    display: flex;
    gap: 20px;
  }

  .hero,
  .demo-hero,
  .demo-form-section,
  .split-section,
  .pricing-grid,
  .choice-grid,
  .process-steps,
  .faq-grid,
  .setter-options,
  .setter-options-grid,
  .about-hero-grid,
  .about-proof-grid,
  .fit-grid,
  .pay-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 28px;
    padding-top: 30px;
  }

  .phone-stage {
    min-height: 690px;
  }

  .demo-phone-card {
    min-height: 560px;
  }

  .proof-stack {
    position: static;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none;
    margin-top: -10px;
  }

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

  .about-proof-grid {
    padding-bottom: 64px;
  }

  .pay-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
    gap: 10px;
  }

  .brand-logo {
    width: 148px;
  }

  .nav-cta {
    display: none;
  }

  .section-shell {
    width: auto;
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1,
  .demo-copy h1,
  .pay-hero h1,
  .page-pricing h1,
  .about-hero h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .hero-text,
  .demo-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .section-copy {
    max-width: 340px;
    font-size: 17px;
  }

  .proof-grid,
  .calc-grid,
  .term-grid,
  .price-actions,
  .pricing-cta-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-copy,
  .demo-copy,
  .demo-form-card,
  .demo-note,
  .hero-actions,
  .proof-grid,
  .phone-stage,
  .setter-options-copy,
  .setter-options-grid,
  .setter-option-card,
  .choice-grid,
  .choice-card,
  .process-copy,
  .process-steps,
  .process-steps article,
  .faq-grid,
  .faq-grid article,
  .about-hero-grid,
  .about-snapshot,
  .about-proof,
  .fit-grid,
  .fit-grid article,
  .managed-panel {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .about-snapshot,
  .about-proof,
  .setter-option-card,
  .fit-grid article,
  .managed-panel,
  .section-heading,
  .section-heading p,
  .setter-options-copy p,
  .setter-option-card p,
  .choice-card p,
  .process-copy p,
  .process-steps p,
  .faq-grid p,
  .about-proof p,
  .fit-grid p,
  .managed-panel p {
    overflow-wrap: break-word;
  }

  .about-hero {
    padding-top: 34px;
  }

  .about-snapshot strong,
  .about-proof h2,
  .setter-options-copy h2,
  .setter-option-card h3,
  .process-copy h2,
  .choice-card h3,
  .process-steps h3,
  .faq-grid h3 {
    font-size: 24px;
    overflow-wrap: break-word;
  }

  .about-proof-grid,
  .setter-options,
  .pricing-guide,
  .pricing-process,
  .faq-section,
  .about-fit,
  .about-managed {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .phone-stage {
    min-height: 690px;
  }

  .demo-hero {
    min-height: 0;
    padding-top: 34px;
  }

  .demo-header .brand-logo {
    width: 132px;
  }

  .demo-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-header .nav-cta {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .demo-phone-card {
    min-height: 600px;
  }

  .demo-phone {
    width: 286px;
    height: 600px;
  }

  .phone-stage::before {
    inset: 36px 0;
  }

  .phone-shell {
    width: 286px;
    height: 540px;
  }

  .proof-stack {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -16px;
  }

  .start-hint {
    right: 18px;
    bottom: 104px;
  }

  .seat-tool,
  .final-cta,
  .pricing-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}
