:root {
  --bg: #08080d;
  --panel: rgba(18, 18, 26, 0.78);
  --panel-strong: rgba(22, 20, 32, 0.94);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --soft: rgba(255, 255, 255, 0.1);
  --pink: #ff315a;
  --purple: #b347ff;
  --green: #2eff72;
  --gold: #ffd36a;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 49, 90, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 16%, rgba(179, 71, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #08080d 0%, #11101a 52%, #08080d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}

.page-glow-one {
  left: -10rem;
  top: 12rem;
  background: var(--pink);
}

.page-glow-two {
  right: -12rem;
  bottom: 12rem;
  background: var(--purple);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(8, 8, 13, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 26px rgba(255, 49, 90, 0.34);
}

.nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav a:hover {
  color: white;
}

.section {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
  min-height: calc(100vh - 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px currentColor;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}


.hero-copy h1 {
  text-shadow: 0 0 42px rgba(255, 49, 90, 0.16);
}

.hero-copy h1::selection, p::selection, h2::selection, h3::selection {
  background: rgba(255, 49, 90, 0.35);
}
.hero-subtitle {
  max-width: 610px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,0.14);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 18px 40px rgba(255, 49, 90, 0.25);
}

.button.secondary {
  color: white;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.button.big {
  min-width: 220px;
}

.product-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: center;
  justify-items: end;
}

.pill-preview {
  position: relative;
  z-index: 3;
  width: 240px;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at 20% 20%, rgba(255,49,90,0.32), transparent 34%), linear-gradient(135deg, rgba(20,20,28,0.96), rgba(42,26,54,0.94));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 18px 50px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.12);
}

.pill-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.pill-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.pill-preview b, .pill-preview span {
  display: block;
}

.pill-preview span {
  margin-top: 0.2rem;
  color: rgba(255,255,255,0.58);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
}

.live-dot, .status-dot {
  color: var(--green);
  text-shadow: 0 0 14px currentColor;
}

.panel-preview {
  width: min(350px, 100%);
  margin-top: 0.8rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at 100% 0%, rgba(179,71,255,0.16), transparent 35%), rgba(12,12,16,0.95);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 70px rgba(0,0,0,0.64), inset 0 1px 0 rgba(255,255,255,0.08);
}

.panel-top, .list-head, .viewer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.panel-top h3 {
  margin: 0 0 0.1rem;
}

.panel-top p {
  margin: 0;
  font-size: 0.78rem;
}

.mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0.3rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
}

.mode-tabs span {
  padding: 0.65rem;
  text-align: center;
  color: rgba(255,255,255,0.66);
  border-radius: 0.75rem;
  font-size: 0.8rem;
  font-weight: 950;
}

.mode-tabs .active {
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.viewer-list {
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.list-head span {
  color: rgba(255,255,255,0.48);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 950;
}

.list-head b {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46,255,114,0.12);
  color: var(--green);
}

.viewer-row {
  padding: 0.65rem 0.75rem;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.06);
}

.viewer-row span {
  font-weight: 850;
}

.viewer-row em {
  color: var(--green);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 850;
}

.mock-viewer-state {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(46,255,114,0.24);
  border-radius: 0.85rem;
  background: rgba(46,255,114,0.09);
}

.mock-viewer-state span {
  color: rgba(255,255,255,0.58);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-viewer-state b {
  color: var(--green);
  font-size: 0.88rem;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.demo-frame {
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,49,90,0.16), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 80px rgba(0,0,0,0.28);
}

.demo-placeholder {
  text-align: center;
}

.demo-placeholder span {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 18px 42px rgba(255,49,90,0.3);
}

.demo-placeholder b {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.steps-grid, .use-grid, .start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.use-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card, .use-grid article, .monetize-card, .beta-card, .start-card {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
}

.step-card, .use-grid article {
  padding: 1.35rem;
}

.step-card h3,
.start-card h3 {
  color: white;
  font-size: 1.35rem;
}

.step-card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-card li + li {
  margin-top: 0.65rem;
}

.monetize-card, .beta-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: linear-gradient(135deg, rgba(255,49,90,0.12), rgba(179,71,255,0.1)), var(--panel-strong);
}

.pricing-mini-card {
  padding: 1.3rem;
  border-radius: 1.4rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
}

.pricing-mini-card span {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 950;
}

.pricing-mini-card h3 {
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}

.pricing-mini-card b {
  font-size: 2rem;
}

.beta-card {
  text-align: left;
}

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

.start-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: linear-gradient(135deg, rgba(255,49,90,0.1), rgba(179,71,255,0.08)), var(--panel-strong);
}

.start-card p {
  flex: 1;
}

.button.disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.form-note {
  grid-column: 1 / -1;
  margin: -1rem 0 0;
  font-size: 0.85rem;
}

.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.48);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer span:first-child {
  color: white;
  font-weight: 950;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 900px) {
  .hero,
  .monetize-card,
  .beta-card {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    justify-items: center;
  }


  .steps-grid,
  .use-grid,
  .start-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .brand-logo-only {
    flex: 0 0 auto;
  }

  .nav {
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
    overflow: visible;
    padding-bottom: 0;
    gap: 0;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .steps-grid,
  .use-grid,
  .start-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Gatekeep logo / nav additions */

.site-logo {
  width: 156px;
  max-height: 48px;
  object-fit: contain;
  display: block;
}
.brand-logo-only {
  gap: 0;
}
.nav-cta {
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(255,49,90,0.22), rgba(179,71,255,0.22));
  padding: 10px 14px;
  border-radius: 999px;
}


/* Dashboard/auth styles adapted to match the extension aesthetic */
:root {
  --pink: #F288EB;
  --purple: #9454BF;
  --periwinkle: #A3B0D9;
  --deep: #5A2C91;
  --lavender: #D8C8FF;
  --white: #FFFFFF;
  --ink: #10091a;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.13);
  --line: rgba(255,255,255,0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --headline: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: var(--body);
  background:
    radial-gradient(circle at 15% 10%, rgba(242, 136, 235, 0.25), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(163, 176, 217, 0.22), transparent 30%),
    linear-gradient(135deg, #12081e 0%, #28103f 48%, #09070f 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.orb { position: fixed; pointer-events: none; filter: blur(12px); opacity: .65; z-index: -1; }
.orb-one { width: 420px; height: 420px; background: rgba(242,136,235,.17); border-radius: 999px; left: -140px; top: 160px; }
.orb-two { width: 500px; height: 500px; background: rgba(148,84,191,.18); border-radius: 999px; right: -180px; top: 120px; }

.site-nav, .footer {
  width: min(1160px, calc(100vw - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav { padding: 22px 0; }
.site-nav nav { display: flex; gap: 18px; align-items: center; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }
.nav-pill { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.07); color: white; }

.brand { display: inline-flex; gap: 12px; align-items: center; }
.brand-icon {
  width: 42px; height: 42px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 28px rgba(242,136,235,.38);
  font-size: 11px; font-weight: 900;
}
.logo-placeholder { border: 1px dashed rgba(255,255,255,.45); }
.brand strong { display: block; font-family: var(--headline); font-size: 22px; letter-spacing: -0.04em; }
.brand small { display: block; color: rgba(255,255,255,.55); text-transform: uppercase; font-size: 9px; letter-spacing: .16em; font-weight: 900; }

.section-shell { width: min(1160px, calc(100vw - 36px)); margin: 0 auto; }
.hero { min-height: 78vh; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding: 40px 0 70px; }
.eyebrow { color: var(--pink); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; margin-bottom: 14px; }
h1, h2, h3 { font-family: var(--headline); margin: 0; letter-spacing: -0.05em; }
h1 { font-size: clamp(54px, 8vw, 104px); line-height: .88; }
h2 { font-size: clamp(34px, 5vw, 58px); line-height: .98; }
h3 { font-size: 22px; }
p { color: rgba(255,255,255,.72); line-height: 1.7; }
.lead { font-size: 18px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 18px;
  background: rgba(255,255,255,.08);
  color: white;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.button.primary { background: linear-gradient(135deg, var(--pink), var(--purple)); border-color: rgba(255,255,255,.3); box-shadow: 0 14px 40px rgba(242,136,235,.22); }
.button.ghost { background: rgba(255,255,255,.07); }
.button.full { width: 100%; }

.hero-product-card { display: flex; justify-content: center; }
.mock-window {
  width: min(440px, 100%);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.075);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.mock-topbar { display: flex; gap: 7px; padding: 5px 0 14px; }
.mock-topbar span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.3); }
.logo-slot { min-height: 180px; display: grid; place-items: center; border: 1px dashed rgba(255,255,255,.28); border-radius: 24px; color: rgba(255,255,255,.5); font-family: var(--headline); font-size: 28px; }
.mock-panel { margin-top: 14px; border-radius: 24px; background: rgba(12,7,20,.85); border: 1px solid rgba(255,255,255,.12); padding: 14px; }
.panel-head { display: flex; justify-content: space-between; margin-bottom: 12px; }
.panel-head small { color: var(--pink); font-weight: 900; }
.effect-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.effect-row button, .button-group button {
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); color: white; border-radius: 13px; padding: 10px 8px; font-weight: 900;
}
.effect-row button.active, .button-group button.active, .active-danger { background: linear-gradient(135deg, var(--pink), var(--purple)) !important; }
.slider-line { height: 9px; border-radius: 999px; background: rgba(255,255,255,.12); margin: 14px 0; overflow: hidden; }
.slider-line span { display: block; height: 100%; width: 55%; background: linear-gradient(90deg, var(--pink), var(--periwinkle)); border-radius: 999px; }
.viewer-list { display: grid; gap: 8px; }
.viewer-list div { display: flex; justify-content: space-between; background: rgba(255,255,255,.06); border-radius: 14px; padding: 10px; }
.viewer-list em { color: var(--lavender); font-style: normal; font-size: 12px; }

.video-section, .cards-section, .split-section, .beta-form-section { padding: 72px 0; }
.centered { text-align: center; margin-inline: auto; max-width: 760px; }
.compact h1 { font-size: clamp(36px, 5vw, 58px); line-height: 1; }
.video-frame { border-radius: 34px; border: 1px solid var(--line); background: rgba(255,255,255,.08); padding: 14px; box-shadow: var(--shadow); }
.video-placeholder { min-height: 430px; border-radius: 24px; background: linear-gradient(135deg, rgba(242,136,235,.14), rgba(90,44,145,.24)); display: grid; place-items: center; text-align: center; border: 1px dashed rgba(255,255,255,.3); }
.video-placeholder span { font-family: var(--headline); font-size: 34px; display: block; }
.video-placeholder small { color: rgba(255,255,255,.6); }
.cards { display: grid; gap: 16px; margin-top: 28px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card, .revenue-card, .dash-panel, .auth-card, .metric-card {
  border: 1px solid var(--line); background: rgba(255,255,255,.08); border-radius: 28px; padding: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.18); backdrop-filter: blur(18px);
}
.number { color: var(--pink); font-family: var(--headline); font-size: 26px; }
.split-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.revenue-card { display: grid; gap: 14px; }
.revenue-row { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-radius: 16px; background: rgba(255,255,255,.06); }
.revenue-row.big { background: rgba(242,136,235,.14); }
.revenue-row b { font-family: var(--headline); font-size: 26px; }
.beta-form-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: start; }
.beta-form { display: grid; gap: 14px; }
.beta-form label, .dash-input { display: grid; gap: 8px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 800; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(255,255,255,.08); color: white; padding: 13px 14px; outline: none;
}
select option { color: #111; }
textarea { resize: vertical; min-height: 96px; }
.footer { padding: 36px 0; color: rgba(255,255,255,.5); font-size: 13px; }

.auth-body { display: grid; place-items: center; }
.auth-wrap { width: min(520px, calc(100vw - 36px)); padding: 32px 0; }
.auth-brand { margin-bottom: 18px; }
.auth-card { padding: 28px; }
.form-message { min-height: 22px; color: rgba(255,255,255,.7); font-size: 13px; margin-top: 8px; }
.form-message.error { color: #ff8ca1; }
.form-message.success { color: #89ffb0; }
.tiny-note { font-size: 12px; color: rgba(255,255,255,.5); }

.auth-assist-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.auth-assist-actions button,
.text-link-button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.62);
  padding: 0;
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(242,136,235,.45);
  text-underline-offset: 4px;
}

.auth-assist-actions button:hover,
.text-link-button:hover {
  color: white;
  text-decoration-color: var(--pink);
}

.signup-confirmation {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(242,136,235,.18), transparent 34%),
    rgba(255,255,255,.07);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}

.signup-confirmation h2 {
  font-size: clamp(30px, 5vw, 44px);
}

.signup-confirmation p {
  margin: 0;
}

.beta-form small {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  line-height: 1.35;
}

.verify-notice {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(46,255,114,0.22);
  border-radius: 16px;
  background: rgba(46,255,114,0.08);
}

.verify-notice b {
  color: white;
  font-size: 13px;
}

.verify-notice span {
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.4;
}

.dashboard-body { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; }
.dash-sidebar { position: sticky; top: 0; height: 100vh; padding: 22px; border-right: 1px solid var(--line); background: rgba(7,4,12,.55); backdrop-filter: blur(18px); display: flex; flex-direction: column; gap: 26px; }
.dash-nav { display: grid; gap: 8px; }
.dash-nav a { padding: 12px 14px; border-radius: 14px; color: rgba(255,255,255,.7); font-weight: 900; }
.dash-nav a.active, .dash-nav a:hover { background: rgba(255,255,255,.09); color: white; }
.dashboard-main { padding: 28px; width: min(1240px, 100%); }
.dash-header { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 22px; }
.dash-header h1 { font-size: clamp(38px, 5vw, 64px); }
.dash-status { padding: 12px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.08); font-weight: 900; }
#connection-dot { color: #ffbd2e; text-shadow: 0 0 14px currentColor; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.metric-card span { color: rgba(255,255,255,.58); font-size: 13px; font-weight: 900; }
.metric-card b { display: block; margin-top: 8px; font-family: var(--headline); font-size: 38px; }
.dashboard-grid { display: grid; grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr); gap: 14px; align-items: start; }
.panel-title-row { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 18px; }
.panel-title-row h2, .panel-title-row h3 { margin-bottom: 4px; }
.panel-title-row p { margin: 0; font-size: 13px; }
.compact-row { align-items: center; }
.gate-control-card { display: grid; gap: 14px; }
.toggle-line { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 900; }
.toggle-line input { width: 18px; accent-color: var(--pink); }
.toggle-line.big { font-size: 15px; }
.button-group { display: grid; gap: 8px; }
.button-group.two { grid-template-columns: 1fr 1fr; }
.button-group.three { grid-template-columns: repeat(3, 1fr); }
.button-group.four { grid-template-columns: repeat(4, 1fr); }
.dash-input input[type="range"] { padding: 0; accent-color: var(--pink); }
.count-badge { min-width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--pink), var(--purple)); }
.dash-viewer-list { display: grid; gap: 9px; }
.dash-viewer { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; text-align: left; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: white; border-radius: 16px; padding: 12px; }
.dash-viewer span { display: grid; gap: 3px; }
.dash-viewer small { color: rgba(255,255,255,.5); }
.dash-viewer em { color: var(--lavender); font-style: normal; font-size: 12px; font-weight: 900; }
.empty-state { color: rgba(255,255,255,.5); padding: 18px; text-align: center; border: 1px dashed rgba(255,255,255,.18); border-radius: 18px; }
.override-panel { margin-top: 16px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; }
.hidden { display: none !important; }
.icon-button { width: 34px; height: 34px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.08); color: white; font-size: 18px; }
.setup-panel { margin-top: 14px; }
.setup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

@media (max-width: 900px) {
  .site-nav nav a:not(.nav-pill) { display: none; }
  .hero, .split-section, .beta-form-section, .dashboard-grid { grid-template-columns: 1fr; }
  .cards.three, .metrics-grid { grid-template-columns: 1fr; }
  .dashboard-body { grid-template-columns: 1fr; }
  .dash-sidebar { position: relative; height: auto; }
  .dash-nav { grid-template-columns: repeat(4, 1fr); overflow-x: auto; }
  .button-group.four { grid-template-columns: repeat(2, 1fr); }
  .setup-grid { grid-template-columns: 1fr; }
}

/* Gatekeep logo + extension-style mock polish */
.site-logo { width: 156px; max-height: 52px; object-fit: contain; display: block; }
.auth-site-logo { margin-inline: auto; }
.logo-only { display: flex; align-items: center; }
.logo-only span, .logo-placeholder, .logo-slot { display: none !important; }
.extension-mock {
  margin-top: 14px;
  background: radial-gradient(circle at 100% 0%, rgba(179,71,255,0.16), transparent 35%), rgba(12,12,16,0.95);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.64), inset 0 1px 0 rgba(255,255,255,0.08);
}
.extension-mock .panel-head { border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 12px; margin-bottom: 12px; }
.extension-mock .panel-head small { color: #2eff72; text-shadow: 0 0 14px rgba(46,255,114,0.8); }


/* Final Gatekeep theme overrides: match the actual extension */
:root {
  --bg: #08080d;
  --panel: rgba(18, 18, 26, 0.78);
  --panel-strong: rgba(22, 20, 32, 0.94);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --soft: rgba(255, 255, 255, 0.1);
  --pink: #ff315a;
  --purple: #b347ff;
  --green: #2eff72;
  --gold: #ffd36a;
}
body,
.auth-body,
.dashboard-body {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 49, 90, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 16%, rgba(179, 71, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #08080d 0%, #11101a 52%, #08080d 100%) !important;
}
.button.primary,
button.active,
.style-btn.active,
.target-btn.active,
.mode-btn.active,
.nav-pill,
.nav-cta {
  background: linear-gradient(135deg, #ff315a, #b347ff) !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(255,49,90,.24) !important;
}
.card,
.auth-card,
.control-card,
.stats-card,
.presence-card,
.override-card,
.payout-card,
.revenue-card,
.mock-panel,
.dashboard-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(179, 71, 255, 0.16), transparent 35%),
    rgba(12,12,16,0.95) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.52),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.form-message.success { color: #2eff72 !important; }

.auth-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 16px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
}

.auth-mode-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-weight: 900;
  cursor: pointer;
}

.auth-mode-tabs button.active {
  color: white;
  background: linear-gradient(135deg, #ff315a, #b347ff);
  box-shadow: 0 8px 24px rgba(255,49,90,0.24);
}
.form-message.error { color: #ff5d7a !important; }
.connection-dot, .live-dot { color: #2eff72 !important; }
.site-logo.auth-site-logo { width: 190px; }
@media (max-width: 720px) {
  .site-logo { width: 135px; }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .brand-logo-only {
    flex: 0 0 auto;
  }

  .nav {
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
    overflow: visible;
    padding-bottom: 0;
    gap: 0;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .product-card {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(3rem, 9vw, 5rem);
  }
}
