:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070b0d;
  color: #eef6f3;
  --app: #070b0d;
  --sidebar: #080d0f;
  --surface: #111819;
  --surface-soft: #151f20;
  --surface-raised: #1a2527;
  --line: #263536;
  --line-strong: #395052;
  --text: #eef6f3;
  --muted: #91a39e;
  --muted-2: #70837e;
  --teal: #22c7a8;
  --teal-soft: #123a35;
  --amber: #f1b75c;
  --amber-soft: #3b2b14;
  --red: #ff334e;
  --red-soft: #431016;
  --blood: #9f1025;
  --hot-red: #ff1744;
  --blue: #8cb9ff;
  --blue-soft: #182945;
  --ink: #070b0d;
  --violet: #9b8cff;
  --violet-soft: #241f45;
  --shadow: 0 1px 1px rgba(0, 0, 0, 0.28), 0 18px 52px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 3%, rgba(255,23,68,.24), transparent 34%),
    radial-gradient(circle at 16% 0%, rgba(34,199,168,.12), transparent 30%),
    radial-gradient(circle at 78% 42%, rgba(241,183,92,.10), transparent 28%),
    linear-gradient(180deg, #13070a, #09080a 48%, #040507);
}

button,
input,
select {
  font: inherit;
}

button {
  border: 1px solid rgba(255, 87, 87, .42);
  border-radius: 6px;
  min-height: 36px;
  padding: 8px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hot-red), #b8152a 52%, var(--amber));
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255,23,68,.16), inset 0 0 0 1px rgba(255,255,255,.08);
}

.button-link {
  display: inline-grid;
  min-height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 87, 87, .42);
  border-radius: 6px;
  padding: 8px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hot-red), #b8152a 52%, var(--amber));
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255,23,68,.16), inset 0 0 0 1px rgba(255,255,255,.08);
}

button:hover {
  filter: brightness(0.98);
}

button:disabled {
  cursor: not-allowed;
  opacity: .48;
  filter: saturate(.7);
  box-shadow: none;
}

button.secondary {
  color: #d9e8ff;
  background: var(--blue-soft);
  border-color: #36577e;
}

button.ghost {
  color: var(--text);
  background: #101719;
  border-color: var(--line);
}

.compact-button {
  min-height: 28px;
  padding: 4px 9px;
  font-size: 11px;
}

.danger-button {
  color: #ffd6d3;
  background: var(--red-soft);
  border-color: #6b2b2b;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0b1113;
  color: var(--text);
  min-height: 36px;
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(15,159,135,.65);
  box-shadow: 0 0 0 3px rgba(15,159,135,.12);
}

code {
  color: #9cebdc;
  background: #0c1415;
  border: 1px solid #243637;
  border-radius: 5px;
  padding: 2px 5px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.boot {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-page {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255,23,68,.24), transparent 28%),
    linear-gradient(225deg, rgba(34,199,168,.20), transparent 32%),
    linear-gradient(315deg, rgba(155,140,255,.20), transparent 38%),
    linear-gradient(135deg, #050607 0%, #14070b 28%, #0c101b 62%, #041713 100%);
}

.auth-page::before,
.auth-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.auth-page::before {
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 42%, #000, transparent 72%);
}

.auth-page::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(34,199,168,.24) 46%, transparent 64%),
    linear-gradient(90deg, transparent 0%, rgba(255,23,68,.20) 34%, transparent 56%);
  background-size: 90% 2px, 72% 1px;
  background-position: -120% 32%, -80% 68%;
  background-repeat: no-repeat;
  animation: authSignalSweep 7s ease-in-out infinite;
}

.auth-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: min(720px, 100%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035) 34%, rgba(34,199,168,.055) 100%),
    linear-gradient(315deg, rgba(255,23,68,.18), transparent 38%),
    linear-gradient(135deg, rgba(155,140,255,.16), transparent 44%),
    rgba(13,18,21,.84);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, .44),
    0 0 0 1px rgba(255,255,255,.045) inset;
  backdrop-filter: blur(22px);
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.10), transparent);
  transform: translateX(-140%);
  animation: authCardSheen 6.8s ease-in-out infinite;
}

.auth-card::after {
  content: "FENRIR";
  position: absolute;
  right: -22px;
  bottom: -46px;
  color: rgba(255,255,255,.035);
  font-size: 118px;
  font-weight: 950;
  pointer-events: none;
}

.auth-wordmark {
  width: 190px;
  max-width: 68%;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 20px 34px rgba(255,23,68,.24));
}

.auth-card h1 {
  max-width: 520px;
  margin: 16px 0 10px;
  color: #fff7f2;
  background: linear-gradient(90deg, #fff8f2 0%, #ff7d87 28%, #9b8cff 58%, #62e3c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 7vw, 68px);
  line-height: .92;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(255,23,68,.12);
}

.auth-card p {
  max-width: 560px;
  color: #d6e4df;
  font-size: 16px;
  line-height: 1.45;
}

.auth-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.auth-disclosure {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.auth-disclosure section {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 12px;
  background: rgba(8, 14, 16, .62);
}

.auth-disclosure h2 {
  margin: 0 0 8px;
  color: #fff7f2;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.auth-disclosure p {
  margin: 0;
  color: #b9cac5;
  font-size: 12px;
  line-height: 1.45;
}

.auth-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
}

.provider-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.google-icon {
  border-radius: 999px;
  background: conic-gradient(from -42deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
}

.google-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: #ffffff;
}

.google-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 10px;
  height: 4px;
  background: #4285f4;
}

.google-icon span {
  position: absolute;
  right: 0;
  top: 6px;
  width: 8px;
  height: 7px;
  border-radius: 0 999px 999px 0;
  background: #4285f4;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 38% 100%, 38% 58%, 0 58%);
}

.microsoft-icon {
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.microsoft-icon span {
  width: 8px;
  height: 8px;
}

.microsoft-icon span:nth-child(1) {
  background: #f25022;
}

.microsoft-icon span:nth-child(2) {
  background: #7fba00;
}

.microsoft-icon span:nth-child(3) {
  background: #00a4ef;
}

.microsoft-icon span:nth-child(4) {
  background: #ffb900;
}

.apple-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.auth-actions button:first-child {
  border-color: rgba(98,227,200,.46);
  background: linear-gradient(90deg, #6d5dfc 0%, #2187ff 38%, #22c7a8 72%, #f1b75c 100%);
  background-size: 180% 100%;
  box-shadow:
    0 18px 40px rgba(34,199,168,.22),
    0 10px 28px rgba(109,93,252,.18),
    inset 0 0 0 1px rgba(255,255,255,.16);
  animation: authButtonGradient 5.4s ease-in-out infinite;
}

.auth-actions button:first-child:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.auth-actions button.secondary {
  background:
    linear-gradient(135deg, rgba(140,185,255,.18), rgba(155,140,255,.12)),
    var(--blue-soft);
}

.auth-actions button.ghost {
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #101719;
}

.auth-passkey-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.auth-2fa-recommend {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-2fa-recommend .label {
  margin-bottom: 8px;
  color: #fff0e8;
}

.two-factor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
}

.two-factor-links a {
  color: var(--teal);
  text-decoration: underline;
  font-size: 14px;
}

.auth-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  color: var(--muted);
}

.auth-foot small {
  display: block;
  max-width: 420px;
  text-align: right;
}

.legal-links,
.legal-mini-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}

.legal-links a,
.legal-mini-links a,
.legal-index a,
.legal-brand {
  color: #9cebdc;
  text-decoration: none;
}

.legal-links a:hover,
.legal-mini-links a:hover,
.legal-index a:hover {
  color: #fff7f2;
}

.legal-mini-links {
  justify-content: flex-start;
  font-size: 11px;
}

.legal-page {
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at 14% 2%, rgba(255,23,68,.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(34,199,168,.12), transparent 28%),
    linear-gradient(180deg, #13070a, #050607);
}

.legal-hero,
.legal-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--surface);
  box-shadow: var(--shadow);
}

.legal-brand img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 14px 26px rgba(255,23,68,.22));
}

.legal-hero h1 {
  max-width: 720px;
  margin: 12px 0 8px;
  color: #fff7f2;
  font-size: clamp(32px, 6vw, 62px);
  line-height: .94;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 720px;
  color: #d6e4df;
  line-height: 1.5;
}

.legal-hero small {
  color: var(--muted);
}

.legal-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  margin-top: 14px;
}

.legal-index,
.legal-doc {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: rgba(17,24,25,.88);
  box-shadow: var(--shadow);
}

.legal-index {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 8px;
  align-self: start;
  padding: 14px;
}

.legal-index a {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.03);
  font-size: 12px;
  font-weight: 800;
}

.legal-doc {
  overflow: hidden;
}

.legal-doc article {
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal-doc article:last-child {
  border-bottom: 0;
}

.legal-doc h2 {
  color: #fff7f2;
  font-size: 24px;
}

.legal-doc p {
  color: #c4d3ce;
  line-height: 1.65;
}

.legal-note {
  border-left: 3px solid var(--amber);
  padding-left: 12px;
  color: #f1d19a !important;
}

.protocol-activated {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,23,68,.22), transparent 26%),
    linear-gradient(180deg, rgba(5,6,7,.94), rgba(5,6,7,.72));
  animation: protocolVanish 2.1s ease both;
}

.protocol-activated > div:last-child {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  transform: translateY(54px);
  animation: protocolText 1.55s cubic-bezier(.2,.84,.18,1) both;
}

.protocol-activated span {
  color: #ff9b72;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .32em;
}

.protocol-activated b {
  color: #fff8f3;
  font-size: clamp(24px, 5vw, 62px);
  font-weight: 950;
  letter-spacing: .08em;
  text-shadow:
    0 0 18px rgba(255,23,68,.72),
    0 0 48px rgba(255,23,68,.32);
}

.lightning-mark {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(110px, 16vw, 210px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,23,68,.30);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,23,68,.23), transparent 64%),
    rgba(255,255,255,.025);
  box-shadow:
    0 0 0 18px rgba(255,23,68,.045),
    0 0 70px rgba(255,23,68,.34);
  animation: lightningStrike 1.2s cubic-bezier(.16,.95,.2,1) both;
}

.lightning-mark svg {
  width: 48%;
  overflow: visible;
  filter: drop-shadow(0 0 20px rgba(255,23,68,.95));
}

.lightning-mark path {
  fill: url("#lightningGradient");
  fill: #ff334e;
}

.join-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.join-card {
  width: min(540px, 100%);
  display: grid;
  gap: 14px;
  justify-items: start;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.join-card h1 {
  font-size: clamp(38px, 9vw, 74px);
  letter-spacing: -0.04em;
}

.join-card p {
  color: var(--muted);
  line-height: 1.6;
}

.join-card.unavailable {
  border-color: #6b2b2b;
}

.live-room-public {
  padding-top: 18px;
}

.public-room-cover {
  width: 100%;
  min-height: 190px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(4,8,9,.06), rgba(4,8,9,.72)),
    var(--teal-soft);
  background-position: center;
  background-size: cover;
}

.join-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.app {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 16px 12px;
  background: var(--sidebar);
  border-right: 1px solid rgba(255,255,255,.07);
  color: #edf4f1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 6px 4px;
}

.brand b,
.brand small {
  display: block;
}

.brand-wordmark {
  width: 96px;
  max-width: 58%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(255, 23, 68, .24));
}

.brand-lockup {
  min-width: 0;
}

.brand b {
  font-size: 14px;
}

.brand small,
.operator-card small {
  color: #93a49d;
}

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

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #05241f;
  background: #62e3c8;
  font-weight: 950;
  overflow: hidden;
}

.mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

nav {
  display: grid;
  gap: 3px;
}

nav button {
  min-height: 34px;
  justify-content: flex-start;
  text-align: left;
  color: #c8d4d0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  font-weight: 650;
}

nav button.active,
nav button:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.active-line {
  color: #dffcf5 !important;
  background: rgba(34,199,168,.14) !important;
  border-color: rgba(34,199,168,.32) !important;
}

.operator-card {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}

.operator-card span,
.operator-card b,
.operator-card small {
  display: block;
  overflow-wrap: anywhere;
}

.operator-card span {
  color: #9fb0aa;
  font-size: 12px;
}

.operator-card b {
  margin: 4px 0;
  font-size: 13px;
}

main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 22px;
}

.fenrir-wallpaper {
  position: absolute;
  top: 34px;
  right: 24px;
  z-index: -1;
  width: min(38vw, 480px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: .9;
}

.wallpaper-silhouette {
  width: clamp(270px, 34vw, 540px);
  max-width: 118%;
  overflow: visible;
  opacity: .56;
  transform-origin: center;
  transform: translateX(3%) rotate(-3deg);
  animation: mascotBreathe 5.6s ease-in-out infinite;
}

.silhouette-edge {
  fill: none;
  stroke: url(#fenrirEdge);
  stroke-width: 13;
  stroke-linejoin: round;
  opacity: .42;
  filter: drop-shadow(0 0 18px rgba(255,23,68,.46));
}

.hero-wolf-silhouette {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  top: 26px;
  z-index: 0;
  width: clamp(260px, 32vw, 480px);
  max-width: 56%;
  overflow: visible;
  opacity: .58;
  pointer-events: none;
  transform: rotate(-2deg);
  filter: drop-shadow(0 28px 54px rgba(0,0,0,.46));
}

.fenrir-wallpaper::before,
.fenrir-wallpaper::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 35%;
  width: clamp(120px, 17vw, 270px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,77,93,.85), rgba(241,183,92,.86), transparent);
  filter: drop-shadow(0 0 18px rgba(255,77,93,.5));
  opacity: .58;
  transform: rotate(-11deg);
}

.fenrir-wallpaper::after {
  top: 47%;
  width: clamp(92px, 13vw, 210px);
  opacity: .42;
  transform: rotate(-11deg) translateX(44px);
}

.wallpaper-paw,
.wallpaper-bot,
.wallpaper-orbit {
  position: absolute;
}

.wallpaper-paw {
  right: 13%;
  bottom: 17%;
  display: grid;
  place-items: center;
  width: clamp(44px, 6vw, 86px);
  height: clamp(44px, 6vw, 86px);
  border: 1px solid rgba(255,23,68,.24);
  border-radius: 22px;
  color: rgba(255,230,220,.22);
  background: rgba(255,23,68,.06);
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 950;
  opacity: .72;
  transform: rotate(-12deg);
  animation: pawPulse 3.2s ease-in-out infinite;
}

.wallpaper-bot {
  left: 22%;
  top: 22%;
  display: grid;
  place-items: center;
  width: clamp(44px, 6vw, 72px);
  height: clamp(44px, 6vw, 72px);
  border: 1px solid rgba(15,159,135,.22);
  border-radius: 18px;
  color: rgba(156,235,220,.58);
  background: rgba(9,14,16,.62);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
  animation: botFloat 4.2s ease-in-out infinite;
}

.wallpaper-orbit {
  inset: 10%;
  border: 1px solid rgba(15,159,135,.12);
  border-radius: 999px;
  animation: orbitSpin 18s linear infinite;
}

.wallpaper-orbit::before,
.wallpaper-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,159,135,.35);
  box-shadow: 0 0 0 6px rgba(15,159,135,.08);
}

.wallpaper-orbit::before {
  top: 12%;
  left: 20%;
}

.wallpaper-orbit::after {
  right: 13%;
  bottom: 22%;
  background: rgba(184,121,18,.35);
  box-shadow: 0 0 0 6px rgba(184,121,18,.08);
}

.orbit-two {
  inset: 21%;
  border-color: rgba(37,99,235,.10);
  animation-duration: 12s;
  animation-direction: reverse;
}

.topbar,
.notice,
.hero-grid,
.content-grid {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.label {
  margin: 0 0 7px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-owner {
  margin: 14px 0 0;
  max-width: 680px;
  color: #d9fff7;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
  text-shadow: 0 0 22px rgba(34, 199, 168, 0.18);
}

.brand-signature {
  width: min(700px, 100%);
  margin-top: 16px;
  display: grid;
  gap: 5px;
  color: #d7e5df;
  font-size: 13px;
  line-height: 1.35;
}

.brand-signature span:first-child {
  color: #ffe8d0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-signature strong {
  background: linear-gradient(90deg, #ff1744 0%, #f1b75c 44%, #22c7a8 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  filter: drop-shadow(0 0 14px rgba(255, 23, 68, .18));
}

.brand-signature small {
  color: #89a49c;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-signature.compact {
  width: 100%;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.guardian-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.guardian-pills span {
  position: relative;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(156,235,220,.18);
  border-radius: 999px;
  color: #eafff9;
  background:
    linear-gradient(135deg, rgba(255,23,68,.20), rgba(241,183,92,.09) 52%, rgba(34,199,168,.10)),
    rgba(5,10,12,.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.guardian-pills span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--hot-red);
  box-shadow: 0 0 14px rgba(255,23,68,.82);
}

h2,
h3,
p {
  margin-top: 0;
}

.top-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  background: #101719;
}

.good {
  color: #8af5de;
  background: var(--teal-soft);
  border-color: #29665b;
}

.amber {
  color: #ffd89a;
  background: var(--amber-soft);
  border-color: #6d4d1d;
}

.danger {
  color: #ffc5c2;
  background: var(--red-soft);
  border-color: #6b2b2b;
}

.blue {
  color: #cfe0ff;
  background: var(--blue-soft);
  border-color: #36577e;
}

.notice {
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid #6d4d1d;
  border-radius: 8px;
  background: #231b0d;
  color: #ffd89a;
  font-size: 13px;
}

.living-system {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(260px, .72fr) minmax(220px, .5fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(18,23,21,.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 8%, rgba(255,23,68,.18), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(98,227,200,.14), transparent 28%),
    linear-gradient(135deg, rgba(26,10,13,.98), rgba(13,35,31,.95) 44%, rgba(48,25,18,.96));
  color: #edf8f4;
  box-shadow: 0 18px 50px rgba(18,23,21,.14);
}

.living-system::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.system-stage,
.system-copy,
.pulse-feed {
  position: relative;
  z-index: 1;
}

.system-stage {
  min-height: 214px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.sigil-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 0 auto;
}

.sigil-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,51,78,.42);
}

.ring-a {
  animation: livingSpin 15s linear infinite;
}

.ring-a::before,
.ring-b::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hot-red);
  box-shadow: 0 0 22px rgba(255,23,68,.82);
}

.ring-a::before {
  top: 12px;
  left: 28px;
}

.ring-b {
  inset: 18px;
  border-color: rgba(255,193,105,.46);
  animation: livingSpin 9s linear infinite reverse;
}

.ring-b::before {
  right: 10px;
  bottom: 22px;
  background: #ffc169;
  box-shadow: 0 0 22px rgba(255,193,105,.72);
}

.sigil-letter {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: #051f1b;
  background: linear-gradient(135deg, var(--hot-red), #ff6b35 48%, #ffc169);
  font-size: 30px;
  font-weight: 950;
  box-shadow: 0 22px 42px rgba(0,0,0,.28);
  animation: coreBreathe 3.6s ease-in-out infinite;
}

.node-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.protocol-node {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 32px;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #e6faf5;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
  animation: nodeAwake 2.8s ease-in-out infinite;
}

.signal-lanes {
  position: absolute;
  inset: 18px;
  overflow: hidden;
  pointer-events: none;
}

.signal-lanes span {
  position: absolute;
  left: -20%;
  width: 42%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(98,227,200,.82), transparent);
  animation: signalSweep 3.8s ease-in-out infinite;
}

.signal-lanes span:nth-child(1) {
  top: 24%;
}

.signal-lanes span:nth-child(2) {
  top: 48%;
  animation-delay: 650ms;
  background: linear-gradient(90deg, transparent, rgba(255,193,105,.75), transparent);
}

.signal-lanes span:nth-child(3) {
  top: 72%;
  animation-delay: 1300ms;
  background: linear-gradient(90deg, transparent, rgba(140,185,255,.78), transparent);
}

.system-copy {
  display: grid;
  align-content: center;
  padding: 20px 4px;
}

.system-copy h2 {
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: 0;
}

.system-copy p:not(.label) {
  max-width: 520px;
  margin-bottom: 14px;
  color: #bad0c9;
  font-size: 13px;
  line-height: 1.55;
}

.protocol-score {
  display: grid;
  gap: 8px;
  max-width: 340px;
}

.protocol-score div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.protocol-score span {
  color: #9eb4ad;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.protocol-score b {
  color: #ffc169;
  font-size: 22px;
}

.protocol-score meter {
  width: 100%;
  height: 12px;
}

.pulse-feed {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.pulse-item {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  animation: feedRise 3.2s ease-in-out infinite;
}

.pulse-item span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #62e3c8;
  box-shadow: 0 0 0 6px rgba(98,227,200,.1), 0 0 16px rgba(98,227,200,.62);
}

.pulse-item b {
  color: #eef8f5;
  font-size: 12px;
}

.live-demo-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(320px, 1fr) minmax(220px, .62fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(156,235,220,.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(140,185,255,.13), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(241,183,92,.12), transparent 38%),
    linear-gradient(135deg, rgba(18,28,30,.98), rgba(12,18,20,.98));
  box-shadow: var(--shadow);
}

.live-demo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(34,199,168,.08), transparent 62%);
  animation: signalSweep 5.4s ease-in-out infinite;
}

.demo-copy,
.demo-console,
.demo-steps {
  position: relative;
  z-index: 1;
}

.demo-copy {
  display: grid;
  align-content: center;
}

.demo-copy h2 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: 0;
}

.demo-copy p:not(.label) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.demo-console {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(156,235,220,.14);
  border-radius: 8px;
  background: rgba(5,9,10,.46);
}

.demo-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.demo-mode {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.demo-mode button {
  min-height: 30px;
  padding: 5px 9px;
  font-size: 12px;
}

.demo-mode button.active {
  color: #05241f;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  border-color: transparent;
}

.demo-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.demo-result div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(156,235,220,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.demo-result span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-steps {
  display: grid;
  gap: 8px;
  align-content: center;
}

.demo-steps div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(156,235,220,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
}

.demo-steps div.complete {
  color: #e9fffa;
  border-color: rgba(34,199,168,.28);
  background: rgba(34,199,168,.09);
}

.demo-steps span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.demo-steps div.complete span {
  color: #05241f;
  background: var(--teal);
}

.demo-steps b {
  font-size: 12px;
}

.celebration {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: radial-gradient(circle at 50% 38%, rgba(15,159,135,.16), transparent 26%);
  animation: celebrationFade 2.8s ease both;
}

.confetti-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.confetti-field span {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 7px;
  height: 15px;
  border-radius: 2px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(15,159,135,.22);
  transform-origin: center;
  animation: confettiLaunch 1.65s cubic-bezier(.16,.8,.26,1) both;
}

.celebration-commerce .confetti-field span:nth-child(3n + 1),
.celebration-dns .confetti-field span:nth-child(4n + 1) {
  background: var(--amber);
}

.confetti-field span:nth-child(4n + 2) {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #17211f;
}

.confetti-field span:nth-child(5n) {
  background: var(--blue);
}

.confetti-field span:nth-child(1) { --tx: -330px; --ty: -190px; --rot: 180deg; animation-delay: 0ms; }
.confetti-field span:nth-child(2) { --tx: -270px; --ty: -250px; --rot: 260deg; animation-delay: 20ms; }
.confetti-field span:nth-child(3) { --tx: -220px; --ty: -140px; --rot: 90deg; animation-delay: 35ms; }
.confetti-field span:nth-child(4) { --tx: -160px; --ty: -285px; --rot: 310deg; animation-delay: 5ms; }
.confetti-field span:nth-child(5) { --tx: -105px; --ty: -190px; --rot: 140deg; animation-delay: 45ms; }
.confetti-field span:nth-child(6) { --tx: -55px; --ty: -255px; --rot: 290deg; animation-delay: 15ms; }
.confetti-field span:nth-child(7) { --tx: 0px; --ty: -175px; --rot: 220deg; animation-delay: 30ms; }
.confetti-field span:nth-child(8) { --tx: 55px; --ty: -265px; --rot: 360deg; animation-delay: 10ms; }
.confetti-field span:nth-child(9) { --tx: 110px; --ty: -185px; --rot: 160deg; animation-delay: 40ms; }
.confetti-field span:nth-child(10) { --tx: 170px; --ty: -285px; --rot: 300deg; animation-delay: 0ms; }
.confetti-field span:nth-child(11) { --tx: 230px; --ty: -145px; --rot: 120deg; animation-delay: 25ms; }
.confetti-field span:nth-child(12) { --tx: 290px; --ty: -240px; --rot: 280deg; animation-delay: 50ms; }
.confetti-field span:nth-child(13) { --tx: 345px; --ty: -165px; --rot: 200deg; animation-delay: 15ms; }
.confetti-field span:nth-child(14) { --tx: -360px; --ty: 8px; --rot: 390deg; animation-delay: 60ms; }
.confetti-field span:nth-child(15) { --tx: -285px; --ty: 72px; --rot: 140deg; animation-delay: 35ms; }
.confetti-field span:nth-child(16) { --tx: -210px; --ty: 22px; --rot: 260deg; animation-delay: 20ms; }
.confetti-field span:nth-child(17) { --tx: -145px; --ty: 92px; --rot: 110deg; animation-delay: 45ms; }
.confetti-field span:nth-child(18) { --tx: -70px; --ty: 35px; --rot: 300deg; animation-delay: 10ms; }
.confetti-field span:nth-child(19) { --tx: 70px; --ty: 38px; --rot: 180deg; animation-delay: 30ms; }
.confetti-field span:nth-child(20) { --tx: 145px; --ty: 94px; --rot: 340deg; animation-delay: 55ms; }
.confetti-field span:nth-child(21) { --tx: 215px; --ty: 28px; --rot: 120deg; animation-delay: 5ms; }
.confetti-field span:nth-child(22) { --tx: 290px; --ty: 74px; --rot: 260deg; animation-delay: 25ms; }
.confetti-field span:nth-child(23) { --tx: 365px; --ty: 12px; --rot: 400deg; animation-delay: 45ms; }
.confetti-field span:nth-child(24) { --tx: -245px; --ty: -330px; --rot: 460deg; animation-delay: 80ms; }
.confetti-field span:nth-child(25) { --tx: -85px; --ty: -345px; --rot: 210deg; animation-delay: 70ms; }
.confetti-field span:nth-child(26) { --tx: 85px; --ty: -345px; --rot: 330deg; animation-delay: 75ms; }
.confetti-field span:nth-child(27) { --tx: 245px; --ty: -330px; --rot: 190deg; animation-delay: 65ms; }
.confetti-field span:nth-child(28) { --tx: 0px; --ty: -365px; --rot: 500deg; animation-delay: 90ms; }

.celebration-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(440px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(15,159,135,.34);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(18,23,21,.18);
  animation: celebrationCard 2.8s ease both;
}

.celebration-card h2 {
  margin: 0 0 5px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.celebration-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.celebration-ring {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(15,159,135,.36);
  background:
    radial-gradient(circle, #ffffff 30%, transparent 31%),
    conic-gradient(from 120deg, var(--teal), var(--amber), var(--blue), var(--teal));
  box-shadow: inset 0 0 0 8px #ffffff;
}

.celebration-ring span {
  font-size: 22px;
  line-height: 1;
}

.celebration-ring img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.celebration-commerce .celebration-ring {
  border-color: rgba(184,121,18,.38);
  background:
    radial-gradient(circle, #ffffff 30%, transparent 31%),
    conic-gradient(from 120deg, var(--amber), var(--teal), var(--blue), var(--amber));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.metric,
.panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric {
  padding: 14px;
}

.metric span,
.panel-title p,
.key-value span,
.price small,
.timeline-item small,
.check small,
.provider small,
.dns-record small,
.audit-row small {
  color: var(--muted);
  font-size: 12px;
}

.metric b {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 14px;
  align-items: start;
}

.panel {
  padding: 15px;
  min-width: 0;
}

.panel-title {
  margin-bottom: 12px;
}

.panel-title h2 {
  margin-bottom: 4px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.panel-title p {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(100px, .5fr) minmax(160px, .7fr) auto;
  gap: 8px;
  margin-bottom: 12px;
}

.lock-form {
  grid-template-columns: minmax(170px, 1fr) minmax(92px, .42fr) minmax(150px, .56fr) minmax(145px, .62fr) minmax(170px, .8fr) auto;
}

.room-form {
  grid-template-columns: minmax(155px, 1fr) minmax(115px, .5fr) minmax(105px, .42fr) minmax(145px, .6fr) minmax(180px, .9fr) minmax(180px, .9fr) auto;
}

.form-column {
  display: grid;
  gap: 8px;
}

.table {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: .55fr 1.4fr .85fr .5fr 1fr;
  gap: 10px;
  align-items: center;
}

.table-head {
  padding: 9px 10px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.table-row {
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.row-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.row-actions button {
  min-height: 30px;
  padding: 5px 8px;
  font-size: 12px;
}

.lock-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lock-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lock-cover {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 142px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(18,23,21,.16), rgba(18,23,21,.74)),
    radial-gradient(circle at 20% 0%, rgba(15,159,135,.22), transparent 36%);
  background-size: cover;
  background-position: center;
}

.lock-shield {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 10px;
  color: #dffcf5;
  background: rgba(18,23,21,.42);
  backdrop-filter: blur(10px);
  font-weight: 950;
}

.lock-body {
  display: grid;
  gap: 11px;
  padding: 12px;
}

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

.lock-title b,
.lock-title small {
  display: block;
}

.lock-title small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.group-avatar {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid #ffffff;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(15,159,135,.84), rgba(18,23,21,.82)),
    var(--teal-soft);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(18,23,21,.16);
}

.group-avatar span {
  opacity: 0;
}

.lock-meta {
  display: grid;
  gap: 6px;
}

.lock-meta span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.cloudflare-easy {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: -2px 0 12px;
  padding: 10px 12px;
  border: 1px solid #bceade;
  border-radius: 8px;
  background: linear-gradient(90deg, #f1fffb, #ffffff);
}

.cloudflare-easy b {
  color: #087b68;
  white-space: nowrap;
}

.cloudflare-easy span {
  color: var(--muted);
  font-size: 12px;
}

.paid-feature-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: -2px 0 10px;
  padding: 10px 12px;
  border: 1px solid #f6d89a;
  border-radius: 8px;
  background: #fff8e8;
}

.paid-feature-strip b {
  color: #654100;
  white-space: nowrap;
}

.paid-feature-strip small {
  color: var(--muted);
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.room-cover {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 132px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(18,23,21,.12), rgba(18,23,21,.7)),
    radial-gradient(circle at 70% 0%, rgba(37,99,235,.22), transparent 40%);
  background-position: center;
  background-size: cover;
}

.room-provider {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(18,23,21,.42);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.room-body {
  display: grid;
  gap: 9px;
  padding: 12px;
}

.room-body b,
.room-body small {
  display: block;
}

.room-body small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.domain-choice {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #b9cdfd;
  border-radius: 8px;
  background: linear-gradient(90deg, #f7faff, #ffffff);
}

.domain-choice h3,
.domain-choice p {
  margin-bottom: 0;
}

.domain-choice p,
.domain-choice small {
  color: var(--muted);
  font-size: 12px;
}

.domain-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.domain-choice-grid div {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}

.domain-choice-grid b {
  color: #123159;
  font-size: 13px;
}

.key-value,
.audit-row,
.check,
.timeline-item,
.price,
.dns-record,
.provider,
.commerce-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.key-value {
  display: grid;
  gap: 5px;
  padding: 10px;
  margin-bottom: 8px;
}

.dns-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 12px;
}

.domain-list {
  display: grid;
  gap: 7px;
}

.domain-list button {
  display: grid;
  gap: 6px;
  text-align: left;
  color: var(--text);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.dns-records {
  display: grid;
  gap: 8px;
}

.cloudflare-recommendation {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid #bceade;
  border-radius: 8px;
  background: linear-gradient(180deg, #f1fffb, #ffffff);
}

.cloudflare-recommendation p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cloudflare-recommendation .frisky-tip {
  padding: 9px 10px;
  border: 1px solid #f6d89a;
  border-radius: 7px;
  background: #fff8e8;
  color: #654100;
}

.step-line {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dns-record {
  display: grid;
  gap: 6px;
  padding: 11px;
}

.dns-record span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.provider-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.provider {
  display: grid;
  gap: 5px;
  padding: 10px;
}

.commerce-panel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.commerce-panel p {
  color: var(--muted);
  font-size: 12px;
}

.commerce-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.commerce-card {
  display: grid;
  gap: 5px;
  min-height: 112px;
  padding: 11px;
  color: var(--text);
  text-decoration: none;
}

.commerce-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.commerce-card small {
  color: var(--muted);
  font-size: 12px;
}

.commerce-card.pending {
  border-style: dashed;
}

.badge-card img {
  max-width: 100%;
  height: auto;
}

.commerce-card.paused {
  opacity: .72;
}

.commerce-card.active {
  border-color: #bceade;
}

.checks,
.timeline,
.pricing,
.audit-list,
.ai-stack,
.faq-grid {
  display: grid;
  gap: 8px;
}

.ai-stack {
  grid-template-columns: 1fr;
}

.ai-studio-link {
  border-color: rgba(34,199,168,.38);
  background: linear-gradient(135deg, rgba(34,199,168,.2), rgba(15,23,25,.96) 54%, rgba(241,183,92,.22));
}

.check,
.timeline-item,
.price,
.audit-row {
  padding: 10px;
}

.check,
.timeline-item,
.audit-row {
  display: grid;
  gap: 5px;
}

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

.price {
  display: grid;
  gap: 6px;
}

.price strong {
  color: var(--text);
  font-size: 22px;
}

.stars-bridge {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(34,199,168,.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(34,199,168,.16), transparent 42%),
    linear-gradient(135deg, rgba(34,199,168,.10), rgba(255,23,68,.07));
}

.stars-bridge p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.faq-panel {
  border-color: rgba(255, 23, 68, .24);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 23, 68, .12), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(34, 199, 168, .08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--surface);
}

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

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--amber), var(--teal));
  opacity: .75;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px 12px 16px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #ffdfe4;
  background: rgba(255,23,68,.16);
  border: 1px solid rgba(255,23,68,.25);
  font-size: 11px;
  font-weight: 900;
}

.faq-item summary b {
  color: #fff7f2;
  font-size: 13px;
  line-height: 1.25;
}

.faq-item p {
  margin: -2px 14px 14px 60px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.service-panel {
  border-color: rgba(241, 183, 92, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 183, 92, 0.13), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--surface);
}

.cashout-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1.28fr);
  gap: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(34,199,168,.22);
  border-radius: 10px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34,199,168,.13), transparent 34%),
    radial-gradient(circle at 8% 100%, rgba(255,23,68,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.cashout-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.cashout-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #fff7f2;
  font-size: clamp(28px, 4.8vw, 54px);
  line-height: .94;
  text-transform: uppercase;
}

.cashout-copy p {
  color: #cfe0db;
  line-height: 1.5;
}

.cashout-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cashout-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.cashout-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--teal));
  opacity: .58;
}

.cashout-step {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 188px;
  align-content: start;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 12px;
  background: rgba(5,8,9,.64);
}

.cashout-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff7f2;
  background: linear-gradient(135deg, var(--hot-red), var(--amber));
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(255,23,68,.22);
}

.cashout-step b {
  color: #fff7f2;
  font-size: 13px;
  line-height: 1.22;
}

.cashout-step small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 14px;
}

.service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-form label {
  display: grid;
  gap: 7px;
}

.service-form span,
.stripe-mvp-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stripe-mvp-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(156,235,220,.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10,18,21,.96), rgba(31,26,15,.92));
}

.stripe-mvp-card h3 {
  margin: 0;
  font-size: 28px;
}

.stripe-mvp-card p {
  margin: 0;
  color: var(--muted);
}

.service-actions,
.service-steps {
  display: grid;
  gap: 8px;
}

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

.service-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.service-steps div {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(156,235,220,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.service-steps span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.service-steps .complete {
  border-color: rgba(34,199,168,.30);
  color: var(--text);
}

.link-vault-panel {
  border-color: rgba(255,23,68,.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(255,23,68,.16), transparent 34%),
    radial-gradient(circle at 100% 24%, rgba(34,199,168,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--surface);
}

.link-vault-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, .42fr);
  gap: 14px;
  align-items: stretch;
}

.link-map {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(156,235,220,.13);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,23,68,.15), transparent 34%),
    rgba(5,8,10,.48);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.link-map::before,
.link-map::after {
  content: "";
  position: absolute;
  inset: 50% 8% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,23,68,.64), rgba(241,183,92,.50), transparent);
}

.link-map::after {
  inset: 10% auto 10% 50%;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(255,23,68,.58), rgba(34,199,168,.44), transparent);
}

.link-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 6px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255,23,68,.34);
  border-radius: 999px;
  background: rgba(8,10,12,.88);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 55px rgba(255,23,68,.18);
}

.link-hub img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.link-hub b {
  font-size: 12px;
}

.link-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 160px;
  padding: 10px;
  border: 1px solid rgba(156,235,220,.16);
  border-radius: 9px;
  background: rgba(9,13,15,.88);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.link-node span,
.unified-link-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.link-node b {
  font-size: 12px;
}

.node-0 { left: 8%; top: 15%; }
.node-1 { right: 9%; top: 16%; }
.node-2 { left: 9%; bottom: 17%; }
.node-3 { right: 8%; bottom: 18%; }
.node-4 { left: 35%; top: 8%; }
.node-5 { right: 34%; bottom: 7%; }
.node-6 { left: 3%; top: 48%; }
.node-7 { right: 3%; top: 48%; }

.personal-link-form {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(156,235,220,.14);
  border-radius: 10px;
  background: rgba(5,8,10,.44);
}

.personal-link-form h3 {
  margin: 0;
}

.all-links-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.all-links-grid::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: -7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,23,68,.44), rgba(34,199,168,.32), transparent);
}

.unified-link-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(156,235,220,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.032);
}

.unified-link-card b {
  font-size: 14px;
}

.unified-link-card small {
  color: var(--muted);
  font-weight: 800;
}

.audit-row {
  grid-template-columns: 1fr 1fr .8fr;
  align-items: center;
}

@keyframes confettiLaunch {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.6) rotate(0deg);
  }
  14% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty) + 170px)) scale(1) rotate(var(--rot));
  }
}

@keyframes lightningStrike {
  0% {
    opacity: 0;
    transform: scale(.62) rotate(-8deg);
  }
  18% {
    opacity: 1;
    transform: scale(1.08) rotate(3deg);
  }
  30% {
    transform: scale(.96) rotate(-2deg);
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.18) rotate(0deg);
  }
}

@keyframes protocolText {
  0% {
    opacity: 0;
    letter-spacing: .18em;
    transform: translateY(78px) scale(.96);
  }
  22% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translateY(54px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(44px) scale(1.02);
  }
}

@keyframes protocolVanish {
  0%,
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes celebrationFade {
  0%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes celebrationCard {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(.96);
  }
  14%,
  76% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
}

@keyframes mascotBreathe {
  0%,
  100% {
    transform: scale(1) rotate(-2deg);
  }
  50% {
    transform: scale(1.035) rotate(2deg);
  }
}

@keyframes pawPulse {
  0%,
  100% {
    opacity: .12;
    transform: translateY(0) rotate(-12deg) scale(1);
  }
  50% {
    opacity: .26;
    transform: translateY(-6px) rotate(-6deg) scale(1.08);
  }
}

@keyframes botFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -12px, 0);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes authSignalSweep {
  0%,
  100% {
    background-position: -120% 32%, -80% 68%;
    opacity: .22;
  }
  48% {
    background-position: 180% 32%, 160% 68%;
    opacity: .78;
  }
}

@keyframes authCardSheen {
  0%,
  62%,
  100% {
    transform: translateX(-140%);
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  88% {
    transform: translateX(140%);
    opacity: 0;
  }
}

@keyframes authButtonGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes livingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes coreBreathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 22px 42px rgba(0,0,0,.28);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 24px 50px rgba(98,227,200,.2);
  }
}

@keyframes nodeAwake {
  0%,
  100% {
    border-color: rgba(255,255,255,.14);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(98,227,200,.42);
    transform: translateY(-2px);
  }
}

@keyframes signalSweep {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  12%,
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(330%);
  }
}

@keyframes feedRise {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .celebration,
  .celebration-card,
  .protocol-activated,
  .protocol-activated > div:last-child,
  .lightning-mark,
  .confetti-field span,
  .wallpaper-silhouette,
  .wallpaper-paw,
  .wallpaper-bot,
  .wallpaper-orbit,
  .ring-a,
  .ring-b,
  .sigil-letter,
  .protocol-node,
  .signal-lanes span,
  .pulse-item,
  .auth-page::after,
  .auth-card::before,
  .auth-actions button:first-child {
    animation-duration: 1ms;
  }

  .confetti-field {
    display: none;
  }

  .protocol-activated {
    display: none;
  }
}

@media (max-width: 1050px) {
  .app {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .operator-card {
    position: static;
    margin-top: 14px;
  }

  nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .content-grid,
  .hero-grid,
  .living-system,
  .live-demo-card,
  .cashout-panel,
  .legal-hero,
  .legal-shell {
    grid-template-columns: 1fr 1fr;
  }

	  .form-row,
	  .lock-form,
	  .room-form,
	  .table-head,
	  .table-row,
	  .lock-gallery,
	  .room-gallery,
	  .dns-layout,
  .provider-tabs,
  .commerce-grid,
  .domain-choice-grid,
  .audit-row,
  .living-system,
  .live-demo-card,
  .demo-result,
  .demo-input-row,
  .link-vault-layout,
  .all-links-grid,
  .faq-grid,
  .cashout-flow,
  .cashout-actions,
  .service-grid,
  .service-form,
  .service-actions,
  .auth-actions,
  .auth-disclosure,
  .service-steps,
  .legal-hero,
  .legal-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main {
    padding: 12px;
  }

  nav,
  .content-grid,
  .hero-grid,
  .pricing,
  .link-vault-layout,
  .all-links-grid,
  .faq-grid,
  .cashout-panel,
  .cashout-flow,
  .cashout-actions,
  .service-grid,
  .service-form,
  .service-actions,
  .auth-actions,
  .auth-disclosure,
  .service-steps,
  .legal-hero,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .auth-foot {
    display: grid;
  }

  .auth-foot small {
    text-align: left;
  }

  .legal-links,
  .legal-hero {
    justify-content: start;
  }

  .legal-page {
    padding: 12px;
  }

  .legal-index {
    position: static;
  }

  .cashout-flow::before {
    display: none;
  }

  .topbar {
    display: grid;
  }

  .hero-wolf-silhouette {
    right: -34px;
    top: 92px;
    width: 280px;
    max-width: 76%;
    opacity: .28;
  }
}

/* Dark tornasol finish */
.app {
  background:
    radial-gradient(circle at 82% -8%, rgba(255,23,68,.26), transparent 32%),
    radial-gradient(circle at 72% -8%, rgba(155,140,255,.08), transparent 30%),
    radial-gradient(circle at 12% 8%, rgba(34,199,168,.12), transparent 28%),
    linear-gradient(180deg, #16070b, #08090b 45%, #050607);
}

.fenrir-mark {
  background: linear-gradient(135deg, #ff1744 0%, #f1b75c 52%, #22c7a8 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 18px 38px rgba(255,23,68,.22);
}

.brand b {
  background: linear-gradient(90deg, #fff2f3, #ff6b7a 38%, #ffd48c 72%, #9cebdc);
  background-clip: text;
  color: transparent;
}

.topbar,
.panel,
.metric,
.join-card,
.lock-card,
.room-card {
  border-color: rgba(156,235,220,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--surface);
  box-shadow: 0 18px 58px rgba(0,0,0,.34);
}

.topbar {
  background:
    radial-gradient(circle at 86% 0%, rgba(255,23,68,.30), transparent 30%),
    radial-gradient(circle at 78% 0%, rgba(241,183,92,.13), transparent 34%),
    radial-gradient(circle at 9% 100%, rgba(34,199,168,.12), transparent 38%),
    linear-gradient(90deg, rgba(159,16,37,.26), transparent 28%),
    linear-gradient(135deg, rgba(31,10,14,.98), rgba(14,24,25,.96));
}

.topbar::before {
  content: "FENRIR";
  position: absolute;
  right: -12px;
  bottom: -20px;
  z-index: 0;
  pointer-events: none;
  color: rgba(255,255,255,.035);
  font-size: clamp(82px, 13vw, 190px);
  font-weight: 950;
  letter-spacing: .02em;
  line-height: .8;
}

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

.metric.good,
.metric.blue,
.metric.danger,
.metric.amber {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)),
    #101718;
}

.metric.good {
  border-color: rgba(34,199,168,.28);
}

.metric.blue {
  border-color: rgba(140,185,255,.28);
}

.metric.danger {
  border-color: rgba(255,118,111,.24);
}

.language-select {
  width: auto;
  min-width: 104px;
  color: #e9fffa;
  background: #0b1113;
  border-color: rgba(156,235,220,.2);
  font-weight: 800;
}

.notice,
.paid-feature-strip {
  background: linear-gradient(90deg, rgba(59,43,20,.88), rgba(27,23,17,.86));
  border-color: rgba(241,183,92,.28);
}

.cloudflare-easy,
.domain-choice,
.cloudflare-recommendation {
  background:
    radial-gradient(circle at 0% 0%, rgba(34,199,168,.12), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101718;
  border-color: rgba(34,199,168,.20);
}

.domain-choice-grid div,
.key-value,
.audit-row,
.check,
.timeline-item,
.price,
.dns-record,
.provider,
.commerce-card {
  background: #101718;
  border-color: rgba(156,235,220,.12);
}

.domain-list button {
  color: var(--text);
  background: #101718;
  border-color: rgba(156,235,220,.12);
}

.lock-cover,
.room-cover {
  box-shadow: inset 0 -76px 80px rgba(0,0,0,.58);
}

.celebration-card {
  background: rgba(14,22,23,.95);
  border-color: rgba(156,235,220,.28);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
}

.celebration-ring {
  box-shadow: inset 0 0 0 8px #101718;
  background:
    radial-gradient(circle, #101718 30%, transparent 31%),
    conic-gradient(from 120deg, var(--teal), var(--blue), var(--amber), var(--teal));
}

.wallpaper-orbit {
  border-color: rgba(156,235,220,.16);
}

.readiness-panel .readiness-banner {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin: 0.75rem 0 1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.readiness-panel .readiness-banner.good {
  background: rgba(45, 232, 180, 0.08);
  border-color: rgba(45, 232, 180, 0.22);
  color: var(--teal);
}

.readiness-panel .readiness-banner.danger {
  background: rgba(255, 99, 132, 0.08);
  border-color: rgba(255, 99, 132, 0.28);
  color: #ffb4c1;
}

.readiness-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.readiness-checklist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(156, 235, 220, 0.08);
}

.readiness-checklist li:last-child {
  border-bottom: none;
}
