:root {
  color-scheme: light;
  --navy: #0f172a;
  --navy-deep: #020617;
  --blue: #2563eb;
  --blue-soft: #eff6ff;
  --teal: #14b8a6;
  --ink: #111827;
  --muted: #64748b;
  --line: #d9e2ec;
  --page: #f6f9fb;
  --panel: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 26px;
  height: 72px;
  padding: 0 38px;
  border-bottom: 1px solid rgba(217, 226, 236, 0.88);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 21px;
  font-weight: 900;
  color: var(--navy);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 80% 62%, var(--teal) 0 4px, transparent 4.5px),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 7px;
  height: 26px;
  border-radius: 999px;
  background: #f8fafc;
  box-shadow: 15px 0 0 #f8fafc;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 30px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2c7dff, var(--blue));
  transform: translateX(-50%) rotate(-10deg);
}

.brand-mark.mini {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand-mark.mini::before {
  left: 7px;
  top: 5px;
  width: 6px;
  height: 24px;
  box-shadow: 14px 0 0 #f8fafc;
}

.brand-mark.mini::after {
  left: 17px;
  top: 16px;
  width: 27px;
  height: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--navy);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 9px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.ghost-link {
  color: #475569;
}

.primary-link {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.secondary-link {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--navy);
}

.large {
  min-height: 50px;
  padding: 0 22px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: center;
  min-height: 780px;
  padding: 120px 42px 70px;
  background:
    radial-gradient(circle at 14% 20%, rgba(37, 99, 235, 0.24), transparent 30%),
    linear-gradient(135deg, #07111f, var(--navy));
  color: #ffffff;
  overflow: hidden;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 20px 0 0;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual > img {
  width: 100%;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.product-card {
  position: absolute;
  left: -28px;
  bottom: 8px;
  width: min(520px, calc(100% - 20px));
  border: 1px solid rgba(217, 226, 236, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 18px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.product-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.product-top strong,
.product-top small {
  display: block;
}

.product-top small {
  margin-top: 2px;
  color: var(--muted);
}

.schedule-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #edf2f7;
  padding: 11px 0;
  font-size: 13px;
}

.schedule-line b {
  color: var(--blue);
}

.schedule-line i {
  border-radius: 999px;
  background: var(--blue-soft);
  padding: 5px 8px;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.metric-strip span {
  border-radius: 12px;
  background: #f8fafc;
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
}

.metric-strip b {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.platform-section,
.section,
.newsletter-section {
  padding: 78px 42px;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 38px;
  align-items: center;
  background: #ffffff;
}

.section-copy {
  max-width: 640px;
}

h2 {
  margin: 14px 0 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

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

.platform-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.platform-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.platform-grid h3,
.platform-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.platform-grid h3 {
  margin-top: 18px;
}

.platform-grid p {
  margin-bottom: 20px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}

.section-heading.row > p {
  max-width: 420px;
  margin: 0;
}

.modules-section {
  background: var(--page);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.module-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.module-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.pricing-section {
  background: #ffffff;
}

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

.price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.price-card.featured {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff, #eff6ff);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.14);
}

.price-card span {
  align-self: flex-start;
  border-radius: 999px;
  background: #eef2ff;
  padding: 7px 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 36px;
}

.price-card small {
  color: var(--muted);
  font-weight: 700;
}

.price-card p {
  flex: 1;
  margin-top: 18px;
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.price-card.featured a {
  background: var(--blue);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
  margin: 0 42px 42px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.34), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.newsletter-section h2 {
  color: #ffffff;
}

.newsletter-section p {
  color: #cbd5e1;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 14px;
  font: inherit;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
}

.newsletter-form button {
  border: 0;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 42px 40px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-brand {
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--blue);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(n + 2) svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .hero-section,
  .platform-section,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .product-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -80px auto 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .brand {
    font-size: 18px;
  }

  .ghost-link {
    display: none;
  }

  .hero-section,
  .platform-section,
  .section,
  .newsletter-section {
    padding: 96px 20px 48px;
  }

  .platform-section,
  .section {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-visual > img {
    height: 360px;
  }

  .product-card {
    margin-top: -50px;
  }

  .platform-grid,
  .module-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.row {
    display: block;
  }

  .section-heading.row > p {
    margin-top: 14px;
  }

  .newsletter-section {
    margin: 0 20px 30px;
    padding: 48px 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 20px 34px;
  }
}
