:root {
  --ink: #101722;
  --muted: #5a6572;
  --paper: #f4f6f3;
  --white: #ffffff;
  --line: rgba(16, 23, 34, .14);
  --navy: #071423;
  --blue: #17406d;
  --cyan: #7ed8ee;
  --gold: #d7aa62;
  --green: #4f916a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 14, 24, .76), rgba(6, 14, 24, .08));
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--cyan);
}
.site-header nav { display: flex; gap: 22px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.site-header nav a { opacity: .76; }
.site-header nav a:hover { opacity: 1; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px clamp(22px, 7vw, 112px) 74px;
  color: var(--white);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,10,18,.94), rgba(7,22,38,.78) 48%, rgba(6,10,17,.24)),
              linear-gradient(0deg, rgba(5,10,18,.72), transparent 52%);
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.eyebrow, .section-kicker {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow, .section-kicker.light { color: var(--cyan); }
.hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(62px, 11vw, 168px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 650;
}
.hero-lead { max-width: 760px; color: #d9e7f5; font-size: clamp(20px, 2.2vw, 32px); line-height: 1.35; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions a, .contact-card a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--gold);
  color: #111722;
  font-weight: 800;
}
.hero-actions .secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.32); }
.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 82px);
  bottom: 76px;
  width: min(370px, calc(100vw - 44px));
  padding: 25px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(7, 16, 28, .58);
  backdrop-filter: blur(16px);
}
.hero-card span, .contact-card span { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-card strong { display: block; margin: 9px 0; font-size: 24px; line-height: 1.1; }
.hero-card p { margin: 0; color: #c5d5e4; line-height: 1.55; }

.profile, .payyer, .portfolio, .ownership, .contact { padding: clamp(74px, 8vw, 124px) clamp(22px, 7vw, 112px); }
.profile { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; background: var(--white); }
.profile h2, .payyer h2, .section-head h2, .ownership h2, .contact h2 {
  margin: 14px 0 0;
  font-size: clamp(38px, 5.4vw, 86px);
  line-height: .94;
  letter-spacing: -.06em;
}
.profile-copy p { margin: 0 0 20px; color: var(--muted); font-size: clamp(17px, 1.8vw, 25px); line-height: 1.52; }

.payyer { display: grid; grid-template-columns: 1fr .86fr; gap: 42px; align-items: center; background: var(--navy); color: var(--white); }
.payyer-copy p { color: #cbd8e5; font-size: 17px; line-height: 1.65; }
.payyer-copy ul { margin: 28px 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.payyer-copy li { padding-left: 26px; position: relative; color: #eef7ff; line-height: 1.5; }
.payyer-copy li:before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); }
.payyer-copy .note { color: #a9bed0; font-size: 14px; }
.payyer-visual { overflow: hidden; border-radius: 8px; box-shadow: 24px 24px 0 rgba(126,216,238,.12); }
.payyer-visual img { width: 100%; min-height: 520px; object-fit: cover; }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); background: #dfe8e3; }
.metrics article { padding: 34px clamp(22px, 5vw, 70px); border-right: 1px solid rgba(16,23,34,.12); }
.metrics strong { display: block; font-size: clamp(42px, 6vw, 82px); letter-spacing: -.06em; }
.metrics span { color: var(--muted); font-weight: 700; }

.portfolio { background: #f6f7f4; }
.section-head { max-width: 920px; margin-bottom: 38px; }
.company-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.company {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(17, 28, 43, .06);
}
.company.featured { grid-column: span 2; background: linear-gradient(145deg, #10233d, #174d78); color: var(--white); }
.company span { width: max-content; padding: 7px 10px; border-radius: 999px; background: #e8efe9; color: #315e45; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.company.featured span { background: rgba(126,216,238,.15); color: var(--cyan); }
.company h3 { margin: 18px 0 0; font-size: 26px; letter-spacing: -.025em; }
.company p { margin: 0; color: var(--muted); line-height: 1.55; }
.company.featured p { color: #d9e8f4; }
.company a { align-self: end; width: max-content; color: #1e6798; font-weight: 800; }
.company.featured a { color: var(--cyan); }

.ownership { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; align-items: center; background: var(--white); }
.ownership img { border-radius: 8px; box-shadow: 24px 24px 0 #d8c49f; }
.ownership p { color: var(--muted); font-size: 18px; line-height: 1.65; }

.contact { display: grid; grid-template-columns: 1fr .72fr; gap: 50px; align-items: center; background: linear-gradient(135deg, #081321, #113a54); color: var(--white); }
.contact p { color: #cddce9; font-size: 18px; line-height: 1.65; }
.contact-card { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.08); }
.contact-card strong { display: block; margin: 10px 0 22px; font-size: clamp(26px, 4vw, 48px); letter-spacing: -.05em; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(22px, 7vw, 112px);
  background: #050b13;
  color: #aebdcb;
  font-size: 14px;
}
.site-footer a { color: var(--white); }

@media (max-width: 980px) {
  .site-header { position: absolute; align-items: flex-start; flex-direction: column; justify-content: center; min-height: 126px; }
  .site-header nav { flex-wrap: wrap; gap: 14px; }
  .hero { min-height: 840px; padding-top: 164px; }
  .hero-card { position: relative; right: auto; bottom: auto; margin-top: 32px; }
  .profile, .payyer, .ownership, .contact { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company.featured { grid-column: span 1; }
}

@media (max-width: 640px) {
  .site-header nav a:nth-child(n+4) { display: none; }
  .brand strong { font-size: 14px; }
  .hero h1 { font-size: clamp(54px, 17vw, 88px); }
  .metrics, .company-grid { grid-template-columns: 1fr; }
  .metrics article { border-right: 0; border-bottom: 1px solid rgba(16,23,34,.12); }
  .payyer-visual img { min-height: 360px; }
  .site-footer { flex-direction: column; }
}
