:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --ink: #10273a;
  --muted: #5a6a77;
  --card: rgba(255, 255, 255, 0.9);
  --border: rgba(16, 39, 58, 0.1);
  --panel: #0f2436;
  --panel-ink: #ecf7fb;
  --teal: #2f9c95;
  --orange: #f08e45;
  --shadow: 0 24px 56px rgba(17, 37, 56, 0.12);
  font-family: "Avenir Next", "Segoe UI Variable", "Helvetica Neue", sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(47, 156, 149, 0.18), transparent 26%),
    radial-gradient(circle at left 20%, rgba(240, 142, 69, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  color: var(--ink);
}

body {
  line-height: 1.55;
}

a {
  color: inherit;
}

.home-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.home-brand-header,
.home-review-ribbon,
.home-social-entry-bar,
.home-guided-demo {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.home-brand-header {
  display: grid;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 30px;
}

.home-brand-header__utility {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.home-brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(16, 39, 58, 0.06);
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-brand-lockup {
  display: grid;
  gap: 3px;
}

.home-brand-lockup__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-brand-lockup__name {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.home-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--panel) 0%, #153855 100%);
  color: #f4fbfd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-brand-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-nav-pill,
.home-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.home-nav-pill--brand,
.home-social-pill--brand {
  background: rgba(16, 39, 58, 0.06);
}

.home-nav-pill--product,
.home-social-pill--product {
  background: rgba(47, 156, 149, 0.12);
  color: #1f6c67;
}

.home-nav-pill--email,
.home-social-pill--email {
  background: rgba(240, 142, 69, 0.12);
  color: #9d5316;
}

.home-review-ribbon,
.home-social-entry-bar,
.home-guided-demo {
  border-radius: 28px;
  margin-top: 18px;
  padding: 18px 22px;
}

.home-review-ribbon {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.home-review-ribbon__label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-review-ribbon__viewport {
  overflow: hidden;
}

.home-review-ribbon__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: home-review-marquee 30s linear infinite;
}

.home-review-ribbon__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(16, 39, 58, 0.04);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.home-review-ribbon__stars {
  color: var(--orange);
  letter-spacing: 0.12em;
}

.home-social-entry-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: center;
}

.home-social-entry-bar__copy strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.home-social-entry-bar__copy span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.home-social-entry-bar__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.topbar,
.hero-panel,
.product-card,
.info-card,
.cta-panel {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.topbar,
.hero-panel,
.section-block,
.cta-panel {
  border-radius: 30px;
}

.topbar,
.hero-panel,
.product-card,
.info-card,
.cta-panel {
  background: var(--card);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 14px);
  gap: 5px;
  padding: 7px;
  border-radius: 18px;
  background: linear-gradient(180deg, #163650 0%, #102638 100%);
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.brand-dot--a {
  background: #f6fbfd;
}

.brand-dot--b {
  background: var(--teal);
}

.brand-dot--c {
  background: var(--orange);
  grid-column: 1 / span 2;
  width: 33px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.brand-copy span,
.topnav a,
.footer {
  color: var(--muted);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.topnav a {
  text-decoration: none;
  font-size: 14px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-top: 18px;
  padding: 30px;
}

.eyebrow,
.product-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(47, 156, 149, 0.12);
  color: #1f6c67;
}

.eyebrow--muted {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(236, 247, 251, 0.82);
}

.hero-panel h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  max-width: 10ch;
}

.lead {
  margin: 18px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
}

.btn--primary {
  background: linear-gradient(135deg, var(--panel) 0%, #153855 100%);
  color: #f4fbfd;
}

.btn--secondary {
  background: rgba(240, 142, 69, 0.12);
  color: #9d5316;
}

.btn--ghost {
  border: 1px solid rgba(236, 247, 251, 0.2);
  color: var(--panel-ink);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signal-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 39, 58, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.hero-panel__side {
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 39, 58, 0.05) 0%, rgba(16, 39, 58, 0.02) 100%);
}

.mini-card--accent {
  background:
    radial-gradient(circle at top right, rgba(47, 156, 149, 0.32), transparent 40%),
    linear-gradient(180deg, #0f2436 0%, #173653 100%);
  color: var(--panel-ink);
}

.mini-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.8;
}

.mini-card__title {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.mini-card p {
  margin: 12px 0 0;
  color: inherit;
  opacity: 0.84;
}

.section-block {
  margin-top: 18px;
  padding: 28px;
  background: transparent;
}

.section-heading span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 10px 0 0;
  max-width: 15ch;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-grid,
.method-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.product-card,
.info-card {
  border-radius: 28px;
  padding: 22px;
}

.product-card h3,
.info-card h3 {
  margin: 14px 0 0;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.product-card p,
.product-card li,
.info-card p,
.cta-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.product-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.product-card li + li {
  margin-top: 8px;
}

.product-status {
  background: rgba(16, 39, 58, 0.08);
  color: var(--ink);
}

.product-card--live .product-status {
  background: rgba(47, 156, 149, 0.14);
  color: #1f6c67;
}

.product-card--build .product-status {
  background: rgba(240, 142, 69, 0.14);
  color: #a45a1a;
}

.product-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  text-decoration: none;
  font-weight: 700;
}

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

.section-block--split {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 18px;
  margin-top: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(47, 156, 149, 0.3), transparent 36%),
    linear-gradient(180deg, #102638 0%, #173653 100%);
  color: var(--panel-ink);
}

.cta-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-guided-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(47, 156, 149, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.66) 100%);
}

.home-guided-demo h3 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-guided-demo__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.home-guided-demo__list li {
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 4px;
  font-size: 13px;
}

@keyframes home-review-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .home-brand-header__utility,
  .home-social-entry-bar,
  .home-guided-demo,
  .hero-panel,
  .product-grid,
  .method-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel h1,
  .section-heading h2,
  .cta-panel h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .home-shell {
    width: min(100vw - 20px, 1180px);
    padding: 12px 0 28px;
  }

  .topbar,
  .home-brand-header,
  .home-review-ribbon,
  .home-social-entry-bar,
  .home-guided-demo,
  .hero-panel,
  .section-block,
  .cta-panel,
  .product-card,
  .info-card {
    border-radius: 24px;
  }

  .topbar,
  .home-brand-header,
  .home-review-ribbon,
  .home-social-entry-bar,
  .home-guided-demo,
  .hero-panel,
  .section-block,
  .cta-panel {
    padding: 18px;
  }

  .home-brand-header__nav,
  .home-social-entry-bar__links {
    grid-template-columns: 1fr;
  }

  .home-brand-header__nav {
    display: grid;
  }

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

  .lead {
    font-size: 16px;
  }
}
