:root {
  --navy-950: #0d1b36;
  --navy-900: #12264a;
  --navy-800: #17315e;
  --navy-700: #22457f;
  --ink-700: #314564;
  --ink-600: #51617a;
  --ink-500: #697892;
  --red-600: #b6494c;
  --red-500: #ce5b5f;
  --red-200: rgba(182, 73, 76, 0.14);
  --sand-50: #faf7f1;
  --sand-100: #f5efe5;
  --sand-200: #e9dfd1;
  --sky-50: #f5f8fb;
  --sky-100: #edf3f8;
  --white: #ffffff;
  --border: rgba(18, 38, 74, 0.12);
  --border-strong: rgba(18, 38, 74, 0.2);
  --shadow-soft: 0 24px 60px rgba(17, 31, 58, 0.08);
  --shadow-card: 0 18px 36px rgba(17, 31, 58, 0.06);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --font-sans: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(206, 91, 95, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 49, 94, 0.15), transparent 26%),
    linear-gradient(180deg, #f8f4ed 0%, #edf3f8 56%, #f7f2eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 65%);
  pointer-events: none;
  opacity: 0.45;
}

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

p {
  margin: 0;
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

:focus-visible {
  outline: 2px solid rgba(206, 91, 95, 0.7);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(15, 30, 58, 0.08);
}

.brand-lockup {
  min-width: 0;
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  color: var(--ink-500);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  color: var(--ink-700);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy-800), var(--red-500));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(182, 73, 76, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(182, 73, 76, 0.1), rgba(255, 255, 255, 0.92));
  color: var(--navy-950);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-950);
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-copy,
.hero-panel,
.section,
.trust-band,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 40px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 91, 95, 0.16), transparent 72%);
  transform: translate(-30%, -32%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(23, 49, 94, 0.12), transparent 72%);
  transform: translate(34%, 38%);
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--red-500), transparent);
}

.hero h1,
.section-heading h2,
.hero-panel h2,
.cta-copy h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  margin-bottom: 22px;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 58ch;
  color: var(--ink-700);
  font-size: 1.08rem;
}

.hero-price {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(182, 73, 76, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 248, 0.86);
  color: var(--navy-900);
  font-weight: 700;
}

.hero-price::before {
  content: "$99";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(182, 73, 76, 0.12);
  color: var(--red-600);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(13, 27, 54, 0.18);
}

.button-secondary {
  border: 1px solid rgba(23, 49, 94, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy-950);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(23, 49, 94, 0.22);
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-proof article {
  padding: 18px 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 245, 249, 0.86));
  box-shadow: var(--shadow-card);
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-800);
  font-size: 1.2rem;
}

.hero-proof span {
  color: var(--ink-700);
  font-size: 0.95rem;
}

.hero-panel {
  padding: 32px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(13, 27, 54, 0.97), rgba(20, 40, 77, 0.97)),
    rgba(13, 27, 54, 0.95);
  color: var(--white);
}

.panel-ribbon {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 22px;
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.panel-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  position: relative;
  margin-top: 16px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 5px rgba(206, 91, 95, 0.18);
}

.mini-timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-timeline div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-step {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 30px;
}

.trust-band p {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(250, 252, 254, 0.8);
  color: var(--ink-700);
  font-weight: 600;
}

.section {
  margin-bottom: 28px;
  padding: 40px;
  border-radius: 36px;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.94), rgba(255, 255, 255, 0.9));
}

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

.section-heading h2 {
  font-size: clamp(2.3rem, 3.3vw, 3.8rem);
  margin-bottom: 14px;
}

.section-heading p,
.service-card p,
.scenario-card p,
.proof-card p,
.process-card p,
.review-callout p,
.cta-copy p {
  color: var(--ink-700);
}

.card-grid,
.scenario-grid,
.proof-grid,
.process-grid {
  margin-top: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.service-card,
.scenario-card,
.proof-card,
.process-card,
.cta-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 249, 0.88));
  box-shadow: var(--shadow-card);
}

.service-card {
  padding: 24px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3,
.scenario-card h3,
.proof-card h3,
.process-card h3 {
  margin-bottom: 12px;
  font-size: 1.36rem;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.scenario-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 233, 0.92));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.proof-card {
  padding: 24px;
}

.review-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(182, 73, 76, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 250, 248, 0.95), rgba(255, 255, 255, 0.9));
}

.text-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--navy-800);
  font-weight: 700;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
  color: var(--red-600);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(182, 73, 76, 0.12);
  color: var(--red-600);
  font-size: 1rem;
  font-weight: 700;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.cta-copy h2 {
  font-size: clamp(2.25rem, 3vw, 3.5rem);
  margin-bottom: 14px;
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(13, 27, 54, 0.98), rgba(25, 46, 88, 0.98));
}

.cta-card,
.cta-card p,
.cta-card .cta-link {
  color: var(--white);
}

.cta-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-link {
  font-size: 1.42rem;
  font-weight: 700;
  word-break: break-word;
}

.cta-footnote {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  padding: 22px 26px;
  border-radius: 28px;
}

.site-footer p {
  color: var(--ink-700);
}

@media (max-width: 1100px) {
  .hero,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 18px;
  }

  .site-header {
    top: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 8px;
  }

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

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

  .hero-copy,
  .hero-panel,
  .section,
  .site-footer,
  .trust-band {
    border-radius: 28px;
  }

  .hero-copy,
  .hero-panel,
  .section {
    padding: 28px 22px;
  }

  .hero-proof,
  .card-grid,
  .scenario-grid,
  .proof-grid,
  .process-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .review-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1,
  .section-heading h2,
  .cta-copy h2 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.18rem;
  }

  .brand-tag {
    font-size: 0.74rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.9rem);
  }

  .hero-price {
    width: 100%;
    justify-content: flex-start;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
