/* ── VARIABLES ── */
:root {
  --green: #f7a90f;
  --green-light: #ffc13e;
  --black: #0a0a0a;
  --white: #FFFFFF;
  --off-white: #F5F4EF;
  --grey: #6e6e73;
  --light-grey: #d2d2d7;
  --border: #d2d2d7;
  --gold: #f7a90f;
  --gold-dark: #c9880a;
  --gold-light: #ffc13e;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── BASE ── */
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  overflow-x: hidden;
}

/* ── INTRO ANIMATION ── */
.intro {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.intro.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* crest */
.intro-shield {
  width: 100px;
  height: 116px;
  background: var(--black);
  clip-path: polygon(0% 0%, 100% 0%, 100% 72%, 50% 100%, 0% 72%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-bottom: 18px;
  animation: crestDrop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes crestDrop {
  from { transform: translateY(-30px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.intro-letters {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 26px;
  color: var(--green);
  letter-spacing: 0.05em;
  line-height: 1;
}

.intro-est-small {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  color: var(--white);
  letter-spacing: 0.2em;
  opacity: 0.6;
}

/* loading bar */
.intro-bar-wrap {
  animation: barFadeIn 0.4s 0.5s ease both;
}

@keyframes barFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* phase 1 — segmented cells */
.intro-segments {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--black);
  overflow: hidden;
}

.intro-seg {
  width: 26px;
  height: 48px;
  background: var(--white);
  border-right: 2px solid var(--black);
  flex-shrink: 0;
  transition: background 0.08s ease;
}

.intro-seg:last-child { border-right: none; }

.intro-seg.lit { background: var(--green); }

/* phase 2 — single text box */
.intro-textbox {
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  height: 48px;
  padding: 0 20px;
  min-width: 420px;
}

.intro-textbox.active { display: flex; }

#introTyped {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--green);
}

.intro-cursor {
  color: var(--green);
  font-size: 15px;
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

/* est */
.intro-est {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.22em;
  animation: barFadeIn 0.4s 0.7s ease both;
}

/* ── FOOTER ── */
.footer {
  background: var(--white);
  border-top: 2px solid var(--black);
  padding-top: 48px;
  padding-bottom: 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-crest-shield {
  width: 48px;
  height: 56px;
  background: var(--black);
  clip-path: polygon(0% 0%, 100% 0%, 100% 72%, 50% 100%, 0% 72%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  flex-shrink: 0;
}

.footer-crest-letters {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.05em;
}

.footer-name {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-est {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.12em;
}

.footer-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-tag-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--grey);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-tag-val {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  letter-spacing: 0.04em;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-tag { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

/* ── APPLICATION FORM ── */
.app-main-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--white);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 8px;
}

.app-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--light-grey);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 36px;
}

/* tabs */
.app-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
  gap: 0;
  overflow-x: auto;
}

.app-tab {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--grey);
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s;
}

.app-tab.active {
  color: var(--black);
  border-bottom-color: var(--green);
  font-weight: 600;
}

/* form box */
.app-box {
  border: 2px solid #333;
  border-top: none;
  padding: 40px 40px 32px;
  background: var(--black);
}

/* step panels */
.app-step { display: none; }
.app-step.active { display: block; }

.app-step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.app-step-hr {
  border: none;
  border-top: 1px dashed var(--border);
  margin-bottom: 28px;
}

/* fields */
.app-field {
  margin-bottom: 28px;
}

.app-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.app-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  background: #1a1a1a;
  border: 1.5px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.app-input:focus { border-color: var(--gold); }
.app-input::placeholder { color: #555; }

.app-textarea {
  resize: vertical;
  min-height: 100px;
}

.app-hint {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #666;
  line-height: 1.7;
  margin-top: 8px;
}

.app-hint strong { color: var(--white); }

/* choice buttons */
.app-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-btn-group-wrap { flex-wrap: wrap; }

.app-choice {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--white);
  background: #1a1a1a;
  border: 1.5px solid #333;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.15s;
}

.app-choice:hover { border-color: var(--gold); }
.app-choice.selected {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* submit */
.app-submit {
  width: 100%;
  background: var(--green);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.app-submit:hover { opacity: 0.85; }

/* back/next nav */
.app-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.app-nav-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  background: var(--white);
  color: var(--grey);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.app-nav-btn:hover { border-color: var(--black); color: var(--black); }
.app-nav-btn:disabled { opacity: 0.3; cursor: default; }

.app-nav-next {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  border-radius: 8px;
}
.app-nav-next:hover { background: #222; color: var(--white); border-color: #222; }

/* deadline bar reuse */
.apply-deadline {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #333;
  padding: 16px 24px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #666;
  letter-spacing: 0.06em;
}
.apply-deadline strong { color: var(--white); }
.apply-deadline-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 1.2s step-end infinite;
}

@media (max-width: 640px) {
  .app-box { padding: 24px 18px 24px; }
  .app-tabs { gap: 0; }
  .app-tab { font-size: 9px; padding: 10px 10px; }

  /* share buttons full width on mobile */
  .app-success-share-btns { flex-direction: column; }
  .share-btn { width: 100%; text-align: center; }
  .share-save-primary { width: 100%; }

  /* header — hide long name on tiny screens */
  .header-name { display: none; }

  /* story preview smaller on mobile */
  .story-preview-wrap { max-width: 160px; }

  /* success section padding */
  .app-success { padding: 32px 8px 24px; }
}

/* ── APPLY — BLACK SECTION ── */
.apply-section {
  background: var(--black);
  padding: 80px 0;
}

.apply-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.apply-title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 48px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.apply-col-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.apply-col-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.1em;
}

.apply-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  letter-spacing: 0.04em;
}

.apply-col-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 24px;
}

.apply-tag-box {
  border: 1px solid var(--border);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.apply-tag-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.apply-tag {
  display: block;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  letter-spacing: 0.06em;
}

.apply-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply-step {
  display: flex;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

.apply-step strong { color: var(--green); }

.apply-step-arrow {
  color: var(--green);
  flex-shrink: 0;
  padding-top: 1px;
}

/* OR divider */
.apply-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 48px;
}

.apply-divider-line {
  width: 1px;
  flex: 1;
  background: var(--border);
}

.apply-divider-or {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.15em;
}

/* deadline bar */
.apply-deadline {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--black);
  padding: 20px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.02em;
}

.apply-deadline strong { color: var(--black); }

.apply-deadline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 1.2s step-end infinite;
}

@media (max-width: 768px) {
  .apply-grid { grid-template-columns: 1fr; }
  .apply-divider { flex-direction: row; padding-top: 0; }
  .apply-divider-line { width: 100%; height: 1px; flex: 1; }
}

/* ── WHAT YOU GET — WHITE SECTION ── */
.get-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.get-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.get-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.get-item {
  display: flex;
  gap: 20px;
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.get-item:hover {
  background: var(--off-white);
}

.get-item-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.1em;
  padding-top: 2px;
  flex-shrink: 0;
}

.get-item-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.get-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

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

/* ── WHY SCC — BLACK SECTION ── */
.why-section {
  background: var(--black);
  padding: 80px 0;
}

.why-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.16em;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.why-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.why-green {
  color: var(--green) !important;
  font-weight: 700;
}

/* stats */
.why-stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
}

.why-stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
}

.why-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

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

/* ── NAME STAMP ── */
.stamp-section {
  background: var(--white);
  padding: 48px 0 72px;
}

.stamp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stamp-box {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(14px, 2.4vw, 22px);
  letter-spacing: 0.14em;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 14px 36px;
  text-align: center;
  text-transform: uppercase;
}

.stamp-est {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  background: var(--white);
  padding: 60px 0 80px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* hero crest */
.hero-crest-wrap {
  margin-bottom: 40px;
}

.hero-crest-shield {
  width: 110px;
  height: 128px;
  background: var(--black);
  clip-path: polygon(0% 0%, 100% 0%, 100% 72%, 50% 100%, 0% 72%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-bottom: 20px;
}

.hero-crest-letters {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 28px;
  color: var(--green);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero-crest-sub {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  color: var(--white);
  letter-spacing: 0.2em;
  opacity: 0.7;
}

/* terminal box */
.terminal-box {
  width: 100%;
  max-width: 680px;
  border: 3px solid var(--green);
  background: var(--black);
  overflow: hidden;
}

.terminal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #222;
}

.terminal-status {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.1em;
}

.terminal-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-green { background: var(--green); }
.dot-black { background: #444; }

.terminal-body {
  padding: 32px 28px 24px;
}

.terminal-line {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.08em;
  line-height: 2;
}

.terminal-spacer {
  height: 20px;
}

.terminal-quote {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.terminal-attr {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.terminal-cursor {
  display: inline-block;
  color: var(--green);
  font-size: 14px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* CTA bar */
.terminal-cta {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin: 24px 0;
}

.terminal-cta:hover {
  background: var(--green-light);
}

@media (max-width: 600px) {
  .terminal-body { padding: 24px 18px 20px; }
  .terminal-quote { font-size: 11px; }
  .terminal-line { font-size: 11px; }
}

/* ── HEADER ── */
.site-header {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #222;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* crest shield */
.crest {
  width: 48px;
  height: 56px;
  background: var(--black);
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crest-inner {
  color: var(--green);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 8px;
}

.header-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.header-faq {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
  text-decoration: none;
  border: 1.5px solid var(--black);
  padding: 7px 16px;
  transition: all 0.2s;
}

.header-faq:hover {
  background: var(--black);
  color: var(--green);
}

@media (max-width: 600px) {
  .header-name { font-size: 10px; letter-spacing: 0.04em; }
  .crest { width: 36px; height: 42px; }
}

/* ── SHARED ── */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── SECTION FLOW ── */
.sec {
  display: none;
  min-height: calc(100vh - 57px);
  padding: 72px 0 96px;
  background: var(--black);
}

.sec.sec-dark  { background: var(--black); }
.sec.sec-light { background: var(--black); }

.sec.sec-visible { display: block; }
.sec.sec-hidden  { display: none; }

/* section label */
.sec-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* CTA buttons inside sections */
.sec-cta-dark,
.sec-cta-light {
  display: inline-block;
  margin-top: 36px;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.sec-cta-dark:hover,
.sec-cta-light:hover { background: #222; }

/* nav dots */
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-grey);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.nav-dot.active { background: var(--green); }
.nav-dot:hover  { background: var(--grey); }

/* ── SUCCESS STATE ── */
.app-success {
  display: none;
  text-align: center;
  padding: 48px 24px 32px;
  animation: successFadeIn 0.5s ease both;
  background: var(--black);
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.app-success-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
}

.app-success-title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.app-success-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #999;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 36px;
}

.app-success-share {
  border-top: 1px dashed #333;
  padding-top: 28px;
  margin-top: 8px;
}

.app-success-share-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.story-preview-wrap {
  margin: 20px auto 24px;
  max-width: 220px;
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0px var(--gold);
}

.story-preview-img {
  width: 100%;
  display: block;
}

.app-success-share-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 11px 20px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}

.share-btn:hover {
  background: var(--black);
  color: var(--gold);
}

.share-save-primary {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-size: 14px;
  padding: 16px 20px;
  margin-bottom: 4px;
}
.share-save-primary:hover {
  background: var(--gold-dark);
  color: var(--black);
  border-color: var(--gold-dark);
}

.share-copy {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* optional label */
.app-optional {
  font-weight: 400;
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* success state */
.app-success {
  display: none;
  margin-top: 32px;
  border: 2px solid var(--black);
  padding: 32px 28px;
  text-align: center;
}
.app-success-title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.app-success-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* Real SCC logo */
.intro-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}
.header-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.hero-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

/* ── LEAD FORM ── */
.sec-form {
  background: var(--off-white);
  border-top: 2px solid var(--black);
}

.lead-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.lead-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.lead-box {
  border: 2px solid var(--black);
  background: var(--white);
  padding: 44px 44px 36px;
  max-width: 760px;
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-field {
  margin-bottom: 24px;
}

.lead-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lead-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--black);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 0;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.lead-input:focus {
  border-color: var(--black);
  background: var(--white);
}

.lead-input::placeholder { color: #bbb; }

.lead-textarea {
  resize: vertical;
  min-height: 110px;
}

.lead-hint {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  margin-top: -16px;
  margin-bottom: 24px;
}

/* Opt-ins */
.lead-optins {
  border: 1.5px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-optin-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.lead-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.lead-optin-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--black);
  line-height: 1.5;
  user-select: none;
}

/* Submit */
.lead-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 16px;
}
.lead-submit:hover { opacity: 0.85; }
.lead-submit:disabled { opacity: 0.5; cursor: default; }

.lead-legal {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--grey);
  line-height: 1.6;
  text-align: center;
}

/* Success */
.lead-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.lead-success-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.lead-success-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.lead-success-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .lead-box { padding: 24px 18px 20px; }
  .lead-row { grid-template-columns: 1fr; gap: 0; }
}


