:root {
  color-scheme: dark;
  --bg: #070b0d;
  --ink: #f4f7f2;
  --muted: #a7b2ad;
  --line: rgba(255, 255, 255, 0.13);
  --panel: rgba(12, 18, 19, 0.78);
  --panel-strong: rgba(21, 31, 31, 0.92);
  --emerald: #35e39a;
  --cyan: #46d7e6;
  --amber: #d7b46a;
  --slate: #172120;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(53, 227, 154, 0.12), transparent 26rem),
    radial-gradient(circle at 78% 18%, rgba(70, 215, 230, 0.1), transparent 24rem),
    var(--bg);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 13, 0.72);
  backdrop-filter: blur(20px);
}

.brand,
.nav,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(53, 227, 154, 0.44);
  border-radius: 8px;
  background: rgba(53, 227, 154, 0.12);
  color: var(--emerald);
  font-size: 13px;
}

.nav {
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 13, 0.92), rgba(7, 11, 13, 0.6) 42%, rgba(7, 11, 13, 0.18)),
    linear-gradient(0deg, rgba(7, 11, 13, 0.96), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.intro {
  max-width: 680px;
  color: #d0d8d4;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(53, 227, 154, 0.7);
  background: var(--emerald);
  color: #05100d;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 72px;
  z-index: 2;
  width: min(320px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 15, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-card span,
.metric span,
.portfolio-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--emerald);
  font-size: 68px;
  line-height: 0.95;
}

.hero-card p,
.metric p,
.strategy-copy p,
.timeline p,
.portfolio-card p,
.outlook-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.metrics-section,
.strategy-section,
.portfolio-section,
.outlook-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
}

.metric:nth-child(2) strong::after,
.metric:nth-child(3) strong::after {
  content: "%";
}

.strategy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(36px, 8vw, 92px);
  align-items: start;
}

.strategy-copy {
  position: sticky;
  top: 118px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.timeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(70, 215, 230, 0.42);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-card {
  min-height: 340px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--slate);
}

.portfolio-card.featured {
  background:
    linear-gradient(145deg, rgba(53, 227, 154, 0.24), rgba(70, 215, 230, 0.1)),
    var(--slate);
}

.portfolio-card h3 {
  margin-top: 118px;
  font-size: clamp(25px, 3vw, 34px);
}

.outlook-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 8vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.outlook-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(53, 227, 154, 0.22);
  border-radius: 8px;
  background: rgba(53, 227, 154, 0.08);
}

.outlook-panel .button {
  margin-top: 18px;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 72px) 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 860px;
    padding-top: 150px;
  }

  .hero-card {
    right: auto;
    left: 20px;
    bottom: 34px;
  }

  .metrics-grid,
  .strategy-section,
  .portfolio-grid,
  .outlook-section {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .strategy-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 920px;
    padding: 148px 16px 300px;
  }

  .hero-card {
    left: 16px;
    bottom: 48px;
  }

  .button {
    width: 100%;
  }

  .metrics-section,
  .strategy-section,
  .portfolio-section,
  .outlook-section {
    width: calc(100% - 32px);
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
