@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");
:root{
  --bg:#ffffff;
  --bg2:#f5f5f3;
  --card:#ffffff;
  --text:#111111;
  --muted:rgba(17,17,17,.72);
  --muted2:rgba(17,17,17,.56);
  --accent:#ff8a00;
  --accent2:#ffb347;
  --border:rgba(17,17,17,.12);
  --shadow:0 16px 40px rgba(0,0,0,.10);
  --shadow-sm: 0 10px 26px rgba(0,0,0,.06);
  --shadow-md: 0 16px 44px rgba(0,0,0,.09);
  --shadow-lg: 0 28px 90px rgba(0,0,0,.14);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  overflow-x:hidden;
  /* Header is fixed; reserve space so content doesn't slide underneath */
  padding-top: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(255,138,0,.22), transparent 60%),
    radial-gradient(800px 500px at 85% 0%, rgba(255,179,71,.18), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  font-size:13px;
  line-height:1.55;
}

html{overflow-x:hidden}

/* Subtle animated glow layer (keeps the page from feeling static) */
body:before{
  content:"";
  position:fixed;
  inset:-20%;
  z-index:-2;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(255,138,0,.18), transparent 60%),
    radial-gradient(820px 520px at 80% 20%, rgba(255,179,71,.14), transparent 60%),
    radial-gradient(760px 520px at 50% 90%, rgba(0,0,0,.06), transparent 60%);
  transform: translate3d(0,0,0);
  animation: glowShift 16s ease-in-out infinite;
  opacity:.9;
}

/* Fine grain for a more "institutional" finish (very subtle) */
body:after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity:.06;
  mix-blend-mode:multiply;
}

@keyframes glowShift{
  0%{transform: translate3d(-2%, -1%, 0) scale(1)}
  50%{transform: translate3d(2%, 1%, 0) scale(1.02)}
  100%{transform: translate3d(-2%, -1%, 0) scale(1)}
}

@media (prefers-reduced-motion: reduce){
  body:before{animation:none}
}
a{color:inherit; text-decoration:none}
a:focus-visible{outline: 3px solid rgba(255,138,0,.35); outline-offset:3px; border-radius:12px}
img{max-width:100%; display:block}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}

/* Header */
header{
  /* Keep the navigation visible while scrolling */
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

header.scrolled{
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

/* Scroll-to-top button */
.scroll-top{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1100;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.16);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  opacity:0;
  transform: translateY(8px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.scroll-top:hover{background: rgba(255,255,255,.92)}
.scroll-top.show{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.scroll-top i{font-size:16px}

@media (max-width: 520px){
  .scroll-top{right:14px; bottom:14px}
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  flex-wrap:nowrap;
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand img{height:44px; width:auto}
.brand-name{display:flex; flex-direction:column; line-height:1.05}
.brand-name strong{font-size:14px; letter-spacing:.14em; text-transform:uppercase}
.brand-name em{font-style:normal; font-size:12px; color:var(--muted2)}

.nav-links{display:flex; align-items:center; gap:4px; flex-wrap:nowrap; min-width:0; flex:1; justify-content:flex-end}
.nav-links a{
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:10px 10px;
  border-radius:999px;
  color:var(--muted);
  white-space:nowrap;
  word-break:keep-all;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}
.nav-links a:hover{background:rgba(17,17,17,.06); color:var(--text)}

.nav-links a.active{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 122, 26, .18);
}

.mobile-menu a.active{
  background: var(--accent);
  color:#fff;
  border-radius: 10px;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-cta{display:flex; gap:10px; align-items:center; flex-shrink:0}

/* Thin progress bar under header */
.scroll-progress{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity:.9;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background: transparent;
  color:var(--text);
  font-weight:600;
  font-size:13px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(17,17,17,.06)}
.btn:focus-visible{outline: 3px solid rgba(255,138,0,.35); outline-offset:2px}
button.btn{cursor:pointer}
.btn.primary{background: var(--text); color:#fff; border-color: var(--text); box-shadow: 0 10px 24px rgba(0,0,0,.16)}
.btn.primary:hover{background:#000; box-shadow: 0 16px 40px rgba(0,0,0,.22)}
.btn.accent{background: linear-gradient(135deg, var(--accent), var(--accent2)); border-color: rgba(0,0,0,.08)}
.btn.accent:hover{filter:saturate(1.05)}
.btn.ghost{background: transparent}

/* Premium CTA shimmer (subtle) */
.btn.download-btn{position:relative; overflow:hidden}
.btn.download-btn:after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:40%;
  height:180%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  opacity:0;
}
.btn.download-btn:hover:after{
  opacity:1;
  animation: shine 1.05s ease;
}
@keyframes shine{
  from{left:-60%}
  to{left:140%}
}

.icon{width:16px; height:16px; display:inline-block}

/* Outline variant used on secondary pages */
.btn.btn-outline{
  background: rgba(255,255,255,.55);
  border-color: rgba(17,17,17,.24);
}

.burger{
  display:none;
  border:1px solid var(--border);
  background: transparent;
  padding:10px 12px;
  border-radius:999px;
  color:var(--text);
  /* Ensure the hamburger renders as 3 stacked lines */
  flex-direction:column;
  gap:4px;
}
.burger span{
  display:block;
  width:20px;
  height:2px;
  background:var(--text);
  margin:0;
  border-radius:999px;
}

.mobile-menu{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid var(--border);
}
.mobile-menu a{
  display:block;
  /* Extra left inset so items don't sit flush to the container edge */
  padding:12px 6px 12px 18px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
}
.mobile-menu a:hover{color:var(--text)}

/* Typography */
h1,h2,h3{font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif}
h1{margin:10px 0 12px; font-size:44px; line-height:1.05; letter-spacing:-.6px}
h2{margin:0 0 10px; font-size:28px; letter-spacing:-.2px}
h3{margin:0 0 8px; font-size:18px}

/* Titles in brand accent (keep card headings in neutral text) */
main h1,
main h2,
main h3{color:var(--accent)}
.card h3{color:var(--text)}
.lead{font-size:13px; color:var(--muted); margin:0 0 18px}
.section-lead{color:var(--muted); margin:0 0 18px; max-width:820px}

.subhead{font-size:13px; color:var(--muted); margin:0 0 18px; max-width:820px}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}
.kicker:before{content:""; width:8px; height:8px; border-radius:999px; background: var(--accent)}


/* Title icons (section headings) */
.with-icon{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.title-icon{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(17,17,17,.12);
  background: rgba(255,255,255,.66);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  flex: 0 0 auto;
}
h1.with-icon .title-icon{
  width:40px;
  height:40px;
  border-radius:16px;
}
.title-icon i{font-size:16px; color:var(--text)}
.title-icon.small{
  width:28px;
  height:28px;
  border-radius:12px;
}
.with-icon-inline{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
/* Hero */
.hero{padding:56px 0 12px; position:relative; overflow:hidden}
.hero:before{
  content:"";
  position:absolute;
  inset:-40% -20% auto -20%;
  height:520px;
  background:
    radial-gradient(420px 280px at 20% 30%, rgba(255,138,0,.24), transparent 60%),
    radial-gradient(420px 280px at 80% 20%, rgba(255,179,71,.18), transparent 60%),
    radial-gradient(520px 340px at 50% 80%, rgba(0,0,0,.06), transparent 65%);
  filter: blur(0px);
  transform: translate3d(0,0,0);
  pointer-events:none;
  opacity:.9;
  animation: heroGlow 10s ease-in-out infinite;
}
@keyframes heroGlow{
  0%,100%{transform: translate3d(0,0,0) scale(1)}
  50%{transform: translate3d(0,-18px,0) scale(1.02)}
}
.hero-wrap{display:grid; grid-template-columns: 1.2fr .8fr; gap:26px; align-items:center}
.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  will-change: transform;
}
.hero-media img{width:100%; height:420px; object-fit:cover}

@media (prefers-reduced-motion: reduce){
  .hero:before{animation:none}
}

.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 10px}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.stat{
  border:1px solid var(--border);
  background:rgba(255,255,255,.84);
  border-radius:var(--radius);
  padding:14px 14px;
  box-shadow: var(--shadow-sm);
}
.stat .value{font-weight:800; font-size:18px; letter-spacing:-.2px}
.stat .label{font-size:12px; color:var(--muted); margin-top:4px}
.small-note{margin:12px 0 0; font-size:12px; color:var(--muted2)}

/* Sections */
.section{padding:58px 0}
.section.alt{background: rgba(255,255,255,.55); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}

/* Ensure spacing even when sections don't use the .section class */
main > section{scroll-margin-top:92px}
main > section:not(.hero){
  padding:66px 0;
  position:relative;
}

/* Hairline section separator (subtle, keeps long pages readable) */
main > section:not(.hero)::before{
  content:"";
  position:absolute;
  top:0;
  left:22px;
  right:22px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(17,17,17,.12), transparent);
  opacity:.55;
}

.grid{display:grid; gap:18px}
.grid.cols-3{grid-template-columns: repeat(3, 1fr)}
.grid.cols-2{grid-template-columns: repeat(2, 1fr)}

.card{
  position:relative;
  border:1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s cubic-bezier(.2,.8,.2,1), border-color .22s cubic-bezier(.2,.8,.2,1);
}
.card:before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:14px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(255,138,0,.95), rgba(255,179,71,.55), rgba(255,179,71,0));
  opacity:.7;
}
.card:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(560px 220px at 18% 0%, rgba(255,138,0,.08), transparent 60%),
    radial-gradient(520px 240px at 85% 10%, rgba(255,179,71,.06), transparent 62%);
  opacity:.0;
  transition: opacity .22s cubic-bezier(.2,.8,.2,1);
}
.card p{margin:0; color:var(--muted); font-size:13px}

/* Card heading with icon (used in "How you can get involved") */
.card-title{display:flex; align-items:center; gap:10px; margin:0 0 10px}
.card-title h3{margin:0}
.card-icon{
  width:38px; height:38px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  border:1px solid rgba(17,17,17,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.62));
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  position:relative;
}
.card-icon i{font-size:16px; color:var(--text)}
.card-icon:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  border:1px solid rgba(255,138,0,.20);
  opacity:.55;
  pointer-events:none;
}


@media (hover: hover){
  .card:hover{transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(17,17,17,.18)}
  .card:hover:after{opacity:1}
}

.divider{height:1px; background:var(--border); margin:14px 0}

.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:13px;
}
.list li{margin:6px 0}

/* Forms */
label{display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted2); margin:14px 0 6px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  color:var(--text);
  font-family: inherit;
  font-size:14px;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease;
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color: rgba(255,138,0,.55); box-shadow: 0 0 0 4px rgba(255,138,0,.12)}

/* Reveal animations */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none}
}

.callout{
  margin-top:18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background: linear-gradient(135deg, rgba(255,138,0,.10), rgba(255,255,255,.75));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.callout .btn{white-space:nowrap}
.muted{color:var(--muted)}

.split{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px}

.gallery{display:grid; gap:10px; margin-top:12px}
.gallery .small{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.card-media{width:100%; height:auto; border-radius:14px; border:1px solid var(--border); box-shadow: 0 12px 30px rgba(0,0,0,.08)}

.gallery img{border-radius:14px; border:1px solid var(--border); box-shadow: 0 12px 30px rgba(0,0,0,.08)}

.table{
  width:100%;
  border-collapse:collapse;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-sm);
}
.table th,.table td{padding:12px 12px; text-align:left; border-bottom:1px solid var(--border); font-size:13px}
.table th{background:rgba(17,17,17,.04); color:var(--text); font-size:12px; letter-spacing:.12em; text-transform:uppercase}
.table tr:last-child td{border-bottom:none}

.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(17,17,17,.04);
  font-size:12px;
  color:var(--muted);
}

footer{
  padding:34px 0;
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.7);
}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start}
.footer-grid p{margin:0; color:var(--muted); font-size:12px}
.footer-links{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.footer-links a{font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted)}
.footer-links a:hover{color:var(--text)}

.footer-row{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:center}
.footer-disclaimer{margin:0 0 14px; color:var(--muted); font-size:13px; max-width:900px}

/* Responsive */
@media (max-width: 980px){
  .hero-wrap{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr;}
  /* Keep cards readable on tablet: 2 columns, then collapse to 1 on mobile */
  .grid.cols-3{grid-template-columns:1fr 1fr}
  .grid.cols-2{grid-template-columns:1fr}
  .nav-links{display:none}
  .burger{display:inline-flex; align-items:center; justify-content:center}
  .mobile-menu.open{display:block}
}

/* Mobile refinements */
@media (max-width: 640px){
  .grid.cols-3{grid-template-columns:1fr}

  .hero-actions{flex-direction:column; align-items:stretch}
  .hero-actions .btn{width:100%}

  .callout{flex-direction:column; align-items:stretch}
  .callout .btn{width:100%}

  .btn-row{flex-direction:column; align-items:stretch}
  .btn-row .btn{width:100%}

  /* Prevent awkward wraps in the mobile menu */
  .mobile-menu a{white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
}

/* Slightly tighter nav before it collapses */
@media (max-width: 1120px){
  .nav-links a{padding:10px 10px}
}

.hero-download{margin:14px 0 8px}

.footer-note{margin:0 0 14px; color:var(--muted); font-size:12px; max-width:900px}

.footer-copy{margin:18px 0 0; color:var(--muted); font-size:13px; text-align:center}

.callout.full{width:100%}

.btn-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

/* Investor Pack media grids */
.media-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:18px;
}
.media-item{
  position:relative;
  background: rgba(255,255,255,.84);
  border:1px solid rgba(17,17,17,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
}
.media-item:before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:14px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(255,138,0,.75), rgba(255,179,71,.35), rgba(255,179,71,0));
  opacity:.6;
}
.media-item .media-caption{
  padding:12px 14px;
}
.media-item .media-caption h3{margin:0 0 6px; font-size:18px}
.media-item .media-caption p{margin:0; color:var(--muted)}
.media-thumb{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display:block;
  transition: transform .18s ease, filter .18s ease;
}
.media-thumb:hover{filter: saturate(1.03); transform: scale(1.01)}

.video-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:18px;
}
.video-grid video{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display:block;
  border-radius: 14px;
}

/* Simple lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2000;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1100px, 96vw);
  max-height: 86vh;
  width:auto;
  height:auto;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.lightbox video{
  max-width:min(1100px, 96vw);
  max-height: 86vh;
  width:100%;
  height:auto;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  background:#000;
}
.lightbox .lb-close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.lightbox .lb-close:hover{background: rgba(0,0,0,.52)}

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