:root {
  color-scheme: light;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fdfdff;
  color: #0d0d10;
  font-family: "Outfit", "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #0d0d10; text-decoration: none; }
a:hover { color: #5b5bd6; }

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
  100% { transform: translateY(0); }
}

.page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

.hero-glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(70% 100% at 10% 0%, rgba(146,157,255,0.34) 0%, rgba(146,157,255,0) 72%),
    radial-gradient(66% 100% at 92% 0%, rgba(238,150,232,0.3) 0%, rgba(238,150,232,0) 74%),
    linear-gradient(180deg, rgba(253,253,255,0) 45%, #fdfdff 100%);
  filter: blur(8px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
.btn-dark { background: #0d0d10; color: #fff; padding: 16px 30px; font-size: 16px; }
.btn-dark:hover { background: #2a2a34; color: #fff; }
.btn-header { padding: 12px 22px; font-size: 15px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-light { background: #fff; color: #0d0d10; box-shadow: 0 6px 20px rgba(24,24,50,0.08); }
.btn-light:hover { color: #0d0d10; box-shadow: 0 8px 26px rgba(24,24,50,0.14); }
.btn-buy { align-self: flex-start; background: #fff; color: #0d0d10; padding: 16px 30px; font-size: 16px; }
.btn-buy:hover { background: #e9e9f2; color: #0d0d10; }

/* Header */
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px,4vw,56px);
  max-width: 1440px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; }
.brand-icon { height: 46px; width: 46px; border-radius: 13px; display: block; }
.nav { display: flex; align-items: center; gap: clamp(14px,2.2vw,32px); font-size: 15px; color: #3d3d47; }
.nav a { color: inherit; }
@media (max-width: 640px) {
  .nav { display: none; }
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,780px) minmax(0,1fr);
  justify-items: center;
  align-items: center;
  padding: clamp(36px,6vw,88px) clamp(20px,4vw,56px) clamp(48px,6vw,80px);
}


.specimens {
  position: relative;
  width: 100%;
  min-height: 560px;
}
@media (max-width: 1299px) {
  .specimens { display: none; }
}

.specimen {
  position: absolute;
  cursor: default;
  transition: opacity 220ms ease;
  animation-name: floaty;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.specimen:hover {
  opacity: 0.4;
  animation-play-state: paused;
}

.circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-white {
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 30px rgba(140,152,246,0.14);
}
.specimens-right .circle-white { box-shadow: 0 12px 30px rgba(232,158,226,0.14); }
.circle-dark {
  background: #0d0d10;
  color: #fff;
  box-shadow: 0 14px 34px rgba(120,132,240,0.2);
}
.specimens-right .circle-dark { box-shadow: 0 14px 34px rgba(224,132,218,0.2); }
.circle-dashed {
  border: 1px dashed #c9c9d4;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 30px rgba(140,152,246,0.14);
}
.specimens-right .circle-dashed { box-shadow: 0 12px 30px rgba(232,158,226,0.14); }

.pill {
  display: flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(140,152,246,0.14);
  font-size: 13px;
  color: #3d3d47;
}
.specimens-right .pill { box-shadow: 0 10px 24px rgba(232,158,226,0.14); }

.hero-content {
  grid-column: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(24,24,50,0.09);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.hero-content h1 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(40px,6.6vw,84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

.hero-sub {
  margin: 0;
  max-width: 560px;
  font-size: clamp(17px,1.7vw,20px);
  line-height: 1.55;
  color: #55555f;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-fineprint {
  margin: 0;
  font-size: 14px;
  color: #7b7b86;
}

/* Demo video */
.demo-section {
  position: relative;
  padding: 0 clamp(20px,4vw,56px) clamp(56px,8vw,110px);
  max-width: 1180px;
  margin: 0 auto;
}
.demo-frame {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(24,24,50,0.14);
}
.demo-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.video-poster {
  position: relative;
  cursor: pointer;
}
.video-poster-img {
  display: block;
  width: 100%;
  height: auto;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #0d0d10;
  border: none;
  box-shadow: 0 12px 30px rgba(24,24,50,0.28);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}
.video-play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent #fff;
}
.video-poster:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.06);
  background: #2a2a34;
}

/* Generic content sections */
.content-section {
  position: relative;
  padding: 0 clamp(20px,4vw,56px) clamp(56px,8vw,110px);
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow-label {
  margin: 0 0 16px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b8b96;
}
.eyebrow-dark { color: #9a9aa6; text-align: left; }

.section-title {
  margin: 0 0 clamp(32px,4.5vw,60px);
  text-align: center;
  font-weight: 600;
  font-size: clamp(32px,4.8vw,58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section-title-sm {
  margin-bottom: 20px;
  font-size: clamp(30px,4.4vw,52px);
  line-height: 1.06;
}

.grid {
  display: grid;
  gap: clamp(16px,2vw,28px);
}
.grid-3 { grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); }
.grid-3-feature { grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); }
.grid-install { grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: clamp(14px,1.6vw,20px); }

.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 34px rgba(24,24,50,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card h3 { margin: 0; font-size: 19px; font-weight: 500; }
.card p { margin: 0; font-size: 16px; line-height: 1.6; color: #55555f; }

.card-dark {
  background: #0d0d10;
  color: #fff;
  box-shadow: 0 10px 34px rgba(24,24,50,0.16);
}
.card-dark .step-num { color: #9a9aa6; }
.card-dark p { color: #c6c6d0; }

.step-num { font-size: 13px; color: #8b8b96; }
.card h3 { font-size: 21px; }

.card-mode {
  border-radius: 22px;
  padding: clamp(26px,3vw,40px);
  gap: 16px;
}
.mode-tag-row { display: flex; align-items: center; gap: 12px; }
.tag { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; }
.tag-light { background: #f2f2f6; }
.tag-dark { background: #0d0d10; color: #fff; }
.tag-caption { font-size: 14px; color: #8b8b96; }
.mode-title { font-size: clamp(22px,2.2vw,28px); font-weight: 500; letter-spacing: -0.015em; }

.grid-3-feature .card h3 { font-size: 19px; }

/* Pricing panel */
.pricing-panel {
  border-radius: 26px;
  background: #0d0d10;
  color: #fff;
  padding: clamp(32px,5vw,72px);
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: clamp(24px,3vw,56px);
  align-items: center;
}
.pricing-left { display: flex; flex-direction: column; gap: 18px; }
.price-row { display: flex; align-items: baseline; gap: 12px; }
.price { font-size: clamp(48px,7vw,84px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price-currency { font-size: 17px; color: #c6c6d0; }
.price-desc { margin: 0; font-size: 17px; line-height: 1.6; color: #c6c6d0; max-width: 420px; }
.pricing-right { display: flex; flex-direction: column; gap: 14px; font-size: 16px; line-height: 1.6; color: #c6c6d0; }
.pricing-note { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 14px; }
.pricing-link { color: #c6c6d0; text-decoration: underline; text-underline-offset: 2px; }
.pricing-link:hover { color: #fff; }

/* Install */
.install-lede {
  margin: 0 auto clamp(32px,4vw,52px);
  max-width: 640px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: #55555f;
}
.card-install {
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(24,24,50,0.06);
  gap: 10px;
}
.card-install .step-num { font-family: 'Space Grotesk', monospace; }
.card-install p { font-size: 16px; line-height: 1.55; color: #3d3d47; }

/* Footer */
.site-footer {
  position: relative;
  border-top: 1px solid #ebebf1;
  padding: 36px clamp(20px,4vw,56px);
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-logo { height: 22px; width: auto; display: block; }
.footer-tagline { margin: 0; font-size: 14px; color: #8b8b96; }
.footer-cta { font-size: 14px; color: #3d3d47; }
.footer-email { font-size: 14px; color: #8b8b96; }
