/* ══════════════════════════════════════════════════════════════════════════
   Random Ten — Main Stylesheet
   Premium editorial. Navy, gold, warm cream. DM Sans + Cormorant Garamond.
══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --navy:       #1A1A2E;
  --navy-light: #22223F;
  --navy-dark:  #0D0D18;
  --gold:       #F5A623;
  --gold-dim:   rgba(245,166,35,0.15);
  --red:        #E94560;
  --teal:       #2EC4B6;
  --white:      #FFFFFF;
  --cream:      #F4F0E8;
  --grey:       #9CA3AF;
  --border:     rgba(255,255,255,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width: 1200px;
  --radius:    4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ─────────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 48px;
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
}
.btn--gold:hover { background: #fdb740; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,166,35,0.25); }
.btn--gold:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--lg { padding: 17px 36px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) both;
}
.phase, .problem__card, .skill-card, .testimonial, .pricing__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.phase.visible, .problem__card.visible, .skill-card.visible,
.testimonial.visible, .pricing__card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(13,13,24,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 8px; }
.nav__logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
}
.nav__logo-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 13px;
  color: var(--grey);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(233,69,96,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__bg-number {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(200px, 30vw, 380px);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--grey);
}
.hero__social-proof strong { color: var(--white); }
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy-dark);
  margin-left: -8px;
  opacity: 0.8;
}
.avatar:first-child { margin-left: 0; }

/* Hero mockup card */
.hero__mockup { position: relative; z-index: 1; }
.mockup-card {
  background: var(--navy-light);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.mockup-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mockup-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mockup-card__status {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(46,196,182,0.1);
  padding: 3px 10px;
  border-radius: 3px;
}
.mockup-card__skill {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.gold-dot { color: var(--gold); }
.mockup-card__meta {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 20px;
}
.progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px;
}
.mockup-card__progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 11px;
  color: var(--grey);
}
.mockup-card__skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.skill-pill {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: rgba(255,255,255,0.6);
}

/* ── Problem section ────────────────────────────────────────────────────── */
.problem {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem__card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition-delay: calc(var(--i, 0) * 0.1s) !important;
}
.problem__card:nth-child(1) { --i:0; }
.problem__card:nth-child(2) { --i:1; }
.problem__card:nth-child(3) { --i:2; }
.problem__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.problem__card-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 16px;
}
.problem__card-text {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
}

/* ── How it works ───────────────────────────────────────────────────────── */
.how {
  padding: 120px 0;
  background: var(--navy);
}
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.phase {
  padding: 48px 40px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  position: relative;
  transition-delay: calc(var(--i, 0) * 0.12s) !important;
}
.phase:nth-child(1) { --i:0; }
.phase:nth-child(2) { --i:1; }
.phase:nth-child(3) { --i:2; border-left:1px solid rgba(245,166,35,0.3); }
.phase--gold { background: linear-gradient(135deg, #1e1e3a 0%, #22223F 100%); }
.phase--gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.phase__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 80px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.phase__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.phase__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 16px;
}
.phase__body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.phase__list { display: flex; flex-direction: column; gap: 8px; }
.phase__list li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  position: relative;
}
.phase__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Experience section ────────────────────────────────────────────────── */
.experience {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.experience__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience__step {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.experience__step span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}

.experience__step h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.experience__step p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Founder section ───────────────────────────────────────────────────── */
.founder {
  padding: 120px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.founder__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}

.founder__text {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 680px;
}

.founder__card {
  background: linear-gradient(135deg, #1e1e3a 0%, #22223F 100%);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.founder__card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder__card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 14px;
}

.founder__card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .experience__steps {
    grid-template-columns: 1fr;
  }

  .founder__inner {
    grid-template-columns: 1fr;
  }
}
/* ── Skills grid ────────────────────────────────────────────────────────── */
.skills {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.skills__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.skill-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition-delay: calc(var(--si, 0) * 0.03s) !important;
  cursor: default;
}
.skill-card:hover {
  border-color: rgba(245,166,35,0.3);
  background: var(--navy);
}
.skill-card__icon { font-size: 20px; }
.skill-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.skill-card__dot { color: var(--gold); }
.skill-card__cat {
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.1em;
}
.skills__note {
  text-align: center;
  font-size: 13px;
  color: var(--grey);
  font-style: italic;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition-delay: calc(var(--i, 0) * 0.1s) !important;
}
.testimonial:nth-child(1) { --i:0; }
.testimonial:nth-child(2) { --i:1; }
.testimonial:nth-child(3) { --i:2; }
.testimonial p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial footer {
  font-size: 12px;
  color: var(--grey);
}
.testimonial footer strong { color: var(--gold); display: block; margin-bottom: 2px; }

/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing__card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition-delay: calc(var(--i, 0) * 0.1s) !important;
}
.pricing__card:nth-child(1) { --i:0; }
.pricing__card:nth-child(2) { --i:1; }
.pricing__card:nth-child(3) { --i:2; }
.pricing__card--featured {
  border-color: rgba(245,166,35,0.4);
  background: linear-gradient(135deg, #1e1e3a 0%, #22223F 100%);
}
.pricing__card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.pricing__card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.pricing__card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing__card-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1;
}
.pricing__card-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
}
.pricing__card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 24px;
}
.pricing__card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing__card-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}
.pricing__card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pricing__card-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--grey);
  text-align: center;
}

/* ── Café section ───────────────────────────────────────────────────────── */
.cafe {
  padding: 120px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.cafe__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cafe__text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cafe__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cafe__cities { display: flex; flex-wrap: wrap; gap: 10px; }
.city-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--grey);
}
.city-pill--live {
  background: var(--gold-dim);
  border-color: rgba(245,166,35,0.3);
  color: var(--gold);
}
.cafe__visual { display: flex; justify-content: center; }
.cafe__card {
  background: var(--navy-light);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 320px;
  width: 100%;
}
.cafe__card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cafe__card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
}
.cafe__card-meta {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 24px;
}
.cafe__card-divider {
  height: 1px;
  background: rgba(245,166,35,0.2);
  margin-bottom: 20px;
}
.cafe__card-rsvp {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.final-cta {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(233,69,96,0.05) 0%, transparent 60%);
}
.final-cta__grain {
  position: absolute; inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.final-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.final-cta__inner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.final-cta__inner h2 em { font-style: italic; color: var(--gold); }
.final-cta__inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  line-height: 1.7;
}
.final-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand p {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  margin-top: 4px;
}
.footer__links { display: flex; gap: 28px; }
.footer__links a { font-size: 13px; color: var(--grey); transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__copy { font-size: 12px; color: var(--grey); }

/* ── Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,13,24,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--navy-light);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.35s var(--ease-out) both;
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 16px;
  color: var(--grey);
  transition: color 0.2s;
  padding: 8px;
}
.modal__close:hover { color: var(--white); }
.modal__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  margin-bottom: 32px;
  line-height: 1.3;
}

/* ── Form ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus { border-color: rgba(245,166,35,0.5); }
.form-error { color: var(--red); font-size: 13px; margin-top: 12px; }
.form-success { color: var(--teal); font-size: 13px; margin-top: 12px; }

/* ── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy-light);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--white);
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--radius);
  z-index: 300;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__bg-number { display: none; }
  .phases { grid-template-columns: 1fr; }
  .problem__cards { grid-template-columns: 1fr; }
  .skills__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cafe__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .skills__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__ctas { flex-direction: column; }
  .final-cta__btns { flex-direction: column; align-items: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .modal { padding: 36px 24px; }
}
