:root {
  /* Softer “night” palette: still premium, less dashboardy */
  --bg: #070a12;
  --ink: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.58);

  /* Surfaces */
  --glass: rgba(255, 255, 255, 0.055);
  --glass2: rgba(255, 255, 255, 0.075);
  --stroke: rgba(255, 255, 255, 0.11);

  /* Accent */
  --accent: #6d7cff; /* lavender-blue */
  --accentWarm: #facc15; /* warm highlight */
  --rose: rgba(244, 114, 182, 0.12);
  --mint: rgba(16, 185, 129, 0.12);

  --shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  --r: 18px;
  --r2: 26px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  /* background:
    radial-gradient(
      1100px 700px at 20% 10%,
      rgba(109, 124, 255, 0.24),
      transparent 58%
    ),
    radial-gradient(
      900px 650px at 88% 25%,
      rgba(250, 204, 21, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 55% 110%,
      rgba(16, 185, 129, 0.1),
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 5% 80%,
      rgba(244, 114, 182, 0.1),
      transparent 60%
    ),
    var(--bg); */
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(109, 124, 255, 0.95);
  outline-offset: 3px;
  border-radius: 12px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar: lighter + friendlier */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to bottom,
    rgba(7, 10, 18, 0.8),
    rgba(7, 10, 18, 0.45)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}
.logo {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(109, 124, 255, 1),
    rgba(250, 204, 21, 0.85)
  );
  box-shadow: 0 16px 36px rgba(109, 124, 255, 0.18);
}
.brand .name {
  font-weight: 780;
  letter-spacing: 0.2px;
}
.brand .tagline {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav {
  display: none;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover {
  color: var(--ink);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px; /* softer */
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.17);
}
.btn.primary {
  border-color: rgba(109, 124, 255, 0.55);
  background: linear-gradient(
    180deg,
    rgba(109, 124, 255, 0.95),
    rgba(109, 124, 255, 0.72)
  );
  box-shadow: 0 18px 44px rgba(109, 124, 255, 0.16);
}
.btn.primary:hover {
  background: linear-gradient(
    180deg,
    rgba(109, 124, 255, 1),
    rgba(109, 124, 255, 0.78)
  );
}

/* Hero */
header.hero {
  padding: 58px 0 28px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
}
.pill b {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.highlight {
  color: var(--accentWarm);
}

.subhead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.experience-line {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}
.experience-line span {
  color: var(--muted);
  font-weight: 520;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Swap “dashboard chips” for softer “story” bullets */
.story {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}
.story-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(250, 204, 21, 0.9);
  box-shadow: 0 10px 20px rgba(250, 204, 21, 0.12);
  flex: 0 0 auto;
}
.story-item strong {
  display: block;
  font-size: 14px;
}
.story-item small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: 13px;
}

.fineprint {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
}

/* Preview card: more “soft product” and less “dashboard” */
.preview {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
  /* overflow: hidden; */
}
.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.preview-body {
  padding: 14px;
}

.frame {
  aspect-ratio: 16/11;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      650px 450px at 50% 0%,
      rgba(109, 124, 255, 0.22),
      transparent 62%
    ),
    radial-gradient(
      650px 450px at 0% 100%,
      rgba(244, 114, 182, 0.12),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36));
  position: relative;
  /* overflow: hidden; */
  display: grid;
  place-items: center;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlay-card {
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.58);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 14px 14px;
  text-align: center;
}
.overlay-card .title {
  font-weight: 850;
  font-size: 16px;
}
.overlay-card .hint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.quote {
  margin: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

/* Sections */
section {
  padding: 34px 0;
}
.section {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.lead {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 72ch;
}

/* Experience steps (more narrative) */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.step {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.14);
}
.step small {
  color: var(--muted2);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.step h3 {
  margin: 8px 0 6px;
  font-size: 16px;
}
.step p {
  margin: 0;
  color: var(--muted);
}

/* Occasions (SEO + friendly) */
.occasions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.tag {
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.price {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(109, 124, 255, 0.18),
    rgba(255, 255, 255, 0.03)
  );
}
.price h3 {
  margin: 0 0 6px;
}
.big {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 6px 0 10px;
}
.big span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 650;
  margin-left: 6px;
}
ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
li {
  margin: 8px 0;
}

/* Bottom CTA */
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a:hover {
  color: var(--ink);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
  }
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .occasions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
