:root {
  --navy: #10254a;
  --blue: #2f6fd5;
  --blue-hover: #245cb4;
  --pale-blue: #eef6ff;
  --blue-highlight: #ddebfa;
  --soft-white: #fafbfc;
  --white: #ffffff;
  --border: #d8e3ef;
  --slate: #5b6878;
  --ink-soft: #33475c;
  --shadow: 0 18px 45px rgba(23, 49, 82, 0.10);
  --radius: 18px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-white);
  color: var(--navy);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  line-height: 1;
}

.brand-name {
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a.active::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--blue);
  border-radius: 9px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(47, 111, 213, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(47, 111, 213, 0.24);
}

.button-small {
  min-height: 44px;
  padding-inline: 1.25rem;
}

.button-secondary {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--pale-blue);
  color: var(--blue-hover);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f7fbff 0%, #eef6ff 100%);
  border-bottom: 1px solid var(--border);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 111, 213, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 111, 213, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: 580px;
  padding-block: 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.5rem, 5.5vw, 5.1rem);
  line-height: 0.98;
  font-weight: 600;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 600;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.hero-text,
.lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero-text {
  max-width: 590px;
  margin: 0 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.microcopy {
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-right: -70px;
}

.plan-illustration {
  display: block;
  width: 100%;
  height: auto;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 48px;
  color: var(--navy);
  font-weight: 600;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}

.round-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding-block: 105px;
}

.section-tint {
  background: var(--pale-blue);
  border-block: 1px solid var(--border);
}

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

.section-heading > p:last-child {
  color: var(--slate);
  margin-bottom: 0;
}

.steps-grid,
.pricing-grid,
.trade-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card,
.price-card,
.trade-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-card {
  position: relative;
  min-height: 350px;
  padding: 2rem 1.55rem 1.8rem;
}

.step-number {
  display: block;
  margin-bottom: 1.4rem;
  color: #8bb6ec;
  font-family: "Newsreader", Georgia, serif;
  font-size: 3.25rem;
  line-height: 1;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.3rem;
  border-radius: 15px;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 800;
}

.step-card p,
.price-card p,
.trade-grid p,
.deliverables p,
.privacy-card p {
  color: var(--slate);
}

.center-note {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
}

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

.price-card {
  position: relative;
  padding: 2rem;
}

.price-card.featured {
  border-color: #a9c9ef;
  box-shadow: var(--shadow);
}

.price-kicker {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 1.2rem 0;
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 3.7rem;
  line-height: 1;
  font-weight: 600;
}

.price small {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}

.price-word {
  font-size: 3rem;
}

.price-card ul {
  margin: 1.5rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.price-card li {
  position: relative;
  margin: 0.65rem 0;
  padding-left: 1.55rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 5rem;
  align-items: start;
}

.deliverables {
  display: grid;
  gap: 1rem;
}

.deliverables article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.deliverable-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--pale-blue);
  color: var(--blue);
  font-weight: 800;
}

.trades-section {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.trade-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trade-grid article {
  padding: 1.7rem;
}

.privacy-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.privacy-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  padding: 3rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.privacy-card h2,
.privacy-card .eyebrow {
  color: var(--white);
}

.privacy-card p {
  color: #dce8f2;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--pale-blue);
  border-block: 1px solid var(--border);
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding-block: 70px;
}

.cta-inner h2 {
  margin-bottom: 0.7rem;
}

.cta-inner p {
  max-width: 730px;
  color: var(--slate);
}

.cta-action {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.cta-action span {
  color: var(--slate);
  font-size: 0.82rem;
}

.site-footer {
  padding-top: 70px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 60px;
}

.footer-grid h2 {
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: var(--slate);
  font-size: 0.92rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a {
  margin-bottom: 0.55rem;
  text-decoration: none;
}

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

.footer-brand {
  margin-bottom: 1rem;
}

.domain {
  color: var(--navy) !important;
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 720px);
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
}

.footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    margin-right: -40px;
  }

  .steps-grid,
  .trade-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

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

  .header-inner {
    min-height: 76px;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 1px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.85rem 0.9rem;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 0.3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 58px 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    width: calc(100% + 32px);
    margin: 2rem -16px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 0.55rem;
  }

  .trust-item {
    justify-content: flex-start;
    padding-block: 0.7rem;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .section {
    padding-block: 74px;
  }

  .steps-grid,
  .pricing-grid,
  .trade-grid,
  .two-column,
  .privacy-card,
  .cta-inner,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .two-column,
  .privacy-card,
  .cta-inner,
  .footer-grid {
    gap: 2rem;
  }

  .step-card {
    display: grid;
    grid-template-columns: 64px 64px 1fr;
    column-gap: 0.8rem;
    align-items: start;
    padding: 1.25rem;
  }

  .step-number {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 3rem;
  }

  .step-icon {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .step-card h3,
  .step-card p {
    grid-column: 3;
  }

  .step-card p {
    margin-bottom: 0;
  }

  .privacy-card {
    padding: 2rem;
  }

  .cta-action {
    justify-items: stretch;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  h2 {
    font-size: 2.35rem;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    font-size: 25px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-item {
    font-size: 0.9rem;
  }

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

  .step-number {
    display: none;
  }

  .step-icon {
    grid-column: 1;
  }

  .step-card h3,
  .step-card p {
    grid-column: 2;
  }

  .deliverables article {
    grid-template-columns: 54px 1fr;
    padding-inline: 0;
  }

  .deliverable-icon {
    width: 50px;
    height: 50px;
  }
}

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

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