:root {
  --bg: #f6f3ef;
  --ink: #161616;
  --muted: #68635e;
  --line: #ded8cf;
  --surface: #ffffff;
  --surface-alt: #ebe6de;
  --red: #b31f2d;
  --deep: #17212d;
  --blue: #26384d;
  --shadow: 0 24px 70px rgba(22, 22, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  color: #fff;
  background: rgba(18, 20, 22, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.brand-name {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.88) 0%, rgba(9, 12, 16, 0.72) 34%, rgba(9, 12, 16, 0.22) 70%, rgba(9, 12, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 12, 16, 0.64) 0%, rgba(9, 12, 16, 0.1) 50%),
    url("assets/hero-angel-bay.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffbdc3;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  line-height: 1.72;
}

.hero-line {
  margin-bottom: 18px;
  font-size: clamp(21px, 2.6vw, 34px);
  line-height: 1.12;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
}

.intro {
  background: var(--bg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.pillar {
  min-height: 292px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pillar-number {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.pillar p,
.theme p,
.venture-copy p,
.singapore p,
.contact p,
address,
.site-footer p {
  color: var(--muted);
}

.investing {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 84px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.theme-list {
  display: grid;
  gap: 14px;
}

.theme {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.theme:first-child {
  border-top: 1px solid var(--line);
}

.theme h3 {
  color: var(--deep);
}

.ventures {
  color: #fff;
  background: var(--deep);
}

.ventures .eyebrow {
  color: #ffbdc3;
}

.venture-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 72px;
  align-items: center;
}

.venture-copy .lead {
  color: #fff;
  font-size: 22px;
  line-height: 1.55;
}

.venture-copy p:not(.lead) {
  color: rgba(255, 255, 255, 0.72);
}

.venture-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.capsule-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 34px;
}

.capsule-row span {
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px 40px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05)),
    linear-gradient(90deg, #5f121b, #d5b48b 54%, #1b2d42);
}

dl {
  margin: 0;
}

.venture-panel dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.singapore {
  background: var(--surface-alt);
}

.singapore-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: end;
}

address {
  display: grid;
  gap: 12px;
  font-style: normal;
  font-size: 18px;
}

address a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #111;
}

.footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
    padding: 0 20px;
  }

  .brand-name {
    max-width: 170px;
    white-space: normal;
    line-height: 1.1;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(9, 12, 16, 0.72) 0%, rgba(9, 12, 16, 0.68) 55%, rgba(9, 12, 16, 0.88) 100%),
      url("assets/hero-angel-bay.png") center / cover no-repeat;
  }

  .hero-content,
  .section-inner,
  .footer-inner {
    width: min(100% - 32px, 720px);
  }

  .hero-content {
    padding: 92px 0 42px;
  }

  h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .section-inner {
    padding: 76px 0;
  }

  .pillar-grid,
  .split,
  .venture-layout,
  .singapore-grid,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sticky-heading {
    position: static;
  }

  .pillar {
    min-height: 0;
    padding: 26px;
  }

  .pillar-number {
    margin-bottom: 34px;
  }

  .venture-panel {
    padding: 24px;
  }

  .capsule-row {
    grid-template-columns: repeat(5, minmax(32px, 1fr));
  }

  .capsule-row span {
    height: 58px;
  }

  .venture-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 58px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 62vh;
  }

  .hero-content {
    padding: 78px 0 34px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-line {
    font-size: 22px;
  }

  .hero-copy {
    display: none;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }
}
