/* Fonts loaded via <link> in HTML */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:          #FFFFFF;
  --bg-2:        #EFF8FD;
  --card:        #FFFFFF;
  --card-2:      #F4FAFE;
  --border:      rgba(0,175,240,0.22);
  --border-soft: rgba(12,30,42,0.10);
  --gold:        #00AFF0;   /* OnlyFans blue */
  --gold-light:  #35C4F5;
  --gold-deep:   #0090C9;
  --text:        #0C1720;
  --muted:       #5A6975;
  --muted-dim:   #94A3AE;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── GLOWS ── */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.glow-1 { top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(0,175,240,0.22), transparent 70%); }
.glow-2 { bottom: -200px; left: -160px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(0,175,240,0.12), transparent 70%); }

/* ── TYPE ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
em { font-style: italic; background: linear-gradient(100deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.eyebrow, .section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.section-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold-deep); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  color: #ffffff; font-weight: 700; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 100px; text-decoration: none; border: none;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 30px rgba(0,175,240,0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,175,240,0.45); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; padding: 17px; font-size: 1rem; margin-top: 6px; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); font-weight: 600; font-size: 0.95rem;
  padding: 15px 28px; border-radius: 100px; text-decoration: none;
  border: 1px solid var(--border-soft); transition: border-color .18s, background .18s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(0,175,240,0.07); }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.8); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-soft); }
.nav-inner { position: relative; max-width: 1140px; margin: 0 auto; padding: 16px 28px; display: flex; align-items: center; justify-content: center; }
.nav-inner .btn-sm { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-monogram { height: 34px; width: 44px; display: block; }
.footer-logo .logo-monogram { height: 30px; width: 39px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--text); letter-spacing: 0.2px; }
.logo-accent { color: var(--gold); }

/* ── HERO ── */
.hero { position: relative; z-index: 1; text-align: center; padding: 92px 0 80px; }

/* ── THANK YOU ── */
.thanks-card { text-align: center; max-width: 620px; margin: 40px auto 0; padding: 20px; }
.thanks-check {
  width: 74px; height: 74px; margin: 0 auto 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  box-shadow: 0 12px 34px rgba(0,175,240,0.32);
}
.thanks-card h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 18px; }

/* ── LANDING (single centered column) ── */
.lp { position: relative; z-index: 1; padding: 44px 0 56px; }
.lp-grid { display: block; }
.lp-copy { text-align: center; max-width: 680px; margin: 0 auto 28px; }
.lp-copy h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: 16px; }
.lp-copy .hero-sub { margin: 0 auto 22px; font-size: 1.02rem; max-width: 600px; }
.lp-copy .hero-trust { justify-content: center; }
.lp .apply-card { padding: 34px 40px 30px; max-width: 560px; margin: 0 auto; box-shadow: 0 22px 55px rgba(12,40,60,0.13); }
.lp .signup-form { margin-top: 20px; }
.lp .field { margin-bottom: 14px; }
.lp .checkbox-field { margin: 6px 0 18px; }
.hero h1 { margin-bottom: 26px; }
.hero-sub { max-width: 620px; margin: 0 auto 36px; color: var(--muted); font-size: 1.08rem; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: inline-flex; align-items: center; gap: 14px; color: var(--muted); font-size: 0.9rem; }
.hero-trust strong { color: var(--text); }
.trust-avatars { display: flex; }
.av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; background-size: cover; }
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#e8b4c8,#b06a86); }
.av2 { background: linear-gradient(135deg,#d4af37,#8a6d1f); }
.av3 { background: linear-gradient(135deg,#c9a0dc,#6d4a86); }
.av4 { background: linear-gradient(135deg,#f0d0a0,#b08850); }

/* ── STATS ── */
.stats { position: relative; z-index: 1; padding: 30px 0 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat {
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--border); border-radius: 18px; padding: 28px 22px; text-align: center;
}
.stat-num { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 2.1rem; color: var(--gold-light); margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ── SERVICES ── */
.services { position: relative; z-index: 1; padding: 90px 0 70px; text-align: center; }
.services h2 { margin-bottom: 18px; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 52px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; text-align: left; }
.service-card {
  background: linear-gradient(165deg, var(--card), var(--bg-2));
  border: 1px solid var(--border); border-radius: 22px; padding: 34px 30px;
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,175,240,0.45); box-shadow: 0 16px 40px rgba(0,175,240,0.1); }
.service-icon { font-size: 1.9rem; width: 60px; height: 60px; display: grid; place-items: center; background: rgba(0,175,240,0.1); border-radius: 15px; margin-bottom: 22px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; color: var(--text); }
.service-card p { color: var(--muted); font-size: 0.97rem; }

/* ── WHY ── */
.why { position: relative; z-index: 1; padding: 70px 0; }
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.why h2 { margin-bottom: 30px; }
.why-list { list-style: none; margin-bottom: 34px; }
.why-list li { position: relative; padding-left: 34px; margin-bottom: 18px; color: var(--muted); font-size: 1rem; }
.why-list strong { color: var(--text); font-weight: 600; }
.why-list li::before {
  content: '✦'; position: absolute; left: 0; top: 0; color: var(--gold);
  font-size: 1rem;
}
.why-card {
  background: linear-gradient(165deg, var(--card-2), var(--bg-2));
  border: 1px solid var(--border); border-radius: 24px; padding: 40px 36px;
  position: relative;
}
.why-card::before { content: '“'; position: absolute; top: 8px; left: 24px; font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(0,175,240,0.22); }
.quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; line-height: 1.5; color: var(--text); margin-bottom: 26px; position: relative; z-index: 1; }
.quote-by { display: flex; align-items: center; gap: 13px; }
.quote-by strong { display: block; color: var(--text); font-size: 0.95rem; }
.quote-by span { color: var(--muted-dim); font-size: 0.82rem; }

/* ── APPLY ── */
.apply { position: relative; z-index: 1; padding: 60px 0 100px; }
.apply-card {
  background: linear-gradient(170deg, var(--card), var(--bg-2));
  border: 1px solid var(--border); border-radius: 28px;
  padding: 56px clamp(24px, 5vw, 64px); text-align: center; max-width: 720px; margin: 0 auto;
  box-shadow: 0 30px 80px rgba(12,40,60,0.14);
}
.apply-card h2 { margin-bottom: 16px; }
.signup-form { margin-top: 38px; text-align: left; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.3px; }
.field input, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: 12px;
  padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: var(--muted-dim); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(0,175,240,0.14); }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300AFF0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.checkbox-field { display: flex; align-items: flex-start; gap: 11px; margin: 8px 0 22px; cursor: pointer; }
.checkbox-field input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.checkbox-field span { font-size: 0.88rem; color: var(--muted); }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted-dim); margin-top: 16px; }
.hidden-field { display: none; }

/* ── FOOTER ── */
footer { position: relative; z-index: 1; border-top: 1px solid var(--border-soft); padding: 48px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-tag { color: var(--muted); font-size: 0.95rem; }
.footer-legal { color: var(--muted-dim); font-size: 0.78rem; max-width: 620px; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-grid { grid-template-columns: 1fr; gap: 34px; }
  .lp-copy { text-align: center; }
  .lp-copy .hero-trust { justify-content: center; }
}
@media (max-width: 560px) {
  .hero { padding: 60px 0 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .apply-card { padding: 40px 22px; }
}
