:root {
  --bg: #1f1f23;
  --bg2: #161618;
  --text: #f5f5f7;
  --muted: #b3b3bd;
  --border: #3a3a44;
  --accent: #5b5fc7;
  /* Teams-ish purple */
  --accent2: #8b5cf6;
  /* subtle gradient companion */
  --shadow: 0 16px 40px rgba(0, 0, 0, .45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 700px at 30% -10%, rgba(91, 95, 199, .45), transparent 55%),
    radial-gradient(900px 700px at 85% 10%, rgba(139, 92, 246, .35), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(22, 22, 24, .70);
  border-bottom: 1px solid rgba(58, 58, 68, .6);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.logo__text {
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 14px;
  opacity: .95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--muted);
  font-size: 14px;
  transition: color .15s ease;
}

.nav__link:hover {
  color: var(--text);
}

.nav__button {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(91, 95, 199, .18);
  border: 1px solid rgba(91, 95, 199, .55);
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, background .15s ease;
}

.nav__button:hover {
  transform: translateY(-1px);
  background: rgba(91, 95, 199, .25);
}

.hero {
  padding: 74px 0 44px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 650;
  border: 1px solid rgba(58, 58, 68, .85);
  background: rgba(37, 37, 43, .75);
  transition: transform .15s ease, border .15s ease, background .15s ease;
  user-select: none;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(91, 95, 199, .65);
}

.button--primary {
  background: linear-gradient(135deg, rgba(91, 95, 199, .95), rgba(139, 92, 246, .85));
  border-color: rgba(91, 95, 199, .65);
}

.button--primary:hover {
  background: linear-gradient(135deg, rgba(91, 95, 199, 1), rgba(139, 92, 246, .95));
}

.button--ghost {
  background: transparent;
  color: var(--text);
}

.fineprint {
  margin: 8px 0 0;
  color: rgba(179, 179, 189, .92);
  font-size: 13px;
}

.hero-card {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(37, 37, 43, .9), rgba(25, 25, 28, .85));
  border: 1px solid rgba(58, 58, 68, .8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card__top {
  display: flex;
  gap: 10px;
  padding: 18px 18px 0;
}

.pill {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245, 245, 247, .08);
  border: 1px solid rgba(245, 245, 247, .10);
  color: rgba(245, 245, 247, .9);
}

.pill--accent {
  background: rgba(91, 95, 199, .18);
  border-color: rgba(91, 95, 199, .55);
}

.hero-card__body {
  position: relative;
  padding: 18px;
  height: 290px;
}

.bubble {
  position: absolute;
  width: 230px;
  height: 150px;
  border-radius: 26px;
  border: 2px solid rgba(245, 245, 247, .85);
  opacity: .9;
}

.bubble--left {
  left: 28px;
  top: 38px;
}

.bubble--right {
  right: 28px;
  top: 82px;
  opacity: .75;
}

.bubble::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(245, 245, 247, .85);
  border-left: none;
  border-top: none;
  border-radius: 0 0 18px 0;
  bottom: -10px;
  left: 34px;
  transform: rotate(12deg);
  background: transparent;
}

.bubble--right::after {
  left: auto;
  right: 36px;
  transform: rotate(-10deg);
  opacity: .9;
}

.hero-card__key {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(22, 22, 24, .85);
  border: 1px solid rgba(58, 58, 68, .85);
}

.key-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.key-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: .10em;
  color: rgba(245, 245, 247, .95);
}

.hero-card__hint {
  padding: 0 18px 18px;
  color: rgba(179, 179, 189, .92);
  font-size: 13px;
}

.section {
  padding: 54px 0;
}

.section--tight {
  padding: 42px 0 54px;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0 0 26px;
  color: var(--muted);
  max-width: 70ch;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(37, 37, 43, .75);
  border: 1px solid rgba(58, 58, 68, .80);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.step__text h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step__text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step__imgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.step__imgs .screenshot {
  flex: 1;
}

.step__imgs .step__img {
  width: 100%;
  object-fit: cover;
}

.screenshot {
  cursor: zoom-in;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}

.screenshot:hover {
  box-shadow: 0 0 0 2px rgba(91, 95, 199, .65);
}

.step__img {
  border-radius: 14px;
  border: 1px solid rgba(58, 58, 68, .85);
  background: rgba(0, 0, 0, .25);
  transition: transform .25s cubic-bezier(.22, .68, 0, 1.2);
}

/* Expanded / lightbox state */
.screenshot--expanded {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 15, 18, .88);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
  border-radius: 0;
  overflow: auto;
  animation: scr-fadein .18s ease;
}

.screenshot--expanded .step__img {
  width: 100%;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(58, 58, 68, .85);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .7);
  cursor: zoom-out;
  transition: none;
}

@keyframes scr-fadein {
  from {
    opacity: 0;
    transform: scale(.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pricing {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: stretch;
}

.pricing__card {
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(91, 95, 199, .22), rgba(37, 37, 43, .75));
  border: 1px solid rgba(91, 95, 199, .55);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .30);
}

.pricing__price {
  font-size: 40px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.pricing__unit {
  font-size: 14px;
  font-weight: 650;
  color: rgba(245, 245, 247, .9);
  margin-left: 6px;
}

.pricing__desc {
  color: var(--muted);
  margin-top: 6px;
  font-size: 14px;
}

.pricing__notes {
  border-radius: var(--radius);
  background: rgba(37, 37, 43, .55);
  border: 1px solid rgba(58, 58, 68, .80);
  padding: 18px 18px;
}

.pricing__notes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.pricing__notes li {
  margin: 8px 0;
}

.support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.support__card {
  border-radius: var(--radius);
  background: rgba(37, 37, 43, .65);
  border: 1px solid rgba(58, 58, 68, .80);
  padding: 18px;
  transition: transform .15s ease, border .15s ease, background .15s ease;
}

.support__card:hover {
  transform: translateY(-1px);
  border-color: rgba(91, 95, 199, .60);
  background: rgba(37, 37, 43, .75);
}

.support__label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support__value {
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  margin-top: 30px;
  border-top: 1px solid rgba(58, 58, 68, .65);
  color: rgba(179, 179, 189, .92);
  font-size: 13px;
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__right {
    order: -1;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav {
    display: none;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}