:root {
  --ink: #111722;
  --muted: #667085;
  --line: #dce4ef;
  --soft: #f4f8fc;
  --blue: #2678e8;
  --blue-dark: #0757bf;
  --lime: #c8ff3d;
  --green: #31b66c;
  --orange: #f18b35;
  --red: #ef6461;
  --panel: #ffffff;
  --dark: #071018;
  --dark-2: #0c1a28;
  --shadow: 0 24px 60px rgba(17, 23, 34, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 16, 24, 0.86);
  color: #fff;
  backdrop-filter: blur(16px);
}

.top-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  background: linear-gradient(90deg, #2678e8, #b92f86);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.site-header.light {
  position: sticky;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.site-header.light nav {
  color: #3a4657;
}

.site-header.light .header-cta {
  border-color: rgba(38, 120, 232, 0.3);
  color: var(--blue-dark);
}

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

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.site-header nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-header nav a:hover,
.footer a:hover {
  color: var(--lime);
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid rgba(200, 255, 61, 0.45);
  border-radius: 8px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.home-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(18px, 5vw, 72px);
  background: #111722;
  color: #fff;
}

.home-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 34, 0.92), rgba(17, 23, 34, 0.52)),
    radial-gradient(circle at 72% 25%, rgba(200, 255, 61, 0.18), transparent 28%),
    linear-gradient(135deg, #0b1420, #132d48);
}

.desk-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.65;
}

.desk-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.card-a {
  width: 260px;
  height: 150px;
  right: 8%;
  top: 24%;
}

.card-b {
  width: 190px;
  height: 120px;
  right: 28%;
  bottom: 16%;
  background: rgba(38, 120, 232, 0.18);
}

.card-c {
  width: 110px;
  height: 110px;
  right: 15%;
  bottom: 25%;
  background: rgba(200, 255, 61, 0.14);
}

.home-hero-content {
  position: relative;
  max-width: 980px;
}

.home-hero h1 {
  max-width: 1080px;
}

.home-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.button.ghost.dark {
  border-color: rgba(17, 23, 34, 0.2);
  color: var(--ink);
  background: #fff;
}

.home-hero .button.ghost.dark {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: transparent;
}

.catalog-band,
.why-band {
  padding: 90px clamp(18px, 5vw, 72px);
  background: #fff;
}

.category-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 18px;
}

.category-row h3 {
  margin-bottom: 0;
  font-size: clamp(25px, 3vw, 36px);
}

.category-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-row a,
.product-card a {
  color: var(--blue-dark);
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card img,
.placeholder-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.placeholder-icon {
  display: grid;
  place-items: center;
  background: #e8f1ff;
  color: var(--blue);
  font-weight: 950;
}

.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-card.coming {
  box-shadow: none;
  background: #f9fbfd;
}

.product-card.coming span:last-child {
  color: var(--muted);
  font-weight: 900;
}

.product-hero {
  padding: 92px clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #2f6aee, #b82d83);
  color: #fff;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
}

.product-title-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 950;
}

.product-title-row img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.product-copy h1 {
  font-size: clamp(48px, 6vw, 78px);
}

.small-note {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.video-shell {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(7, 16, 24, 0.72), rgba(7, 16, 24, 0.86)),
    radial-gradient(circle at center, rgba(38, 120, 232, 0.56), transparent 40%),
    #071018;
}

.video-frame img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
}

.video-frame h2 {
  margin-top: 18px;
  font-size: 28px;
}

.video-frame p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.play-button {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #ff1f1f;
  box-shadow: 0 12px 40px rgba(255, 31, 31, 0.38);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.payment-note {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px) 0;
  background:
    linear-gradient(140deg, rgba(7, 16, 24, 0.92), rgba(7, 16, 24, 0.76)),
    radial-gradient(circle at 60% 30%, rgba(38, 120, 232, 0.42), transparent 34%),
    var(--dark);
  color: #fff;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.88;
}

.grid-scan {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.flow-line {
  position: absolute;
  height: 3px;
  width: 42vw;
  min-width: 360px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.7;
  transform: rotate(-18deg);
}

.flow-one {
  right: -8vw;
  top: 18%;
}

.flow-two {
  right: 18vw;
  top: 42%;
  opacity: 0.35;
}

.flow-three {
  left: -12vw;
  bottom: 20%;
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  max-width: 850px;
  padding-bottom: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.94;
  font-weight: 900;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 34px rgba(38, 120, 232, 0.28);
}

.button.secondary {
  background: var(--ink);
  color: #fff;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button.ghost.light {
  border-color: rgba(255, 255, 255, 0.38);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.command-surface {
  position: relative;
  align-self: end;
  width: min(1100px, 100%);
  margin: 0 auto -1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(244, 248, 252, 0.97);
  color: var(--ink);
  box-shadow: 0 -20px 90px rgba(0, 0, 0, 0.35);
}

.surface-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9db2c8;
}

.status {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e3f8df;
  color: #297d35;
  font-size: 12px;
  font-weight: 900;
}

.surface-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 260px;
}

.surface-menu {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.surface-menu span {
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.surface-menu .active {
  background: var(--blue);
  color: #fff;
}

.surface-panel {
  padding: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-row div,
.message-preview,
.action-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric-row div {
  padding: 16px;
}

.metric-row b {
  display: block;
  font-size: 30px;
}

.metric-row span,
.label {
  color: var(--muted);
  font-size: 13px;
}

.message-preview {
  margin-top: 12px;
  padding: 16px;
}

.message-preview p {
  margin: 8px 0 0;
  font-weight: 800;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.action-row span {
  padding: 10px 12px;
  color: var(--blue-dark);
  font-weight: 900;
}

.band {
  padding: 90px clamp(18px, 5vw, 72px);
}

.intro,
.install {
  background: #fff;
}

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

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

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

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

.feature-grid article,
.steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-grid p,
.steps p,
.price-card p,
.final-cta p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--blue);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-radius: 999px;
}

.feature-icon.send::before,
.feature-icon.action::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 11px;
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 52%);
}

.feature-icon.csv::after {
  inset: 9px 11px;
  border-radius: 2px;
  border-color: #fff;
}

.feature-icon.history::after {
  border-color: #fff;
  border-right-color: transparent;
}

.pricing-band {
  background: var(--soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 23, 34, 0.05);
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 24px 54px rgba(38, 120, 232, 0.16);
}

.price-card.lifetime {
  background: #fffef8;
}

.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e8f1ff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.badge.dark {
  background: var(--ink);
  color: var(--lime);
}

.price-top {
  min-height: 165px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 12px 0 10px;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 950;
}

.price span {
  font-size: 24px;
}

.price small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.feature-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.42;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.feature-list .yes::before {
  content: "✓";
  background: var(--green);
}

.feature-list .no::before {
  content: "×";
  background: var(--red);
}

.feature-list .warn::before {
  content: "!";
  background: var(--orange);
}

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

.steps span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 950;
}

.final-cta {
  text-align: center;
  background: var(--dark);
  color: #fff;
}

.final-cta p {
  max-width: 620px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.centered {
  justify-content: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #050b11;
  color: #fff;
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.footer div {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .feature-grid,
  .pricing-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .site-header.light nav {
    overflow-x: auto;
  }

  .home-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .surface-body,
  .metric-row,
  .feature-grid,
  .pricing-grid,
  .steps,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-row {
    align-items: start;
    flex-direction: column;
  }

  .product-card {
    grid-template-columns: 48px 1fr;
    min-height: auto;
  }

  .product-card img,
  .placeholder-icon {
    width: 42px;
    height: 42px;
  }

  .product-hero {
    padding-top: 64px;
  }

  .video-frame {
    min-height: 280px;
  }

  .surface-menu {
    grid-auto-flow: column;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-top {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .header-cta {
    width: 100%;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }
}
