:root {
  --bg: #ffffff;
  --surface: #f5f8fc;
  --surface-strong: #edf3fa;
  --ink: #111827;
  --muted: #667085;
  --line: #dce5ef;
  --blue: #0b2f63;
  --blue-strong: #082247;
  --blue-soft: #e7f0fb;
  --cyan: #16a3c7;
  --green: #2b8f6d;
  --yellow: #f2b84b;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(8, 34, 71, 0.12);
  --space-section: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
}

.main-nav {
  gap: 22px;
  color: #344054;
  font-size: 14px;
  font-weight: 500;
}

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

.header-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: var(--space-section) 0;
}

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

.section-muted {
  background: var(--surface);
}

.hero {
  padding-top: 76px;
  background: #fff;
}

.hero-grid,
.split,
.agent-grid,
.meeting-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-copy,
.store-preview {
  min-width: 0;
}

.eyebrow {
  display: none;
}

.scarcity-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 14px;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(8, 34, 71, 0.06);
}

.scarcity-note::before {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  content: "";
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--blue-strong);
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  font-weight: 700;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-strong);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-strong);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: #344054;
  font-size: 18px;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(11, 47, 99, 0.2);
}

.button-primary:hover {
  background: var(--blue-strong);
}

.button-secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.action-note,
.muted,
.form-note {
  color: var(--muted);
  font-size: 14px;
}

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

.hero-points div,
.info-card,
.result-card,
.price-card,
.limits-card,
.trust-cards article,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero-points div {
  padding: 16px;
}

.hero-points strong {
  display: block;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-points span {
  color: var(--muted);
  font-size: 14px;
}

.store-preview {
  position: relative;
}

.preview-window {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-bar {
  display: flex;
  gap: 7px;
  padding: 0 0 12px;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 50%;
}

.astro-window {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.astro-window .preview-bar {
  padding: 16px;
}

.astro-screen {
  min-height: 360px;
  padding: 46px;
  background: #fff;
  color: var(--ink);
}

.astro-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 700;
}

.astro-kicker {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.astro-screen h2 {
  max-width: 360px;
  margin-bottom: 14px;
  color: var(--blue-strong);
  font-size: 42px;
}

.astro-screen p {
  max-width: 420px;
  color: #475467;
}

.astro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.astro-actions span {
  padding: 8px 11px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(11, 47, 99, 0.12);
  border-radius: 8px;
  font-size: 13px;
}

.notice-band {
  padding: 0 0 44px;
  background: #fff;
  color: var(--ink);
}

.notice {
  display: block;
}

.notice div {
  max-width: 840px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}

.notice strong,
.notice span {
  display: block;
}

.notice strong {
  margin-bottom: 6px;
  color: var(--blue-strong);
  font-weight: 700;
}

.notice span {
  color: #475467;
}

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

.fit-layout {
  display: grid;
  gap: 28px;
  max-width: 980px;
}

.fit-lead {
  max-width: 980px;
  padding: 26px 30px;
  color: var(--blue-strong) !important;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 24px !important;
  line-height: 1.45;
}

.fit-list {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-list article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 24px;
}

.fit-list article + article {
  border-top: 1px solid var(--line);
}

.fit-list h3 {
  margin: 0;
  font-size: 18px;
}

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

.marketplace-section {
  padding-top: 0;
}

.marketplace-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  background: var(--blue);
  border-radius: var(--radius);
  color: #fff;
}

.marketplace-block h2 {
  color: #fff;
}

.marketplace-block p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.marketplace-card {
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.marketplace-card h3 {
  color: var(--blue-strong);
}

.marketplace-card p {
  margin: 20px 0 0;
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p,
.agent-copy p,
.limits-card p,
.price-card p,
.trust-section p,
.meeting-grid p {
  color: #475467;
  font-size: 17px;
}

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

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

.info-card {
  padding: 24px;
  box-shadow: 0 8px 22px rgba(8, 34, 71, 0.05);
}

.info-card h3 {
  font-weight: 700;
}

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

.result-card,
.price-card,
.limits-card,
.lead-form {
  padding: 30px;
  box-shadow: 0 8px 22px rgba(8, 34, 71, 0.05);
}

.advantage-note {
  margin-top: 24px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
}

.advantage-note strong,
.advantage-note span {
  display: block;
}

.advantage-note strong {
  margin-bottom: 6px;
  color: var(--blue-strong);
  font-weight: 700;
}

.advantage-note span {
  color: #475467;
}

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

.check-list li,
.minus-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.minus-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
  content: "✓";
}

.minus-list li::before {
  color: #c2410c;
  content: "–";
}

.agent-section {
  background: #fff;
  color: var(--ink);
}

.agent-section h2 {
  color: var(--blue-strong);
}

.agent-copy p {
  color: #475467;
}

.phone-agent {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
  padding: 18px 18px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.phone-top {
  display: grid;
  place-items: center;
  height: 22px;
}

.phone-top span {
  width: 72px;
  height: 5px;
  background: #d8e2ee;
  border-radius: 99px;
}

.phone-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
  padding: 14px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 16px;
}

.phone-chat-header strong,
.phone-chat-header span {
  display: block;
}

.phone-chat-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.chat-message {
  max-width: 86%;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}

.chat-message.user {
  justify-self: end;
  background: var(--blue);
  color: #fff;
}

.chat-message.accent {
  border-left: 4px solid var(--yellow);
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-cta strong,
.process-cta span {
  display: block;
}

.process-cta strong {
  margin-bottom: 6px;
  color: var(--blue-strong);
  font-size: 20px;
}

.process-cta span {
  color: var(--muted);
}

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

.timeline article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 700;
}

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

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.slots span {
  padding: 10px 12px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(11, 47, 99, 0.12);
  border-radius: 8px;
  font-weight: 600;
}

.price-hero {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.price-hero h2 {
  margin-bottom: 10px;
  font-size: clamp(40px, 5vw, 64px);
}

.price-hero p {
  max-width: 760px;
  color: #475467;
  font-size: 18px;
}

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

.price-list-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(8, 34, 71, 0.05);
}

.price-list-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.trust-section {
  background: #fff;
}

.trust-cards {
  display: grid;
  gap: 14px;
}

.trust-cards article {
  padding: 22px;
}

.trust-cards strong,
.trust-cards span {
  display: block;
}

.trust-cards strong {
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
}

.trust-cards span {
  color: var(--muted);
}

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

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  color: var(--blue-strong);
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  color: var(--ink);
  background: var(--surface);
}

.final-cta h2 {
  color: var(--blue-strong);
}

.final-cta p {
  color: #475467;
}

.lead-form {
  background: #fff;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue-strong);
  font-weight: 600;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  font-weight: 400;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #98a2b3;
  font-weight: 400;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 47, 99, 0.1);
}

.lead-form .button {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
}

.portfolio-link-section {
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.portfolio-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.portfolio-link span {
  color: #475467;
}

.portfolio-link a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.site-footer {
  padding: 26px 0;
  color: #667085;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  justify-content: flex-start;
  gap: 16px;
  font-size: 14px;
}

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

  .hero-grid,
  .split,
  .agent-grid,
  .meeting-grid,
  .fit-layout,
  .marketplace-block {
    grid-template-columns: 1fr;
  }

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

  .price-details {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    margin-bottom: 28px;
  }
}

@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 1180px;
    padding: 0 14px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy,
  .store-preview,
  .astro-window,
  .notice div,
  .fit-lead,
  .fit-list,
  .phone-agent,
  .marketplace-block {
    max-width: 362px;
  }

  .marketplace-block {
    padding: 26px 20px;
  }

  h1 {
    font-size: 29px;
    line-height: 1.12;
    word-break: break-word;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead,
  .section-heading p,
  .agent-copy p,
  .limits-card p,
  .price-card p,
  .trust-section p,
  .meeting-grid p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .process-cta,
  .portfolio-link {
    display: grid;
  }

  .hero-points,
  .cards-grid,
  .included-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .fit-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }

  .notice {
    display: block;
  }

  .astro-screen {
    min-height: 320px;
    padding: 30px;
  }

  .astro-screen p {
    max-width: 280px;
  }

  .astro-screen h2 {
    font-size: 32px;
  }

  .footer-inner {
    display: grid;
  }
}
