:root {
  --navy: #08243f;
  --navy-2: #0c3155;
  --navy-3: #071b30;
  --gold: #c89631;
  --gold-light: #e0ba67;
  --cream: #f7f4ee;
  --white: #ffffff;
  --ink: #102a43;
  --muted: #617486;
  --line: rgba(8, 36, 63, 0.14);
  --shadow: 0 24px 70px rgba(8, 36, 63, 0.16);
  --radius: 26px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,36,63,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(8,36,63,.08); background: rgba(255,255,255,.97); }
.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 280px; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--navy); letter-spacing: .01em; font-size: 15px; }
.brand-copy small { color: #9b7a37; font-size: 8px; margin-top: 5px; letter-spacing: .13em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { position: relative; padding: 28px 13px 27px; font-size: 13px; color: #36495a; transition: color .2s ease; white-space: nowrap; }
.nav-link::after { content:""; position:absolute; left:13px; right:13px; bottom:17px; height:2px; transform:scaleX(0); background:var(--gold); transform-origin:center; transition:transform .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.chev { margin-left: 3px; color: var(--gold); }
.nav-group { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% - 8px); left: 0;
  min-width: 235px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(8,36,63,.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .2s ease;
}
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a { display:block; padding:11px 12px; border-radius:9px; font-size:12px; color:#465b6e; }
.dropdown a:hover { background:#f6f1e7; color:var(--navy); }
.menu-toggle { display:none; width:44px; height:44px; border:0; background:transparent; padding:9px; }
.menu-toggle span { display:block; height:2px; background:var(--navy); margin:5px 0; transition:.2s ease; }

.snap-shell { scroll-snap-type: y proximity; }
.panel { position: relative; min-height: 100svh; padding: calc(var(--header-h) + 70px) 0 78px; scroll-snap-align: start; overflow: hidden; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow { display:inline-flex; align-items:center; gap:9px; color:var(--navy); font-size:12px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.eyebrow::before { content:""; width:28px; height:1px; background:currentColor; }
.eyebrow.gold { color: var(--gold-light); }

.hero { background: linear-gradient(115deg, #fbfaf7 0%, #f7f2e8 58%, #eef3f6 100%); }
.hero::before { content:""; position:absolute; width:560px; height:560px; border-radius:50%; right:-230px; top:70px; border:1px solid rgba(200,150,49,.23); box-shadow:0 0 0 70px rgba(200,150,49,.04),0 0 0 140px rgba(8,36,63,.03); }
.hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:72px; align-items:center; min-height: calc(100svh - var(--header-h) - 150px); }
.hero-copy h1 { margin:22px 0 20px; font-family: Georgia, "Times New Roman", serif; color:var(--navy); font-weight:500; font-size:clamp(48px,6vw,84px); line-height:.98; letter-spacing:-.045em; }
.hero-copy h1 span { color: #1177c6; }
.hero-lead { margin:0 0 16px; font-size:19px; font-weight:700; color:var(--gold); }
.hero-text { max-width:650px; margin:0; font-size:16px; line-height:1.8; color:#536a7c; }
.hero-actions { display:flex; gap:12px; margin:34px 0 44px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:12px; min-height:50px; padding:0 22px; border-radius:9px; font-weight:750; font-size:13px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { background:var(--navy); color:#fff; box-shadow:0 14px 28px rgba(8,36,63,.16); }
.btn-primary:hover { background:var(--navy-2); box-shadow:0 16px 32px rgba(8,36,63,.24); }
.btn-ghost { border:1px solid var(--line); background:rgba(255,255,255,.56); color:var(--navy); }
.stats { display:flex; gap:36px; padding-top:24px; border-top:1px solid rgba(8,36,63,.12); }
.stats div { display:grid; gap:4px; }
.stats strong { color:var(--navy); font-size:20px; }
.stats span { color:#718291; font-size:11px; }
.logo-stage { position:relative; min-height:540px; display:grid; place-items:center; }
.logo-card { position:relative; z-index:2; width:min(390px,85%); aspect-ratio:1; background:#fff; border-radius:50%; overflow:hidden; padding:42px; box-shadow:var(--shadow); border:1px solid rgba(200,150,49,.25); animation: float 5s ease-in-out infinite; }
.logo-card img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.orbit { position:absolute; border-radius:50%; border:1px solid rgba(200,150,49,.45); animation: spin 13s linear infinite; }
.orbit::before { content:""; position:absolute; width:12px; height:12px; border-radius:50%; background:var(--gold); top:11%; left:12%; box-shadow:0 0 0 7px rgba(200,150,49,.12); }
.orbit-one { width:470px; height:470px; }
.orbit-two { width:535px; height:535px; border-color:rgba(8,36,63,.12); animation-direction:reverse; animation-duration:18s; }
.orbit-two::before { background:var(--navy); top:auto; bottom:15%; left:auto; right:11%; box-shadow:0 0 0 7px rgba(8,36,63,.08); }
.stage-note { position:absolute; z-index:3; bottom:20px; padding:9px 14px; background:rgba(255,255,255,.9); border:1px solid rgba(8,36,63,.09); border-radius:999px; font-size:10px; font-weight:750; letter-spacing:.13em; color:var(--navy); text-transform:uppercase; }
.scroll-cue { position:absolute; left:50%; bottom:22px; transform:translateX(-50%); display:grid; place-items:center; gap:8px; color:#7a8792; font-size:10px; letter-spacing:.13em; text-transform:uppercase; }
.scroll-cue span { width:1px; height:36px; background:linear-gradient(var(--gold),transparent); }

.section-dark { background: var(--navy-3); color:#fff; }
.section-dark::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 20%, rgba(200,150,49,.12), transparent 28%), radial-gradient(circle at 15% 80%, rgba(25,119,198,.1), transparent 35%); }
.section-head { position:relative; z-index:1; display:grid; grid-template-columns:1fr .8fr; align-items:end; gap:60px; margin-bottom:48px; }
.section-head h2 { margin:12px 0 0; font-family:Georgia, "Times New Roman", serif; font-size:clamp(38px,4.8vw,66px); line-height:1.03; font-weight:500; letter-spacing:-.035em; color:var(--navy); }
.section-dark .section-head h2 { color:#fff; }
.section-head > p { margin:0; color:#6f7f8c; line-height:1.8; font-size:15px; }
.section-dark .section-head > p { color:#b7c3cc; }
.feature-stack { position:relative; z-index:1; display:grid; gap:24px; }
.feature-card { position:relative; display:grid; grid-template-columns:70px 1fr 330px; gap:30px; padding:34px; background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); overflow:hidden; }
.feature-card.reverse { grid-template-columns:70px 1fr 330px; }
.feature-index { color:var(--gold-light); font-size:12px; letter-spacing:.15em; font-weight:800; padding-top:4px; }
.feature-copy .kicker { display:block; margin-bottom:9px; color:var(--gold-light); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.13em; }
.feature-copy h3 { margin:0 0 15px; font-family:Georgia, "Times New Roman", serif; font-size:28px; line-height:1.12; font-weight:500; }
.feature-copy p { margin:0 0 11px; color:#c8d3dc; line-height:1.65; font-size:13px; }
.feature-copy .accent-copy { color:#f1e1bd; }
.feature-visual { position:relative; min-height:250px; border-radius:20px; background:linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); border:1px solid rgba(255,255,255,.08); overflow:hidden; }
.network-visual::before, .network-visual::after { content:""; position:absolute; left:20%; right:20%; top:50%; height:1px; background:rgba(224,186,103,.4); transform:rotate(32deg); }
.network-visual::after { transform:rotate(-28deg); }
.node { position:absolute; width:18px; height:18px; border-radius:50%; background:var(--gold-light); box-shadow:0 0 0 8px rgba(224,186,103,.08); }
.n1{left:16%;top:18%}.n2{right:15%;top:23%}.n3{left:22%;bottom:20%}.n4{right:22%;bottom:16%}.n5{left:48%;top:48%;width:25px;height:25px;background:#fff;box-shadow:0 0 0 10px rgba(255,255,255,.07)}
.network-label { position:absolute; inset:0; display:grid; place-items:center; text-align:center; color:#fff; font-family:Georgia,"Times New Roman",serif; font-size:22px; line-height:1; }
.funding-visual { display:grid; place-items:center; }
.eu-ring { width:130px; height:130px; border-radius:50%; border:18px solid rgba(224,186,103,.18); outline:2px solid var(--gold-light); display:grid; place-items:center; }
.eu-ring span { font-family:Georgia,"Times New Roman",serif; font-size:40px; color:#fff; }
.funding-bars { position:absolute; bottom:36px; left:36px; display:flex; align-items:flex-end; gap:7px; }
.funding-bars i { width:14px; border-radius:5px 5px 1px 1px; background:var(--gold); display:block; }
.funding-bars i:nth-child(1){height:32px}.funding-bars i:nth-child(2){height:50px}.funding-bars i:nth-child(3){height:68px}.funding-bars i:nth-child(4){height:88px;background:#fff}
.funding-tag { position:absolute; right:18px; top:18px; padding:7px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.16); color:#d9e1e7; font-size:9px; letter-spacing:.12em; text-transform:uppercase; }

.services-section { background:#faf9f6; }
.services-section::before { content:""; position:absolute; width:650px; height:650px; right:-330px; bottom:-340px; border:1px solid rgba(200,150,49,.18); border-radius:50%; }
.services-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.service-card { position:relative; min-height:485px; padding:36px; background:#fff; border:1px solid rgba(8,36,63,.08); border-radius:var(--radius); box-shadow:0 18px 50px rgba(8,36,63,.06); transition:transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform:translateY(-6px); box-shadow:0 26px 62px rgba(8,36,63,.11); }
.service-no { position:absolute; top:26px; right:29px; color:#a7b1ba; font-size:11px; font-weight:800; letter-spacing:.15em; }
.icon-shell { width:54px; height:54px; display:grid; place-items:center; border-radius:16px; color:#fff; background:var(--navy); font-size:23px; box-shadow:0 12px 24px rgba(8,36,63,.14); }
.service-card h3 { margin:28px 0 18px; font-family:Georgia,"Times New Roman",serif; color:var(--navy); font-size:31px; font-weight:500; line-height:1.1; }
.service-card p { color:#647789; line-height:1.7; font-size:14px; }
.text-link { position:absolute; bottom:34px; left:36px; display:inline-flex; gap:10px; align-items:center; color:var(--gold); font-size:12px; font-weight:800; }

.industry-section { background:linear-gradient(145deg, var(--navy-3) 0%, #0b2a47 100%); color:#fff; }
.industry-section::after { content:""; position:absolute; inset:auto -180px -260px auto; width:600px; height:600px; border:1px solid rgba(224,186,103,.16); border-radius:50%; box-shadow:0 0 0 80px rgba(224,186,103,.025); }
.industry-layout { position:relative; z-index:1; display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:center; min-height: calc(100svh - var(--header-h) - 150px); }
.industry-intro h2 { margin:12px 0 18px; font-family:Georgia,"Times New Roman",serif; font-size:clamp(40px,5vw,64px); line-height:1.02; font-weight:500; letter-spacing:-.04em; }
.industry-intro p { color:#b9c6cf; line-height:1.8; max-width:480px; margin-bottom:32px; }
.industry-intro .btn-primary { background:var(--gold); color:var(--navy-3); }
.industry-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.industry-card { position:relative; min-height:150px; padding:24px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:rgba(255,255,255,.055); transition:.25s ease; }
.industry-card:hover { background:rgba(255,255,255,.1); transform:translateY(-3px); border-color:rgba(224,186,103,.38); }
.industry-card span { color:var(--gold-light); font-size:10px; letter-spacing:.14em; font-weight:800; }
.industry-card h3 { margin:36px 32px 0 0; font-size:18px; line-height:1.25; font-weight:650; }
.industry-card i { position:absolute; right:20px; bottom:20px; font-style:normal; color:var(--gold-light); }

.contact-section { min-height:70svh; background:#f7f3ea; display:flex; flex-direction:column; justify-content:center; }
.contact-card { display:grid; grid-template-columns:120px 1fr auto; gap:40px; align-items:center; padding:44px; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); border:1px solid rgba(8,36,63,.08); }
.contact-mark { width:110px; height:110px; border-radius:50%; overflow:hidden; border:1px solid rgba(200,150,49,.22); }
.contact-card h2 { margin:10px 0 10px; color:var(--navy); font-family:Georgia,"Times New Roman",serif; font-size:clamp(34px,4vw,52px); font-weight:500; line-height:1.04; }
.contact-card p { margin:0; color:#6a7c8b; line-height:1.65; max-width:720px; }
.site-footer { display:flex; justify-content:space-between; padding-top:32px; color:#788895; font-size:11px; }
.site-footer a { color:var(--navy); font-weight:700; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }
@keyframes spin { to{transform:rotate(360deg)} }

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .brand { min-width:0; }
  .brand-copy small { display:none; }
  .menu-toggle { display:block; }
  .primary-nav { position:fixed; top:var(--header-h); left:16px; right:16px; display:none; flex-direction:column; align-items:stretch; padding:14px; background:#fff; border-radius:18px; box-shadow:var(--shadow); border:1px solid rgba(8,36,63,.08); }
  .primary-nav.open { display:flex; }
  .nav-link { padding:13px 14px; border-radius:10px; }
  .nav-link::after { display:none; }
  .nav-link.active { background:#f7f2e8; }
  .dropdown { position:static; display:none; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; padding:0 0 6px 16px; background:transparent; }
  .nav-group:focus-within .dropdown, .nav-group.open .dropdown { display:block; }
  .hero-grid, .section-head, .industry-layout { grid-template-columns:1fr; }
  .hero-grid { gap:36px; }
  .logo-stage { min-height:430px; }
  .feature-card, .feature-card.reverse { grid-template-columns:45px 1fr; }
  .feature-visual { grid-column:1/-1; min-height:220px; }
  .services-grid { grid-template-columns:1fr; }
  .industry-layout { gap:38px; }
  .contact-card { grid-template-columns:80px 1fr; }
  .contact-card .btn { grid-column:1/-1; justify-self:start; }
  .contact-mark { width:78px; height:78px; }
}

@media (max-width: 640px) {
  .container, .nav-wrap { width:min(100% - 28px, 1180px); }
  .panel { padding-top:calc(var(--header-h) + 44px); padding-bottom:58px; }
  .brand img { width:44px; height:44px; }
  .brand-copy strong { font-size:13px; }
  .hero-copy h1 { font-size:clamp(44px,14vw,62px); }
  .hero-lead { font-size:16px; }
  .stats { gap:18px; flex-wrap:wrap; }
  .logo-stage { min-height:330px; }
  .logo-card { width:250px; padding:28px; }
  .orbit-one { width:285px; height:285px; }
  .orbit-two { width:325px; height:325px; }
  .stage-note { bottom:0; }
  .section-head { gap:20px; margin-bottom:32px; }
  .feature-card { grid-template-columns:1fr; padding:25px; }
  .feature-index { padding:0; }
  .feature-visual { grid-column:auto; min-height:190px; }
  .service-card { min-height:520px; padding:27px; }
  .text-link { left:27px; bottom:27px; }
  .industry-grid { grid-template-columns:1fr; }
  .industry-card { min-height:122px; }
  .industry-card h3 { margin-top:24px; }
  .contact-card { grid-template-columns:1fr; padding:28px; gap:22px; }
  .contact-mark { width:72px; height:72px; }
  .site-footer { gap:18px; flex-wrap:wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
