:root {
  --black: #ffffff;
  --charcoal: #f4f4f6;
  --panel: #fafafa;
  --red: #a4192f;
  --red-bright: #c8102e;
  --silver: #3f3f42;
  --silver-dim: #5a5a5e;
  --white: #141414;
  --border: #e0e0e2;
  --on-accent: #ffffff;
  --serif: 'Georgia', 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  line-height: 1.65;
}
a { color: var(--red-bright); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 132px; width: auto; }
.brand-name {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1rem;
  color: var(--white);
}
.brand-name .red { color: var(--red-bright); }
nav.main-nav ul { display: flex; gap: 26px; align-items: center; }
nav.main-nav a {
  color: var(--silver);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--white); border-bottom-color: var(--red-bright); }
.nav-cta {
  background: var(--red-bright);
  color: var(--on-accent) !important;
  padding: 10px 20px;
  border-radius: 3px;
  border-bottom: none !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--red); color: var(--on-accent) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 900px) {
  nav.main-nav ul { display: none; flex-direction: column; align-items: flex-start; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: var(--charcoal); padding: 16px 24px; border-bottom: 1px solid var(--border); }
  nav.main-nav ul.open { display: flex; }
  nav.main-nav a { width: 100%; padding: 10px 0; }
  .nav-toggle { display: block; }
  .brand img { height: 84px; }
}

/* Page hero (interior pages) */
.page-hero {
  padding: 70px 24px 60px;
  text-align: center;
  background: radial-gradient(ellipse at center top, #fbe9ea 0%, var(--black) 65%);
  border-bottom: 1px solid var(--border);
}
.page-hero .kicker { margin-bottom: 12px; }
.page-hero h1 { font-size: 2.3rem; letter-spacing: 0.5px; margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--silver-dim); font-size: 1.05rem; }

/* Hero (home) */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 24px 110px;
  background: radial-gradient(ellipse at center top, #fbe9ea 0%, var(--black) 65%);
  border-bottom: 1px solid var(--border);
}
.hero .kicker { margin-bottom: 16px; }
.hero h1 { font-size: 2.8rem; letter-spacing: 0.5px; margin-bottom: 20px; }
.hero h1 span { color: var(--red-bright); }
.hero p.lead { max-width: 660px; margin: 0 auto 36px; font-size: 1.18rem; color: var(--silver); }

/* Split hero (photo + text) */
.hero-split {
  padding: 90px 24px 100px;
  background: radial-gradient(ellipse at center top, #fbe9ea 0%, var(--black) 65%);
  border-bottom: 1px solid var(--border);
}
.hero-split .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero-split .hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.hero-split .hero-text h1 { font-size: 2.5rem; letter-spacing: 0.5px; margin-bottom: 18px; text-align: left; }
.hero-split .hero-text h1 span { color: var(--red-bright); }
.hero-split .hero-text .kicker { text-align: left; margin-bottom: 14px; }
.hero-split .hero-text p.lead { text-align: left; margin: 0 0 30px; font-size: 1.1rem; color: var(--silver); max-width: 560px; }
@media (max-width: 900px) {
  .hero-split .section-inner { grid-template-columns: 1fr; }
  .hero-split .hero-photo { max-width: 340px; margin: 0 auto; }
  .hero-split .hero-text { text-align: center; }
  .hero-split .hero-text h1, .hero-split .hero-text .kicker, .hero-split .hero-text p.lead { text-align: center; margin-left: auto; margin-right: auto; }
}

.btn {
  display: inline-block;
  background: var(--red-bright);
  color: var(--on-accent);
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--red); transform: translateY(-1px); }
.btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  margin-left: 14px;
}
.btn.secondary:hover { border-color: var(--red-bright); color: var(--red-bright); }
@media (max-width: 600px) { .btn.secondary { margin-left: 0; margin-top: 12px; } }

/* Sections */
section { padding: 84px 24px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-inner.narrow { max-width: 780px; }
h2 { font-size: 1.9rem; text-align: center; margin-bottom: 14px; letter-spacing: 0.3px; }
h2 .red { color: var(--red-bright); }
h2.left { text-align: left; }
.kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.76rem;
  color: var(--red-bright);
  font-family: var(--sans);
  font-weight: 600;
}
.section-lead { text-align: center; max-width: 680px; margin: 0 auto 48px; color: var(--silver-dim); font-size: 1.02rem; }
.alt-bg { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Stats */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box { background: var(--panel); border: 1px solid var(--border); border-radius: 6px; padding: 28px 20px; text-align: center; }
.stat-box .num { font-size: 2rem; color: var(--red-bright); font-weight: 700; font-family: var(--sans); }
.stat-box .label { font-size: 0.8rem; color: var(--silver-dim); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 8px; font-family: var(--sans); }
@media (max-width: 800px) { .stat-grid { grid-template-columns: 1fr 1fr; } }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards.two { grid-template-columns: 1fr 1fr; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 30px 26px; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: var(--red-bright); transform: translateY(-3px); }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.card h3 .num-badge { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 1px solid var(--red-bright); border-radius: 50%; color: var(--red-bright); font-size: 0.85rem; margin-right: 10px; font-family: var(--sans); vertical-align: middle; }
.card p { color: var(--silver-dim); font-size: 0.94rem; }
@media (max-width: 860px) { .cards, .cards.two { grid-template-columns: 1fr; } }

/* Market / portfolio cards */
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.market-card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.market-card .market-name { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.market-card .market-sub { color: var(--silver-dim); font-size: 0.85rem; font-family: var(--sans); margin-bottom: 16px; }
.market-card .market-stats { display: flex; gap: 24px; }
.market-card .market-stats div { font-family: var(--sans); }
.market-card .market-stats .n { color: var(--red-bright); font-weight: 700; font-size: 1.3rem; }
.market-card .market-stats .l { color: var(--silver-dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 700px) { .market-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; padding: 10px; }
.step .step-num { counter-increment: step; width: 46px; height: 46px; border: 2px solid var(--red-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 700; color: var(--red-bright); font-family: var(--sans); }
.step .step-num::before { content: counter(step); }
.step h4 { margin-bottom: 8px; font-size: 1rem; }
.step p { color: var(--silver-dim); font-size: 0.88rem; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr 1fr; } }

/* Timeline (investor process detail) */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding-bottom: 40px; position: relative; }
.timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 22px; top: 46px; bottom: -6px; width: 1px; background: var(--border); }
.timeline-item .t-num { width: 46px; height: 46px; border: 2px solid var(--red-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--red-bright); font-family: var(--sans); background: var(--black); z-index: 1; }
.timeline-item h4 { margin-bottom: 8px; font-size: 1.1rem; }
.timeline-item p { color: var(--silver-dim); font-size: 0.95rem; }

/* CTA band */
.cta-band { text-align: center; background: linear-gradient(180deg, #fbe9ea 0%, var(--black) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band h2 { margin-bottom: 18px; }

/* Values / About */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

.team-card { display: flex; gap: 28px; align-items: flex-start; background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 34px; max-width: 700px; margin: 0 auto; }
.team-card .avatar { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, var(--red-bright), var(--red)); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 700; font-size: 1.6rem; flex-shrink: 0; }
.team-card .avatar-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red-bright); flex-shrink: 0; }
@media (max-width: 600px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .team-card .avatar-photo { width: 140px; height: 140px; }
}
.team-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--red-bright); font-family: var(--sans); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.team-card p.bio { color: var(--silver-dim); font-size: 0.92rem; }

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; color: var(--white); font-family: var(--serif); font-size: 1.05rem; padding: 22px 30px 22px 0; cursor: pointer; position: relative; }
.faq-question::after { content: '+'; position: absolute; right: 4px; top: 20px; color: var(--red-bright); font-size: 1.4rem; font-family: var(--sans); transition: transform 0.2s; }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: var(--silver-dim); font-size: 0.95rem; }
.faq-answer-inner { padding: 0 30px 22px 0; }
.faq-item.open .faq-answer { max-height: 400px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info div.item { margin-bottom: 26px; }
.contact-info .label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.4px; color: var(--red-bright); margin-bottom: 6px; font-family: var(--sans); }
.contact-info .value { font-size: 1.1rem; }
.contact-info .value a { color: var(--white); }
.contact-info .value a:hover { color: var(--red-bright); }
.note-box { background: var(--panel); border: 1px solid var(--border); border-radius: 6px; padding: 18px 20px; font-size: 0.85rem; color: var(--silver-dim); font-family: var(--sans); margin-top: 20px; }

form { display: flex; flex-direction: column; gap: 16px; }
form input, form textarea, form select {
  background: var(--panel); border: 1px solid var(--border); border-radius: 4px; padding: 14px;
  color: var(--white); font-family: var(--sans); font-size: 0.92rem;
}
form label { font-family: var(--sans); font-size: 0.8rem; color: var(--silver-dim); margin-bottom: -8px; }
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--red-bright); }
form textarea { min-height: 110px; resize: vertical; }
form button { cursor: pointer; }

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

/* Disclaimer */
.disclaimer { background: var(--charcoal); border-top: 1px solid var(--border); padding: 40px 24px; }
.disclaimer .section-inner { max-width: 900px; }
.disclaimer h5 { font-size: 0.8rem; color: var(--silver); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-family: var(--sans); }
.disclaimer p { font-size: 0.76rem; color: var(--silver-dim); font-family: var(--sans); line-height: 1.75; }

footer { text-align: center; padding: 34px 24px; color: var(--silver-dim); font-size: 0.82rem; border-top: 1px solid var(--border); font-family: var(--sans); }
footer .brand-name { justify-content: center; margin-bottom: 10px; display: flex; }
footer a { color: var(--silver-dim); }
footer a:hover { color: var(--red-bright); }
footer .foot-links { display: flex; gap: 18px; justify-content: center; margin-top: 10px; }
