:root {
  color-scheme: light;
  --ink: #10202a;
  --muted: #5d6d7a;
  --line: #d9e5ea;
  --bg: #f5f8f7;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --blue: #2563eb;
  --amber: #f59e0b;
  --mint: #e6f7f2;
  --sky: #eaf4ff;
  --cream: #fff7df;
  --shadow: 0 22px 55px rgba(16, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 15px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(216, 229, 234, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-weight: 900;
}

.brand span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.site-header nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  color: #435363;
  font-size: 15px;
  font-weight: 800;
}

.site-header nav a:hover {
  color: var(--teal-dark);
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta,
.primary-action {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: 122px clamp(22px, 5vw, 88px) 58px;
  overflow: hidden;
  background-color: #f6fbfa;
  background-image: url("assets/hero-dashboard.png");
  background-position: center right;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(247, 251, 250, 0.98) 0%, rgba(247, 251, 250, 0.92) 34%, rgba(247, 251, 250, 0.22) 62%, rgba(247, 251, 250, 0) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.22;
}

.hero-subtitle {
  width: min(560px, 100%);
  margin-bottom: 0;
  color: #253747;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.proof-band {
  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);
}

.proof-band div {
  display: grid;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 58px);
  background: #ffffff;
}

.proof-band strong {
  font-size: 22px;
}

.proof-band span {
  color: var(--muted);
}

.section {
  padding: 84px clamp(20px, 5vw, 88px);
}

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

.section-heading p,
.feature-copy p,
.license-section p,
.plan-detail {
  color: var(--muted);
  font-size: 18px;
}

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

.pain-grid article,
.feature-list article,
.price-card,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 9px 24px rgba(16, 32, 42, 0.05);
}

.pain-grid article {
  padding: 24px;
}

.pain-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  background: #eef8f5;
}

.feature-copy {
  position: sticky;
  top: 96px;
}

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

.feature-list article {
  padding: 21px;
}

.feature-list article:nth-child(3n + 1) {
  border-top: 4px solid var(--teal);
}

.feature-list article:nth-child(3n + 2) {
  border-top: 4px solid var(--blue);
}

.feature-list article:nth-child(3n + 3) {
  border-top: 4px solid var(--amber);
}

.pricing-section {
  background: #ffffff;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  min-height: 100%;
  padding: 26px;
}

.price-card h3 {
  font-size: clamp(31px, 3.5vw, 44px);
}

.plan-name {
  width: fit-content;
  margin-bottom: 4px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--sky);
  color: #075985;
  font-weight: 900;
}

.pro-card {
  border-color: #0f766e;
  background: #f0fdfa;
  box-shadow: var(--shadow);
}

.pro-card .plan-name {
  background: #d9f99d;
  color: #365314;
}

ul {
  margin: 0;
  padding-left: 22px;
}

li {
  margin: 8px 0;
}

.license-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
}

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

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.steps strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--cream);
  color: #92400e;
}

.faq-section {
  background: #ffffff;
}

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

.faq-grid details {
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 850;
}

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

.final-cta {
  padding: 80px clamp(20px, 5vw, 88px);
  background: #071722;
  color: #ffffff;
}

.final-cta .eyebrow {
  color: #7dd3fc;
}

.final-cta h2 {
  max-width: 860px;
}

.final-cta .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.contact-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #ffffff;
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.final-cta .secondary-action {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
}

@media (max-width: 1060px) {
  .hero {
    background-position: 48% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(247, 251, 250, 0.98) 0%, rgba(247, 251, 250, 0.94) 46%, rgba(247, 251, 250, 0.55) 100%);
  }

  .proof-band,
  .pain-grid,
  .feature-section,
  .pricing-grid,
  .license-section,
  .faq-grid,
  .final-cta .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 360px;
  }

  .feature-copy {
    position: static;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .site-header nav {
    display: none;
  }

  .brand strong {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 12px;
  }

  .hero {
    align-items: end;
    min-height: 92vh;
    padding: 104px 18px 34px;
    background-position: 57% center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(247, 251, 250, 0.68) 0%, rgba(247, 251, 250, 0.96) 38%, #f7fbfa 100%);
  }

  h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions a {
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

  .final-cta {
    padding: 58px 18px;
  }

  .contact-card {
    max-width: none;
  }

  .price-card,
  .pain-grid article,
  .feature-list article {
    padding: 18px;
  }
}
