/* Elysian Protocol — company hub */
:root {
  --navy: #0b1426;
  --navy-deep: #060d1a;
  --navy-mid: #132038;
  --navy-card: #152a45;
  --navy-lift: #1a3354;
  --orange: #f97316;
  --orange-hot: #fb923c;
  --orange-muted: rgba(249, 115, 22, 0.14);
  --cream: #f7f4ee;
  --cream-dim: #e8e2d6;
  --text: #1a2332;
  --muted: #5a6577;
  --muted-on-dark: #9aa8c7;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(11, 20, 38, 0.1);
  --success: #1a7a4c;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(11, 20, 38, 0.08);
  --shadow-lg: 0 16px 48px rgba(11, 20, 38, 0.18);
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --max: 1080px;
  --sticky-h: 64px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

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

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Nav ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 20, 38, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo span { color: var(--orange); }

.logo-sub {
  display: block;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-top: 0.2rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-cta:active { transform: scale(0.98); }

/* ——— Hero (photo + dark overlay) ——— */
.hero {
  position: relative;
  color: var(--cream);
  padding: 2.75rem 0 3.25rem;
  overflow: hidden;
  isolation: isolate;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 13, 26, 0.94) 0%, rgba(6, 13, 26, 0.78) 42%, rgba(11, 20, 38, 0.55) 70%, rgba(11, 20, 38, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 13, 26, 0.35) 0%, transparent 35%, rgba(6, 13, 26, 0.55) 100%),
    radial-gradient(ellipse 70% 55% at 75% 20%, rgba(249, 115, 22, 0.18), transparent 60%);
}

.hero-copy { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-hot);
  background: var(--orange-muted);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(247, 244, 238, 0.82);
  max-width: 38ch;
  margin-bottom: 1.35rem;
}

.hero-sub strong { color: var(--cream); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:active { transform: scale(0.985); }

.btn-primary {
  background: var(--orange);
  color: #111;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover { background: var(--orange-hot); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11, 20, 38, 0.2);
}

.btn-full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(247, 244, 238, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.chip strong { color: var(--cream); font-weight: 650; }

/* ——— Section chrome ——— */
.section {
  padding: 2.75rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--cream);
}

.section-cream { background: var(--cream); }

.section-alt { background: var(--cream-dim); }

.section-trades {
  background: var(--navy-deep);
  color: var(--cream);
  padding-top: 2.5rem;
}

.section-trades .section-lead { color: var(--muted-on-dark); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

.section-dark .section-lead { color: var(--muted-on-dark); }

/* ——— Trade photo cards ——— */
.trade-grid {
  display: grid;
  gap: 1rem;
}

.trade-card {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.trade-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-mid);
}

.trade-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.trade-card:hover .trade-photo img {
  transform: scale(1.03);
}

.trade-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.trade-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.trade-body p {
  font-size: 0.92rem;
  color: var(--muted-on-dark);
  line-height: 1.55;
}

/* ——— Doors ——— */
.doors {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.door {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.door-top {
  padding: 1.35rem 1.25rem 1.1rem;
  border-bottom: 1px solid var(--line-dark);
}

.door-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 750;
  margin-bottom: 0.7rem;
}

.door h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.door-pitch {
  color: var(--muted);
  font-size: 0.98rem;
}

.door-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.door-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.door-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.door-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.proof-link {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line-dark);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.proof-link:hover { border-color: var(--orange); color: var(--orange); }

.door-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  padding: 0.85rem 0.95rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
}

.door-price .amt {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--orange-hot);
  line-height: 1;
}

.door-price .amt-note {
  font-size: 0.85rem;
  color: var(--muted-on-dark);
}

.door-price .talk {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange-hot);
}

.door-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.door-ctas .btn { font-size: 0.95rem; padding: 0.85rem 1.1rem; }

.door-micro {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.door.featured {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.12), var(--shadow);
}

.door.featured .door-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lift) 100%);
  border-bottom: none;
  color: var(--cream);
}

.door.featured .door-num {
  background: var(--orange);
  color: #111;
}

.door.featured h3 { color: var(--cream); }
.door.featured .door-pitch { color: var(--muted-on-dark); }

.door-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  background: var(--orange);
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.55rem;
}

/* ——— Proof / who we help ——— */
.who-grid {
  display: grid;
  gap: 0.75rem;
}

.who-card {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}

.who-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--cream);
}

.who-card p {
  font-size: 0.9rem;
  color: var(--muted-on-dark);
}

/* ——— Trust strip ——— */
.trust-strip {
  display: grid;
  gap: 0.75rem;
}

.trust-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.trust-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--orange-muted);
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.trust-item .icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— FAQ ——— */
.faq-list { display: flex; flex-direction: column; gap: 0.55rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "–"; }

.faq-body {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ——— Contact ——— */
.contact-box {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  text-align: center;
}

.contact-box h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.45rem;
}

.contact-box p {
  color: var(--muted-on-dark);
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-hot);
  margin-bottom: 1.15rem;
  word-break: break-all;
}

/* ——— Footer ——— */
.footer {
  background: var(--navy-deep);
  color: var(--muted-on-dark);
  padding: 2rem 0 1.5rem;
  font-size: 0.85rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.footer-brand span { color: var(--orange); }

.footer a { color: var(--orange-hot); }
.footer-meta { margin-top: 1.25rem; font-size: 0.78rem; opacity: 0.75; }

/* ——— Sticky mobile CTA ——— */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(11, 20, 38, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(249, 115, 22, 0.3);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
}

.sticky-cta .btn {
  flex: 1;
  max-width: 420px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.sticky-cta.hidden { display: none; }

/* ——— Desktop ——— */
@media (min-width: 720px) {
  .container { width: min(100% - 2.5rem, var(--max)); }

  .hero {
    padding: 4rem 0 4.5rem;
    min-height: min(78vh, 720px);
  }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-actions .btn { min-width: 11rem; }

  .trade-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .doors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
  }

  .door { min-height: 100%; }

  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .section { padding: 3.5rem 0; }

  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (min-width: 960px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-card {
    background: rgba(6, 13, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  }

  .hero-card h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
  }

  .hero-card ol {
    list-style: none;
    counter-reset: doors;
  }

  .hero-card li {
    counter-increment: doors;
    display: flex;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: var(--muted-on-dark);
  }

  .hero-card li:last-child { border-bottom: none; }

  .hero-card li::before {
    content: counter(doors);
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 8px;
    background: var(--orange);
    color: #111;
    font-weight: 750;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-card li strong {
    display: block;
    color: var(--cream);
    font-weight: 650;
  }
}

/* Hide desktop-only hero card on mobile */
.hero-card { display: none; }
@media (min-width: 960px) {
  .hero-card { display: block; }
}

/* ——— Leadership / about Mark ——— */
.about-grid { margin-top: 1.5rem; }
.about-card {
  display: grid;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}
.about-mark-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy), var(--navy-lift));
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.about-role {
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
}
.about-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.about-copy a { color: var(--orange); font-weight: 600; }
.about-note {
  font-size: 0.88rem !important;
  opacity: 0.9;
  border-top: 1px solid var(--line-dark);
  padding-top: 0.85rem;
  margin-bottom: 0 !important;
}
@media (min-width: 720px) {
  .about-card {
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 1.75rem 1.75rem;
    gap: 1.5rem;
  }
}
