:root {
  --bg: #07100d;
  --bg-soft: #0b1713;
  --panel: #0f1e19;
  --panel-2: #14241f;
  --text: #f4f8f5;
  --muted: #a7b7af;
  --line: rgba(255,255,255,.12);
  --accent: #21d69a;
  --accent-dark: #0ca874;
  --max: 1180px;
  --radius: 26px;
  --shadow: 0 24px 80px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 12px 18px; background: white; color: black; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .3s ease, border .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(7,16,13,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.1); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { color: rgba(255,255,255,.78); transition: color .2s ease; }
.site-nav > a:not(.nav-cta):hover { color: white; }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; transition: background .2s ease, color .2s ease; }
.nav-cta:hover { background: white; color: #07100d; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(0,0,0,.15); padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.menu-toggle span { width: 18px; height: 1.5px; background: white; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.hero { min-height: 860px; height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url('assets/images/hero-meeting.jpg') center 42%/cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(4,10,8,.96) 0%, rgba(4,10,8,.78) 45%, rgba(4,10,8,.22) 76%, rgba(4,10,8,.42) 100%),
  linear-gradient(180deg, rgba(4,10,8,.45) 0%, transparent 35%, rgba(4,10,8,.72) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--accent); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow span { width: 34px; height: 1px; background: var(--accent); }
.hero h1 { margin: 0; max-width: 850px; font-size: clamp(56px, 7.2vw, 104px); line-height: .99; letter-spacing: -.065em; font-weight: 800; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-content > p { max-width: 660px; margin: 28px 0 0; font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.76); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg, .contact-inner a svg, .social-link .arrow { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button.primary { background: var(--accent); color: #04100b; }
.button.primary:hover { background: #45e5af; }
.button.ghost { border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.button.ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }
.hero-stats { display: flex; gap: 0; margin-top: 65px; }
.hero-stats div { min-width: 180px; padding-right: 34px; margin-right: 34px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-stats div:last-child { border: 0; }
.hero-stats strong { display: block; font-size: 25px; line-height: 1.2; }
.hero-stats span { color: rgba(255,255,255,.55); font-size: 13px; }
.scroll-cue { position: absolute; z-index: 3; bottom: 31px; right: max(30px, calc((100vw - var(--max))/2)); width: 42px; height: 60px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; display: grid; place-items: start center; padding-top: 12px; }
.scroll-cue span { width: 4px; height: 9px; border-radius: 5px; background: var(--accent); animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 0;} 35% { opacity: 1;} 100% { transform: translateY(23px); opacity: 0;} }

.section { padding: 120px 0; }
.focus { background: var(--bg-soft); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.kicker { margin: 0 0 13px; }
.section h2, .contact-strip h2 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); max-width: 470px; }
.topic-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 290px 290px; gap: 18px; }
.topic-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 290px; }
.topic-large { grid-row: 1 / 3; }
.topic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.2,1); }
.topic-card:hover img { transform: scale(1.045); }
.topic-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 15%, rgba(3,9,7,.82) 100%); }
.topic-content { position: absolute; inset: auto 0 0; padding: 30px; }
.topic-content span { display: inline-block; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .12em; margin-bottom: 10px; }
.topic-content h3 { margin: 0; font-size: clamp(25px, 3vw, 38px); letter-spacing: -.035em; line-height: 1.12; }
.topic-content p { margin: 10px 0 0; color: rgba(255,255,255,.7); max-width: 430px; font-size: 14px; }

.story { background: var(--bg); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.story-image-wrap { position: relative; }
.story-image-wrap > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-badge { position: absolute; right: -35px; bottom: 38px; width: 240px; padding: 22px; border-radius: 18px; background: var(--accent); color: #04100b; box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.image-badge span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; opacity: .7; }
.image-badge strong { display: block; margin-top: 7px; font-size: 22px; line-height: 1.15; letter-spacing: -.03em; }
.story-copy .lead { font-size: 19px; color: #c7d3cd; margin: 28px 0 34px; }
.principles { display: grid; gap: 0; border-top: 1px solid var(--line); }
.principles > div { display: grid; grid-template-columns: 48px 1fr; gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.principles span { color: var(--accent); font-weight: 800; font-size: 12px; }
.principles p { margin: 0; color: var(--muted); }
.principles strong { color: var(--text); margin-right: 5px; }

.community { padding-top: 20px; background: var(--bg); }
.community-panel { border: 1px solid var(--line); border-radius: 34px; padding: 56px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; background:
  radial-gradient(circle at 0% 0%, rgba(33,214,154,.13), transparent 40%),
  var(--panel);
}
.community-copy p:last-child { color: var(--muted); max-width: 440px; }
.social-actions { display: grid; gap: 12px; }
.social-link { display: grid; grid-template-columns: 48px 1fr 26px; gap: 15px; align-items: center; padding: 18px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; transition: background .2s ease, transform .2s ease, border .2s ease; }
.social-link:hover { transform: translateX(5px); background: rgba(255,255,255,.075); border-color: rgba(33,214,154,.45); }
.social-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(33,214,154,.12); color: var(--accent); }
.social-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-link small { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.social-link strong { display: block; font-size: 15px; margin-top: 2px; }
.social-link .arrow { color: var(--accent); }

.contact-strip { padding: 100px 0; background: var(--accent); color: #04100b; }
.contact-inner { display: flex; justify-content: space-between; gap: 60px; align-items: end; }
.contact-strip .kicker { color: rgba(4,16,11,.64); }
.contact-inner a { display: inline-flex; align-items: center; gap: 12px; font-size: clamp(15px, 1.6vw, 19px); font-weight: 800; padding-bottom: 6px; border-bottom: 2px solid rgba(4,16,11,.45); overflow-wrap: anywhere; }

.site-footer { padding: 55px 0 25px; background: #040a08; }
.footer-inner { display: grid; grid-template-columns: 1.4fr .8fr .7fr auto; align-items: center; gap: 24px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-inner p { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 18px; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--accent); }
.footer-inner small { color: #71817a; font-size: 11px; }
.credits { width: min(calc(100% - 40px), var(--max)); margin: 35px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #66756e; font-size: 10px; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .hero { min-height: 780px; }
  .site-nav { gap: 20px; }
  .topic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 440px 270px; }
  .topic-large { grid-column: 1 / 3; grid-row: auto; }
  .story-grid { gap: 50px; }
  .image-badge { right: -20px; }
  .community-panel { grid-template-columns: 1fr; gap: 35px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { height: 74px; }
  .brand span { font-size: 14px; }
  .brand img { width: 38px; height: 38px; }
  .menu-toggle { display: flex; position: relative; z-index: 52; }
  .site-nav { position: fixed; inset: 0; padding: 115px 28px 35px; background: rgba(7,16,13,.98); backdrop-filter: blur(18px); flex-direction: column; align-items: stretch; gap: 0; transform: translateY(-102%); transition: transform .28s ease; z-index: 51; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 22px; }
  .site-nav .nav-cta { margin-top: 25px; padding: 15px 20px; text-align: center; border: 0; background: var(--accent); color: #04100b; }
  .hero { min-height: 760px; height: auto; padding: 115px 0 58px; }
  .hero-media { background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,10,8,.95), rgba(4,10,8,.66)), linear-gradient(180deg, transparent 45%, rgba(4,10,8,.88)); }
  .hero-content { padding-top: 28px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-content > p { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-stats { margin-top: 45px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
  .hero-stats div { min-width: 0; margin: 0; padding: 0 8px 0 0; border-right: 1px solid rgba(255,255,255,.16); }
  .hero-stats strong { font-size: 20px; }
  .hero-stats span { font-size: 10px; line-height: 1.35; display: block; }
  .scroll-cue { display: none; }
  .section { padding: 75px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 35px; }
  .section h2, .contact-strip h2 { font-size: 42px; }
  .topic-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .topic-large { grid-column: auto; }
  .topic-card, .topic-large { min-height: 420px; }
  .story-grid { grid-template-columns: 1fr; gap: 55px; }
  .story-image-wrap > img { aspect-ratio: 4/4.6; }
  .image-badge { right: 13px; bottom: -26px; width: 220px; }
  .story-copy { padding-top: 12px; }
  .community { padding-top: 0; }
  .community-panel { padding: 34px 20px; border-radius: 24px; }
  .social-link { grid-template-columns: 44px 1fr 20px; padding: 15px; }
  .social-icon { width: 44px; height: 44px; }
  .contact-strip { padding: 75px 0; }
  .contact-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
