/* ============================================================
   MILLENNIALS CAPITAL · PUBLIC SITE
   Clone of the georgekoutalidis.com UI/UX (Home / About / Membership)
   Loads AFTER member.css (reuses its tokens + buttons).
============================================================ */

/* ---- Public nav CTA (Login) ---- */
.mnav-links a.mnav-cta {
  background: var(--teal); color: #0b0f13; font-weight: 700;
  padding: .5rem 1.15rem; border-radius: var(--r1);
  box-shadow: 0 0 16px rgba(22,181,168,.3);
}
.mnav-links a.mnav-cta:hover { background: var(--teal-d); color: #0b0f13; }
.mnav-links a.mnav-cta.active::after { display: none; }

/* ---- Shared section rhythm (matched to GK 64px) ---- */
.sect { padding: 64px 0; }
.sect-tight { padding: 64px 0; }
.center { text-align: center; }

.kicker {
  font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .9rem;
}
.h-serif {
  font-family: var(--serif); font-weight: 700; color: var(--t1); line-height: 1.12;
  letter-spacing: -.01em;
}
.lead { font-size: 1.25rem; color: var(--t2); line-height: 1.5; }

/* ============================================================
   HERO  ("Building Wealth")
============================================================ */
.hero {
  position: relative; overflow: hidden; padding: 132px 0 88px;
  background:
    radial-gradient(900px 460px at 15% 0%, rgba(22,181,168,.10), transparent 60%),
    radial-gradient(700px 420px at 100% 30%, rgba(233,184,86,.06), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center;
}
.hero-h1 {
  font-family: var(--serif); font-weight: 800; color: var(--t1);
  font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.05; letter-spacing: -.02em;
}
.hero-h1 span { color: var(--teal); }
.hero-p { font-size: 1.1rem; color: var(--t2); line-height: 1.85; margin: 1.5rem 0 2rem; max-width: 520px; }
.hero-p b { color: var(--t1); font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.social-row { display: flex; gap: .6rem; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--b2); color: var(--t1); transition: border-color .15s, color .15s, background .15s;
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-g); }
.social-btn svg { width: 20px; height: 20px; fill: currentColor; }

.hero-photo { position: relative; }
.hero-photo-frame {
  position: relative; border-radius: var(--r3); overflow: hidden; aspect-ratio: 4/5;
  background: var(--card); border: 1px solid var(--b2); box-shadow: var(--sh2), var(--stl);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,15,19,.7), transparent 45%);
}
.hero-sign {
  position: absolute; bottom: 1.25rem; left: 1.5rem; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--t1);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

/* ============================================================
   METRICS BAND
============================================================ */
.metrics { background: var(--bg1); border-top: 1px solid var(--b1); border-bottom: 1px solid var(--b1); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.metric { display: flex; align-items: center; gap: 1rem; }
.metric-ic { width: 48px; height: 48px; border-radius: var(--r2); background: rgba(22,181,168,.1); border: 1px solid rgba(22,181,168,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.metric-ic svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.metric-v { font-size: 1.65rem; font-weight: 900; color: var(--t1); line-height: 1; font-variant-numeric: tabular-nums; }
.metric-l { font-size: .78rem; color: var(--t3); margin-top: .25rem; }

/* ============================================================
   JOIN COMMUNITY CTA BAND
============================================================ */
.join { position: relative; overflow: hidden; }
.join-card {
  background: linear-gradient(160deg, rgba(22,181,168,.08), var(--card));
  border: 1px solid var(--bt); border-radius: var(--r3);
  padding: 3.5rem 3rem; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(22,181,168,.08);
}
.join-card h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--t1); }
.join-card h2 span { color: var(--teal); }
.join-card p { font-size: 1.02rem; color: var(--t2); max-width: 620px; margin: 1rem auto 2rem; line-height: 1.8; }
.join-feats { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.join-feat { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--t2); font-weight: 600; }
.join-feat::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-g); color: var(--teal); font-size: .65rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   STOCK FEED TICKER
============================================================ */
.feed { background: var(--bg1); }
.feed-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.feed-card {
  background: var(--card); border: 1px solid var(--b1); border-radius: var(--r2);
  padding: 1.1rem 1rem; text-align: center; transition: border-color .2s, transform .2s;
}
.feed-card:hover { border-color: var(--bt); transform: translateY(-2px); }
.feed-sym { font-size: .95rem; font-weight: 800; color: var(--t1); }
.feed-price { font-size: .95rem; font-weight: 700; color: var(--t2); font-variant-numeric: tabular-nums; margin: .35rem 0 .2rem; }
.feed-chg { font-size: .78rem; font-weight: 800; font-variant-numeric: tabular-nums; }

/* ============================================================
   PHILOSOPHY (mentor quotes)
============================================================ */
.philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.philo-card {
  background: var(--card); border: 1px solid var(--b1); border-radius: var(--r3);
  padding: 2.25rem; box-shadow: var(--sh); display: flex; flex-direction: column; gap: 1.5rem;
}
.philo-quote { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--t1); line-height: 1.6; }
.philo-quote::before { content: '“'; color: var(--teal); font-size: 2rem; margin-right: .15rem; }
.philo-person { display: flex; align-items: center; gap: .9rem; }
.philo-av { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--teal); background: var(--bg3); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--teal); overflow: hidden; }
.philo-av img { width: 100%; height: 100%; object-fit: cover; }
.philo-name { font-size: .9rem; font-weight: 800; color: var(--t1); }
.philo-role { font-size: .74rem; color: var(--t3); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.tst-card {
  background: var(--card); border: 1px solid var(--b1); border-radius: var(--r3);
  padding: 1.75rem; box-shadow: var(--sh); display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .2s, transform .2s;
}
.tst-card:hover { border-color: var(--bt); transform: translateY(-3px); }
.tst-stars span { color: var(--gold); font-size: .95rem; }
.tst-text { font-size: .92rem; color: var(--t2); line-height: 1.75; font-style: italic; flex: 1; }
.tst-person { display: flex; align-items: center; gap: .75rem; padding-top: .75rem; border-top: 1px solid var(--b1); }
.tst-av { width: 38px; height: 38px; border-radius: 50%; background: var(--bg3); border: 1.5px solid var(--bt); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--teal); font-size: .85rem; }
.tst-name { font-size: .85rem; font-weight: 700; color: var(--t1); }
.tst-role { font-size: .7rem; color: var(--t3); }

/* ============================================================
   NEWSLETTER + FOOTER + DISCLAIMER
============================================================ */
.nl { background: var(--bg1); border-top: 1px solid var(--b1); }
.nl-inner { text-align: center; }
.nl-inner h2 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--t1); }
.nl-inner h2 span { color: var(--teal); }
.nl-inner p { color: var(--t2); margin: .75rem auto 2rem; max-width: 520px; }
.nl-form { display: flex; gap: .6rem; max-width: 480px; margin: 0 auto; }
.nl-form input { flex: 1; padding: .85rem 1.2rem; background: var(--bg3); border: 1.5px solid var(--b2); border-radius: var(--r1); color: var(--t1); font-size: .95rem; outline: none; transition: border-color .15s; }
.nl-form input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,181,168,.12); }
.nl-form button { background: var(--teal); color: #0b0f13; font-weight: 800; padding: .85rem 1.5rem; border: none; border-radius: var(--r1); cursor: pointer; white-space: nowrap; box-shadow: 0 0 16px rgba(22,181,168,.3); }
.nl-form button:hover { background: var(--teal-d); }

.site-footer { background: var(--bg); border-top: 1px solid var(--b1); padding: 3rem 0 1.5rem; }
.sf-top { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid var(--b1); }
.sf-brand { display: flex; align-items: center; gap: .7rem; }
.sf-brand img { height: 36px; }
.sf-social { display: flex; gap: .6rem; }
.sf-copy { font-size: .78rem; color: var(--t3); padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sf-copy a { color: var(--t3); }
.sf-copy a:hover { color: var(--teal); }
.disclaimer {
  margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: var(--card2); border: 1px solid var(--b1);
  border-radius: var(--r2); font-size: .72rem; color: var(--t3); line-height: 1.7;
}
.disclaimer strong { color: var(--t2); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-hero { padding: 132px 0 64px; text-align: center; background: radial-gradient(800px 400px at 50% 0%, rgba(22,181,168,.09), transparent 60%), var(--bg); }
.about-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.75rem); color: var(--t1); line-height: 1.1; }
.about-hero h1 span { color: var(--teal); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 760px; margin: 2.5rem auto 0; }
.about-stat { background: var(--card); border: 1px solid var(--b1); border-radius: var(--r2); padding: 1.5rem 1rem; }
.about-stat .v { font-size: 1.9rem; font-weight: 900; color: var(--t1); }
.about-stat .v span { color: var(--teal); }
.about-stat .l { font-size: .78rem; color: var(--t3); margin-top: .3rem; }

.about-body { max-width: 760px; margin: 0 auto; }
.about-body p { font-size: 1.05rem; color: var(--t2); line-height: 1.9; margin-bottom: 1.5rem; }
.about-body p strong { color: var(--t1); }
.callout {
  background: linear-gradient(160deg, rgba(22,181,168,.08), var(--card));
  border: 1px solid var(--bt); border-radius: var(--r3); padding: 1.75rem 2rem; margin: 2rem 0;
}
.callout p { font-size: 1.15rem; color: var(--t1); font-weight: 700; margin: 0; line-height: 1.6; }
.callout p span { color: var(--teal); }

.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
.platform-card {
  background: var(--card); border: 1px solid var(--b1); border-radius: var(--r3);
  padding: 1.75rem; display: flex; gap: 1.1rem; align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.platform-card:hover { border-color: var(--bt); transform: translateY(-3px); }
.platform-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--r2); background: rgba(22,181,168,.1); border: 1px solid rgba(22,181,168,.2); display: flex; align-items: center; justify-content: center; }
.platform-ic svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.platform-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--t1); margin-bottom: .3rem; }
.platform-card p { font-size: .88rem; color: var(--t2); line-height: 1.65; }

/* ============================================================
   MEMBERSHIP — 3 tiers (public)
============================================================ */
.tier-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.tier .soldout { display: inline-block; margin-left: .6rem; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--red); background: var(--red-g); border: 1px solid rgba(240,82,82,.25); border-radius: 99px; padding: .18rem .55rem; vertical-align: middle; }
.tier.disabled { opacity: .78; }
.tier.disabled .btn { background: var(--bg3); color: var(--t3); box-shadow: none; cursor: not-allowed; pointer-events: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo-frame { max-width: 420px; margin: 0 auto; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .philo-grid, .platform-grid { grid-template-columns: 1fr; }
  .tst-grid, .tier-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sect { padding: 64px 0; }
  .hero { padding: 108px 0 64px; text-align: center; }
  .hero-p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .metrics-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr 1fr; }
  .join-card { padding: 2.5rem 1.5rem; }
  .join-feats { gap: 1rem; }
  .nl-form { flex-direction: column; }
  .sf-copy { flex-direction: column; text-align: center; }
}

/* ============================================================
   ░░ GK-STRUCTURE HOME (v2) ░░
   Faithful clone of georgekoutalidis.com home layout
============================================================ */
:root { --display: 'Poppins', 'Inter', system-ui, sans-serif; }

/* ---- Two-line section heading (white word + teal word) ---- */
.gk-h {
  font-family: var(--display); font-weight: 800; line-height: 1.0;
  letter-spacing: -.02em; margin-bottom: 2.5rem;
  display: flex; flex-direction: column;
}
.gk-h .l1 { color: var(--t1); font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.gk-h .l2 { color: var(--teal); font-size: clamp(2.1rem, 4.5vw, 3.4rem); padding-left: 2.2rem; }
.gk-h-inline { flex-direction: row; }
.gk-h-inline .l1:last-child { padding-left: 0; }

/* ============================================================
   HERO v2 — teal "silk" background, circular photo + signature
============================================================ */
.hero2 {
  position: relative; overflow: hidden; padding: 150px 0 110px;
  background-color: #07100f;
  background-image:
    radial-gradient(1300px 680px at 12% 32%, rgba(22,181,168,.32), transparent 55%),
    radial-gradient(1000px 760px at -8% 92%, rgba(22,181,168,.20), transparent 55%),
    radial-gradient(1100px 520px at 96% 8%, rgba(22,181,168,.10), transparent 52%),
    linear-gradient(135deg, #0a1a19 0%, #071012 58%, #05070a 100%);
}
.hero2::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(122deg, rgba(255,255,255,.015) 0 2px, transparent 2px 90px);
  mask: linear-gradient(120deg, #000 0%, transparent 70%);
  -webkit-mask: linear-gradient(120deg, #000 0%, transparent 70%);
}
.hero2-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  grid-template-areas:
    "brand   photo"
    "content photo"
    ".       sign";
  column-gap: 3rem; row-gap: 0; align-items: center;
}
.hero2-brand   { grid-area: brand;   margin-bottom: 1.75rem; }
.hero2-content { grid-area: content; }
.hero2-avatar  { grid-area: photo; justify-self: center; }
.hero2-sign    { grid-area: sign; justify-self: center; }
.hero2-logo { height: 64px; width: auto; }
.hero2-h1 {
  font-family: var(--display); font-weight: 600; color: var(--t1);
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.3; letter-spacing: -.01em;
}
.hero2-p { font-size: 1.25rem; color: var(--t2); line-height: 1.5; margin: 1.25rem 0 1.75rem; max-width: 560px; }
.hero2-p b { color: var(--t1); font-weight: 700; }

.hero2-avatar {
  width: 220px; height: 220px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(255,255,255,.9); box-shadow: 0 12px 50px rgba(0,0,0,.55), 0 0 60px rgba(22,181,168,.25);
}
.hero2-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero2-sign {
  font-family: var(--serif); font-style: italic; font-size: 1.75rem; color: var(--t1);
  opacity: .92; text-shadow: 0 2px 12px rgba(0,0,0,.5); margin-top: 1.25rem;
}

/* ============================================================
   PERFORMANCE METRICS — white cards
============================================================ */
.metrics2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.mcard {
  background: #fff; border-radius: var(--r3); padding: 1.5rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.mcard:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,.45); }
.mcard-ic { flex-shrink: 0; color: #0b0f13; }
.mcard-ic svg { width: 34px; height: 34px; stroke: #0b0f13; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mcard-v { font-family: var(--display); font-size: 1.7rem; font-weight: 800; color: #0b0f13; line-height: 1; font-variant-numeric: tabular-nums; }
.mcard-l { font-size: .82rem; color: #5a6677; margin-top: .3rem; }

/* ============================================================
   JOIN OUR COMMUNITY
============================================================ */
.join2 { position: relative; overflow: hidden; }
.join2::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 400px at 85% 50%, rgba(22,181,168,.06), transparent 60%);
}
.join2-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .6fr; gap: 2rem; align-items: center; }
.join2 .join-feat::before { background: var(--teal); color: #0b0f13; }
.join2-cta { display: flex; justify-content: flex-end; }
.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #0b0f13; font-weight: 700; font-size: 1rem;
  padding: 1rem 2.25rem; border-radius: 99px; border: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,.35); transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,.15); }

/* ============================================================
   STOCK FEED — horizontal row of dark cards
============================================================ */
.sfeed-row {
  display: flex; gap: 1rem; overflow-x: auto; padding-bottom: .5rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.sfeed-row::-webkit-scrollbar { height: 6px; }
.sfeed-card {
  flex: 0 0 clamp(260px, 30%, 340px); scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--b1); border-radius: var(--r2);
  padding: 1.25rem 1.35rem; transition: border-color .2s, transform .2s;
}
.sfeed-card:hover { border-color: var(--bt); transform: translateY(-3px); }
.sf-symrow { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.sf-sym { font-size: 1.25rem; font-weight: 900; color: var(--t1); }
.sf-price { font-size: 1.25rem; font-weight: 800; color: var(--t1); font-variant-numeric: tabular-nums; }
.sf-namerow { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.sf-name { font-size: .8rem; color: var(--teal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sf-badge { flex-shrink: 0; font-size: .72rem; font-weight: 800; padding: .18rem .55rem; border-radius: var(--r1); font-variant-numeric: tabular-nums; }
.sf-badge.up { color: #073; background: var(--green); }
.sf-badge.dn { color: #fff; background: var(--red); }

/* ============================================================
   PHILOSOPHY — heading left, white quote cards right
============================================================ */
.philo2-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
.philo2-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.qcard {
  position: relative; background: #fff; border-radius: var(--r3);
  padding: 2rem 8rem 2rem 2rem; min-height: 168px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.qcard-text { font-size: 1.05rem; color: #0b0f13; line-height: 1.5; font-weight: 500; }
.qcard-name { font-size: .78rem; font-weight: 800; letter-spacing: .06em; color: var(--teal-d); margin-top: 1rem; }
.qcard-photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 130px;
  background: linear-gradient(135deg, #cfd6dd, #97a1ac);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 2rem; color: #4a5560;
  filter: grayscale(1);
}

/* ============================================================
   TESTIMONIALS — green gradient cards
============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tcard {
  background: linear-gradient(160deg, #14524a 0%, #0d322e 100%);
  border: 1px solid rgba(22,181,168,.25); border-radius: var(--r3);
  padding: 1.75rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; min-height: 210px;
}
.tcard-text { font-size: .95rem; color: #dff3ef; line-height: 1.65; }
.tcard-name { font-size: .78rem; font-weight: 800; letter-spacing: .06em; color: #fff; }
.tbar { margin-top: 1.5rem; height: 3px; background: var(--b1); border-radius: 3px; overflow: hidden; }
.tbar span { display: block; width: 38%; height: 100%; background: var(--teal); border-radius: 3px; }

/* ============================================================
   SOCIAL SECTIONS (Instagram / X)
============================================================ */
.soc-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.soc-head { position: sticky; top: 90px; }
.btn-outline-round {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--b2); color: var(--t1); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.75rem; border-radius: 99px; transition: border-color .15s, color .15s, background .15s;
}
.btn-outline-round:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-g); }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.ig-tile {
  position: relative; aspect-ratio: 1; border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--b1); display: block; transition: transform .2s, border-color .2s;
}
.ig-tile:hover { transform: scale(1.03); border-color: var(--bt); }
.ig-badge {
  position: absolute; top: .6rem; left: .6rem; font-size: .62rem; font-weight: 800;
  letter-spacing: .04em; color: var(--t1); background: rgba(11,15,19,.55);
  border: 1px solid var(--b2); padding: .15rem .45rem; border-radius: var(--r1);
}

.x-list { display: flex; flex-direction: column; gap: 1rem; }
.x-card { background: var(--card); border: 1px solid var(--b1); border-radius: var(--r2); padding: 1.25rem 1.4rem; transition: border-color .2s; }
.x-card:hover { border-color: var(--bt); }
.x-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .6rem; }
.x-av { width: 38px; height: 38px; border-radius: 50%; background: var(--bg3); border: 1.5px solid var(--bt); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; color: var(--teal); flex-shrink: 0; }
.x-name { font-size: .88rem; font-weight: 700; color: var(--t1); }
.x-handle { font-size: .78rem; color: var(--t3); }
.x-text { font-size: .92rem; color: var(--t2); line-height: 1.6; }

/* ============================================================
   RESPONSIVE (v2)
============================================================ */
@media (max-width: 1024px) {
  /* GK-style mobile hero: logo top-left + photo top-right, content below, signature right */
  .hero2-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand   photo"
      "content content"
      "sign    sign";
    column-gap: 1.5rem; row-gap: 1.5rem; align-items: center;
  }
  .hero2-brand   { margin-bottom: 0; justify-self: start; }
  .hero2-content { text-align: left; }
  .hero2-p       { margin-left: 0; margin-right: 0; max-width: none; }
  .hero2-avatar  { justify-self: end; width: 132px; height: 132px; }
  .hero2-sign    { justify-self: end; margin-top: 0; }
  .metrics2-grid { grid-template-columns: 1fr 1fr; }
  .join2-grid { grid-template-columns: 1fr; }
  .join2-cta { justify-content: flex-start; }
  .philo2-grid, .soc-grid { grid-template-columns: 1fr; }
  .soc-head { position: static; }
  .tgrid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero2 { padding: 120px 0 72px; }
  .hero2-avatar { width: 116px; height: 116px; border-width: 2px; }
  .hero2-logo { height: 52px; }
  .hero2-sign { font-size: 1.4rem; }
  .gk-h .l2 { padding-left: 1.2rem; }
  .metrics2-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .sfeed-card { flex-basis: 78%; }
}
@media (max-width: 400px) {
  .hero2-avatar { width: 96px; height: 96px; }
  .hero2-logo { height: 44px; }
}

/* ---- Centered two-line heading (About/Membership heros) ---- */
.gk-h.gk-center { align-items: center; text-align: center; }
.gk-h.gk-center .l2 { padding-left: 0; }

/* ---- White feature cards (About · "The GK Platform") ---- */
.plat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.pcard {
  background: #fff; border-radius: var(--r3); padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.35); display: flex; gap: 1.1rem; align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,.45); }
.pcard-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--r2); background: rgba(22,181,168,.14); display: flex; align-items: center; justify-content: center; }
.pcard-ic svg { width: 24px; height: 24px; stroke: var(--teal-d); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.pcard h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 800; color: #0b0f13; margin-bottom: .3rem; }
.pcard p { font-size: .88rem; color: #5a6677; line-height: 1.6; }

/* Membership tier name in display font (GK look) */
.tier-name { font-family: var(--display); }

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

/* ============================================================
   ANIMATED HERO BACKGROUND (teal aurora / silk) — like GK
============================================================ */
.hero2-fx { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero2-fx span {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(75px); opacity: .5; mix-blend-mode: screen; will-change: transform;
}
.hero2-fx span:nth-child(1) { width: 680px; height: 680px; left: -8%;  top: -14%;    background: radial-gradient(circle, #1fbfae, transparent 66%); animation: fxfloat1 19s ease-in-out infinite; }
.hero2-fx span:nth-child(2) { width: 560px; height: 560px; left: 26%;  top: 32%;     background: radial-gradient(circle, #0f8f83, transparent 66%); animation: fxfloat2 25s ease-in-out infinite; }
.hero2-fx span:nth-child(3) { width: 460px; height: 460px; left: 2%;   bottom: -18%; background: radial-gradient(circle, #27d6c1, transparent 66%); animation: fxfloat3 22s ease-in-out infinite; }
.hero2-fx span:nth-child(4) { width: 520px; height: 520px; right: 8%;  top: 6%;      background: radial-gradient(circle, #14807a, transparent 68%); opacity: .35; animation: fxfloat4 28s ease-in-out infinite; }
@keyframes fxfloat1 { 0%,100% { transform: translate(0,0) scale(1); }     50% { transform: translate(130px,70px) scale(1.18); } }
@keyframes fxfloat2 { 0%,100% { transform: translate(0,0) scale(1); }     50% { transform: translate(-100px,-60px) scale(1.12); } }
@keyframes fxfloat3 { 0%,100% { transform: translate(0,0) scale(1); }     50% { transform: translate(90px,-80px) scale(1.22); } }
@keyframes fxfloat4 { 0%,100% { transform: translate(0,0) scale(1); }     50% { transform: translate(-70px,50px) scale(1.15); } }
@media (prefers-reduced-motion: reduce) { .hero2-fx span { animation: none; } }
.hero2-inner { position: relative; z-index: 2; }
.hero2::after { z-index: 1; }

/* ============================================================
   FAQ ACCORDION (Membership)
============================================================ */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--b1); border-radius: var(--r2); background: var(--card);
  margin-bottom: .85rem; overflow: hidden; transition: border-color .2s;
}
.faq-item[open] { border-color: var(--bt); }
.faq-q {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--display); font-weight: 700; color: var(--t1); font-size: 1.02rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .plus {
  flex-shrink: 0; width: 24px; height: 24px; position: relative; color: var(--teal);
  transition: transform .25s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: currentColor; border-radius: 2px;
}
.faq-q .plus::before { width: 16px; height: 2.5px; }
.faq-q .plus::after  { width: 2.5px; height: 16px; }
.faq-item[open] .faq-q .plus { transform: rotate(135deg); }
.faq-a { padding: 0 1.4rem 1.3rem; color: var(--t2); font-size: .94rem; line-height: 1.75; }

/* ============================================================
   SCROLL-REVEAL ANIMATIONS (GK-style fadeInSlideUp)
============================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1; transform: none;
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

.reveal-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO WAVE ANIMATION (bottom edge — GK-inspired motion)
============================================================ */
.hero2-wave {
  position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 3;
  line-height: 0; overflow: hidden;
}
.hero2-wave svg {
  display: block; width: 200%; height: 80px;
  animation: waveScroll 12s linear infinite;
}
.hero2-wave svg path {
  fill: var(--bg);
}
@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero2-wave svg { animation: none; width: 100%; }
}

/* ============================================================
   SECTION DIVIDER WAVE (reusable between sections)
============================================================ */
.wave-divider {
  position: relative; width: 100%; height: 60px; overflow: hidden;
  margin: -1px 0; line-height: 0;
}
.wave-divider svg {
  display: block; width: 200%; height: 100%;
  animation: waveScroll 16s linear infinite;
}
.wave-divider--up { transform: scaleY(-1); }
.wave-divider--slow svg { animation-duration: 22s; }

/* ============================================================
   HERO ENTRANCE ANIMATIONS
============================================================ */
.hero2-brand   { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .15s both; }
.hero2-content { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .3s both; }
.hero2-avatar  { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .45s both, heroPulse 4s ease-in-out 1.4s infinite; }
.hero2-sign    { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .6s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 12px 50px rgba(0,0,0,.55), 0 0 60px rgba(22,181,168,.25); }
  50%      { box-shadow: 0 12px 50px rgba(0,0,0,.55), 0 0 90px rgba(22,181,168,.4); }
}

/* ============================================================
   CARD HOVER MICRO-INTERACTIONS (GK-matched)
============================================================ */
.mcard, .sfeed-card, .qcard, .tcard, .ig-tile, .x-card {
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease;
}

/* ============================================================
   METRICS BAND — counter pulse animation on hover
============================================================ */
.mcard-v {
  transition: transform .2s ease;
}
.mcard:hover .mcard-v {
  transform: scale(1.06);
}

/* ============================================================
   STOCK FEED — auto-scroll animation for the row
============================================================ */
@keyframes feedScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sfeed-row--auto {
  display: block; overflow: hidden; width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.sfeed-row--auto .sfeed-track {
  display: flex; gap: 1rem; width: max-content;
  animation: feedScroll 40s linear infinite;
}
.sfeed-row--auto:hover .sfeed-track {
  animation-play-state: paused;
}
.sfeed-row--auto .sfeed-card { flex: 0 0 300px; }
@media (max-width: 768px) {
  .sfeed-row--auto .sfeed-card { flex-basis: 250px; }
  .sfeed-row--auto .sfeed-track { animation-duration: 28s; }
}
@media (prefers-reduced-motion: reduce) {
  .sfeed-row--auto .sfeed-track { animation: none; }
  .sfeed-row--auto { overflow-x: auto; -webkit-mask: none; mask: none; }
}

/* ============================================================
   TESTIMONIAL CARDS — stagger glow
============================================================ */
.tcard {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22,181,168,.15);
  border-color: rgba(22,181,168,.4);
}

/* ============================================================
   PROGRESS BAR ANIMATION (testimonials)
============================================================ */
.tbar span {
  animation: barGrow 2s cubic-bezier(.22,1,.36,1) both;
}
@keyframes barGrow {
  from { width: 0; }
}

/* ============================================================
   iOS 26 "LIQUID GLASS" — light gloss / frosted translucency
   Applied subtly to floating cards, nav, buttons & feed cards.
============================================================ */

/* Glossy specular sheen (reusable) — a soft diagonal highlight on top */
.mcard, .sfeed-card, .x-card, .tier, .join-card,
.faq-item, .about-stat, .pcard, .tcard {
  position: relative;
}
.mcard::after, .sfeed-card::after, .tier::after,
.about-stat::after, .pcard::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 1;
  background: linear-gradient(150deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.05) 22%, transparent 46%);
  mix-blend-mode: screen; opacity: .7;
}
/* keep card content above the sheen */
.mcard > *, .sfeed-card > *, .tier > *, .about-stat > *, .pcard > * { position: relative; z-index: 2; }

/* Frosted translucency on the dark floating cards */
.sfeed-card, .x-card, .faq-item {
  background: rgba(21,28,38,.55);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-top: 1px solid rgba(255,255,255,.14);
}
.tier {
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border-top: 1px solid rgba(255,255,255,.12);
}

/* Glass rim highlight on white cards (metrics / platform) */
.mcard, .pcard {
  border-top: 1px solid rgba(255,255,255,.9);
  background-image: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,1) 40%);
}

/* Nav: deeper liquid-glass blur + top sheen */
.mnav {
  background: rgba(11,15,19,.62);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

/* Buttons: subtle glossy top highlight */
.btn-white, .btn-teal, .nl-form button, .mnav-cta {
  position: relative; overflow: hidden;
}
.btn-white::before, .btn-teal::before, .nl-form button::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent);
  pointer-events: none; border-radius: inherit;
}

/* Avatar: glassy rim light */
.hero2-avatar { position: relative; }
.hero2-avatar::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background: linear-gradient(155deg, rgba(255,255,255,.35) 0%, transparent 40%);
  mix-blend-mode: screen;
}

@media (prefers-reduced-transparency: reduce) {
  .sfeed-card, .x-card, .faq-item, .tier, .mnav {
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
}

