:root {
  --color-navy: #0f2744;
  --color-navy-soft: #1a3a5c;
  --color-sky: #1e9dd8;
  --color-sky-bright: #38b6e8;
  --color-sky-muted: #e8f6fc;
  --color-gold: #c9a227;
  --color-gold-soft: #e8d48b;
  --color-cream: #f7f4ed;
  --color-mahogany: #4a3228;
  --color-mahogany-light: #6b4f42;
  --color-white: #ffffff;
  --color-text: #1a2332;
  --color-text-muted: #4a5568;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 12px;
  --shadow-soft: 0 4px 24px rgba(15, 39, 68, 0.08);
  --shadow-card: 0 8px 32px rgba(15, 39, 68, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

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

a {
  color: var(--color-sky);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.site-header {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.site-header__brand:hover {
  text-decoration: none;
  opacity: 0.95;
}

.site-header__logo {
  width: 48px;
  height: auto;
  border-radius: 8px;
  background: var(--color-white);
  padding: 4px;
}

.site-header__wordmark {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.site-header__wordmark span.merchant {
  color: var(--color-white);
}

.site-header__wordmark span.cloud {
  color: var(--color-sky-bright);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-header__nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.site-header__nav a:hover {
  color: var(--color-sky-bright);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-sky-bright) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(30, 157, 216, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(30, 157, 216, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-soft) 100%);
  color: var(--color-navy);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}

.hero {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sky-muted) 55%, var(--color-cream) 100%);
  padding: 3rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-sky-bright),
    var(--color-sky),
    var(--color-sky-bright),
    transparent
  );
  opacity: 0.6;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-mahogany-light);
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--color-gold);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 36ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__figure {
  margin: 0;
  text-align: center;
}

.hero__figure img {
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 40px rgba(15, 39, 68, 0.15));
}

.section {
  padding: 4rem 1.5rem;
}

.section--navy {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.92);
}

.section--navy h2,
.section--navy h3 {
  color: var(--color-white);
}

.section--white {
  background: var(--color-white);
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.section--navy .section__title {
  color: var(--color-white);
}

.section__subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 52ch;
}

.section--navy .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--color-cream);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.section--white .feature-card {
  background: var(--color-sky-muted);
  border-color: rgba(30, 157, 216, 0.15);
}

.feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-soft) 100%);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.marketplace-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.section--navy .marketplace-pill {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.section--white .marketplace-pill {
  background: var(--color-white);
  border-color: rgba(30, 157, 216, 0.25);
  color: var(--color-navy-soft);
}

.steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding-top: 0.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-sky);
  color: var(--color-white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.audience {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .audience {
    grid-template-columns: 1fr 1fr;
  }
}

.audience-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

.audience-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--color-gold-soft);
}

.audience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--color-mahogany) 0%, var(--color-navy-soft) 50%, var(--color-navy) 100%);
  color: var(--color-white);
}

.cta-band h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 40ch;
  opacity: 0.9;
}

.site-footer {
  background: var(--color-mahogany);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.site-footer strong {
  color: var(--color-gold-soft);
}

.site-footer a {
  color: var(--color-sky-bright);
}

@media (max-width: 640px) {
  .site-header__nav {
    display: none;
  }
}
