:root {
  --bg: #060708;
  --bg-2: #0d0f12;
  --panel: rgba(14, 16, 18, 0.88);
  --panel-soft: rgba(21, 24, 28, 0.92);
  --panel-muted: rgba(17, 19, 22, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 202, 113, 0.22);
  --text: #f5f5f2;
  --muted: #a8adb6;
  --gold: #ffc975;
  --gold-soft: #ffe6bb;
  --blue: #89b9ff;
  --violet: #8f8bff;
  --mint: #7fd8c8;
  --danger: #f18a6b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: min(1220px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter Tight", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(137, 185, 255, 0.15), transparent 0 24%),
    radial-gradient(circle at 88% 16%, rgba(255, 201, 117, 0.12), transparent 0 22%),
    radial-gradient(circle at 52% 110%, rgba(143, 139, 255, 0.12), transparent 0 30%),
    linear-gradient(180deg, #050607 0%, #0b0d10 44%, #060708 100%);
}

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

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

code {
  padding: 0.18rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92em;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 96%);
  opacity: 0.55;
}

.ambient-grid::before,
.ambient-grid::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
}

.ambient-grid::before {
  inset: 9% auto auto 8%;
  width: 24rem;
  height: 24rem;
  background: rgba(137, 185, 255, 0.09);
}

.ambient-grid::after {
  inset: auto 8% 10% auto;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 201, 117, 0.08);
}

.site-header,
.site-footer,
.site-main {
  position: relative;
  z-index: 1;
}

.site-main {
  display: grid;
  gap: 28px;
  padding-bottom: 56px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  padding: 18px 0 10px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 13, 16, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

.brand-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 0 35%),
    linear-gradient(135deg, rgba(137, 185, 255, 0.22), rgba(255, 201, 117, 0.22));
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 0 28%),
    linear-gradient(135deg, rgba(137, 185, 255, 0.06), transparent 42%);
}

.panel > * {
  position: relative;
  z-index: 1;
}

.panel-heavy,
.hero-visual,
.info-card,
.process-panel,
.artwork-panel,
.page-hero,
.product-card,
.stacked-entries {
  padding: 30px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 8px;
}

.hero-copy h1,
.hero-copy-block h1,
.section-heading h2,
.info-card h3,
.process-panel h2,
.artwork-panel h2,
.entry-panel h2,
.product-card h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.9vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.hero-copy h1,
.hero-copy-block h1 {
  margin-top: 14px;
  margin-bottom: 16px;
}

.lead,
.section-heading p,
.info-card p,
.process-panel p,
.artwork-panel p,
.entry-panel p,
.footer-copy,
.mini-signal-grid article p,
.pricing-box span,
.feature-list li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge,
.eyebrow,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge-muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  color: #070708;
  background: linear-gradient(135deg, #ffffff, #ffe1a7 42%, #87b9ff 100%);
  box-shadow: 0 20px 40px rgba(135, 185, 255, 0.18);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

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

.hero-band div {
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-band strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

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

.hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
  background:
    radial-gradient(circle at 50% 20%, rgba(137, 185, 255, 0.12), transparent 0 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    var(--panel-soft);
}

.hero-visual img,
.artwork-panel img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.visual-topline p {
  margin: 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-signal-grid {
  display: grid;
  gap: 12px;
}

.mini-signal-grid article {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-signal-grid article:first-child {
  padding-top: 0;
  border-top: 0;
}

.mini-signal-grid article span {
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-signal-grid article strong {
  font-size: 1.05rem;
}

.marquee-row {
  padding: 18px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(137, 185, 255, 0.04), rgba(255, 201, 117, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel-muted);
}

.marquee-track {
  display: flex;
  gap: 28px;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 24px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 10px;
}

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

.card-grid {
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card h3,
.product-card h2 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.feature-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
}

.step-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.step-item span {
  min-width: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  text-align: center;
  letter-spacing: 0.14em;
}

.step-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.stacked-entries {
  display: grid;
  gap: 20px;
}

.entry-panel {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.entry-panel:first-child {
  padding-top: 0;
  border-top: 0;
}

.entry-panel h2 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.page-hero {
  padding: 30px;
}

.hero-copy-block h1 {
  margin-top: 14px;
  margin-bottom: 16px;
}

.artwork-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 201, 117, 0.1), transparent 0 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    var(--panel-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 600;
}

.product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.premium-product-card {
  background:
    radial-gradient(circle at top right, rgba(255, 201, 117, 0.12), transparent 0 28%),
    radial-gradient(circle at 14% 0%, rgba(137, 185, 255, 0.08), transparent 0 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    var(--panel-soft);
}

.pricing-box {
  margin-top: 20px;
  padding: 18px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: var(--gold-soft);
}

.site-footer {
  padding: 4px 0 38px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 10px;
}

.footer-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  max-width: 720px;
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--muted);
}

.footer-meta {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero,
  .split-panel,
  .three-up,
  .two-up,
  .hero-band,
  .footer-shell {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    text-align: center;
  }

  .nav-shell.nav-open {
    border-radius: 28px;
    align-items: flex-start;
  }

  .nav-shell.nav-open .site-nav {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1220px, calc(100% - 20px));
  }

  .panel-heavy,
  .hero-visual,
  .info-card,
  .process-panel,
  .artwork-panel,
  .page-hero,
  .product-card,
  .stacked-entries {
    padding: 20px;
  }

  .hero-copy h1,
  .hero-copy-block h1 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

  .hero-actions,
  .badge-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
