:root {
  --bg: #ffffff;
  --bg-alt: #fafafe;
  --text: #12121a;
  --muted: #606071;
  --border: rgba(18, 18, 26, 0.10);

  --purple-1: #f6f0ff;
  --purple-2: #efe3ff;
  --purple-3: #d8b8ff;
  --purple-4: #a56bff;
  --purple-5: #7c3aed;

  --shadow: 0 16px 40px rgba(18, 18, 26, 0.10);
  --shadow-soft: 0 10px 30px rgba(18, 18, 26, 0.08);

  --radius: 18px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.92; }

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

/* Background glow */
.bg-glow {
  position: fixed;
  inset: -40vh -30vw auto -30vw;
  height: 70vh;
  background:
    radial-gradient(60% 70% at 30% 30%, rgba(124, 58, 237, 0.14) 0%, rgba(124, 58, 237, 0.00) 70%),
    radial-gradient(50% 60% at 70% 40%, rgba(165, 107, 255, 0.14) 0%, rgba(165, 107, 255, 0.00) 70%);
  pointer-events: none;
  filter: blur(20px);
  z-index: -1;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, var(--purple-3), var(--purple-5));
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.18);
}

.brand__name {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.nav a { padding: 8px 10px; border-radius: 10px; }
.nav a:hover { background: rgba(124, 58, 237, 0.06); color: var(--text); }

.topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn--lg { padding: 12px 16px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
}

.btn--ghost:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  border: 1px solid rgba(124, 58, 237, 0.20);
  background: linear-gradient(135deg, #7c3aed 0%, #9f6cff 100%);
  box-shadow: 0 14px 26px rgba(124, 58, 237, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(124, 58, 237, 0.30);
}

/* Hero */
.hero {
  padding: 44px 0 18px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;

  grid-template-areas:
    "headline headline"
    "copy card";
}

.hero__headline { grid-area: headline; }
.hero__copy { grid-area: copy; }
.hero__card { grid-area: card; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.14);
  color: rgba(18, 18, 26, 0.85);
  font-size: 13px;
}

.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--purple-4), var(--purple-5));
}

h1 {
  margin: 24px 0 14px;
  font-size: 57px;
  line-height: 1.10;
  letter-spacing: -0.04em;
}

.accent {
  background: linear-gradient(135deg, var(--purple-5), #a56bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.proof {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.85);
}

.proof__kicker {
  font-size: 12px;
  color: rgba(18, 18, 26, 0.70);
  margin-bottom: 4px;
  font-weight: 650;
}

.proof__text {
  font-size: 13px;
  color: var(--muted);
}

.note {
  margin-top: 16px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  background: rgba(124, 58, 237, 0.06);
  border-radius: 16px;
  padding: 12px 14px;
}

.note__title {
  font-weight: 650;
  font-size: 13px;
  margin-bottom: 2px;
}
.note__text {
  color: var(--muted);
  font-size: 13px;
}

/* Right side card */
.hero__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.frame__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
}

.frame__img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mini {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.80);
}

.mini__row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  padding: 6px 0;
}

.mini__dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(124, 58, 237, 0.55);
}

/* Sections */
.section {
  padding: 54px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04) 0%, rgba(124, 58, 237, 0.00) 90%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* Feature cards */
.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(18, 18, 26, 0.06);
}

.card__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  color: rgba(124, 58, 237, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

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

/* Gallery */
.gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.shot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 12px 24px rgba(18, 18, 26, 0.06);
  background: white;
}

.shot img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.shot__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
}

/* Pricing */
.pricing {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: stretch;
}

.price-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(18, 18, 26, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price-card__name {
  font-weight: 750;
  letter-spacing: -0.01em;
}

.price-card__price {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.price-card__price span {
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
  margin-left: 4px;
}

.price-card__subprice {
  font-size: 12px;
  color: var(--muted);
  margin-top: -6px;
}

.price-card__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}

.price-card__list li {
  margin: 6px 0;
}

.price-card--popular {
  border: 1px solid rgba(124, 58, 237, 0.26);
  background:
    radial-gradient(60% 80% at 20% 20%, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 60%),
    rgba(255, 255, 255, 0.94);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.pricing-footnote {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* CTA block */
.cta {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.16);
  background:
    radial-gradient(60% 80% at 15% 10%, rgba(124, 58, 237, 0.10) 0%, rgba(124, 58, 237, 0.00) 60%),
    radial-gradient(50% 70% at 85% 20%, rgba(165, 107, 255, 0.12) 0%, rgba(165, 107, 255, 0.00) 65%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.cta p {
  margin: 0;
  color: var(--muted);
}

.cta__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 14px;
}

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

/* Legal pages */
.page {
  padding: 40px 0 60px;
}
.page__head {
  margin-bottom: 18px;
}
.page__kicker {
  color: var(--muted);
  font-size: 13px;
}
.page h1 {
  font-size: 34px;
  margin: 10px 0 10px;
}
.page p, .page li {
  color: var(--muted);
  font-size: 15px;
}
.page ul {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1080px) {
  .pricing { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "copy"
      "card";
  }

  .hero__proof { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }
}

@media (min-width: 920px) {
  .nav { display: flex; }
}
