:root{
  --bg:#f7f8fb;
  --fg:#0f172a;
  --muted:#4b5563;
  --line:#e5e7eb;
  --accent:rgb(40,39,150);
  --accent2:#0ea5e9;
  --shadow:0 12px 34px rgba(2,6,23,.08);
  --max:1100px;

  --nav-offset:120px;
}

/* RESET */

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-snap-type:y mandatory;
}

body{
  margin:0;
  min-height:100vh;

  font-family:"neue-haas-grotesk-display", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

  background:
    radial-gradient(1300px 860px at 0% 0%, rgba(0,25,110,.95), rgba(255,255,255,0) 54%),
    radial-gradient(1100px 740px at 100% 0%, rgba(0,85,220,.75), rgba(255,255,255,0) 60%),
    #f8fbff;

  color:var(--fg);
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration:none;
}

html, body{
  overflow-x:hidden;
}

/* PAGE WRAPPER */

.wrap{
  max-width:none;
  margin:0 auto;
  padding:0;

  display:flex;
  flex-direction:column;
  gap:0;
}

/* NAVBAR */

.topnav{
  position:sticky;
  top:10px;
  z-index:20;
  max-width:var(--max);
  width:calc(100% - 32px);
  margin:16px auto 0;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:14px 18px;

  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;

  background:rgba(255,255,255,.75);
  backdrop-filter:blur(12px);

  box-shadow:0 18px 45px rgba(2,6,23,.12);
}

.logo{
  font-weight:500;
  font-size:20px;
  letter-spacing:-.02em;
}

.navlinks{
  display:flex;
  gap:14px;
}

.nav-toggle{
  display:none;
}

.hamburger{
  display:none;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  cursor:pointer;
  position:relative;
}

.hamburger::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width:18px;
  height:2px;
  background: var(--fg);
  border-radius:2px;
  box-shadow: 0 -6px 0 var(--fg), 0 6px 0 var(--fg);
}

.navlink{
  font-size:13px;
  color:var(--muted);
  padding:6px 12px;
  border-radius:999px;
}

.navlink:hover{
  background:rgba(40,39,150,.08);
  color:var(--fg);
}

/* HERO (NO BOX) */

.hero{
  min-height:100svh;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:120px 24px 80px;

  scroll-snap-align:start;
}

.hero h2{
  margin:0 0 24px;

  font-size:76px;
  line-height:1.02;
  letter-spacing:-.03em;

  max-width:900px;
}

.hero p{
  margin:0;

  font-size:24px;
  color:var(--muted);

  max-width:720px;
}

/* SECTIONS CONTAINER */

.sections{
  display:flex;
  flex-direction:column;
  gap:0;
}

/* FULLSCREEN SECTION PANELS */

.section{
  min-height:100svh;

  display:flex;
  flex-direction:column;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  overflow:visible;

  scroll-snap-align:start;
  scroll-margin-top:var(--nav-offset);
  padding:84px 0 64px;
}

/* Auto-height section (e.g. Why Invest) */

.section--auto-height{
  min-height:auto;
}

/* SECTION WITH INNER SCROLL (e.g. Performance) */

.section--inner-scroll{
  height:100svh;
  min-height:100svh;
}

.section--inner-scroll .section-body{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:auto;
  justify-content:flex-start;
}

.media-block{
  margin-top:28px;
}

.media-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:22px;
  border:1px solid rgba(229,231,235,.95);
  box-shadow:0 14px 40px rgba(2,6,23,.08);
}

/* SECTION HEADER */

.section-head{
  max-width:var(--max);
  width:100%;
  margin:0 auto;
  padding:20px 28px 14px;

  display:flex;
  justify-content:space-between;
  align-items:baseline;

  background:transparent;
  border-bottom:none;
}

.section-num{
  font-size:14px;
  color:var(--muted);
  letter-spacing:.12em;
}

.section-title{
  margin:0;
  font-size:52px;
  letter-spacing:-.02em;
}

/* SECTION BODY */

.section-body{
  max-width:var(--max);
  width:100%;
  margin:0 auto;
  padding:14px 28px 32px;
}

.section-body p{
  margin:0 0 16px;
  font-size:21px;
  max-width:900px;
}

.section-body p:last-child{
  margin-bottom:0;
}

.muted{
  color:var(--muted);
}

.section-body{
  padding:14px 28px 32px;

  flex:1;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.section-body--tight-bottom{
  justify-content:flex-start;
  padding-bottom:28px;
}

/* KPI GRID */

.kpis{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:28px;
}

.kpi{
  border:1px solid rgba(229,231,235,.95);
  border-radius:18px;
  padding:22px;
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
}

.kpi .v{
  font-size:28px;
  font-weight:500;
}

.kpi .l{
  font-size:13px;
  color:var(--muted);
}

/* TABLE */

.table{
  width:100%;
  border-collapse:collapse;
  margin-top:30px;
  border:1px solid rgba(229,231,235,.95);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.78);
}

.table th,
.table td{
  padding:14px;
  border-bottom:1px solid rgba(229,231,235,.9);
  text-align:left;
  font-size:14px;
}

.table th{
  background:#f9fafb;
  color:var(--muted);
  font-weight:500;
}

.table tr:last-child td{
  border-bottom:none;
}

.table .rowlabel{
  font-weight:500;
}

/* FOOTER */

.footer{
  max-width:var(--max);
  width:100%;
  margin:0 auto;
  padding:34px 28px 42px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  color:var(--muted);
}

.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.95);
  background:white;
}

/* MOBILE */

@media (max-width:720px){

  html{
    scroll-snap-type:none;
  }

  .navlinks{
    display:none;
  }

  .nav-toggle:checked ~ .navlinks{
    display:flex;
  }

  .navlinks{
    position:absolute;
    left:18px;
    right:18px;
    top: calc(100% + 10px);
    flex-direction:column;
    gap:8px;
    padding:12px;
    border-radius:16px;
    background: rgba(255,255,255,.86);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    z-index:40;
    width:auto;
    max-width:none;
    align-items:flex-start;
  }

  .navlink{
    width:100%;
    padding:10px 12px;
    font-size:16px;
  }

  .hamburger{
    display:inline-block;
  }

  .hero{
    min-height:92svh;
    padding:80px 18px 32px;
  }

  .hero h2{
    font-size:52px;
  }

  .hero p{
    font-size:20px;
  }

  .section{
    min-height:88svh;
    padding:60px 0 30px;
  }

  .section-head{
    padding:12px 20px 10px;
  }

  .section-body{
    padding:10px 20px 20px;
  }

  .section-title{
    font-size:38px;
  }

  .kpis{
    grid-template-columns:1fr;
  }

}

