:root {
  --ink: #111827;
  --ink-soft: #233044;
  --muted: #637083;
  --paper: #f7f9fc;
  --panel: #ffffff;
  --panel-soft: #eef7f3;
  --line: #d9e1ea;
  --teal: #0f9f8f;
  --teal-dark: #087266;
  --sky: #2f80ed;
  --coral: #f9735b;
  --gold: #f5b84b;
  --shadow: 0 24px 80px rgba(14, 32, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 max(24px, calc((100% - 1160px) / 2));
  background: rgba(247, 249, 252, 0.9);
  border-bottom: 1px solid rgba(217, 225, 234, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 850;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: #ffffff;
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
}

nav a:hover {
  background: rgba(15, 159, 143, 0.08);
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: #ffffff;
}

.nav-cta:hover {
  background: var(--teal-dark);
  color: #ffffff;
}

.hero {
  min-height: 76svh;
  display: grid;
  align-items: center;
  padding: 116px max(24px, calc((100% - 1160px) / 2)) 70px;
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.94) 0%, rgba(8, 18, 31, 0.78) 42%, rgba(8, 18, 31, 0.22) 100%),
    url("./assets/fastsaas-storefront-v1.png") center / cover no-repeat;
  color: #ffffff;
}

.hero-inner {
  max-width: 780px;
}

.eyebrow,
.feature-kicker,
.demo-label,
.price-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  font-size: 4.75rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 830px;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.image-band p,
.closing-cta p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-lede {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 159, 143, 0.28);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 760;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.outcome-strip article {
  min-height: 132px;
  padding: 28px;
  background: var(--panel);
}

.outcome-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.outcome-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 88px max(24px, calc((100% - 1160px) / 2));
}

.tinted {
  background:
    linear-gradient(120deg, rgba(15, 159, 143, 0.1), rgba(47, 128, 237, 0.08)),
    #f3f7fb;
}

.compact-section {
  padding-top: 72px;
}

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

.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: end;
  gap: 34px;
}

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

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

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-grid article,
.pricing-grid article {
  padding: 24px;
}

.feature-grid article {
  min-height: 238px;
}

.feature-grid p,
.edition-card li,
.demo-card p,
.pricing-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid p {
  margin-top: 14px;
}

.feature-kicker,
.demo-label,
.price-label {
  margin-bottom: 10px;
  color: var(--teal-dark);
}

.edition-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(21, 36, 56, 0.09);
}

.edition-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--sky);
  pointer-events: none;
}

.pro-card::before {
  border-top-color: var(--coral);
}

.edition-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 42px;
}

.edition-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(47, 128, 237, 0.1);
  color: var(--sky);
  font-weight: 850;
}

.pro-card .edition-topline span {
  background: rgba(249, 115, 91, 0.12);
  color: #c64c38;
}

.edition-topline strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.edition-card h3 {
  font-size: 1.85rem;
}

ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 19px;
}

.demo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 28px;
  box-shadow: 0 16px 50px rgba(21, 36, 56, 0.08);
}

.demo-card h3 {
  font-size: 1.75rem;
}

.demo-card p {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 28px;
  border-bottom: 2px solid var(--teal);
  color: var(--teal-dark);
  font-weight: 850;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  background: var(--ink);
  color: #ffffff;
}

.image-band img {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-band h2 {
  color: #ffffff;
}

.image-band p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
}

.pricing-grid strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.closing-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 88px 24px 96px;
  background:
    linear-gradient(135deg, rgba(15, 159, 143, 0.96), rgba(17, 24, 39, 0.96)),
    var(--ink);
  color: #ffffff;
  text-align: center;
}

.closing-cta h2 {
  max-width: 860px;
  color: #ffffff;
}

.closing-cta p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 960px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .site-nav {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 24px;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    background:
      linear-gradient(0deg, rgba(8, 18, 31, 0.95) 0%, rgba(8, 18, 31, 0.72) 100%),
      url("./assets/fastsaas-storefront-v1.png") center / cover no-repeat;
  }

  .outcome-strip,
  .feature-grid,
  .pricing-grid,
  .edition-grid,
  .demo-grid,
  .split-heading,
  .image-band {
    grid-template-columns: 1fr;
  }

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

  .image-band {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  nav a {
    padding: 0 10px;
  }

  .hero,
  .section,
  .image-band,
  .closing-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .hero-lede,
  .section-heading p,
  .image-band p,
  .closing-cta p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-points span {
    width: 100%;
  }
}
