:root {
  --ink: #161927;
  --muted: #686b78;
  --paper: #f5f4ed;
  --line: rgba(22, 25, 39, 0.14);
  --blue: #2f5cff;
  --blue-soft: #dce4ff;
  --lime: #d8ff6a;
  --violet: #8c6cff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
main { min-height: 100vh; position: relative; overflow: hidden; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}
.ambient-one {
  width: 620px;
  height: 620px;
  right: -310px;
  top: 90px;
  background: radial-gradient(circle, rgba(47, 92, 255, 0.18), transparent 70%);
}
.ambient-two {
  width: 420px;
  height: 420px;
  left: -250px;
  bottom: 30px;
  background: radial-gradient(circle, rgba(216, 255, 106, 0.34), transparent 70%);
}

.site-header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.035em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--ink);
  color: var(--lime);
  font-size: 13px;
  letter-spacing: -0.02em;
  transform: rotate(-3deg);
}
.domain-pair {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}
.domain-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.78fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
  padding-block: 72px 84px;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 690px; }
.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px 9px 11px;
  background: rgba(255, 255, 255, 0.56);
  color: #4e5160;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 92, 255, 0.12);
}
.eyebrow {
  margin: 44px 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 6.1vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.075em;
  font-weight: 780;
}
h1 span { color: var(--blue); }
.lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #4c4f5b;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}
.launch-note {
  width: min(100%, 560px);
  margin-top: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 17px 2px;
}
.launch-label {
  border-radius: 7px;
  padding: 6px 8px;
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.launch-text { font-size: 14px; font-weight: 680; }
.launch-arrow { color: var(--blue); font-size: 21px; }

.product-preview {
  position: relative;
  border: 1px solid rgba(22, 25, 39, 0.2);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 36px 90px rgba(34, 39, 71, 0.14);
  transform: rotate(1.4deg);
  backdrop-filter: blur(16px);
}
.product-preview::before {
  content: '';
  position: absolute;
  width: 76%;
  height: 88%;
  inset: 10% auto auto 14%;
  border-radius: 28px;
  background: var(--blue);
  z-index: -1;
  transform: rotate(5deg);
  opacity: 0.11;
}
.preview-topline,
.preview-title,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.preview-topline > div { display: grid; gap: 4px; }
.preview-kicker,
.preview-title span,
.preview-footer span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.preview-topline strong { font-size: 18px; letter-spacing: -0.03em; }
.preview-badge {
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}
.preview-title {
  justify-content: flex-start;
  gap: 13px;
  margin: 24px 0;
  border-block: 1px solid var(--line);
  padding-block: 18px;
}
.preview-title > div { display: grid; gap: 5px; }
.preview-title strong { font-size: 16px; }
.preview-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--lime) !important;
  font-size: 18px !important;
}
.stage-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px;
  background: rgba(247, 247, 243, 0.7);
}
.stage-number,
.stage-check {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}
.stage-blue .stage-number { background: var(--blue-soft); color: var(--blue); }
.stage-lime .stage-number { background: var(--lime); color: var(--ink); }
.stage-violet .stage-number { background: #e8e1ff; color: var(--violet); }
.stage-copy { display: grid; gap: 3px; }
.stage-copy strong { font-size: 12px; }
.stage-copy small { color: var(--muted); font-size: 10px; }
.stage-check { background: #eef0eb; color: #74786d; }
.preview-footer {
  align-items: flex-end;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.preview-footer strong { font-size: 12px; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.feature { min-height: 190px; padding: 30px 34px 34px 0; }
.feature + .feature { border-left: 1px solid var(--line); padding-left: 34px; }
.feature-number { color: var(--blue); font-size: 11px; font-weight: 800; }
.feature h2 { margin: 26px 0 8px; font-size: 20px; letter-spacing: -0.035em; }
.feature p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.site-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--muted);
  font-size: 11px;
}
.disclaimer { text-align: right; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 72px; padding-top: 58px; }
  .hero-copy { max-width: 760px; }
  .product-preview { width: min(100%, 560px); justify-self: center; }
}

@media (max-width: 650px) {
  .shell { width: min(100% - 32px, 1180px); }
  .site-header { height: 80px; }
  .domain-pair { display: none; }
  .hero { min-height: auto; padding-block: 46px 66px; }
  .eyebrow { margin-top: 34px; }
  h1 { font-size: clamp(48px, 14vw, 66px); }
  .lead { font-size: 17px; }
  .product-preview { border-radius: 21px; padding: 17px; transform: rotate(0.6deg); }
  .feature-strip { grid-template-columns: 1fr; }
  .feature { min-height: 0; padding: 28px 0; }
  .feature + .feature { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
  .feature h2 { margin-top: 17px; }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-block: 28px;
  }
  .site-footer p { margin: 0; }
  .disclaimer { max-width: 340px; text-align: left; line-height: 1.45; }
}

@media (prefers-reduced-motion: no-preference) {
  .product-preview { animation: settle 700ms cubic-bezier(.2,.7,.2,1) both; }
  .hero-copy { animation: appear 650ms 80ms cubic-bezier(.2,.7,.2,1) both; }
}
@keyframes appear {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes settle {
  from { opacity: 0; transform: translateY(18px) rotate(2.2deg); }
  to { opacity: 1; transform: translateY(0) rotate(1.4deg); }
}
@media (max-width: 650px) and (prefers-reduced-motion: no-preference) {
  @keyframes settle {
    from { opacity: 0; transform: translateY(18px) rotate(1.2deg); }
    to { opacity: 1; transform: translateY(0) rotate(0.6deg); }
  }
}
