/* ============================================
   PATHWAY 2 NCAA — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Cormorant:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --dark-overlay: rgba(0, 0, 0, 0.62);
  --darker-overlay: rgba(0, 0, 0, 0.75);
  --font-display: 'Cormorant', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Jost', sans-serif;
  --nav-height: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--black);
  text-transform: uppercase;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

/* Desktop nav links */
.nav-desktop-links {
  display: none;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-desktop-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-desktop-links a {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
  }
  .nav-desktop-links a:hover { opacity: 0.6; }
  .nav-desktop-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .nav-desktop-cta:hover { opacity: 0.85 !important; }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-overlay-logo {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--black);
  text-transform: uppercase;
}

.nav-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--black);
  line-height: 1;
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-cta-link {
  margin-top: 16px;
}

.nav-cta-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white) !important;
  font-family: var(--font-ui) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 50px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #222;
}

.btn-light {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  color: var(--black);
}

.btn-light:hover {
  background: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding-top: var(--nav-height);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-top {
  background: var(--white);
  padding: 40px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 14vw, 96px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-hosted {
  font-family: var(--font-body);
  font-size: clamp(18px, 3.2vw, 28px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  white-space: nowrap;
}

.hero-hosted strong {
  font-weight: 600;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: rgba(0,0,0,0.65);
  letter-spacing: 0.02em;
}

.hero-photo {
  flex: 1;
  min-height: 480px;
  position: relative;
  background: #1a1a1a;
  /* 
    =============================================
    IMAGE PLACEHOLDER: hero-bg.jpg
    Export this from Squarespace: the main photo 
    of George at the basketball event (crowd behind him)
    Place the file in your /images/ folder and 
    uncomment the line below:
    =============================================
    background-image: url('images/hero-bg.jpg');
  */
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-event-info {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-date {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 52px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-location {
  font-family: var(--font-display);
  font-size: clamp(22px, 5.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-trident {
  font-size: 24px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 28px;
}

.hero-tagline strong {
  font-weight: 700;
  display: block;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-spots {
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}

.hero-spots strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   INSIDE SECTION
   ============================================ */

.inside-section {
  position: relative;
  background: #111 url('images/inside-bg.jpg') no-repeat center 30%;
  background-size: cover;
}

.inside-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.inside-content {
  position: relative;
  z-index: 2;
  padding: 72px 24px;
  max-width: 680px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.inside-lead {
  font-family: var(--font-body);
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 48px;
  color: rgba(255,255,255,0.92);
}

.program-block {
  margin-bottom: 40px;
}

.program-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.program-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-block ul li {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.program-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.5);
}

.program-block ul li strong {
  color: var(--white);
}

.inside-cta {
  margin-top: 48px;
  text-align: center;
}

/* ============================================
   COACHES SECTION
   ============================================ */

.coaches-section {
  position: relative;
  background: #0d0d0d;
  background-image: url('images/coaches-bg.jpg');
  background-image: url('images/coaches-bg.jpg');
  background-size: cover;
  background-position: center;
}

.coaches-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.coaches-content {
  position: relative;
  z-index: 2;
  padding: 72px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .coaches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

.coaches-content .section-heading {
  margin-bottom: 48px;
}

.coach-card {
  margin-bottom: 64px;
}

.coach-photo {
  width: 60%;
  max-width: 260px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
  background: #2a2a2a;
  /* 
    Placeholder shown until image is loaded 
  */
}

/* Coach photo placeholders */
.coach-photo-george {
  /* 
    =============================================
    IMAGE: coach-george.jpg
    Export George's photo from Squarespace
    =============================================
    background-image: url('images/coach-george.jpg');
  */
  background: #1e1e1e;
  display: block;
  width: 60%;
  max-width: 260px;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
}

.coach-photo-nim {
  /* 
    =============================================
    IMAGE: coach-nim.jpg
    Export Nim's gym photo from Squarespace
    =============================================
    background-image: url('images/coach-nim.jpg');
  */
  background: #1e1e1e;
  display: block;
  width: 60%;
  max-width: 260px;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  background-size: cover;
  background-position: top center;
}

.coach-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.coach-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.coach-bio {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 8px;
}

.coach-btn {
  margin-top: 20px;
}

/* ============================================
   REGISTRATION FORM
   ============================================ */

.register-section {
  position: relative;
  background: #111;
  background-image: url('images/form-bg.jpg');
  background-image: url('images/form-bg.jpg');
  background-size: cover;
  background-position: center top;
}

.register-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.register-content {
  position: relative;
  z-index: 2;
  padding: 72px 24px;
  max-width: 680px;
  margin: 0 auto;
}

.register-content .section-heading {
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.form-label .required-tag {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-sublabel {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: rgba(255,255,255,0.7);
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-textarea-hint {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  line-height: 1.4;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  border-radius: 2px;
}

input[type="checkbox"]:checked {
  background: rgba(255,255,255,0.8);
}

.checkbox-label {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}

.form-submit {
  margin-top: 32px;
}

.form-submit button {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s;
}

.form-submit button:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
}

.form-faq-link {
  margin-top: 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
}

.form-faq-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 16px;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  position: relative;
  background: #0d0d0d url('images/footer-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 56px 24px 48px;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.footer-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  align-items: baseline;
}

.footer-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-value {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

.footer-value a {
  color: rgba(255,255,255,0.8);
}

.footer-value a:hover {
  color: var(--white);
}

/* ============================================
   NOTABLE PLAYERS PAGE
   ============================================ */

.page-hero {
  padding-top: var(--nav-height);
  background: var(--white);
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 48px;
}

.page-hero-inner {
  max-width: 680px;
  padding-top: 48px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 11vw, 72px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.page-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 16px;
}

.page-body {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(0,0,0,0.72);
  line-height: 1.6;
}

.players-grid-section {
  background: var(--white);
  padding: 8px 16px 64px;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.player-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.player-card:hover img {
  transform: scale(1.03);
}

.player-name {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.7);
  padding: 6px 4px 4px;
  text-align: center;
  line-height: 1.3;
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-page {
  background: var(--black);
  min-height: 100vh;
}

.faq-hero {
  padding-top: var(--nav-height);
  background: var(--black);
  padding: calc(var(--nav-height) + 48px) 24px 48px;
  max-width: 680px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 60px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.faq-section {
  position: relative;
  background: #111 url('images/faq-bg.jpg') no-repeat center top;
  background-size: cover;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.faq-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.18);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  flex: 1;
}

.faq-icon {
  font-size: 22px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  transition: transform 0.2s;
  font-weight: 300;
  font-family: var(--font-ui);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 28px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p,
.faq-answer-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 16px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--white);
  font-weight: 600;
}

.faq-answer ul {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer ul li {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}

.faq-answer ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   UTILITY
   ============================================ */

.divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
  .hero-top {
    padding: 56px 40px 40px;
  }

  .hero-photo {
    min-height: 560px;
  }

  .inside-content,
  .coaches-content,
  .register-content,
  .footer-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .players-grid-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .players-grid {
    gap: 12px;
  }

  .player-name {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    min-height: 100svh;
  }

  .hero-top {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 60px 48px;
  }

  .hero-photo {
    flex: 1;
    min-height: unset;
  }
}


/* ============================================
   STICKY REGISTER BUTTON (mobile)
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--black);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.sticky-cta-text {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.sticky-cta-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.sticky-cta-btn {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Add bottom padding so sticky bar doesn't cover content */
body { padding-bottom: 72px; }

/* Hide sticky on desktop */
@media (min-width: 768px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  background: var(--white);
  padding: 64px 24px;
}

.pricing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pricing-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pricing-card.featured {
  background: var(--black);
  border-color: var(--black);
}

.pricing-card-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.pricing-card.featured .pricing-card-label {
  color: rgba(255,255,255,0.5);
}

.pricing-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.pricing-card.featured .pricing-card-name {
  color: var(--white);
}

.pricing-card-desc {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.pricing-card.featured .pricing-card-desc {
  color: rgba(255,255,255,0.5);
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pricing-card.featured .pricing-card-price {
  color: var(--white);
}

.pricing-card-price span {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.6;
}

.pricing-note {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  font-style: italic;
  text-align: center;
  margin-bottom: 32px;
}

.pricing-cta {
  text-align: center;
}

.pricing-cta .btn-dark {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
}

/* ============================================
   SCARCITY BAR
   ============================================ */

.scarcity-bar {
  background: #0a0a0a;
  padding: 14px 24px;
  text-align: center;
}

.scarcity-bar p {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.scarcity-bar strong {
  color: var(--white);
}
