/* =====================================================
   Choice Finance Group — Full IPO Platform Redesign
   Design: Dark premium fintech with gold accents + imagery
   Fonts: Space Grotesk (headings) + Inter (body)
   ===================================================== */

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

:root {
  --gold: #C9A84C;
  --gold-light: #F4D03F;
  --gold-dark: #A68B3A;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-glow-strong: rgba(201, 168, 76, 0.3);
  --bg-primary: #08090C;
  --bg-secondary: #0D0F14;
  --bg-card: #12151C;
  --bg-card-hover: #181C25;
  --bg-elevated: #1A1E28;
  --text-primary: #F0F0F0;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(201, 168, 76, 0.3);
  --green: #22C55E;
  --green-bg: rgba(34, 197, 94, 0.1);
  --red: #EF4444;
  --red-bg: rgba(239, 68, 68, 0.1);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-y: clamp(80px, 10vw, 140px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }
.text-gold { color: var(--gold); }
.gold { color: var(--gold) !important; }
.green { color: var(--green) !important; }

/* ======================== NAV ======================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav--scrolled {
  background: rgba(8, 9, 12, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}
.nav__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 17px; font-weight: 700; }
.nav__logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #000;
}
.nav__logo-accent { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
.nav__link:hover { color: var(--text-primary); }
.nav__cta-btn {
  display: inline-flex; padding: 10px 20px;
  background: var(--gold); color: #000;
  font-size: 14px; font-weight: 600;
  border-radius: 100px; transition: all 0.2s;
}
.nav__cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
.nav__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--active span:nth-child(2) { opacity: 0; }
.nav__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================== HERO ======================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,9,12,0.92) 0%, rgba(8,9,12,0.7) 50%, rgba(8,9,12,0.85) 100%);
}
.hero__container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero__content { max-width: 700px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--gold-glow); border: 1px solid var(--border-gold);
  border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--gold);
  margin-bottom: 24px;
}
.hero__badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle { font-size: 18px; line-height: 1.7; color: var(--text-secondary); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }

/* ======================== PARTNERS ======================== */
.partners {
  background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0; overflow: hidden; text-align: center;
}
.partners__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }
.partners__track { overflow: hidden; }
.partners__logos { display: flex; align-items: center; justify-content: center; gap: 48px; animation: scrollLogos 20s linear infinite; white-space: nowrap; width: max-content; }
.partners__logo { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.15); letter-spacing: 0.02em; }
@keyframes scrollLogos { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ======================== SECTIONS ======================== */
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--bg-secondary); }
.section--signup { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__header--light { color: white; }
.section__label { display: inline-block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.section__title { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 48px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.section__desc { font-size: 17px; line-height: 1.7; color: var(--text-secondary); }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; border-radius: 100px;
  transition: all 0.2s var(--ease); cursor: pointer; white-space: nowrap; position: relative;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn--gold { padding: 14px 28px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #000; font-size: 15px; font-weight: 700; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn--glass { padding: 14px 28px; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); color: #fff; font-size: 15px; border: 1px solid rgba(255,255,255,0.15); }
.btn--glass:hover { background: rgba(255,255,255,0.14); }
.btn--outline { padding: 14px 28px; background: transparent; color: var(--text-primary); font-size: 15px; border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--loading .btn__text { visibility: hidden; }
.btn__loader { display: none; position: absolute; animation: spin 0.8s linear infinite; }
.btn--loading .btn__loader { display: block; }
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* ======================== ABOUT ======================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__image { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.about__image img { width: 100%; height: 420px; object-fit: cover; }
.about__image-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(8,9,12,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold); border-radius: var(--radius-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.about__image-badge-number { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--gold); }
.about__image-badge-text { font-size: 13px; color: var(--text-secondary); line-height: 1.3; }
.about__text { font-size: 16px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 16px; }
.about__stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.about__stat-value { display: block; font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--gold); }
.about__stat-label { font-size: 14px; color: var(--text-muted); }

/* ======================== FEATURED IPO ======================== */
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); }
.featured__image { position: relative; min-height: 500px; }
.featured__image img { width: 100%; height: 100%; object-fit: cover; }
.featured__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(18,21,28,1) 100%); }
.featured__badge-wrap { position: absolute; top: 20px; left: 20px; }
.featured__badge { padding: 6px 14px; background: var(--gold); color: #000; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 6px; }
.featured__content { padding: 40px; }
.featured__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.featured__logo-wrap { height: 28px; }
.featured__logo { height: 100%; width: auto; filter: invert(1); }
.featured__status { font-size: 12px; font-weight: 600; color: var(--green); padding: 4px 10px; background: var(--green-bg); border-radius: 100px; }
.featured__title { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.featured__desc { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 24px; }
.featured__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.featured__metric { padding: 12px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); }
.featured__metric-label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.featured__metric-value { display: block; font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.featured__metric-value.gold { color: var(--gold); }
.featured__highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.featured__highlight { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }

/* ======================== IPO GRID ======================== */
.ipo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ipo-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.ipo-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.ipo-card--hot { border-color: var(--border-gold); }
.ipo-card--hot:hover { border-color: var(--gold); }
.ipo-card__image { position: relative; height: 180px; overflow: hidden; }
.ipo-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ipo-card:hover .ipo-card__image img { transform: scale(1.05); }
.ipo-card__tag {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; background: rgba(8,9,12,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary);
}
.ipo-card__tag--hot { background: rgba(201,168,76,0.2); border-color: var(--border-gold); color: var(--gold); }
.ipo-card__body { padding: 20px; }
.ipo-card__header { margin-bottom: 16px; }
.ipo-card__name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.ipo-card__sector { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.ipo-card__row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.ipo-card__row:last-of-type { border-bottom: none; margin-bottom: 16px; }
.ipo-card__label { color: var(--text-muted); }
.ipo-card__value { font-weight: 600; }

/* ======================== VALUE CARDS ======================== */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card {
  display: grid; grid-template-columns: 200px 1fr; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--border-gold); }
.value-card__image { height: 100%; min-height: 180px; }
.value-card__image img { width: 100%; height: 100%; object-fit: cover; }
.value-card__content { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.value-card__title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-card__desc { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }

/* ======================== STEPS ======================== */
.steps-visual { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; text-align: center; transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-4px); }
.step-card__image { height: 160px; overflow: hidden; }
.step-card__image img { width: 100%; height: 100%; object-fit: cover; }
.step-card__number { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--gold); opacity: 0.25; margin: 16px 0 4px; }
.step-card__title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; padding: 0 20px; margin-bottom: 8px; }
.step-card__desc { font-size: 14px; line-height: 1.6; color: var(--text-secondary); padding: 0 20px 24px; }

/* ======================== TRACK RECORD ======================== */
.section--track { position: relative; overflow: hidden; }
.track-bg { position: absolute; inset: 0; z-index: 0; }
.track-bg img { width: 100%; height: 100%; object-fit: cover; }
.track-bg__overlay { position: absolute; inset: 0; background: rgba(8,9,12,0.88); }
.section--track .container { position: relative; z-index: 1; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.stat-card {
  text-align: center; padding: 32px 16px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.stat-card__value { display: block; font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.stat-card__label { display: block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.stat-card__sub { display: block; font-size: 13px; color: var(--text-muted); }

.past-title { font-family: var(--font-heading); font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 24px; color: var(--text-secondary); }
.past-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.past-card { padding: 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-md); }
.past-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.past-card__name { font-weight: 600; font-size: 15px; }
.past-card__return { font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.past-card__details { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); }

/* ======================== TESTIMONIALS ======================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.testimonial__stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial__text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-gold); }
.testimonial__name { display: block; font-size: 14px; font-weight: 600; }
.testimonial__role { display: block; font-size: 13px; color: var(--text-muted); }

/* ======================== SIGNUP ======================== */
.signup { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.signup__title { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 44px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.signup__desc { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 24px; }
.signup__image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.signup__image img { width: 100%; height: 240px; object-fit: cover; }
.signup__benefits { display: flex; flex-direction: column; gap: 14px; }
.signup__benefit { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-secondary); }
.signup__form-wrapper { position: sticky; top: 100px; }
.signup__form { padding: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.signup__form-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.signup__form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group--checkbox { margin-bottom: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 16px;
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-primary); font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-select {
  cursor: pointer; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-error { display: none; font-size: 13px; color: var(--red); margin-top: 6px; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input { border-color: var(--red); }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.form-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-checkbox__mark {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 2px solid var(--border-hover); border-radius: 4px;
  background: var(--bg-elevated); position: relative; margin-top: 2px; transition: all 0.2s;
}
.form-checkbox input:checked + .form-checkbox__mark { background: var(--gold); border-color: var(--gold); }
.form-checkbox input:checked + .form-checkbox__mark::after {
  content: ''; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px; border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.form-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.signup__form-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 16px; }
.signup__success { text-align: center; padding: 32px 0; }
.signup__success h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin: 16px 0 8px; color: var(--gold); }
.signup__success p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ======================== CTA BANNER ======================== */
.cta-banner { position: relative; padding: 100px 0; text-align: center; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay { position: absolute; inset: 0; background: rgba(8,9,12,0.82); }
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 16px; }
.cta-banner__desc { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

/* ======================== FAQ ======================== */
.faq { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 17px; font-weight: 600; cursor: pointer; list-style: none; transition: color 0.2s; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--gold); }
.faq__icon { flex-shrink: 0; transition: transform 0.3s; }
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__answer { padding-bottom: 20px; }
.faq__answer p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); }

/* ======================== FOOTER ======================== */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 48px; }
.footer__desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-top: 16px; max-width: 320px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col-title { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 16px; }
.footer__link { display: block; font-size: 14px; color: var(--text-muted); padding: 6px 0; transition: color 0.2s; }
.footer__link:hover { color: var(--gold); }
.footer__bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: 13px; color: var(--text-muted); }
.footer__disclaimer { max-width: 480px; text-align: right; font-size: 12px !important; opacity: 0.7; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__image img { height: 320px; }
  .featured { grid-template-columns: 1fr; }
  .featured__image { min-height: 300px; }
  .featured__overlay { background: linear-gradient(180deg, transparent 50%, rgba(18,21,28,1) 100%); }
  .ipo-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .value-card { grid-template-columns: 180px 1fr; }
  .steps-visual { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .past-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .signup { grid-template-columns: 1fr; gap: 40px; }
  .signup__form-wrapper { position: static; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none; position: fixed; inset: 0;
    background: rgba(8,9,12,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center; gap: 24px; z-index: 99;
  }
  .nav__links--open { display: flex; }
  .nav__links .nav__link { font-size: 22px; }
  .nav__links .nav__cta-btn { font-size: 18px; padding: 14px 32px; }
  .nav__toggle { display: flex; z-index: 101; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .about__stats { gap: 20px; }
  .featured__metrics { grid-template-columns: repeat(2, 1fr); }
  .ipo-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .value-card { grid-template-columns: 1fr; }
  .value-card__image { min-height: 160px; }
  .steps-visual { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .stats-grid { gap: 16px; }
  .stat-card { padding: 24px 12px; }
  .stat-card__value { font-size: 32px; }
  .past-grid { grid-template-columns: 1fr; }
  .past-card__details { flex-direction: column; gap: 4px; }
  .signup__form { padding: 24px; }
  .footer__links { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__disclaimer { text-align: center; }
}

/* ======================== ANIMATIONS ======================== */
@media (prefers-reduced-motion: no-preference) {
  .ipo-card, .value-card, .stat-card, .testimonial, .step-card, .past-card {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.3s;
  }
  .ipo-card.visible, .value-card.visible, .stat-card.visible,
  .testimonial.visible, .step-card.visible, .past-card.visible {
    opacity: 1; transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
