/* Requiem — static site. No build step. */

:root {
  --bg: #07070b;
  --bg2: #0b0b12;
  --text: #e9e9f5;
  --muted: #a7a7c1;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);

  --primary: #a855f7;
  --primary2: #22c55e;
  --danger: #ef4444;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

* {
  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: linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Ethereal brand watermark */
.watermark {
  position: absolute;
  inset: -20px auto auto -10px;
  font-weight: 900;
  letter-spacing: 10px;
  font-size: clamp(38px, 6vw, 70px);
  color: rgba(233, 233, 245, 0.06);
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  filter: blur(0.2px);
  transform: translate3d(0, 0, 0);
}

/* Hero eclipse / planet */
.hero2__right {
  position: relative;
}

.planet {
  position: absolute;
  right: -22px;
  top: -10px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 26px 80px rgba(0, 0, 0, 0.6));
}

.planet__shadow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(140px 120px at 40% 35%, rgba(20, 20, 34, 0.3), rgba(7, 7, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.planet__rim {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 65% 35%, rgba(168, 85, 247, 0.32), transparent 45%),
    radial-gradient(circle at 80% 55%, rgba(34, 197, 94, 0.20), transparent 55%),
    radial-gradient(circle at 55% 20%, rgba(59, 130, 246, 0.18), transparent 55%);
  filter: blur(10px);
  opacity: 0.7;
}

.planet__haze {
  position: absolute;
  inset: -28px;
  border-radius: 999px;
  background: radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.06), transparent 55%);
  filter: blur(18px);
  opacity: 0.7;
  animation: planetBreathe 6.5s ease-in-out infinite alternate;
}

@keyframes planetBreathe {
  0% {
    transform: scale(0.98);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.03);
    opacity: 0.75;
  }
}

/* Ambient space canvas + nebula */
.space {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.32;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
}

body::before {
  /* Softer nebula overlay (avoid "grey wash") */
  background: radial-gradient(900px 700px at 15% 10%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(850px 650px at 85% 35%, rgba(34, 197, 94, 0.14), transparent 60%),
    radial-gradient(900px 700px at 60% 95%, rgba(59, 130, 246, 0.10), transparent 62%);
  filter: blur(22px);
  opacity: 0.22;
  animation: nebulaFloat 22s ease-in-out infinite alternate;
}

body::after {
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(168, 85, 247, 0.10),
    rgba(34, 197, 94, 0.08),
    rgba(59, 130, 246, 0.07),
    rgba(168, 85, 247, 0.10)
  );
  mix-blend-mode: screen;
  filter: blur(26px);
  opacity: 0.12;
  animation: nebulaDrift 18s ease-in-out infinite alternate;
}

@keyframes nebulaFloat {
  0% {
    transform: translate3d(0%, 0%, 0) scale(1.02);
  }
  100% {
    transform: translate3d(-2.2%, 1.4%, 0) scale(1.05);
  }
}

@keyframes nebulaDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1.02) rotate(-2deg);
  }
  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.04) rotate(2deg);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

.muted {
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #111;
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7, 7, 11, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Gate (click to enter) */
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.65);
}

.gate__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gate__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 700px at 50% 20%, rgba(168, 85, 247, 0.24), transparent 60%),
    radial-gradient(900px 700px at 60% 70%, rgba(34, 197, 94, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(7, 7, 11, 0.15), rgba(7, 7, 11, 0.9));
}

.gate__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.72);
}

.gate__warp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gate__enter {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 18px 26px;
  background: rgba(7, 7, 11, 0.55);
  backdrop-filter: blur(10px);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 6px;
  min-width: min(520px, calc(100% - 40px));
  text-align: center;
}

.gate__enter:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(7, 7, 11, 0.62);
  transform: translateY(-1px);
}

.gate__enter:active {
  transform: translateY(0px);
}

.gate__brand {
  font-weight: 860;
  letter-spacing: 0.6px;
  font-size: 20px;
}

.gate__hint {
  color: rgba(233, 233, 245, 0.76);
  font-weight: 650;
}

.gate.is-hidden {
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}

.gate.is-warping .gate__enter {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 200ms ease, transform 240ms ease;
}

.gate.is-warping .gate__warp {
  opacity: 1;
}

.gate.is-warping .gate__bg::after {
  animation: gateFlash 780ms ease-in-out 1;
}

@keyframes gateFlash {
  0% {
    filter: brightness(1);
  }
  30% {
    filter: brightness(1.25);
  }
  100% {
    filter: brightness(1);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0.2px;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.brand--small .brand__mark {
  width: 22px;
  height: 22px;
  border-radius: 9px;
}

.nav {
  display: flex;
  gap: 14px;
  margin-left: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.nav a {
  font-size: 14px;
  color: rgba(233, 233, 245, 0.85);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header__actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 620;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn--primary {
  border-color: rgba(168, 85, 247, 0.45);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.92), rgba(34, 197, 94, 0.62));
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.18);
}

.btn--primary:hover {
  border-color: rgba(168, 85, 247, 0.75);
}

.btn--primary {
  position: relative;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(120px 40px at 20% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(140px 60px at 80% 80%, rgba(255, 255, 255, 0.10), transparent 65%);
  opacity: 0.0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.btn--primary:hover::after {
  opacity: 1;
}

/* Dark space glow on hover */
.tier:hover,
.card:hover,
.clip:hover,
.streamcard:hover,
.step:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 28px 90px rgba(168, 85, 247, 0.10);
}

.clip:hover {
  background: rgba(7, 7, 11, 0.56);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.btn--lg {
  padding: 12px 18px;
  font-size: 15px;
}

.icon-btn {
  display: none;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  cursor: pointer;
}

.icon-btn__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(233, 233, 245, 0.85);
  margin: 3px 0;
  border-radius: 999px;
}

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 7, 11, 0.8);
}

.mobile-nav__inner {
  display: grid;
  gap: 8px;
  padding: 12px 0 16px 0;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

/* Hero */
.hero {
  padding: 64px 0 26px 0;
}

.hero--stream {
  padding-top: 34px;
}

.hero2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.kicker {
  color: rgba(233, 233, 245, 0.76);
  font-weight: 650;
  letter-spacing: 0.5px;
}

.hero2__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.mini__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(233, 233, 245, 0.82);
  font-size: 13px;
}

.mini__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.mini__dot--ok {
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.mini__dot--fast {
  background: rgba(168, 85, 247, 0.9);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}
.mini__dot--stream {
  background: rgba(59, 130, 246, 0.9);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.mini__dot--disc {
  background: rgba(236, 72, 153, 0.9);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.12);
}

.streamcard {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.streamcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.pill2 {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(233, 233, 245, 0.78);
}

.streamcard__media {
  padding: 14px;
}

.video-placeholder {
  border-radius: 18px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(900px 380px at 20% 0%, rgba(168, 85, 247, 0.22), transparent 55%),
    radial-gradient(900px 380px at 85% 65%, rgba(34, 197, 94, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
}

.video-placeholder__txt {
  color: rgba(233, 233, 245, 0.88);
  font-weight: 700;
}

.streamcard__bottom {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}

.price {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.6px;
}

.small {
  font-size: 12.5px;
  margin: 0;
  line-height: 1.55;
}


.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 650;
  color: rgba(233, 233, 245, 0.92);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
}

h1 {
  margin: 14px 0 10px 0;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}

.lead {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(233, 233, 245, 0.78);
  max-width: 60ch;
}

.sublead {
  margin: 10px 0 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 233, 245, 0.70);
  max-width: 70ch;
}

.hero__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.stat__num {
  font-weight: 820;
  font-size: 20px;
}

.stat__label {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(233, 233, 245, 0.68);
}

.hero__panel {
  position: relative;
}

.panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.panel__lights span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.panel__lights span:nth-child(1) {
  background: rgba(239, 68, 68, 0.65);
}
.panel__lights span:nth-child(2) {
  background: rgba(234, 179, 8, 0.55);
}
.panel__lights span:nth-child(3) {
  background: rgba(34, 197, 94, 0.55);
}

.panel__title {
  font-weight: 700;
  font-size: 13px;
  color: rgba(233, 233, 245, 0.86);
}

.panel__spacer {
  flex: 1;
}

.panel__body pre {
  margin: 0;
  padding: 16px 16px 18px 16px;
  font-size: 13px;
  line-height: 1.55;
  overflow: auto;
}

.dim {
  color: rgba(167, 167, 193, 0.75);
}
.ok {
  color: rgba(34, 197, 94, 0.92);
}
.kbd {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.panel__bottom {
  padding: 12px 14px 14px 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(233, 233, 245, 0.86);
}

/* Sections */
.section {
  padding: 48px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.35px;
}

h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tier {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 7, 11, 0.58);
  padding: 16px;
  display: grid;
  gap: 12px;
  position: relative;
}

.tier__media {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(800px 260px at 20% 0%, rgba(168, 85, 247, 0.16), transparent 60%),
    radial-gradient(800px 260px at 85% 85%, rgba(34, 197, 94, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  height: 130px;
  display: grid;
  place-items: center;
}

.tier__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.06);
}

.tier__head {
  display: grid;
  gap: 6px;
}

.tier__price {
  font-size: 34px;
  font-weight: 920;
  letter-spacing: -0.7px;
}

.tier__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 233, 245, 0.80);
  display: grid;
  gap: 8px;
}

.tier--featured {
  background: radial-gradient(900px 500px at 30% 0%, rgba(168, 85, 247, 0.22), transparent 60%),
    radial-gradient(900px 500px at 80% 80%, rgba(34, 197, 94, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(168, 85, 247, 0.38);
}

.tier__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 760;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 11, 0.55);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 11, 0.56);
  padding: 16px;
}

.step__num {
  font-weight: 820;
  letter-spacing: 0.6px;
  color: rgba(233, 233, 245, 0.62);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 12px;
}

/* Clips */
.clips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.clip {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 11, 0.50);
  padding: 16px;
  display: grid;
  gap: 10px;
  min-height: 140px;
  transition: transform 140ms ease, background 140ms ease;
}

.clip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.clip__tag {
  font-size: 12px;
  color: rgba(233, 233, 245, 0.72);
}

.clip__title {
  font-weight: 860;
  letter-spacing: -0.2px;
}

.clip__cta {
  margin-top: auto;
  font-weight: 720;
  color: rgba(233, 233, 245, 0.82);
}

/* Product cards */
.product__name {
  font-weight: 860;
  font-size: 18px;
  margin-bottom: 6px;
}

.product__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 11, 0.52);
  padding: 16px;
}

.card--download {
  display: grid;
  gap: 14px;
}

.card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(233, 233, 245, 0.78);
}

.status {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}

.status__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.status__label {
  color: rgba(167, 167, 193, 0.92);
}

.status__value.ok {
  color: rgba(34, 197, 94, 0.92);
  font-weight: 720;
}

.cta {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(800px 500px at 15% 0%, rgba(168, 85, 247, 0.22), transparent 55%),
    radial-gradient(800px 500px at 85% 30%, rgba(34, 197, 94, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.03);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq__item p {
  margin: 10px 0 0 0;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 28px 0 38px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

.footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__right a {
  color: rgba(233, 233, 245, 0.75);
}

.footer__right a:hover {
  color: rgba(233, 233, 245, 0.95);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 100;
}

.toast__inner {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 11, 0.88);
  color: rgba(233, 233, 245, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.tier,
.card,
.clip,
.streamcard,
.step {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.tier:hover,
.card:hover,
.clip:hover,
.streamcard:hover,
.step:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.tier--featured {
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.10) inset, 0 22px 70px rgba(168, 85, 247, 0.10);
}

/* Responsive */
@media (max-width: 920px) {
  .hero2 {
    grid-template-columns: 1fr;
  }
  .nav,
  .header__actions {
    display: none;
  }
  .icon-btn {
    display: inline-flex;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .clips {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .clip {
    transition: none;
  }
}

