:root {
  color-scheme: light;
  --ink: #081a2f;
  --ink-soft: #28425f;
  --muted: #63748a;
  --line: #dbe5f0;
  --surface: #ffffff;
  --surface-2: #f5f9fc;
  --teal: #13b8a6;
  --teal-dark: #0f766e;
  --blue: #2563eb;
  --sky: #38bdf8;
  --amber: #f59e0b;
  --shadow: 0 24px 70px rgba(8, 26, 47, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 240, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(8, 26, 47, 0.18);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.64rem 0.85rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--ink);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.alt {
  background: var(--surface-2);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 54%, #eef8fb 100%);
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 4rem;
  padding: 64px 0 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.lead {
  max-width: 690px;
  margin-top: 1.3rem;
  color: #36516e;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.08rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(8, 26, 47, 0.18);
}

.button.teal {
  color: white;
  background: var(--teal-dark);
  box-shadow: 0 14px 34px rgba(19, 184, 166, 0.22);
}

.button.outline {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.light {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-stage {
  position: relative;
}

.suite-card {
  overflow: hidden;
  border: 1px solid rgba(219, 229, 240, 0.95);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.suite-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #081a2f;
  color: white;
}

.window-dots {
  display: flex;
  gap: 0.35rem;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.suite-body {
  padding: 1.15rem;
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.mini-product {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.mini-icon.teal {
  background: var(--teal-dark);
}

.mini-product strong {
  display: block;
  line-height: 1.2;
}

.mini-product span {
  color: var(--muted);
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: #eaf7ff;
  color: #075985;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.stat {
  padding: 1rem;
  border-radius: 8px;
  background: #eef8fb;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.83rem;
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.product-card,
.feature-card,
.price-card,
.step-card,
.sample-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.product-card {
  display: grid;
  min-height: 480px;
  padding: 1.35rem;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(8, 26, 47, 0.08);
}

.product-card.dark {
  background: #081a2f;
  border-color: #123452;
}

.product-card.dark h3,
.product-card.dark p,
.product-card.dark li {
  color: white;
}

.product-card.dark .product-card-top span,
.product-card.dark .muted,
.product-card.dark .card-list li {
  color: #c9d8e8;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.product-title .mini-icon {
  width: 42px;
  height: 42px;
}

.card-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  color: var(--ink-soft);
}

.card-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.mock-panel {
  margin-top: 1.6rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f8fbff;
  overflow: hidden;
}

.mock-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  background: white;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.task-lines,
.cover-preview {
  padding: 0.85rem;
  display: grid;
  gap: 0.65rem;
}

.task-line {
  display: grid;
  grid-template-columns: 14px 1fr 70px;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: 8px;
  background: white;
}

.checkbox {
  width: 14px;
  height: 14px;
  border: 2px solid var(--teal);
  border-radius: 4px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: #cfe2f3;
}

.bar.short {
  width: 60%;
}

.tag {
  justify-self: end;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 0.72rem;
  font-weight: 900;
}

.cover-card {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.cover-art {
  min-height: 126px;
  display: grid;
  place-items: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(8, 26, 47, 0.92), rgba(15, 118, 110, 0.9)),
    linear-gradient(90deg, var(--blue), var(--teal));
  font-weight: 900;
  text-align: center;
  padding: 1rem;
}

.cover-copy {
  padding: 0.85rem;
}

.cover-copy strong {
  display: block;
}

.cover-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.feature-card,
.step-card,
.price-card,
.sample-card {
  padding: 1.15rem;
}

.feature-number,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #e6fbf8;
  color: var(--teal-dark);
  font-weight: 900;
}

.feature-card p,
.step-card p,
.price-card p,
.sample-card p {
  margin-top: 0.65rem;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: #f7fbff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

tr:last-child td {
  border-bottom: 0;
}

.cta-band {
  background: #081a2f;
  color: white;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2,
.cta-band p {
  color: white;
}

.cta-band p {
  color: #c9d8e8;
  margin-top: 0.8rem;
}

.footer {
  padding: 36px 0;
  background: #051222;
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer a,
.footer p {
  color: #c9d8e8;
}

.product-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(19, 184, 166, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 100%);
}

.product-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 4rem;
  align-items: center;
  padding: 60px 0 78px;
}

.domain-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.domain-chip {
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.workspace-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-toolbar {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #081a2f;
  color: white;
}

.preview-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 360px;
}

.preview-side {
  padding: 1rem;
  background: #f4f9fd;
  border-right: 1px solid var(--line);
}

.side-item {
  height: 34px;
  border-radius: 8px;
  margin-bottom: 0.65rem;
  background: white;
  border: 1px solid var(--line);
}

.side-item.active {
  background: #dffbf7;
  border-color: #b5eee6;
}

.preview-main {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.preview-task {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview-task strong {
  display: block;
  margin-bottom: 0.35rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: start;
}

.price-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card.highlight {
  border-color: #9ee8df;
  box-shadow: 0 18px 44px rgba(19, 184, 166, 0.14);
}

.price {
  display: block;
  margin: 1rem 0 0.35rem;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.large-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.large-preview .cover-art {
  min-height: 240px;
}

.form-preview {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.field {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  background: #f8fbff;
}

.field span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field strong {
  display: block;
}

@media (max-width: 900px) {
  .hero-grid,
  .product-hero-grid,
  .product-detail-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .product-hero-grid {
    min-height: auto;
    gap: 2.4rem;
  }

  .product-grid,
  .feature-grid,
  .price-grid,
  .step-grid,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 64px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .product-hero-grid {
    padding: 42px 0 58px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .mini-product {
    grid-template-columns: 42px 1fr;
  }

  .mini-product .pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
