/* ===== CEO-CAMP — shared styles ===== */
:root {
  --bg:      #07080d;
  --bg-2:    #0a0c15;
  --text:    #eef0f6;
  --body:    #c9cdda;
  --muted:   #8b91a6;
  --line:    rgba(255,255,255,0.09);
  --line-2:  rgba(255,255,255,0.14);
  --card:    rgba(255,255,255,0.035);
  --card-2:  rgba(255,255,255,0.06);
  --accent:  #34e0a1;
  --accent-2:#39c9ff;
  --violet:  #8b7bff;
  --grad:    linear-gradient(115deg, #34e0a1 0%, #39c9ff 55%, #8b7bff 110%);
  --grad-soft: linear-gradient(115deg, rgba(52,224,161,.16), rgba(57,201,255,.16));
  --radius:  18px;
  --maxw:    1180px;
  --ease:    cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(52,224,161,.28); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- animated aurora background ---- */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
    radial-gradient(1200px 800px at 80% -10%, rgba(57,201,255,.10), transparent 60%),
    radial-gradient(1000px 700px at 0% 100%, rgba(139,123,255,.10), transparent 55%),
    var(--bg); }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.orb.a { width: 46vw; height: 46vw; left: -8vw; top: -10vw; background: radial-gradient(circle at 30% 30%, #34e0a1, transparent 70%); animation: drift1 22s var(--ease) infinite alternate; }
.orb.b { width: 40vw; height: 40vw; right: -6vw; top: 4vw; background: radial-gradient(circle at 60% 40%, #39c9ff, transparent 70%); animation: drift2 26s var(--ease) infinite alternate; }
.orb.c { width: 42vw; height: 42vw; left: 30vw; bottom: -18vw; background: radial-gradient(circle at 50% 50%, #8b7bff, transparent 70%); opacity: .38; animation: drift3 30s var(--ease) infinite alternate; }
.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); }
@keyframes drift1 { to { transform: translate(8vw, 6vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-7vw, 8vw) scale(1.1); } }
@keyframes drift3 { to { transform: translate(4vw, -8vw) scale(1.2); } }

/* ---- layout ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: clamp(72px, 11vw, 140px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .6; }
h1, h2, h3 { font-family: "Sora", "Inter", sans-serif; color: var(--text); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.22rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--body); max-width: 46ch; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: "Sora", sans-serif;
  font-weight: 600; font-size: .98rem; padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #04160e; box-shadow: 0 10px 30px -8px rgba(52,224,161,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(57,201,255,.6); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }

/* ---- nav ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,8,13,.72); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: "Sora", sans-serif; font-weight: 800; letter-spacing: .06em; font-size: 1.05rem; color: #fff; }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.link { color: var(--muted); font-size: .93rem; font-weight: 500; transition: color .2s; }
.nav-links a.link:hover { color: var(--text); }
.nav-cta { padding: 10px 20px; font-size: .9rem; }
.menu-btn { display: none; background: none; border: 0; color: #fff; cursor: pointer; }

/* ---- hero ---- */
.hero { padding-top: clamp(120px, 16vw, 180px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust { margin-top: 26px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; }
.trust b { color: var(--text); font-weight: 600; }

/* form card */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8); backdrop-filter: blur(8px); }
.form-card .fc-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.form-card .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.form-card .fc-head span { font-family: "Sora", sans-serif; font-size: .9rem; color: var(--text); font-weight: 600; }
.form-card iframe { width: 100%; height: 560px; border: 0; display: block; background: #0b0d16; }

/* ---- program / timeline ---- */
.phases { display: grid; gap: 22px; }
.phase { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: border-color .3s, transform .3s, background .3s; }
.phase:hover { border-color: var(--line-2); background: var(--card-2); transform: translateY(-3px); }
.phase .num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.5rem; width: 64px; height: 64px;
  display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--line-2); color: var(--accent); }
.phase h3 { margin-bottom: 8px; }
.phase p { color: var(--muted); }
.phase .kicker { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); font-weight: 600; margin-bottom: 10px; display: block; }
.callout { margin-top: 34px; padding: 28px 30px; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--grad-soft); font-size: 1.08rem; color: var(--text); }
.callout b { color: #fff; }

/* ---- founders / stats ---- */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.stat .big { font-family: "Sora", sans-serif; font-weight: 800; font-size: clamp(2rem,4vw,2.8rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); margin-top: 10px; font-size: .95rem; }
.prose p { color: var(--body); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }

/* ---- services (fulfillment) ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: border-color .3s, transform .3s, background .3s; }
.card:hover { border-color: var(--line-2); transform: translateY(-4px); background: var(--card-2); }
.card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--grad-soft); border: 1px solid var(--line-2); color: var(--accent); }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }

/* feature list */
.feats { list-style: none; display: grid; gap: 16px; }
.feats li { display: flex; gap: 14px; align-items: flex-start; color: var(--body); }
.feats .chk { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--accent); margin-top: 2px; }
.feats .chk svg { width: 13px; height: 13px; }
.feats b { color: var(--text); font-weight: 600; }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-inner { background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: clamp(44px,7vw,80px) 32px;
  position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: .6; z-index: 0; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { color: var(--muted); max-width: 52ch; margin: 0 auto 32px; font-size: 1.1rem; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--line); padding: 54px 0 46px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 34px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.disclaimer { color: #5b6072; font-size: .78rem; line-height: 1.7; max-width: 90ch; }
.copyright { color: var(--muted); font-size: .85rem; margin-bottom: 18px; }

/* ---- scroll reveal (only hidden when JS is active) ---- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero-grid, .founders-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .founders-grid .stats { order: 2; }
  .nav-links .link { display: none; }
}
@media (max-width: 560px) {
  .phase { grid-template-columns: 1fr; gap: 14px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .form-card iframe { height: 480px; }
}

/* ===== Application entry card (hero) ===== */
.apply-card { display: block; width: 100%; text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8); backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; font: inherit; color: inherit; }
.apply-card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 40px 80px -30px rgba(52,224,161,.28); }
.apply-card-head { padding: 16px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px;
  font-family: "Sora", sans-serif; font-size: .95rem; color: var(--text); font-weight: 600; }
.apply-card-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.apply-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.apply-card-body { padding: 28px 26px 26px; }
.apply-lede { color: var(--body); font-size: 1.05rem; line-height: 1.55; margin-bottom: 22px; }
.apply-list { list-style: none; display: grid; gap: 12px; margin: 0 0 26px; }
.apply-list li { position: relative; padding-left: 28px; color: var(--muted); font-size: .98rem; }
.apply-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad-soft); border: 1px solid var(--accent); }
.apply-cta { width: 100%; justify-content: center; }
.apply-meta { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 14px; letter-spacing: .01em; }

/* ===== Full-screen application flow ===== */
body.flow-open { overflow: hidden; }
.flow { position: fixed; inset: 0; z-index: 100; display: none; flex-direction: column;
  background: radial-gradient(1100px 760px at 72% -12%, rgba(52,224,161,.10), transparent 60%),
              radial-gradient(900px 600px at 0% 108%, rgba(139,123,255,.10), transparent 55%), var(--bg); }
.flow.open { display: flex; }
.flow-top { display: flex; align-items: center; gap: 18px; padding: 18px 24px; }
.flow-logo { font-family: "Sora", sans-serif; font-weight: 800; letter-spacing: .05em; color: #fff; font-size: .95rem; white-space: nowrap; }
.flow-progress { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.flow-progress span { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 999px; transition: width .45s var(--ease); }
.flow-close { background: none; border: 0; color: var(--muted); cursor: pointer; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.1rem; transition: .2s; }
.flow-close:hover { color: #fff; background: rgba(255,255,255,.06); }
.flow-stage { flex: 1; display: flex; align-items: center; justify-content: center; padding: 24px 24px 90px; overflow-y: auto; }
.step { width: 100%; max-width: 640px; margin: 0 auto; }
.step.center { text-align: center; }
.step.enter { animation: stepIn .45s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.step .qnum { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.step .q { font-size: clamp(1.55rem, 4vw, 2.4rem); color: var(--text); margin-bottom: 10px; line-height: 1.15; letter-spacing: -.02em; }
.step .qhelp { color: var(--muted); margin-bottom: 26px; font-size: 1.05rem; }
.center .qnum { justify-content: center; }
.qinput input, .qinput textarea { width: 100%; background: transparent; border: 0; border-bottom: 2px solid var(--line-2);
  padding: 12px 2px; color: #fff; font-family: "Sora", sans-serif; font-size: clamp(1.3rem, 3vw, 1.8rem); transition: border-color .2s; }
.qinput textarea { font-family: "Inter", sans-serif; font-size: clamp(1.1rem, 2.4vw, 1.35rem); resize: none; min-height: 3.4em; line-height: 1.5; }
.qinput input:focus, .qinput textarea:focus { outline: none; border-bottom-color: var(--accent); }
.qinput input::placeholder, .qinput textarea::placeholder { color: #454b5c; }
.choices-flow { display: grid; gap: 12px; }
.choice-opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; background: var(--card);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 16px 18px; color: var(--text); cursor: pointer;
  font-size: 1.08rem; font-family: inherit; transition: .18s var(--ease); }
.choice-opt:hover { border-color: var(--accent); background: var(--card-2); transform: translateX(3px); }
.choice-opt.sel { border-color: var(--accent); background: var(--grad-soft); }
.choice-opt .key { flex: none; width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--line-2);
  display: grid; place-items: center; font-size: .82rem; font-weight: 700; color: var(--muted); }
.choice-opt:hover .key, .choice-opt.sel .key { background: var(--accent); color: #04160e; border-color: var(--accent); }
.step-actions { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.center .step-actions { justify-content: center; }
.step-hint { color: var(--muted); font-size: .85rem; }
.step-hint b { color: var(--body); }
.err-msg { color: #ff9a9a; font-size: .9rem; margin-top: 14px; min-height: 1px; }
.flow-nav { position: fixed; right: 24px; bottom: 24px; display: flex; gap: 8px; z-index: 2; }
.flow-nav button { width: 46px; height: 40px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--card);
  color: var(--text); cursor: pointer; display: grid; place-items: center; transition: .2s; }
.flow-nav button:hover:not(:disabled) { background: var(--card-2); border-color: var(--line-2); }
.flow-nav button:disabled { opacity: .3; cursor: default; }
.flow-nav svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .flow-stage { padding: 16px 20px 96px; align-items: flex-start; padding-top: 8vh; }
  .flow-nav { bottom: 18px; right: 18px; }
}

/* ===== Bonus: Ecom Operating System ===== */
.os-panel { border: 1px solid var(--line); border-radius: 26px; padding: clamp(30px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); position: relative; overflow: hidden; }
.os-panel::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: .35; z-index: 0; }
.os-panel > * { position: relative; z-index: 1; }
.os-tag { display: inline-block; font-family: "Sora", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #04160e; background: var(--grad); padding: 6px 13px; border-radius: 999px; margin-bottom: 22px; }
.os-head { max-width: 720px; margin-bottom: 40px; }
.os-head h2 { margin-bottom: 16px; }
.os-head p { color: var(--muted); font-size: 1.08rem; }
.os-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.os-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: border-color .3s, transform .3s, background .3s; }
.os-item:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--card-2); }
.os-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); color: var(--accent); }
.os-ic svg { width: 22px; height: 22px; }
.os-item h3 { margin-bottom: 8px; }
.os-item p { color: var(--muted); font-size: .96rem; }
@media (max-width: 760px) { .os-grid { grid-template-columns: 1fr; } }
