/* Team Vice — site styles.
   Dark, neon, mobile-first: this site's main audience arrives from a phone
   bio link. The creator page doubles as the link-in-bio hub. */

* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0a10;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f1f8;
  --muted: #a49bb4;
  --pink: #ff2d78;
  --violet: #8b3dff;
  --blue: #3d7bff;
  --grad: linear-gradient(100deg, var(--pink), var(--violet) 55%, var(--blue));
  --radius: 18px;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  /* Anchor targets land below the sticky header instead of underneath it. */
  scroll-padding-top: 84px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Ambient glow orbs behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(42rem 42rem at 85% -10%, rgba(139, 61, 255, 0.28), transparent 60%),
    radial-gradient(36rem 36rem at -10% 30%, rgba(255, 45, 120, 0.2), transparent 60%),
    radial-gradient(40rem 40rem at 55% 115%, rgba(61, 123, 255, 0.18), transparent 60%);
}

/* Keyboard focus: one visible brand-blue ring everywhere, only for keyboard users. */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.btn:focus-visible,
.roster-card:focus-visible,
.link-list a:focus-visible {
  outline-offset: 4px;
}

.skip {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 22px;
}

a {
  color: var(--text);
}

::selection {
  background: rgba(255, 45, 120, 0.4);
}

/* ── Header ─────────────────────────────────────────────────────────────── */

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(11, 10, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand .mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 0 16px rgba(139, 61, 255, 0.45);
}

.brand .name {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav.site {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

nav.site a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

nav.site a:hover {
  color: var(--text);
}

main {
  flex: 1;
  padding: 0 0 72px;
}

/* ── Type ───────────────────────────────────────────────────────────────── */

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 9vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 4vw, 28px);
  margin: 0 0 18px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
}

p {
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
  font-size: 15px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
  background: var(--surface);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 84px 0 64px;
  text-align: left;
}

/* Decorative gradient ring on the right of the hero: fills the empty half of the
   viewport on desktop without an image. Hidden on phones, where the column is
   the whole screen. */
.hero-art {
  display: none;
  position: absolute;
  top: 56px;
  right: -36px;
  width: 340px;
  height: 340px;
  pointer-events: none;
}

.hero-art .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    var(--pink),
    var(--violet) 35%,
    var(--blue) 65%,
    transparent 78%,
    var(--pink)
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  opacity: 0.85;
  animation: spin 40s linear infinite;
}

.hero-art .orb {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255, 45, 120, 0.45),
    rgba(139, 61, 255, 0.25) 55%,
    transparent 72%
  );
  filter: blur(18px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1000px) {
  .hero-art {
    display: block;
  }
}

.hero .lede {
  max-width: 34em;
  font-size: 18px;
  color: var(--muted);
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.metrics .m b {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.metrics .m span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Sections & cards ───────────────────────────────────────────────────── */

section {
  margin-top: 72px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    transform 0.18s,
    border-color 0.18s;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.18s;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card:hover::before {
  opacity: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.card .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ── Roster card (index) ────────────────────────────────────────────────── */

.roster-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    transform 0.18s,
    border-color 0.18s,
    background 0.18s;
}

.roster-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 120, 0.45);
  background: var(--surface-2);
}

.roster-card .head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.roster-card .head p {
  margin: 0;
}

.roster-card .go {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.roster-card:hover .go {
  color: var(--text);
}

/* Avatar with gradient ring — a monogram <div>, or an <img> photo */
.avatar {
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 26px rgba(139, 61, 255, 0.35);
}

.avatar.lg {
  width: 96px;
  height: 96px;
  font-size: 28px;
  box-shadow: 0 0 44px rgba(139, 61, 255, 0.45);
}

/* Photo variant. The image fills the padding box, so the 2px transparent border
   still shows the gradient ring underneath. Square source, cropped to the circle. */
img.avatar {
  display: block;
  object-fit: cover;
  object-position: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chips li {
  font-size: 13px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
}

.chips li b {
  color: var(--text);
  font-weight: 600;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.35);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(255, 45, 120, 0.5);
}

.btn.secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

/* ── Contact panel ──────────────────────────────────────────────────────── */

.contact-panel {
  text-align: center;
  padding: 44px 26px;
  background:
    radial-gradient(28rem 14rem at 50% -40%, rgba(139, 61, 255, 0.25), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-panel p {
  color: var(--muted);
  max-width: 32em;
  margin: 0 auto 22px;
}

/* ── Creator page (link-in-bio hub) ──────────────────────────────────────── */

.profile {
  max-width: 500px;
  margin: 0 auto;
  padding: 56px 22px 0;
  text-align: center;
}

.profile h1 {
  font-size: clamp(30px, 8vw, 40px);
  margin: 18px 0 4px;
}

.profile .role {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.profile .avatar {
  margin: 0 auto;
}

.profile .chips {
  justify-content: center;
  margin-bottom: 34px;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 12px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.link-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  transition:
    transform 0.15s,
    border-color 0.15s,
    background 0.15s;
}

.link-list a:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.22);
}

.link-list .icon {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.link-list .icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
}

.link-list .label {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.link-list .label b {
  font-size: 15px;
  font-weight: 600;
}

.link-list .label span {
  font-size: 13px;
  color: var(--muted);
}

.link-list .arrow {
  margin-left: auto;
  color: var(--muted);
}

/* The one link that pays for everything */
.exclusive-btn {
  width: 100%;
  margin: 18px 0 4px;
  padding: 16px 26px;
  font-size: 16px;
}

.fineprint {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
}

.fineprint.stamp {
  margin-top: 26px;
}

.profile .bookings {
  margin: 40px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.profile .bookings a {
  color: var(--text);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

footer.site {
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  color: var(--muted);
  font-size: 13.5px;
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

footer.site .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

footer.site .foot-links a {
  color: var(--muted);
  text-decoration: none;
}

footer.site .foot-links a:hover {
  color: var(--text);
}

/* ── 404 ────────────────────────────────────────────────────────────────── */

.notfound {
  padding: 96px 0 40px;
  max-width: 560px;
}

.notfound .code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 18vw, 120px);
  line-height: 1;
  margin-bottom: 8px;
}

.notfound h1 {
  font-size: clamp(26px, 5vw, 36px);
}

.notfound .lede {
  color: var(--muted);
  font-size: 17px;
}

.notfound .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ── 18+ confirmation dialog ────────────────────────────────────────────── */

.gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 4, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gate.open {
  display: flex;
}

/* Centred card, badge, statement, then two stacked full-width buttons — the
   layout people already know from every other adult site's gate. */
.gate-card {
  background: #16131e;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 400px;
  width: 100%;
  padding: 30px 28px 26px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  box-shadow: 0 6px 24px rgba(255, 45, 120, 0.35);
}

.gate-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 10px;
}

.gate-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 auto;
  max-width: 34em;
}

.gate-card .row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.gate-card .btn {
  width: 100%;
}

@media (max-width: 560px) {
  .hero {
    padding: 56px 0 44px;
  }

  /* Phone: the two hero buttons stack full-width instead of wrapping unevenly. */
  .hero .cta-row .btn {
    flex: 1 1 100%;
  }

  .metrics {
    gap: 22px;
  }

  nav.site {
    gap: 14px;
  }

  /* Phone header: keep the two links people actually use; About lives in the footer. */
  nav.site a[href$='#about'] {
    display: none;
  }
}

/* ── Chatter assessment (/apply) ────────────────────────────────────────── */

.apply-intro {
  padding: 64px 0 28px;
}

.apply-intro h1 {
  font-size: clamp(34px, 7vw, 56px);
}

.apply-intro .lede {
  font-size: 18px;
  color: var(--text);
  max-width: 40em;
}

.apply-form .card,
.apply-done {
  margin-bottom: 22px;
}

.apply-form .card:hover {
  transform: none;
}

.apply-form .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.apply-form h2 {
  margin-bottom: 8px;
}

.field {
  display: block;
  margin: 22px 0 0;
}

.field .label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.field .hint {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.field input[type='text'],
.field textarea,
.typing textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  resize: vertical;
}

.field input[type='text']:focus,
.field textarea:focus,
.typing textarea:focus {
  outline: none;
  border-color: rgba(139, 61, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(139, 61, 255, 0.25);
}

.field .count {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.field .count.short {
  color: #ffb26b;
}

.stiff {
  margin: 14px 0 8px;
  padding: 10px 14px;
  border-left: 3px solid var(--violet);
  background: var(--surface);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 15px;
}

.thread {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0 10px;
}

.thread p {
  margin: 0;
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.4;
}

.thread .them {
  align-self: flex-start;
  background: var(--surface-2);
  border-bottom-left-radius: 5px;
}

.thread .me {
  align-self: flex-end;
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.check input {
  margin: 5px 0 0;
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--violet);
}

.typing {
  margin-top: 18px;
}

.passage {
  font-size: 17px;
  line-height: 1.7;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted);
  max-height: 11em;
  overflow-y: auto;
  margin-bottom: 12px;
  user-select: none;
  -webkit-user-select: none;
}

.passage .ok {
  color: var(--text);
}

.passage .bad {
  color: #ff6b8a;
  background: rgba(255, 45, 120, 0.22);
  border-radius: 3px;
}

.passage .cur {
  background: rgba(139, 61, 255, 0.5);
  border-radius: 3px;
}

.typing textarea {
  resize: none;
  font-size: 17px;
}

.typing textarea[readonly] {
  opacity: 0.7;
}

.typing-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.typing-bar .stat b {
  color: var(--text);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.typing-bar .btn {
  padding: 9px 18px;
  font-size: 14px;
  margin-left: auto;
}

.typing-best {
  margin: 12px 0 0;
  font-size: 15px;
}

.apply-submit {
  padding: 4px 0 20px;
}

.apply-submit .btn {
  margin-top: 22px;
  width: 100%;
}

.notice {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.notice code {
  font-size: 14px;
}

.notice.warn {
  background: rgba(255, 178, 107, 0.1);
  border-color: rgba(255, 178, 107, 0.4);
}

.notice.err {
  background: rgba(255, 45, 120, 0.1);
  border-color: rgba(255, 45, 120, 0.45);
}

@media (min-width: 720px) {
  .apply-submit .btn {
    width: auto;
  }
}
