/* ============================================================
   ÉCHELLE VENTURES — Core Stylesheet
   Modern dark theme, aurora gradients, glassmorphism, fluid type
   ============================================================ */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-dim: #a8a8a8;
  --text-mute: #6a6a6a;
  --accent: #b0b0b0;
  --accent-2: #c8c8c8;
  --accent-3: #8a8a8a;
  --accent-4: #6a6a6a;
  --gold: #b89c4a;
  --gold-light: #d4b85c;
  --gold-dim: #96803a;
  --grey: #3a3a3a;
  --grey-light: #9a9a9a;
  --grey-mid: #6e6e6e;
  --metallic: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 35%, #8a8a8a 65%, #6a6a6a 100%);
  --metallic-light: linear-gradient(135deg, #f0f0f0 0%, #c8c8c8 50%, #9a9a9a 100%);
  --grad: linear-gradient(135deg, #d4d4d4 0%, #b0b0b0 30%, #b89c4a 70%, #96803a 100%);
  --grad-alt: linear-gradient(135deg, #e0e0e0 0%, #b89c4a 100%);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 30px 80px -30px rgba(180, 180, 180, 0.12),
            0 10px 30px -15px rgba(0, 0, 0, 0.8);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Background Effects ---------- */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.aurora {
  position: fixed; inset: -20% -10% auto -10%; height: 110vh;
  pointer-events: none; z-index: 0; filter: blur(140px); opacity: 0.4;
  background:
    radial-gradient(40% 55% at 20% 20%, rgba(255, 255, 255, 0.14) 0%, transparent 60%),
    radial-gradient(35% 50% at 80% 15%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
    radial-gradient(45% 50% at 50% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 1%, 0) scale(1.05); }
  100% { transform: translate3d(2%, -1%, 0) scale(1); }
}

/* ---------- Layout ---------- */
.section {
  position: relative; z-index: 2;
  padding: clamp(60px, 10vw, 140px) clamp(24px, 6vw, 120px);
  max-width: 1400px; margin: 0 auto;
}

.section-head {
  text-align: center; max-width: 760px; margin: 0 auto 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 16px;
  padding: 6px 14px; border: 1px solid var(--panel-border);
  border-radius: 100px; background: var(--panel);
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: clamp(34px, 5vw, 64px); margin-bottom: 18px; }
h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 10px; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-sans); color: var(--text-dim); }

p { color: var(--text-dim); }

.grad {
  background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.italic { font-family: var(--font-serif); font-style: italic; font-weight: 300; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(24px, 6vw, 80px);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(7, 7, 17, 0.65);
  border-bottom: 1px solid var(--panel-border);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-weight: 600; font-size: 22px;
}
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--metallic); color: #0a0a0a;
  font-family: var(--font-serif); font-weight: 800; font-size: 22px;
  box-shadow: 0 8px 20px -8px rgba(180, 180, 180, 0.3);
}
.brand-text em { font-style: italic; font-weight: 300; color: var(--text-dim); }

.nav-links {
  display: flex; gap: 6px;
  background: var(--panel); border: 1px solid var(--panel-border);
  padding: 6px; border-radius: 100px;
}
.nav-links a {
  padding: 8px 18px; border-radius: 100px;
  font-size: 14px; color: var(--text-dim);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  background: rgba(180, 180, 180, 0.12);
  color: #ffffff;
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; height: 22px; justify-content: center;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links,
  .nav.open .nav-cta {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(7, 7, 17, 0.95);
    flex-direction: column; padding: 20px; gap: 12px;
    border-bottom: 1px solid var(--panel-border);
  }
  .nav.open .nav-links { border-radius: 0; top: 100%; }
  .nav.open .nav-cta { top: calc(100% + 220px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-primary {
  background: var(--metallic); color: #0a0a0a; font-weight: 600;
  box-shadow: 0 15px 40px -15px rgba(180, 180, 180, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -15px rgba(200, 200, 200, 0.45); }
.btn-outline {
  border: 1px solid var(--panel-border); color: var(--text);
  background: var(--panel);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { color: #ffffff; opacity: 0.8; }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 2;
  padding: clamp(80px, 14vw, 180px) clamp(24px, 6vw, 120px) clamp(60px, 10vw, 120px);
  max-width: 1400px; margin: 0 auto;
  text-align: center;
}
.hero-inner { position: relative; z-index: 3; }

.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--panel); border: 1px solid var(--panel-border);
  font-size: 13px; color: var(--text-dim);
  margin-bottom: 30px;
}
.chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grey-light);
  box-shadow: 0 0 14px rgba(180, 180, 180, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(30px, 5vw, 64px);
  font-family: var(--font-serif); font-weight: 400;
  letter-spacing: -0.03em; line-height: 0.95;
  color: #ffffff;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 640px; margin: 0 auto 40px;
  color: var(--text-dim);
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero-stats {
  display: flex; justify-content: center; gap: clamp(30px, 6vw, 80px);
  padding-top: 40px;
  border-top: 1px solid var(--panel-border);
  max-width: 720px; margin: 0 auto;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-serif); font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats span { font-size: 13px; color: var(--text-mute); letter-spacing: 0.05em; }

.hero-orb {
  position: absolute; z-index: 1;
  top: 40%; left: 50%;
  width: 600px; height: 600px; transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

/* ---------- Cards ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 180, 180, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.grid { display: grid; gap: 20px; }
.benefits { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.benefit .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--metallic); color: #0a0a0a;
  font-size: 22px; font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -12px rgba(180, 180, 180, 0.25);
}
.benefit h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.benefit p { font-size: 14px; }

/* ---------- Steps ---------- */
.how { padding-top: 40px; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  position: relative;
}
.step-num {
  font-family: var(--font-serif); font-size: 40px; font-weight: 400;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px; display: block;
}
.step h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 600; }
.step p { font-size: 14px; margin-top: 6px; }

/* ---------- Pricing ---------- */
.pricing { position: relative; }
.price-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1000px; margin: 0 auto;
}
.price {
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.price.featured {
  background: linear-gradient(180deg, rgba(180, 180, 180, 0.08), rgba(180, 180, 180, 0.02));
  border-color: rgba(180, 180, 180, 0.25);
  transform: scale(1.03);
}
.price.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-ribbon {
  position: absolute; top: 20px; right: 20px;
  padding: 5px 12px; border-radius: 100px;
  background: var(--metallic); color: #0a0a0a;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.price-tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute);
}
.price h3 { font-family: var(--font-serif); font-size: 32px; margin: 0; }
.price-amt {
  font-family: var(--font-serif); font-size: 24px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-top: -8px;
}
.price-desc { font-size: 15px; }
.price-list { display: flex; flex-direction: column; gap: 10px; margin: 10px 0 20px; }
.price-list li {
  font-size: 14px; color: var(--text-dim); padding-left: 24px; position: relative;
}
.price-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--grey-light); font-weight: 700;
}
.price .btn { align-self: flex-start; }

.price-note {
  text-align: center; margin-top: 40px; color: var(--text-dim); font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.no-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--grey-light);
  box-shadow: 0 0 14px rgba(180, 180, 180, 0.5);
}

/* ---------- Duo (For Students / For Companies) ---------- */
.duo-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.duo-card { padding: 40px; }
.duo-card h3 { font-family: var(--font-serif); font-size: 32px; margin-bottom: 24px; }
.duo-card ul { display: flex; flex-direction: column; gap: 12px; }
.duo-card li {
  padding-left: 28px; position: relative; color: var(--text-dim); font-size: 15px;
}
.duo-card li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--metallic); color: #0a0a0a;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}

/* ---------- CTA Section ---------- */
.cta-section { padding-bottom: 60px; }
.cta-card {
  padding: 80px 40px; text-align: center;
  border-radius: 32px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(180, 180, 180, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}
.cta-card h2 { margin-bottom: 16px; }
.cta-card p { max-width: 520px; margin: 0 auto 30px; }
.cta-card .hero-ctas { margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--panel-border);
  padding: 60px clamp(24px, 6vw, 120px) 30px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-top: 4px; }
.footer-brand strong { font-family: var(--font-serif); font-size: 22px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-cols h4 { margin-bottom: 16px; color: var(--text); }
.footer-cols a {
  display: block; font-size: 14px; color: var(--text-dim);
  padding: 4px 0; transition: color 0.2s;
}
.footer-cols a:hover { color: #ffffff; }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 30px; border-top: 1px solid var(--panel-border);
  font-size: 13px; color: var(--text-mute); text-align: center;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PAGE: STUDENTS / STARTUPS DIRECTORY
   ============================================================ */

.page-header {
  position: relative; z-index: 2;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 120px) 40px;
  max-width: 1400px; margin: 0 auto;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(44px, 7vw, 90px);
  margin-bottom: 20px;
}
.page-header p { font-size: 18px; max-width: 620px; margin: 0 auto; }

.filters {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 40px;
}
.filter-chip {
  padding: 9px 18px; border-radius: 100px;
  background: var(--panel); border: 1px solid var(--panel-border);
  color: var(--text-dim); font-size: 13px;
  transition: all 0.2s ease;
}
.filter-chip:hover { color: var(--text); }
.filter-chip.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #0a0a0a; border-color: transparent; font-weight: 600;
}

.search-box {
  max-width: 520px; margin: 30px auto 0;
  display: flex; gap: 10px;
  padding: 6px 6px 6px 20px;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 100px;
}
.search-box input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font: inherit; font-size: 14px;
}
.search-box input::placeholder { color: var(--text-mute); }

.directory {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px clamp(24px, 6vw, 120px) 80px;
  max-width: 1400px; margin: 0 auto;
}

.profile-card {
  padding: 28px; cursor: pointer;
  display: flex; flex-direction: column; gap: 14px;
}
.profile-avatar {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 28px;
  color: #0a0a0a;
  background: var(--metallic);
}
.profile-card[data-color="2"] .profile-avatar { background: linear-gradient(135deg, #d4d4d4, #8a8a8a); }
.profile-card[data-color="3"] .profile-avatar { background: linear-gradient(135deg, #c8c8c8, #6a6a6a); }
.profile-card[data-color="4"] .profile-avatar { background: linear-gradient(135deg, #b0b0b0, #b89c4a); }
.profile-card[data-color="5"] .profile-avatar { background: linear-gradient(135deg, #e0e0e0, #9a9a9a); }

.profile-name { font-family: var(--font-serif); font-size: 22px; font-weight: 500; }
.profile-role { color: var(--text-dim); font-size: 14px; margin-top: -4px; }
.profile-bio { font-size: 14px; line-height: 1.5; color: var(--text-dim); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 6px; }
.tag {
  font-size: 11px; padding: 4px 10px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.06); color: var(--gold);
  border: 1px solid var(--panel-border);
}

/* Startup cards slight variant */
.startup-card .profile-avatar {
  border-radius: 12px;
  background: linear-gradient(135deg, #d4d4d4, #8a8a8a);
}
.startup-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-mute); margin-top: 4px;
}
.startup-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grey-light); display: inline-block; margin-right: 6px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(7, 7, 17, 0.85);
  backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-content {
  max-width: 560px; width: 100%;
  background: var(--bg-2); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 40px;
  position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--panel); display: grid; place-items: center;
  font-size: 18px; color: var(--text-dim);
}
.modal-close:hover { color: var(--text); }

/* ============================================================
   PAGE: FORMS
   ============================================================ */

.form-page {
  position: relative; z-index: 2;
  max-width: 840px; margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 60px);
}
.form-page .page-header { padding: 0 0 50px; text-align: left; }
.form-page .page-header h1 { font-size: clamp(40px, 6vw, 70px); }
.form-page .page-header p { margin-left: 0; }

.form-card {
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px; color: var(--text-dim); letter-spacing: 0.03em;
}
.field .req { color: var(--accent-2); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px; color: var(--text);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  outline: none; transition: all 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--grey-light);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(180, 180, 180, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-actions {
  display: flex; justify-content: flex-end; gap: 12px;
  margin-top: 30px; padding-top: 30px;
  border-top: 1px solid var(--panel-border);
}

.form-success {
  display: none; padding: 40px; text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success h3 { font-family: var(--font-serif); font-size: 28px; margin-bottom: 10px; }

.google-embed-wrap {
  padding: 40px; text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--panel-border);
  border-radius: var(--radius);
  margin-bottom: 30px;
}
.google-embed-wrap iframe { width: 100%; min-height: 600px; border: 0; border-radius: var(--radius-sm); }
.google-embed-wrap .placeholder-note {
  font-size: 14px; color: var(--text-mute); padding: 20px;
}

/* ============================================================
   PAGE: CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px;
  padding: 40px clamp(24px, 6vw, 120px) 100px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  padding: 50px;
  background:
    radial-gradient(100% 60% at 0% 0%, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 24px;
  position: relative; overflow: hidden;
}
.contact-info h2 { font-size: clamp(32px, 4vw, 48px); }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--panel-border);
}
.contact-item:first-of-type { border-top: none; }
.contact-item .icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  font-size: 18px; flex-shrink: 0;
}
.contact-item h4 { color: var(--text); font-size: 12px; margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: 15px; color: var(--text-dim); display: block; }
.contact-item a:hover { color: #ffffff; }

.socials { display: flex; gap: 10px; margin-top: 10px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--panel); border: 1px solid var(--panel-border);
  display: grid; place-items: center;
  transition: all 0.25s ease;
}
.socials a:hover {
  background: var(--metallic); color: #0a0a0a;
  transform: translateY(-3px);
}

/* ============================================================
   PAGE: BENEFITS (standalone)
   ============================================================ */
.benefits-hero {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 120px) 40px;
  max-width: 1200px; margin: 0 auto;
}
.benefits-hero h1 { font-size: clamp(48px, 8vw, 100px); margin-bottom: 20px; }
.benefits-hero p { font-size: 18px; max-width: 640px; margin: 0 auto; }

.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px clamp(24px, 6vw, 120px);
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 900px) { .benefits-split { grid-template-columns: 1fr; } }

.benefit-long {
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 16px;
}
.benefit-long .big-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--metallic); color: #0a0a0a;
  font-size: 28px; font-weight: 800;
  box-shadow: 0 15px 40px -15px rgba(180, 180, 180, 0.25);
}
.benefit-long h3 { font-family: var(--font-serif); font-size: 28px; }
.benefit-long p { font-size: 15px; line-height: 1.6; }
.benefit-long ul { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.benefit-long li { padding-left: 22px; position: relative; font-size: 14px; color: var(--text-dim); }
.benefit-long li::before { content: '◆'; position: absolute; left: 0; color: var(--grey-light); }

/* ============================================================
   PAGE: SUCCESS STORIES
   ============================================================ */
.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  padding: 40px clamp(24px, 6vw, 120px) 80px;
  max-width: 1400px; margin: 0 auto;
}
.story {
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.story:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.18); }
.story::before {
  content: '"'; position: absolute;
  top: -40px; right: 20px;
  font-family: var(--font-serif); font-size: 240px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}
.story-quote {
  font-family: var(--font-serif); font-size: 20px; line-height: 1.4;
  color: var(--text); position: relative;
}
.story-meta {
  display: flex; gap: 14px; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--panel-border);
}
.story-meta .profile-avatar { width: 46px; height: 46px; font-size: 20px; border-radius: 12px; }
.story-meta strong { display: block; font-size: 15px; }
.story-meta span { font-size: 13px; color: var(--text-dim); }

.metric-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 50px; margin: 40px clamp(24px, 6vw, 120px) 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  max-width: calc(1400px - 48px); margin-left: auto; margin-right: auto;
  text-align: center;
}
.metric strong {
  display: block;
  font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 500;
}
.metric span { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   STARTUP PROFILE (Featured)
   ============================================================ */
.startup-profile-featured {
  max-width: 960px; margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.sp-header {
  display: flex; align-items: center; gap: 30px;
  padding: 40px 44px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border-bottom: 1px solid var(--panel-border);
}

.sp-logo-wrap {
  width: 120px; height: 120px; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  display: grid; place-items: center;
  overflow: hidden;
}
.sp-logo { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

.sp-header-info { flex: 1; }
.sp-badge {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  background: rgba(74,222,128,0.12); color: #4ade80;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(74,222,128,0.25);
  margin-bottom: 12px;
}
.sp-header-info h2 {
  font-family: var(--font-serif); font-size: clamp(32px,4vw,48px);
  font-weight: 500; margin-bottom: 6px;
}
.sp-founder { font-size: 15px; color: var(--text-dim); margin-bottom: 8px; }
.sp-founder strong { color: var(--text); }
.sp-tagline { font-size: 14px; color: var(--text-mute); line-height: 1.5; }

.sp-body { padding: 36px 44px; }

.sp-section { margin-bottom: 32px; }
.sp-section:last-child { margin-bottom: 0; }
.sp-section h3 {
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute);
  margin-bottom: 18px;
}

.sp-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }

.sp-service-card {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.sp-service-card:hover { border-color: rgba(255,255,255,0.18); }

.sp-service-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--metallic); color: #0a0a0a;
  font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
}
.sp-service-card h4 {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  color: var(--text); text-transform: none; letter-spacing: 0;
  margin-bottom: 8px;
}
.sp-service-card p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

.sp-consultant {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  max-width: 360px;
}
.sp-consultant strong { display: block; font-size: 16px; color: var(--text); }
.sp-consultant span { font-size: 13px; color: var(--text-dim); }

.sp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--panel-border); }

@media (max-width: 640px) {
  .sp-header { flex-direction: column; text-align: center; padding: 30px 24px; }
  .sp-body { padding: 24px; }
  .sp-consultant { max-width: 100%; }
}

/* ---------- Scroll reveal helper ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   ADD-ONS: Industries, Testimonial, FAQ, Newsletter, To-top
   ============================================================ */
.industries { padding-top: 40px; padding-bottom: 40px; }
.industry-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 26px;
  padding: 30px 40px;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  font-family: var(--font-serif); font-size: clamp(18px, 2vw, 28px); font-weight: 400;
}
.industry-strip span:nth-child(even) {
  color: var(--text-mute); font-size: 18px;
}
.industry-strip span:nth-child(odd) {
  color: #ffffff;
}

.testimonial-section { padding-top: 40px; padding-bottom: 40px; }
.testimonial {
  max-width: 880px; margin: 0 auto; text-align: center;
  padding: 70px 40px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--panel-border);
  border-radius: 32px;
}
.testimonial blockquote {
  font-family: var(--font-serif); font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400; line-height: 1.3; color: var(--text);
  margin-bottom: 30px;
}
.testimonial figcaption {
  display: inline-flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--panel-border);
}
.testimonial figcaption strong { display: block; font-size: 15px; }
.testimonial figcaption span { display: block; font-size: 13px; color: var(--text-dim); }

.faq-section { padding-top: 40px; }
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}
.faq details[open] { border-color: rgba(180, 180, 180, 0.25); background: rgba(255, 255, 255, 0.05); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-sans); font-weight: 500; font-size: 16px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--grey-light);
  font-size: 22px;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin-top: 14px; font-size: 15px; line-height: 1.6;
  color: var(--text-dim);
}

.newsletter {
  max-width: 1400px; margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--panel-border);
  text-align: center;
}
.newsletter h4 { margin-bottom: 14px; color: var(--text); }
.newsletter form {
  display: inline-flex; gap: 8px;
  padding: 6px 6px 6px 20px;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 100px;
  max-width: 100%;
  flex-wrap: wrap; justify-content: center;
}
.newsletter input {
  background: transparent; border: none; outline: none;
  color: var(--text); font: inherit; font-size: 14px;
  min-width: 200px;
}
.newsletter input::placeholder { color: var(--text-mute); }
.newsletter-msg { display: block; color: var(--grey-light); font-size: 13px; margin-top: 10px; }

.to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--metallic); color: #0a0a0a;
  font-size: 22px; font-weight: 800;
  display: grid; place-items: center;
  z-index: 40;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: all 0.25s ease;
  box-shadow: 0 15px 40px -15px rgba(180, 180, 180, 0.25);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Responsive shrink ---------- */
@media (max-width: 640px) {
  .hero-stats { gap: 30px; flex-wrap: wrap; }
  .price.featured { transform: none; }
  .price.featured:hover { transform: translateY(-4px); }
}
