:root {
  --bg: #050709;
  --panel: #0f1418;
  --panel-2: #151c21;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(80,154,190,0.28);
  --text: #f4f7f8;
  --muted: #aebcc5;
  --soft: #d8e1e6;
  --blue: #509abe;
  --gold: #ffb41c;
  --gold-soft: rgba(255,180,28,0.16);
  --shadow: 0 24px 60px rgba(0,0,0,0.28);
  --radius-lg: 28px;
  --font: "IBM Plex Sans Condensed", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 1220px;
  --pad: clamp(20px, 3vw, 36px);
}
* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(80,154,190,0.12), transparent 34%),
    linear-gradient(180deg, #040506 0%, #070a0c 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 18px;
  top: 18px;
  z-index: 1000;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
}
.wrap { width: min(100%, var(--wrap)); margin: 0 auto; padding: 0 var(--pad); }
.site-shell { position: relative; overflow: hidden; }
.section { padding: 82px 0; }
.section.tight { padding-top: 58px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.06; letter-spacing: -0.02em; }
h1 { font-size: clamp(42px, 7vw, 78px); font-weight: 700; }
h2 { font-size: clamp(34px, 5vw, 54px); font-weight: 700; }
h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 650; }
h4 { font-size: 20px; font-weight: 650; }
p { color: var(--soft); }
.small { font-size: 15px; color: var(--muted); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5,7,9,0.90);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.logo-wrap { display: flex; align-items: center; gap: 18px; min-width: 0; }
.logo-box img { width: 180px; height: auto; filter: invert(1) brightness(1.25) contrast(1.1); }
.brand-line {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 18px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn, .ghost-btn, .nav-link, .text-link { transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #68aed0 0%, #3c83a5 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(80,154,190,0.22);
}
.btn:hover, .ghost-btn:hover, .nav-link:hover, .text-link:hover { transform: translateY(-1px); }
.btn:focus-visible, .ghost-btn:focus-visible, .nav-link:focus-visible, .text-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  font-weight: 700;
  background: rgba(255,255,255,0.03);
}
.utility-link {
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 16px;
}
.mainnav { display: flex; gap: 10px; flex-wrap: wrap; }
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.header-note { color: var(--muted); font-size: 15px; }
.hero { padding: 42px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 34px;
  align-items: stretch;
}
.hero-copy-card,
.hero-media-card,
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,23,27,0.96) 0%, rgba(11,14,17,0.96) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-copy-card {
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  overflow: hidden;
}
.hero-copy-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -38% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,28,0.22), transparent 68%);
  pointer-events: none;
}
.hero-copy-card p.lead {
  font-size: clamp(20px, 2.5vw, 25px);
  max-width: 720px;
  color: #e5edf1;
  margin-bottom: 18px;
}
.hero-copy-card p.support {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.fact-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 74px;
}
.fact-pill strong {
  display: block;
  font-size: 15px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.fact-pill span { color: var(--soft); font-size: 17px; }
.hero-media-card {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  overflow: hidden;
}
.hero-media-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-caption {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9,12,14,0.2), rgba(9,12,14,0.9));
}
.hero-media-caption strong {
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-media-caption span { color: var(--soft); }
.section-title { max-width: 880px; margin-bottom: 16px; }
.section-intro { max-width: 760px; font-size: 20px; color: var(--muted); margin-bottom: 32px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.info-card,
.mini-project,
.scope-block,
.fact,
.about-item,
.expect-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.info-card { padding: 24px 22px; }
.info-card h3 { font-size: 26px; margin-bottom: 12px; }
.info-card p { margin: 0; color: var(--muted); }
.info-card .card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 26px;
  align-items: stretch;
}
.copy-panel,
.list-panel { padding: 30px; }
.list-panel ul,
.copy-panel ul { margin: 0; padding-left: 20px; color: var(--soft); }
.list-panel li,
.copy-panel li { margin: 0 0 12px; }
.note-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mini-project { overflow: hidden; }
.mini-project img { width: 100%; height: 240px; object-fit: cover; }
.mini-copy { padding: 22px; }
.mini-copy strong {
  display: block;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mini-copy h3 { font-size: 28px; margin-bottom: 10px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9edf8;
  font-weight: 700;
  margin-top: 8px;
}
.text-link::after { content: "→"; }
.band {
  padding: 26px 30px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(80,154,190,0.14), rgba(255,180,28,0.08));
  border-radius: var(--radius-lg);
}
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.band h2,
.band p { margin-bottom: 0; }
.subhero { padding: 54px 0 18px; }
.subhero-card {
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  gap: 18px;
}
.subhero-card p { max-width: 800px; font-size: 21px; color: var(--soft); margin-bottom: 0; }
.project-grid { display: grid; gap: 28px; }
.project-card {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,22,26,0.98), rgba(10,13,16,0.98));
  box-shadow: var(--shadow);
}
.project-media {
  padding: 18px;
  border-right: 1px solid var(--line);
}
.project-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  height: 100%;
}
.project-gallery .main-shot img,
.project-gallery .stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.project-gallery .stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.project-copy { padding: 28px; }
.project-kicker {
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
.project-copy > p { font-size: 20px; color: #e8eef1; margin-bottom: 22px; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.fact { padding: 16px; }
.label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.value { color: var(--soft); font-size: 17px; font-weight: 650; }
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.scope-block { padding: 18px; }
.scope-block h4 { margin-bottom: 12px; }
.scope-block ul { margin: 0; padding-left: 19px; }
.scope-block li { margin-bottom: 8px; color: var(--soft); }
.result-bar {
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(80,154,190,0.10);
  border: 1px solid rgba(80,154,190,0.18);
  color: #e4eff5;
}
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr); gap: 22px; }
.about-panel,
.about-list,
.expect-card { padding: 28px; }
.about-panel p:last-child { margin-bottom: 0; }
.about-list { display: grid; gap: 14px; align-content: start; }
.about-item { padding: 18px; color: var(--soft); }
.expect-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.expect-card h3 { font-size: 24px; margin-bottom: 10px; }
.cta-band { padding: 34px 0 88px; }
.cta-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(9,14,18,0.96), rgba(25,34,41,0.96));
  box-shadow: var(--shadow);
}
.cta-card h2 { margin-bottom: 12px; }
.cta-card p { font-size: 20px; max-width: 760px; }
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 38px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .about-grid,
  .project-card,
  .band-grid { grid-template-columns: 1fr; }
  .project-media { border-right: 0; border-bottom: 1px solid var(--line); }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .note-grid,
  .expect-grid { grid-template-columns: 1fr; }
  .hero-facts,
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .masthead { position: relative; }
  .header-top,
  .nav-row { flex-direction: column; align-items: flex-start; }
  .logo-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .brand-line { border-left: 0; padding-left: 0; }
  .header-actions { justify-content: flex-start; }
  .hero { padding-top: 26px; }
  .hero-media-card { grid-template-rows: minmax(280px, 1fr) auto; }
  .cards-grid,
  .hero-facts,
  .facts,
  .scope-grid { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: 1fr; }
  .project-gallery .stack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .btn,
  .ghost-btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .mainnav { width: 100%; }
  .nav-link { width: 100%; justify-content: center; }
  .project-media { padding: 14px; }
  .project-copy,
  .copy-panel,
  .list-panel,
  .about-panel,
  .about-list,
  .expect-card,
  .cta-card,
  .subhero-card { padding: 22px; }
  .mini-project img { height: 220px; }
}