:root {
  --ink: #1a1333;
  --ink-soft: #4f4672;
  --paper: rgba(255, 252, 244, 0.88);
  --white: #fffdf7;
  --coral: #ff6b57;
  --gold: #ffbf3c;
  --teal: #1fc7b8;
  --berry: #ff4fa3;
  --lime: #d6ff49;
  --line: rgba(26, 19, 51, 0.12);
  --shadow: 0 24px 80px rgba(51, 26, 92, 0.14);
  --panel-dark: #15111f;
  --panel-mid: #241a39;
  --panel-border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.32), transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(31, 199, 184, 0.34), transparent 18%),
    radial-gradient(circle at 20% 80%, rgba(214, 255, 73, 0.35), transparent 18%),
    linear-gradient(135deg, #fff8e6 0%, #ffe9cf 45%, #fff3d6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
}

body::before {
  width: 320px;
  height: 320px;
  top: 110px;
  right: -90px;
  background: rgba(255, 107, 87, 0.22);
}

body::after {
  width: 260px;
  height: 260px;
  bottom: 40px;
  left: -70px;
  background: rgba(31, 199, 184, 0.18);
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero,
.section-band,
.feature-splash,
.footer-cta,
.site-footer,
.page-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero,
.page-card {
  padding: 20px;
}

.topbar,
.hero-grid,
.comparison-grid,
.feature-grid,
.cards-grid,
.price-grid,
.footer-links,
.download-grid {
  display: grid;
  gap: 20px;
}

.topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 28px;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex: 0 0 auto;
}

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

.brand-lockup > div {
  display: grid;
  gap: 4px;
}

.brand-pill,
.ghost-link,
.eyebrow,
.card-tag,
.feature-index,
.nav-link,
.status-chip,
.page-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff8ef;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-note {
  font-size: 0.95rem;
  opacity: 0.75;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link,
.ghost-link {
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  background: #fff7ea;
}

.ghost-link {
  background: var(--lime);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: stretch;
}

.hero-copy {
  padding: 18px 8px 10px;
}

.eyebrow,
.page-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 191, 60, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.94;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  margin-bottom: 20px;
}

h1 span {
  color: var(--coral);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h4 {
  font-size: 2rem;
}

.problem-statement,
.solution-line,
.compare-card p,
.feature-card p,
.footer-copy,
.body-copy,
.page-intro,
.price-card p,
.table-card li,
.comparison-table td,
.comparison-table th {
  font-size: 1.05rem;
  line-height: 1.6;
}

.problem-statement,
.solution-line {
  max-width: 62ch;
}

.solution-line {
  font-weight: 800;
  margin-top: 14px;
}

.name-note {
  max-width: 52ch;
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.cta-row.compact {
  margin: 0;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 18px;
  border: 2px solid var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.cta-primary {
  background: var(--lime);
}

.cta-secondary {
  background: var(--white);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-strip li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px dashed rgba(26, 19, 51, 0.22);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.system-panel {
  color: #fffaf2;
}

.system-window {
  min-height: 560px;
  border-radius: 28px;
  border: 2px solid rgba(26, 19, 51, 0.16);
  overflow: hidden;
  background: linear-gradient(180deg, #171320 0%, #1e1930 100%);
}

.system-titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.05);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-name,
.window-meta,
.system-label,
.terminal-topbar,
.status-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-name {
  justify-self: center;
  font-weight: 800;
  opacity: 0.9;
}

.window-meta {
  opacity: 0.7;
}

.system-body {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(31, 199, 184, 0.14), transparent 25%),
    radial-gradient(circle at left center, rgba(255, 79, 163, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.overlay-statusbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.status-chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  font-weight: 800;
}

.status-chip.live {
  background: rgba(214, 255, 73, 0.16);
  color: #f4ffd0;
}

.system-lock {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.lock-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.lock-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lock-glyph {
  font-size: 2.4rem;
  color: var(--gold);
}

.system-label {
  margin: 0 0 10px;
  color: #ffdf8c;
}

.system-copy {
  margin: 10px 0 0;
  max-width: 34ch;
  line-height: 1.6;
  color: rgba(255, 250, 242, 0.8);
}

.terminal-card {
  margin: 26px 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #09070e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.terminal-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
}

.terminal-body {
  padding: 18px;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #cbf6ea;
}

.terminal-body p {
  margin: 0;
}

.prompt {
  color: var(--gold);
  margin-right: 10px;
}

.ok {
  color: #9dff8c;
}

.cursor-line {
  color: #fff8ef;
  animation: blink 1s steps(2, start) infinite;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel-metrics article,
.compare-card,
.feature-card,
.price-card,
.table-card {
  padding: 20px;
  border-radius: 24px;
  border: 2px solid rgba(26, 19, 51, 0.1);
}

.panel-metrics article {
  background: rgba(255, 255, 255, 0.08);
}

.panel-metrics span,
.price-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  opacity: 0.72;
}

.panel-metrics strong {
  font-size: 0.95rem;
}

.section-band,
.feature-splash,
.footer-cta,
.site-footer,
.page-card {
  margin-top: 22px;
  padding: 28px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.section-heading h3,
.footer-cta h3 {
  max-width: 12ch;
}

.comparison-grid,
.feature-grid,
.cards-grid,
.price-grid,
.theme-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.single-price {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.compare-card.bad {
  background: linear-gradient(180deg, rgba(255, 107, 87, 0.15), rgba(255, 255, 255, 0.8));
}

.compare-card.good {
  background: linear-gradient(180deg, rgba(31, 199, 184, 0.2), rgba(255, 255, 255, 0.88));
}

.card-tag,
.feature-index {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-splash {
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 26%),
    radial-gradient(circle at left center, rgba(31, 199, 184, 0.18), transparent 22%),
    var(--paper);
}

.feature-card,
.price-card,
.table-card,
.theme-card {
  background: rgba(255, 255, 255, 0.82);
}

.download-card {
  padding: 22px;
  border-radius: 24px;
  border: 2px solid rgba(26, 19, 51, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.download-card.spotlight {
  background: linear-gradient(180deg, rgba(214, 255, 73, 0.34), rgba(255, 255, 255, 0.92));
}

.download-card h4 span {
  color: var(--coral);
}

.download-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.theme-band {
  background:
    radial-gradient(circle at top left, rgba(31, 199, 184, 0.16), transparent 24%),
    radial-gradient(circle at right center, rgba(214, 255, 73, 0.18), transparent 20%),
    var(--paper);
}

.theme-card {
  padding: 22px;
  border-radius: 24px;
  border: 2px solid rgba(26, 19, 51, 0.1);
}

.theme-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 16px;
  border: 2px solid rgba(26, 19, 51, 0.14);
  background: linear-gradient(180deg, rgba(214, 255, 73, 0.65), rgba(255, 255, 255, 0.92));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.tilt-a {
  transform: rotate(-1.2deg);
}

.tilt-b {
  transform: rotate(0.9deg);
}

.tilt-c {
  transform: rotate(-0.7deg);
}

.footer-cta {
  display: grid;
  justify-items: start;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 191, 60, 0.26), rgba(255, 255, 255, 0.76)),
    var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-copy {
  margin: 0;
  max-width: 28ch;
}

.footer-links {
  grid-template-columns: repeat(3, auto);
  justify-content: end;
  align-items: center;
}

.footer-links a {
  font-weight: 800;
}

.page-hero {
  display: grid;
  gap: 16px;
  max-width: 52rem;
}

.page-intro {
  margin: 0;
  max-width: 50ch;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(214, 255, 73, 0.38), rgba(255, 255, 255, 0.92));
}

.price {
  margin: 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-family: "Trebuchet MS", "Helvetica Neue", sans-serif;
}

.price-card ul,
.table-card ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  overflow: hidden;
}

.legal-card {
  overflow: visible;
}

.legal-hero {
  max-width: 56rem;
}

.legal-meta {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.legal-copy {
  display: grid;
  gap: 10px;
  max-width: 72ch;
}

.legal-copy h3 {
  margin-top: 12px;
  font-size: 1.8rem;
}

.legal-copy p,
.legal-copy li {
  font-size: 1rem;
  line-height: 1.7;
}

.legal-copy ul {
  margin: 0 0 4px;
  padding-left: 20px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid rgba(26, 19, 51, 0.08);
}

.comparison-table th {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 191, 60, 0.18);
}

.check {
  font-weight: 900;
  color: #118f64;
}

.cross {
  font-weight: 900;
  color: #d74b3c;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .comparison-grid,
  .feature-grid,
  .panel-metrics,
  .topbar,
  .price-grid,
  .cards-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .topbar-links,
  .footer-links {
    justify-content: start;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .system-window {
    min-height: auto;
  }

  .tilt-a,
  .tilt-b,
  .tilt-c {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .section-band,
  .feature-splash,
  .footer-cta,
  .site-footer,
  .page-card {
    border-radius: 24px;
    padding: 18px;
  }

  .topbar-links,
  .brand-lockup,
  .cta-row,
  .overlay-statusbar,
  .footer-links {
    gap: 10px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.2rem);
  }

  h4 {
    font-size: 1.75rem;
  }

  .cta-primary,
  .cta-secondary,
  .ghost-link,
  .nav-link {
    width: 100%;
  }

  .system-lock {
    grid-template-columns: 1fr;
  }

  .system-titlebar {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
