/* ============================================================
   Harvest Touch Hub CIC — Main Stylesheet
   Brand: Navy Blue + Hot Magenta
   Font:  Inter
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --blue:        #1e4e8c;
  --blue-light:  #2d6bbf;
  --blue-dark:   #122f5c;
  --magenta:     #d0257e;
  --magenta-lt:  #e0408e;
  --magenta-dk:  #a81d66;
  --cream:       #fdfcf8;
  --white:       #ffffff;
  --charcoal:    #1e2330;
  --gray-100:    #f3f5f9;
  --gray-200:    #e4e9f0;
  --gray-400:    #8fa0b8;
  --gray-600:    #4a5a72;
  --text:        #1a2742;
  --text-muted:  #5a6e8a;
  --border:      #dce4ee;
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --shadow:      0 4px 20px -4px rgba(30,78,140,.12);
  --shadow-lg:   0 12px 40px -8px rgba(30,78,140,.22);
  --transition:  0.25s ease;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 1rem; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--charcoal); }

/* ── UTILITY ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-magenta { color: var(--magenta); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-muted); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary    { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary  { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.btn-secondary:hover { background: var(--magenta-dk); border-color: var(--magenta-dk); transform: translateY(-1px); }
.btn-outline    { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: #fff; color: var(--blue); }
.btn-sm, .btn-primary-sm, .btn-outline-sm {
  padding: .5rem 1.2rem; font-size: .875rem; border-radius: calc(var(--radius) - 2px);
}
.btn-primary-sm { background: var(--magenta); color: #fff; border: 2px solid var(--magenta); font-weight: 600; cursor:pointer; display:inline-flex; align-items:center; gap:.4rem; transition: all var(--transition); }
.btn-primary-sm:hover { background: var(--magenta-dk); transform: translateY(-1px); }
.btn-outline-sm { background: transparent; color: var(--text); border: 2px solid var(--border); font-weight: 500; cursor:pointer; display:inline-flex; align-items:center; gap:.4rem; transition: all var(--transition); }
.btn-outline-sm:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── ALERTS ────────────────────────────────────────────────── */
.alert { padding: .9rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .95rem; border-left: 4px solid transparent; }
.alert-success { background:#ecfdf5; border-color:#10b981; color:#065f46; }
.alert-error   { background:#fef2f2; border-color:#ef4444; color:#991b1b; }
.alert-warning { background:#fffbeb; border-color:#f59e0b; color:#92400e; }
.alert-info    { background:#eff6ff; border-color:#3b82f6; color:#1e40af; }
.flash-container { padding: 0 1.5rem; max-width: 1200px; margin: 0 auto; }

/* ── SECTION HEADINGS ──────────────────────────────────────── */
.section-label { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--magenta); background: rgba(208,37,126,.08); padding: .3rem .9rem; border-radius: 2rem; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--charcoal); margin-bottom: .75rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(30,78,140,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-wrapper { display: flex; align-items: center; gap: 1.5rem; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; background: var(--blue); border-radius: .5rem; display: flex; align-items: center; justify-content: center; }
.logo-h { color: #fff; font-size: 1.3rem; font-weight: 800; line-height: 1; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: .95rem; font-weight: 700; color: var(--charcoal); line-height: 1.1; }
.logo-cic { font-size: .7rem; font-weight: 600; color: var(--magenta); letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-link { padding: .5rem .75rem; font-size: .9rem; font-weight: 500; color: var(--text-muted); border-radius: .5rem; transition: all var(--transition); display: flex; align-items: center; gap: .25rem; }
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--gray-100); }
.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: .5rem; min-width: 210px; z-index: 200; }
.dropdown-right { left: auto; right: 0; transform: none; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item { display: flex; align-items: center; gap: .6rem; padding: .6rem .85rem; border-radius: .5rem; font-size: .9rem; color: var(--text-muted); transition: all var(--transition); }
.dropdown-item svg { width: 16px; height: 16px; stroke: var(--magenta); }
.dropdown-item:hover { background: var(--gray-100); color: var(--blue); }

/* Mobile */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; margin-left: auto; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-nav-link { display: block; padding: .65rem .5rem; font-size: .95rem; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--gray-100); }
.mobile-nav-link.mobile-sub { padding-left: 1.5rem; font-size: .875rem; color: var(--gray-400); }
.mobile-nav-link:hover { color: var(--blue); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 55%, rgba(208,37,126,.2) 100%);
  color: #fff; padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 2rem; padding: .35rem .9rem .35rem .5rem; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; backdrop-filter: blur(6px); }
.hero-badge .dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 .highlight { color: var(--magenta-lt); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2.5rem; }
.hero-register-btn {
  background: var(--magenta); color: #fff; border: 2px solid var(--magenta);
  padding: .9rem 2rem; border-radius: var(--radius); font-size: 1rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: .6rem; transition: all var(--transition);
  box-shadow: 0 0 0 4px rgba(208,37,126,.3);
  animation: hero-btn-pulse 3s ease-in-out infinite;
}
.hero-register-btn:hover { background: var(--magenta-dk); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(208,37,126,.5); }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-val { font-size: 1.6rem; font-weight: 800; color: #fff; }
.hero-stat-lab { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 500; }
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.hero-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 1.5rem; backdrop-filter: blur(10px); }
.hero-card-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: .5rem; }
.hero-card-val { font-size: 1.75rem; font-weight: 800; color: #fff; }
.hero-card-sub { font-size: .875rem; color: rgba(255,255,255,.75); margin-top: .25rem; }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes hero-btn-pulse {
  0%,100%{ box-shadow: 0 0 0 4px rgba(208,37,126,.25); }
  50%{ box-shadow: 0 0 0 10px rgba(208,37,126,.08); }
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); transition: all var(--transition); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service card */
.service-card { border-top: 4px solid var(--blue); text-align: center; }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.service-icon svg { width: 28px; height: 28px; stroke: #fff; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .65rem; }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.service-card .card-link { margin-top: 1.25rem; font-size: .875rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .35rem; }
.service-card .card-link:hover { color: var(--magenta); }

/* Team card */
.team-card { text-align: center; }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.75rem; font-weight: 800; color: #fff; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.team-card .role { font-size: .85rem; color: var(--magenta); font-weight: 600; }
.team-card p { font-size: .875rem; color: var(--text-muted); margin-top: .65rem; }

/* Blog card */
.blog-card { overflow: hidden; padding: 0; }
.blog-card-img { height: 200px; background: var(--gray-100); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.blog-card-body { padding: 1.5rem; }
.blog-cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--magenta); }
.blog-card h3 { font-size: 1.05rem; margin: .4rem 0 .65rem; line-height: 1.35; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-meta { font-size: .8rem; color: var(--gray-400); display: flex; align-items: center; gap: .5rem; }

/* Stat card */
.stat-card { text-align: center; border-top: 3px solid var(--magenta); }
.stat-icon { width: 50px; height: 50px; background: rgba(208,37,126,.1); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.stat-icon svg { width: 24px; height: 24px; stroke: var(--magenta); }
.stat-value { font-size: 2.25rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: .95rem; font-weight: 600; color: var(--charcoal); margin-top: .4rem; }
.stat-desc { font-size: .825rem; color: var(--text-muted); margin-top: .3rem; }

/* ── SECTIONS ──────────────────────────────────────────────── */
section { padding: 5rem 0; }
.bg-cream { background: var(--cream); }
.bg-blue { background: var(--blue); color: #fff; }
.bg-gradient { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); color: #fff; }

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 60%, rgba(208,37,126,.25) 100%); color: #fff; text-align: center; padding: 4.5rem 0; position: relative; overflow: hidden; }
.cta-section h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── REGISTRATION CTA (floating pulse) ─────────────────────── */
.register-cta-strip {
  background: var(--magenta); color: #fff; text-align: center;
  padding: 1.25rem 1.5rem; position: relative;
}
.register-cta-strip p { font-size: .95rem; font-weight: 500; margin: 0; }
.register-cta-strip strong { font-weight: 800; }
.register-cta-strip a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ── FORMS ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.35rem; }
label { display: block; font-size: .875rem; font-weight: 600; color: var(--charcoal); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: #fff; color: var(--text); font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,78,140,.15); }
.form-control.error { border-color: #ef4444; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238fa0b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: .3rem; }
.field-error { font-size: .8rem; color: #ef4444; margin-top: .3rem; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; }
.form-check input[type=checkbox] { margin-top: .15rem; accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
.form-check label { font-weight: 400; font-size: .9rem; margin: 0; }

/* Auth card */
.auth-wrapper { min-height: calc(100vh - 140px); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; background: var(--gray-100); }
.auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 2.5rem; width: 100%; max-width: 480px; }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: .4rem; }
.auth-subtitle { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--gray-400); font-size: .85rem; }
.auth-divider::before,.auth-divider::after { content:''; flex:1; height:1px; background: var(--border); }
.auth-switch { text-align: center; font-size: .9rem; color: var(--text-muted); margin-top: 1.5rem; }
.auth-switch a { color: var(--blue); font-weight: 600; }

/* Register page form */
.register-wrapper { max-width: 700px; margin: 0 auto; padding: 3rem 1.5rem; }
.register-header { text-align: center; margin-bottom: 2.5rem; }
.register-header .badge { background: rgba(208,37,126,.1); color: var(--magenta); padding: .3rem .85rem; border-radius: 2rem; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; display: inline-block; margin-bottom: .75rem; }
.progress-steps { display: flex; align-items: center; margin-bottom: 2.5rem; }
.step { display: flex; flex-direction: column; align-items: center; flex: 1; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; border: 2px solid var(--border); background: #fff; color: var(--gray-400); transition: all var(--transition); }
.step.active .step-circle { background: var(--blue); border-color: var(--blue); color: #fff; }
.step.done .step-circle { background: #10b981; border-color: #10b981; color: #fff; }
.step-label { font-size: .75rem; color: var(--text-muted); margin-top: .35rem; font-weight: 500; }
.step-connector { flex: 1; height: 2px; background: var(--border); margin: 0 .5rem; margin-bottom: 1.5rem; }
.step-connector.done { background: #10b981; }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); color: #fff; padding: 3.5rem 0; text-align: center; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; margin-bottom: .75rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.8); padding: 4rem 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo .logo-name { color: #fff; }
.footer-tagline { color: var(--magenta-lt); font-weight: 700; font-size: .95rem; margin: .75rem 0 .5rem; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; max-width: 280px; }
.footer-socials { display: flex; gap: .65rem; margin-top: 1.25rem; }
.social-link { width: 36px; height: 36px; border-radius: .5rem; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.social-link svg { width: 17px; height: 17px; stroke: rgba(255,255,255,.7); }
.social-link:hover { background: var(--magenta); }
.social-link:hover svg { stroke: #fff; }
.footer-heading { font-size: .875rem; font-weight: 700; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--magenta-lt); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .75rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-contact-list svg { width: 16px; height: 16px; stroke: var(--magenta-lt); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-list a { color: rgba(255,255,255,.65); }
.footer-contact-list a:hover { color: var(--magenta-lt); }
.footer-cta { margin-top: 1.25rem; }
.footer-register-btn { background: var(--magenta); border-color: var(--magenta); }
.footer-newsletter { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.newsletter-text h4 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.newsletter-text p { font-size: .875rem; color: rgba(255,255,255,.6); }
.newsletter-form { display: flex; gap: .75rem; flex: 1; max-width: 420px; }
.newsletter-form input { flex: 1; padding: .65rem 1rem; border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: #fff; font-size: .875rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--magenta); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; font-size: .8rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── ADMIN ──────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--charcoal); color: #fff; padding: 1.5rem 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar-logo { padding: 0 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1rem; }
.admin-nav-link { display: flex; align-items: center; gap: .75rem; padding: .65rem 1.25rem; font-size: .9rem; color: rgba(255,255,255,.65); transition: all var(--transition); }
.admin-nav-link svg { width: 18px; height: 18px; }
.admin-nav-link:hover,.admin-nav-link.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-nav-link.active { border-left: 3px solid var(--magenta); }
.admin-nav-section { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); padding: 1rem 1.25rem .4rem; font-weight: 700; }
.admin-main { background: var(--gray-100); padding: 2rem; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.admin-title { font-size: 1.5rem; font-weight: 800; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat-card { background: #fff; border-radius: var(--radius); padding: 1.25rem; border-left: 4px solid var(--blue); box-shadow: var(--shadow); }
.admin-stat-card.magenta { border-left-color: var(--magenta); }
.admin-stat-card.green { border-left-color: #10b981; }
.admin-stat-card.orange { border-left-color: #f59e0b; }
.admin-stat-num { font-size: 2rem; font-weight: 800; color: var(--charcoal); }
.admin-stat-label { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.data-table th { background: var(--gray-100); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; padding: .8rem 1rem; text-align: left; color: var(--text-muted); font-weight: 700; border-bottom: 1px solid var(--border); }
.data-table td { padding: .85rem 1rem; font-size: .9rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr:hover td { background: var(--gray-100); }
.badge-status { display: inline-block; padding: .2rem .65rem; border-radius: 2rem; font-size: .75rem; font-weight: 700; }
.badge-active,.badge-approved { background: #d1fae5; color: #065f46; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-inactive,.badge-declined { background: #fee2e2; color: #991b1b; }
.badge-waitlisted { background: #ede9fe; color: #5b21b6; }

/* ── PAGE CONTENT ──────────────────────────────────────────── */
.prose h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.prose h3 { font-size: 1.2rem; margin: 1.5rem 0 .6rem; }
.prose p { margin-bottom: 1rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { font-weight: 700; }
.prose a { color: var(--blue); text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .admin-stat-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 3.5rem 0 3rem; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
  .data-table { display: block; overflow-x: auto; }
  section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .admin-stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .auth-card { padding: 1.75rem 1.25rem; }
}
