/* ============================================
   KIND SOCIAL — Inner Circle Landing
   ============================================ */

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

:root {
  --bg: #050507;
  --bg-alt: #0b0b10;
  --ink: #ffffff;
  --ink-muted: #9aa0ad;
  --ink-faint: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --pink: #fe2c55;
  --orange: #ff6a3d;
  --amber: #ffc857;
  --gold: #fcb900;
  --grad: linear-gradient(95deg, #fe2c55 0%, #ff8a3d 50%, #ffc857 110%);
  --grad-soft: linear-gradient(135deg, rgba(254,44,85,0.12), rgba(255,200,87,0.10));
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.55;
}
html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
[data-snap-section] {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5,5,7,0.94);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.wordmark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover {
  border-color: var(--amber);
  background: rgba(255,200,87,0.08);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(254,44,85,0.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 75% 60%, rgba(255,200,87,0.14), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.pill-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.proposal-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
}
.proposal-header-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  font-weight: 700;
}
.proposal-header-target {
  font-size: 22px;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-faint);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 1.4s ease-in-out infinite;
}
.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ----- Hero circle visual: the "Inner Circle" itself ----- */
.hero-circle {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  height: 380px;
  width: 100%;
  max-width: 480px;
  will-change: transform;
}
.circle-stage {
  position: relative;
  width: 380px;
  height: 380px;
}
.circle-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.circle-ring-outer {
  border: 1px dashed rgba(255,255,255,0.12);
  animation: rotateOuter 60s linear infinite;
}
.circle-ring-inner {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255,200,87,0.28);
  animation: rotateInner 45s linear infinite reverse;
}
@keyframes rotateOuter {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotateInner {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.circle-avatar {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  background: linear-gradient(140deg, #2a2a36, #16161e);
  border: 1px solid var(--line-strong);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  animation: counterRotate 60s linear infinite;
}
@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.circle-ring-outer .circle-avatar-1 { top: -27px; left: 50%; margin-left: -27px; background: linear-gradient(140deg, #fe2c55, #ff6a3d); }
.circle-ring-outer .circle-avatar-2 { top: 20%; right: -10px; background: linear-gradient(140deg, #2a2a36, #16161e); }
.circle-ring-outer .circle-avatar-3 { bottom: 8%; right: 8%; background: linear-gradient(140deg, #ffc857, #ff8a3d); }
.circle-ring-outer .circle-avatar-4 { bottom: -27px; left: 50%; margin-left: -27px; background: linear-gradient(140deg, #2a2a36, #16161e); }
.circle-ring-outer .circle-avatar-5 { bottom: 8%; left: 8%; background: linear-gradient(140deg, #2a2a36, #16161e); }
.circle-ring-outer .circle-avatar-6 { top: 20%; left: -10px; background: linear-gradient(140deg, #fe2c55, #ffc857); }
.circle-ring-inner .circle-avatar-robin {
  position: absolute;
  top: -27px;
  left: 50%;
  margin-left: -32px;
  width: 64px;
  height: 64px;
  font-size: 14px;
  background: var(--grad);
  border: 2px solid white;
  box-shadow: 0 0 24px rgba(255,200,87,0.5);
  animation: counterRotateInner 45s linear infinite reverse;
}
@keyframes counterRotateInner {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.circle-avatar-robin-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.circle-ring-inner .circle-avatar-you {
  position: absolute;
  bottom: -27px;
  left: 50%;
  margin-left: -27px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  animation: counterRotateInner 45s linear infinite reverse;
}
.circle-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,87,0.25), transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.scroll-cue:hover { color: var(--ink); }
.scroll-cue svg { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================
   GENERIC SECTIONS
   ============================================ */
.section {
  padding: 140px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
}
.muted { color: var(--ink-muted); }
.lede {
  max-width: 760px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-muted);
  line-height: 1.65;
}
.lede + .lede { margin-top: 22px; }
.lede strong {
  color: var(--ink);
  font-weight: 600;
}
.lede-closer {
  margin-top: 28px;
}

/* ============================================
   FEATURE GRID (What You Get)
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.feature-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.feature-card:hover {
  border-color: var(--line-strong);
  background: rgba(255,200,87,0.04);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.feature-body {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TIERS
   ============================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.tier-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.tier-card-featured {
  border: 1px solid transparent;
  background: var(--grad-soft);
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(255,200,87,0.4),
    0 20px 50px -15px rgba(254,44,85,0.35);
}
.tier-card-featured:hover {
  box-shadow:
    0 0 0 1px rgba(255,200,87,0.6),
    0 24px 60px -15px rgba(254,44,85,0.45);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--grad);
  color: white;
  border-radius: 999px;
}
.tier-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.tier-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tier-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  background: none;
  -webkit-text-fill-color: var(--ink-muted);
  letter-spacing: 0;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier-list li {
  position: relative;
  padding: 9px 0 9px 24px;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.tier-list li:last-child { border-bottom: 0; }
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}
.tier-cta {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.tier-cta:hover {
  border-color: var(--amber);
  background: rgba(255,200,87,0.08);
}
.tier-cta-featured {
  background: var(--grad);
  border: 0;
  color: white;
  font-weight: 700;
}
.tier-cta-featured:hover {
  background: var(--grad);
  filter: brightness(1.1);
  transform: scale(1.01);
}
@media (max-width: 980px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card-featured { order: -1; }
}

/* ============================================
   FOUNDING 100
   ============================================ */
.founding-cta-wrap {
  margin-top: 36px;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.portfolio-card {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.portfolio-card:hover {
  border-color: var(--line-strong);
  background: rgba(255,200,87,0.04);
  transform: translateY(-3px);
}
.portfolio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad);
  color: white;
  margin-bottom: 16px;
}
.portfolio-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.portfolio-detail {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ASK BOX (Final CTA)
   ============================================ */
.section-ask {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(254,44,85,0.16), transparent 60%),
    var(--bg-alt);
}
.ask-box {
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(254,44,85,0.06), rgba(255,200,87,0.04));
}
.ask-box h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ask-box p {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: var(--grad);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  border: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 18px 50px -10px rgba(254,44,85,0.5);
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -10px rgba(254,44,85,0.65);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  scroll-snap-align: none;
  min-height: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-meta {
  font-size: 13px;
  color: var(--ink-faint);
}
.footer-meta a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-meta a:hover {
  color: var(--amber);
}

/* ============================================
   DECK NAVIGATION
   ============================================ */
.snap-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  pointer-events: none;
}
.snap-dots {
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: auto;
}
.snap-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.snap-dot:hover {
  background: rgba(255,255,255,0.45);
  transform: scale(1.15);
}
.snap-dot.is-active {
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
  transform: scale(1.25);
}
.snap-dot-label {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(15,15,22,0.95);
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.snap-dot:hover .snap-dot-label {
  opacity: 1;
}
.snap-arrows {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.snap-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,15,22,0.85);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.snap-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #1a1004;
  transform: scale(1.05);
}
.snap-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.snap-arrow:disabled:hover {
  background: rgba(15,15,22,0.85);
  border-color: var(--line-strong);
  color: var(--ink);
  transform: none;
}
@media (max-width: 720px) {
  .snap-nav { right: 14px; }
  .snap-dot { width: 8px; height: 8px; }
  .snap-arrows { right: 14px; bottom: 14px; }
  .snap-arrow { width: 38px; height: 38px; }
  .snap-dot-label { display: none; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE / REDUCED MOTION
   ============================================ */
@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .hero { padding: 110px 0 60px; }
  .circle-stage { width: 320px; height: 320px; }
  .hero-circle { height: 340px; }
}
@media (max-width: 540px) {
  .container, .container-narrow { padding: 0 18px; }
  .nav-inner { padding: 12px 18px; }
  .circle-stage { width: 260px; height: 260px; }
  .hero-circle { height: 280px; }
  .circle-avatar { width: 44px; height: 44px; font-size: 12px; }
  .circle-ring-inner .circle-avatar-robin { width: 54px; height: 54px; margin-left: -27px; }
  .feature-card, .tier-card { padding: 26px 22px; }
  .ask-box { padding: 40px 22px; }
  .cta { padding: 16px 28px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
