:root {
  --bg: #07111f;
  --bg-soft: #0d1a2d;
  --panel: rgba(10, 20, 35, 0.72);
  --panel-strong: rgba(15, 30, 49, 0.92);
  --line: rgba(172, 212, 255, 0.14);
  --text: #edf4ff;
  --muted: #aab8ce;
  --teal: #67f0d2;
  --cyan: #7dbbff;
  --gold: #ffc978;
  --peach: #ff9f7a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(103, 240, 210, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(125, 187, 255, 0.22), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(255, 201, 120, 0.1), transparent 34%),
    linear-gradient(180deg, #08111f 0%, #091624 45%, #050b13 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
}

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

button,
.button {
  font: inherit;
}

.page-shell {
  width: min(100%, calc(var(--content-width) + 48px));
  margin: 0 auto;
  padding: 20px 24px 64px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 14, 25, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #07111f;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
.brand-copy span,
.desktop-nav a,
.eyebrow,
.feature-index,
.showcase-label,
.tier {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy span:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.desktop-nav,
.header-actions,
.hero-actions,
.hero-points,
.hero-stats,
.logo-strip,
.window-topbar,
.generated-cards,
.section-heading.split,
.workflow-list,
.metrics-layout,
.pricing-grid {
  display: flex;
}

.desktop-nav {
  gap: 24px;
  color: var(--muted);
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--text);
}

.header-actions {
  align-items: center;
  gap: 14px;
}

.text-link {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  color: #06101c;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}

.button-ghost,
.button-panel {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.button-panel {
  width: 100%;
}

.hero,
.showcase-grid,
.faq-list {
  display: grid;
}

.hero {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 32px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.97;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 8vw, 6.4rem);
}

.hero h1 span {
  display: block;
  color: #aed6ff;
}

.hero-lead,
.section-heading p,
.workflow-step p,
.feature-card p,
.showcase-copy p,
.metrics-copy p,
.price-card span,
.price-card li,
.faq-item p,
.cta-section p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  gap: 14px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.hero-points {
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d8e6f8;
}

.hero-points li {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-stats div,
.inspector-card,
.inspector-meter,
.feature-card,
.workflow-step,
.showcase-card,
.metric-row,
.price-card,
.faq-item,
.cta-section {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  min-width: 150px;
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.65;
}

.orb-one {
  top: 70px;
  right: 30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(125, 187, 255, 0.8), transparent 68%);
}

.orb-two {
  bottom: 40px;
  left: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 201, 120, 0.52), transparent 70%);
}

.app-window {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(196, 224, 255, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 31, 0.84);
  box-shadow: 0 30px 120px rgba(2, 8, 16, 0.7);
}

.window-topbar {
  gap: 8px;
  padding-bottom: 14px;
}

.window-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.window-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.4fr 0.92fr;
  gap: 16px;
}

.window-sidebar,
.canvas-panel,
.inspector-panel {
  min-height: 540px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.window-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-chip {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-chip.active {
  color: #06101c;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.canvas-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 94%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.55;
}

.chat-bubble.user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(103, 240, 210, 0.2), rgba(125, 187, 255, 0.16));
}

.chat-bubble.ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
}

.generated-cards {
  gap: 12px;
  margin-top: auto;
}

.generated-card {
  flex: 1;
  min-height: 210px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(125, 187, 255, 0.18), rgba(103, 240, 210, 0.14));
}

.generated-card.tall {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(circle at 30% 20%, rgba(255, 201, 120, 0.45), transparent 35%),
    linear-gradient(180deg, rgba(255, 159, 122, 0.22), rgba(125, 187, 255, 0.12));
}

.generated-card.accent {
  background:
    linear-gradient(160deg, rgba(103, 240, 210, 0.12), rgba(255, 201, 120, 0.18)),
    rgba(255, 255, 255, 0.05);
}

.card-tag,
.showcase-label,
.tier {
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.generated-card h3,
.feature-card h3,
.workflow-step h3,
.showcase-copy h3,
.metrics-copy h3,
.price-card h3 {
  margin: 12px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.inspector-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inspector-card,
.inspector-meter {
  padding: 18px;
  border-radius: 20px;
}

.inspector-card p,
.meter-copy span {
  margin: 0;
  color: var(--muted);
}

.inspector-card strong,
.meter-copy strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.meter-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.meter-track,
.metric-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.meter-fill,
.metric-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--gold));
}

.meter-fill {
  width: 92%;
}

.logo-strip {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 8px 0 36px;
  padding: 18px 22px;
  color: rgba(237, 244, 255, 0.7);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 62px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.9rem);
}

.section-heading p {
  margin: 16px 0 0;
  max-width: 62ch;
}

.section-heading.split {
  justify-content: space-between;
  gap: 26px;
  align-items: end;
}

.section-heading.split > * {
  flex: 1;
}

.feature-grid,
.showcase-grid,
.pricing-grid {
  gap: 18px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.workflow-step,
.showcase-card,
.price-card,
.faq-item {
  border-radius: var(--radius-lg);
}

.feature-card {
  min-height: 240px;
  padding: 24px;
}

.feature-index {
  color: var(--teal);
  font-size: 0.85rem;
}

.workflow-list {
  gap: 18px;
}

.workflow-step {
  flex: 1;
  padding: 28px;
}

.workflow-step span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.showcase-card {
  overflow: hidden;
  min-height: 430px;
}

.showcase-card.wide {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.showcase-copy {
  padding: 28px;
}

.showcase-art {
  min-height: 220px;
  background-color: rgba(255, 255, 255, 0.04);
}

.product-art {
  background:
    radial-gradient(circle at 55% 28%, rgba(255, 255, 255, 0.35), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(255, 201, 120, 0.35), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    linear-gradient(145deg, rgba(255, 159, 122, 0.26), rgba(125, 187, 255, 0.18));
  position: relative;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 28px;
}

.product-art::before {
  bottom: 54px;
  width: 126px;
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(130, 175, 225, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.product-art::after {
  bottom: 250px;
  width: 86px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 231, 198, 0.9), rgba(208, 171, 108, 0.55));
}

.social-art {
  background:
    linear-gradient(135deg, rgba(125, 187, 255, 0.4), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(103, 240, 210, 0.16), rgba(255, 201, 120, 0.22));
  position: relative;
}

.social-art::before,
.social-art::after,
.brand-art::before,
.brand-art::after {
  content: "";
  position: absolute;
  border-radius: 22px;
}

.social-art::before {
  inset: 34px 34px auto auto;
  width: 112px;
  height: 160px;
  background: rgba(9, 18, 31, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-art::after {
  inset: auto auto 34px 34px;
  width: 132px;
  height: 168px;
  background: rgba(9, 18, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-art {
  background:
    radial-gradient(circle at 26% 30%, rgba(103, 240, 210, 0.44), transparent 20%),
    radial-gradient(circle at 72% 68%, rgba(255, 201, 120, 0.36), transparent 18%),
    linear-gradient(140deg, rgba(255, 159, 122, 0.22), rgba(125, 187, 255, 0.18));
  position: relative;
}

.brand-art::before {
  inset: 34px auto auto 34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.brand-art::after {
  inset: auto 28px 32px auto;
  width: 110px;
  height: 110px;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.metrics-layout {
  gap: 24px;
  align-items: start;
}

.metrics-copy {
  flex: 1;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.metric-list {
  flex: 1.1;
  display: grid;
  gap: 14px;
}

.metric-row {
  padding: 22px;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(140deg, rgba(103, 240, 210, 0.12), rgba(255, 201, 120, 0.18)),
    var(--panel-strong);
  transform: translateY(-8px);
}

.price-card h3 {
  font-size: 3rem;
}

.price-card ul {
  margin: 18px 0 24px;
  padding-left: 18px;
  line-height: 1.8;
}

.price-card .button {
  margin-top: auto;
}

.faq-list {
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
}

.cta-section {
  margin: 24px 0 10px;
  padding: 36px;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(125, 187, 255, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(10, 20, 35, 0.8);
}

.cta-section p {
  max-width: 62ch;
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .showcase-grid,
  .feature-grid,
  .pricing-grid,
  .window-grid,
  .showcase-card.wide {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .window-sidebar,
  .inspector-panel {
    min-height: auto;
  }

  .workflow-list,
  .metrics-layout,
  .section-heading.split {
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .page-shell {
    padding-inline: 16px;
  }

  .desktop-nav,
  .text-link,
  .window-sidebar,
  .inspector-panel {
    display: none;
  }

  .site-header {
    border-radius: 26px;
    padding: 14px;
  }

  .hero {
    gap: 24px;
    padding-top: 12px;
  }

  .hero h1 {
    max-width: none;
  }

  .app-window {
    padding: 14px;
    border-radius: 26px;
  }

  .canvas-panel {
    min-height: auto;
  }

  .generated-cards {
    flex-direction: column;
  }

  .logo-strip {
    justify-content: flex-start;
  }

  .section {
    padding: 44px 0;
  }

  .cta-section {
    padding: 28px 20px;
  }
}
