:root {
  --bg: #071214;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.09);
  --stroke: rgba(255,255,255,0.12);
  --text: #f3f8f6;
  --muted: rgba(243,248,246,0.74);
  --green: #30b568;
  --green-2: #5ad49d;
  --blue: #0f3b83;
  --blue-2: #1a5ec1;
  --light-bg: #f5fbf8;
  --ice: #eef6fa;
  --card-text: #102128;
  --card-muted: #4f6470;
  --border-light: rgba(16, 33, 40, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 18px 60px rgba(5, 16, 18, 0.16);
  --max: 1200px;
}
* { 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(--card-text);
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1,h2,h3,h4,p { margin: 0; }
h1 { font-size: clamp(2.85rem, 6.6vw, 5.25rem); line-height: 1.01; letter-spacing: -.042em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: -.032em; }
h3 { font-size: 1.2rem; line-height: 1.24; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 92px 0; }
.section.soft { background: var(--light-bg); }
.section.ice { background: var(--ice); }
.section.dark { background: #0b181c; color: #fff; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(48,181,104,.12); color: #1f8f56;
}
.kicker::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 0 6px rgba(48,181,104,.16); }
.eyebrow { color:#1f8f56; font-size:12px; text-transform:uppercase; letter-spacing:.13em; font-weight:800; }
.lead { font-size: 1.08rem; color: var(--muted); }
.text-muted { color: var(--card-muted); }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:26px; margin-bottom:36px; }
.section-head .intro { max-width:560px; color:var(--card-muted); }
.section-title-group { max-width:700px; }
.section-title-group .kicker { margin-bottom:16px; }
.section-title-group h2 + p { margin-top:14px; color:var(--card-muted); max-width:700px; }

.site-header { position:fixed; left:0; right:0; top:0; z-index:50; padding:20px 0; transition:padding .28s ease; }
.nav-shell {
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:12px 16px; border-radius:999px; background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12); backdrop-filter:blur(18px) saturate(125%);
  box-shadow:0 10px 40px rgba(0,0,0,.16); transition:all .28s ease;
}
.brand { display:flex; align-items:center; gap:12px; min-width:0; }
.brand img { height:42px; width:auto; border-radius:10px; background:#fff; padding:4px; }
.brand-name { color:#fff; font-size:14px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:24px; }
.nav-links a { color:rgba(255,255,255,.78); font-size:14px; font-weight:600; position:relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-7px; width:0; height:2px; background:#fff; transition:width .2s ease; }
.nav-links a:hover::after,.nav-links a.active::after { width:100%; }
.nav-links a:hover,.nav-links a.active { color:#fff; }
.nav-actions { display:flex; align-items:center; gap:10px; }
.lang-switch { display:inline-flex; gap:4px; padding:4px; border-radius:999px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08); }
.lang-btn,.menu-btn { border:0; background:transparent; color:rgba(255,255,255,.74); cursor:pointer; padding:8px 12px; border-radius:999px; }
.lang-btn.active { background:#fff; color:#081316; font-weight:800; }
.menu-btn { display:none; }
.site-header.light-mode { padding-top:14px; }
.site-header.light-mode .nav-shell { background:rgba(255,255,255,.88); border-color:rgba(13,31,36,.08); box-shadow:0 12px 38px rgba(10,27,33,.11); }
.site-header.light-mode .brand-name { color:#0d1f24; }
.site-header.light-mode .nav-links a { color:rgba(13,31,36,.72); }
.site-header.light-mode .nav-links a:hover,.site-header.light-mode .nav-links a.active { color:#0d1f24; }
.site-header.light-mode .nav-links a::after { background:var(--green); }
.site-header.light-mode .lang-switch { background:rgba(13,31,36,.045); border-color:rgba(13,31,36,.07); }
.site-header.light-mode .lang-btn,.site-header.light-mode .menu-btn { color:rgba(13,31,36,.68); }
.site-header.light-mode .lang-btn.active { background:#0d1f24; color:#fff; }
.site-header.light-mode .nav-actions>.btn-light { background:#0d1f24; border-color:#0d1f24; color:#fff; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; padding:14px 22px; border-radius:999px; font-weight:800; transition:transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform:translateY(-1px); }
.btn-primary { background:linear-gradient(135deg,var(--green-2),var(--green)); color:#032112; box-shadow:0 14px 30px rgba(48,181,104,.28); }
.btn-light { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.16); color:#fff; }
.btn-dark { background:#0d1f24; color:#fff; }
.btn-outline { border:1px solid rgba(16,33,40,.12); background:#fff; color:#0d1f24; box-shadow:0 10px 22px rgba(10,27,33,.06); }
.link-arrow { display:inline-flex; align-items:center; gap:8px; color:#13794a; font-weight:800; margin-top:18px; }
.link-arrow::after { content:"→"; }

.hero,.page-hero {
  position:relative; color:var(--text); overflow:hidden;
  background:radial-gradient(circle at 12% 18%,rgba(48,181,104,.22),transparent 26%),
             radial-gradient(circle at 86% 18%,rgba(27,94,193,.18),transparent 28%),
             linear-gradient(180deg,rgba(4,12,15,.1),rgba(4,12,15,.72)),
             linear-gradient(120deg,#050d0f,#0b191d 36%,#0d1b21 70%,#081214);
}
.hero { min-height:100vh; }
.page-hero { min-height:620px; }
.hero::before,.page-hero::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size:90px 90px; mask-image:linear-gradient(180deg,rgba(0,0,0,.35),transparent 82%); opacity:.2; }
.hero .container,.page-hero .container { position:relative; z-index:2; }
.hero-inner { display:grid; grid-template-columns:1.06fr .94fr; gap:46px; align-items:center; padding-top:160px; padding-bottom:90px; }
.page-hero-inner { display:grid; grid-template-columns:1.08fr .92fr; gap:48px; align-items:center; padding-top:160px; padding-bottom:90px; }
.hero-copy,.page-hero-copy { max-width:670px; }
.hero-copy .kicker,.page-hero-copy .kicker { margin-bottom:18px; color:#c4f2da; background:rgba(90,212,157,.1); }
.hero-copy .kicker::before,.page-hero-copy .kicker::before { background:#8cf0be; box-shadow:0 0 0 6px rgba(140,240,190,.16); }
.hero-copy p,.page-hero-copy p { margin-top:22px; max-width:610px; }
.hero-actions { display:flex; align-items:center; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero-proof { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.hero-proof span { display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.88); font-size:14px; }
.hero-proof strong { color:#a5f2c9; }
.hero-visual,.page-hero-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.hero-visual { min-height:640px; }
.page-hero-visual { min-height:420px; }
.hero-frame { position:relative; width:100%; max-width:560px; border-radius:36px; overflow:hidden; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); box-shadow:0 28px 70px rgba(0,0,0,.34); }
.hero-frame::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(255,255,255,0),rgba(0,0,0,.22)); pointer-events:none; }
.hero-frame img { width:100%; height:640px; object-fit:cover; }
.page-hero .hero-frame img { height:440px; }
.metric-card { position:absolute; z-index:3; left:-18px; bottom:28px; width:min(330px,80%); backdrop-filter:blur(18px) saturate(135%); border-radius:24px; padding:20px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); box-shadow:0 20px 50px rgba(0,0,0,.18); }
.floating-label { font-size:12px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.12em; margin-bottom:8px; }
.floating-title { font-size:1.12rem; font-weight:800; color:#fff; margin-bottom:7px; }
.floating-text { font-size:14px; color:rgba(255,255,255,.8); }

.intro-band { margin-top:-34px; position:relative; z-index:3; }
.intro-panel { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; padding:18px; border-radius:28px; background:#fff; box-shadow:var(--shadow); }
.intro-panel article { border-radius:22px; background:linear-gradient(180deg,#f6fbf8,#fff); padding:22px; border:1px solid var(--border-light); }
.intro-panel .num { font-size:12px; font-weight:800; letter-spacing:.14em; color:#1f8f56; text-transform:uppercase; }
.intro-panel h3 { margin-top:12px; font-size:1.04rem; }
.intro-panel p { margin-top:8px; font-size:14px; color:var(--card-muted); }

.card-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.card-grid.three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.card-grid.two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.info-card { padding:26px; border-radius:26px; background:#fff; border:1px solid var(--border-light); box-shadow:0 16px 36px rgba(10,27,33,.055); }
.info-card.soft { background:linear-gradient(180deg,#f6fbf8,#fff); }
.info-card.blue { background:#eef6fa; }
.info-card.dark { background:linear-gradient(160deg,#0d1b21,#102b33); color:#f1faf7; border-color:rgba(255,255,255,.08); }
.info-card p { margin-top:10px; color:var(--card-muted); font-size:15px; }
.info-card.dark p { color:rgba(241,250,247,.76); }
.card-icon { width:44px; height:44px; display:flex; align-items:center; justify-content:center; border-radius:15px; margin-bottom:18px; background:rgba(48,181,104,.12); color:#1f8f56; font-weight:900; }
.card-index { font-size:12px; font-weight:800; color:#1f8f56; letter-spacing:.13em; text-transform:uppercase; margin-bottom:12px; }

.lifecycle { display:grid; grid-template-columns:.85fr 1.15fr; gap:28px; align-items:stretch; }
.lifecycle-copy { padding:34px; border-radius:30px; background:linear-gradient(160deg,#0d1b21,#102b33); color:#fff; box-shadow:0 20px 44px rgba(8,18,20,.18); }
.lifecycle-copy p { margin-top:14px; color:rgba(255,255,255,.72); }
.lifecycle-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.lifecycle-card { padding:24px; border-radius:26px; background:#fff; border:1px solid var(--border-light); box-shadow:0 14px 32px rgba(10,27,33,.05); }
.lifecycle-card .mini { color:#1f8f56; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.12em; margin-bottom:12px; }
.lifecycle-card p { margin-top:8px; color:var(--card-muted); }

.split-feature { display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:center; }
.feature-photo { min-height:520px; border-radius:30px; overflow:hidden; position:relative; box-shadow:0 18px 50px rgba(10,27,33,.12); }
.feature-photo img { width:100%; height:100%; min-height:520px; object-fit:cover; }
.feature-copy { padding:12px 0; }
.feature-copy .kicker { margin-bottom:18px; }
.feature-copy p { margin-top:16px; color:var(--card-muted); }
.check-list { list-style:none; padding:0; margin:24px 0 0; display:grid; gap:13px; }
.check-list li { display:grid; grid-template-columns:28px 1fr; gap:12px; align-items:start; color:#344b55; }
.check-list li::before { content:"✓"; width:28px; height:28px; border-radius:9px; display:flex; align-items:center; justify-content:center; background:rgba(48,181,104,.12); color:#19854f; font-weight:900; }

.audience-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.audience-card { padding:30px; border-radius:30px; border:1px solid var(--border-light); background:#fff; box-shadow:0 16px 40px rgba(10,27,33,.06); }
.audience-card h3 { font-size:1.35rem; }
.audience-card>p { margin-top:10px; color:var(--card-muted); }
.chip-list { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.chip { padding:10px 13px; border-radius:999px; background:#f2f8f5; border:1px solid rgba(16,33,40,.07); font-size:13px; font-weight:700; color:#29444e; }

.trust-band { border-radius:34px; padding:38px; background:linear-gradient(135deg,#eef8f3,#eef6fa); border:1px solid var(--border-light); display:grid; grid-template-columns:.9fr 1.1fr; gap:30px; align-items:center; }
.trust-band p { margin-top:12px; color:var(--card-muted); }
.trust-points { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.trust-point { padding:18px; border-radius:20px; background:rgba(255,255,255,.8); border:1px solid rgba(16,33,40,.07); }
.trust-point strong { display:block; margin-bottom:6px; }
.trust-point span { color:var(--card-muted); font-size:14px; }

.solution-nav { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.solution-nav a { padding:10px 14px; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.86); font-size:13px; font-weight:700; }
.solution-block { display:grid; grid-template-columns:.72fr 1.28fr; gap:34px; padding:46px 0; border-bottom:1px solid rgba(16,33,40,.08); }
.solution-block:last-child { border-bottom:0; }
.solution-summary { position:sticky; top:118px; align-self:start; }
.solution-summary .eyebrow { margin-bottom:12px; }
.solution-summary p { margin-top:14px; color:var(--card-muted); }
.capability-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.capability { padding:22px; border-radius:22px; background:#f4faf7; border:1px solid rgba(16,33,40,.06); }
.capability.blue { background:#eef6fa; }
.capability h3 { font-size:1.05rem; }
.capability p { margin-top:8px; color:var(--card-muted); font-size:14px; }
.subgroup { margin-top:22px; padding:24px; border-radius:24px; background:#fff; border:1px solid var(--border-light); }
.subgroup h3 { margin-bottom:14px; }
.subgroup ul { margin:0; padding-left:20px; display:grid; gap:9px; color:var(--card-muted); }

.org-layout { display:grid; grid-template-columns:.72fr 1.28fr; gap:30px; align-items:start; }
.org-side { padding:28px; border-radius:28px; background:linear-gradient(160deg,#0d1b21,#102b33); color:#fff; position:sticky; top:118px; }
.org-side p { margin-top:12px; color:rgba(255,255,255,.72); }
.org-list { display:grid; gap:16px; }
.org-item { padding:24px; border-radius:24px; background:#fff; border:1px solid var(--border-light); box-shadow:0 12px 28px rgba(10,27,33,.045); }
.org-item p { margin-top:8px; color:var(--card-muted); }

.principles { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.principle { padding:28px; border-radius:26px; background:#fff; border:1px solid var(--border-light); }
.principle .number { color:#1f8f56; font-size:12px; font-weight:900; letter-spacing:.13em; text-transform:uppercase; margin-bottom:14px; }
.principle p { margin-top:10px; color:var(--card-muted); }
.approach-panel { display:grid; grid-template-columns:1.1fr .9fr; gap:30px; border-radius:34px; overflow:hidden; background:#0c1b20; color:#fff; }
.approach-copy { padding:44px; }
.approach-copy p { margin-top:14px; color:rgba(255,255,255,.74); }
.approach-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.approach-tags span { padding:10px 13px; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); font-size:13px; }
.approach-image img { width:100%; height:100%; min-height:420px; object-fit:cover; }

.contact-band { border-radius:34px; padding:38px; background:radial-gradient(circle at 10% 10%,rgba(90,212,157,.25),transparent 26%),linear-gradient(135deg,#0d1b21,#103039 58%,#0d1f24); color:#fff; display:grid; grid-template-columns:1.1fr .9fr; gap:26px; align-items:center; box-shadow:0 24px 60px rgba(8,18,20,.2); }
.contact-band p { margin-top:12px; color:rgba(255,255,255,.74); }
.contact-actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }

footer { padding:34px 0 42px; background:#fff; border-top:1px solid rgba(16,33,40,.06); }
.footer-top { display:grid; grid-template-columns:1.2fr repeat(3,.7fr); gap:28px; padding-bottom:28px; }
.footer-brand { display:flex; align-items:center; gap:12px; font-weight:800; color:#0d1f24; }
.footer-brand img { height:38px; width:auto; }
.footer-copy { margin-top:12px; color:#60727a; font-size:14px; max-width:380px; }
.footer-col strong { display:block; margin-bottom:10px; font-size:14px; }
.footer-col a { display:block; color:#60727a; font-size:14px; margin-top:8px; }
.footer-bottom { border-top:1px solid rgba(16,33,40,.06); padding-top:20px; display:flex; justify-content:space-between; gap:20px; color:#718188; font-size:13px; flex-wrap:wrap; }

[data-reveal] { opacity:0; transform:translateY(20px); transition:opacity .7s ease,transform .7s ease; }
[data-reveal].is-visible { opacity:1; transform:translateY(0); }

@media (max-width:1080px) {
  .nav-links { display:none; }
  .menu-btn { display:inline-flex; }
  .hero-inner,.page-hero-inner,.split-feature,.lifecycle,.trust-band,.contact-band,.approach-panel,.org-layout,.solution-block { grid-template-columns:1fr; }
  .hero-visual,.page-hero-visual { min-height:auto; }
  .hero-frame img { height:560px; }
  .page-hero .hero-frame img { height:420px; }
  .intro-panel,.card-grid,.card-grid.three,.principles { grid-template-columns:repeat(2,1fr); }
  .solution-summary,.org-side { position:static; }
  .contact-actions { justify-content:flex-start; }
}
@media (max-width:760px) {
  .site-header { padding:14px 0; }
  .nav-shell { border-radius:24px; align-items:flex-start; position:relative; }
  .nav-actions { flex-wrap:wrap; justify-content:end; }
  .brand-name { display:none; }
  body.menu-open .nav-links { display:flex; position:absolute; right:0; top:calc(100% + 10px); flex-direction:column; align-items:stretch; gap:16px; min-width:220px; padding:18px; border-radius:20px; background:rgba(8,19,22,.94); border:1px solid rgba(255,255,255,.1); backdrop-filter:blur(18px) saturate(130%); box-shadow:0 18px 40px rgba(0,0,0,.2); }
  body.menu-open .site-header.light-mode .nav-links { background:rgba(255,255,255,.96); border-color:rgba(13,31,36,.08); }
  .hero-inner,.page-hero-inner { padding-top:132px; padding-bottom:68px; }
  .page-hero { min-height:auto; }
  .hero-copy .lead,.page-hero-copy .lead { font-size:1rem; }
  .hero-proof span { width:100%; justify-content:center; }
  .metric-card { left:14px; bottom:14px; }
  .intro-panel,.card-grid,.card-grid.three,.card-grid.two,.lifecycle-grid,.audience-grid,.trust-points,.capability-grid,.principles,.footer-top { grid-template-columns:1fr; }
  .section { padding:72px 0; }
  .section-head { flex-direction:column; align-items:start; }
  .feature-photo,.feature-photo img { min-height:420px; }
  .contact-band,.approach-copy { padding:28px; }
  .contact-actions { flex-direction:column; align-items:stretch; }
  .contact-actions .btn { width:100%; }
}
