:root{
  --bg:#03101d;
  --bg-2:#061a2f;
  --panel:#071a2c;
  --cyan:#14b8d4;
  --blue:#1683f3;
  --white:#f7f9fc;
  --muted:#aeb9c8;
  --line:rgba(255,255,255,.11);
  --max:1320px;
}
*{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(--white);
  background:
    radial-gradient(circle at 78% 12%,rgba(22,131,243,.08),transparent 30rem),
    linear-gradient(180deg,var(--bg-2),var(--bg));
}
a{color:inherit}
.site-header{
  width:min(var(--max),calc(100% - 56px));
  margin:0 auto;
  height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:18px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.30em;
}
.brand img{width:50px;height:50px;border-radius:13px}
.nav{display:flex;gap:38px}
.nav a{
  text-decoration:none;
  font-size:1rem;
  color:#f3f7fb;
  padding:35px 0 14px;
  border-bottom:2px solid transparent;
}
.nav a:hover,.nav a[aria-current="page"]{
  color:var(--blue);
  border-bottom-color:var(--blue);
}

.hero{
  width:min(var(--max),calc(100% - 56px));
  margin:22px auto 0;
  display:grid;
  grid-template-columns:46% 54%;
  gap:28px;
  min-height:520px;
  align-items:center;
}
.hero-copy{padding:30px 0 42px}
.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size: 1.15rem;
  margin-bottom:26px;
}
.eyebrow:before{content:"";width:34px;height:2px;background:var(--cyan)}
.hero h1{
  margin:0;
  max-width:680px;
  font-size:clamp(3rem,4.5vw,5rem);
  line-height:1.08;
  letter-spacing:-.045em;
}
.hero-copy p{
  max-width:560px;
  margin:26px 0 0;
  color:var(--muted);
  font-size:1.18rem;
  line-height:1.55;
}
.hero-copy strong{
  display:block;
  margin-top:16px;
  color:white;
}
.cta{
  display:inline-flex;
  align-items:center;
  gap:15px;
  margin-top:30px;
  padding:15px 22px;
  border-radius:7px;
  text-decoration:none;
  font-weight:700;
  background:linear-gradient(135deg,#1167d8,#1589f7);
  box-shadow:0 10px 28px rgba(22,131,243,.22);
}
.hero-art{
  min-height:500px;
  border-radius:22px;
  background:
    linear-gradient(90deg,rgba(3,16,29,.35),rgba(3,16,29,.02)),
    url("assets/hero-art.jpg") center/cover no-repeat;
  box-shadow:inset 0 0 80px rgba(3,16,29,.55);
}

.value-row{
  width:min(var(--max),calc(100% - 56px));
  margin:34px auto 0;
  padding:28px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.value{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:18px;
  padding:0 34px;
  border-right:1px solid var(--line);
}
.value:first-child{padding-left:0}
.value:last-child{padding-right:0;border-right:0}
.value-icon{
  width:54px;height:54px;
  border:2px solid var(--blue);
  border-radius:16px;
  display:grid;
  place-items:center;
  color:var(--cyan);
}
.value-icon svg{width:30px;height:30px}
.value h2{margin:2px 0 7px;font-size:1.22rem}
.value p{margin:0;color:var(--muted);line-height:1.55}

.manifesto-preview{
  width:min(var(--max),calc(100% - 56px));
  margin:28px auto 60px;
  border:1px solid rgba(20,184,212,.25);
  border-radius:12px;
  background:linear-gradient(90deg,rgba(8,31,53,.82),rgba(6,20,35,.5));
  padding:28px 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.preview-left{display:flex;align-items:center;gap:22px}
.preview-icon{
  width:62px;height:62px;border-radius:50%;
  border:2px solid var(--blue);
  display:grid;place-items:center;color:var(--cyan)
}
.preview-icon svg{width:34px;height:34px}
.manifesto-preview h2{margin:0 0 6px;color:var(--cyan);font-size:1.3rem}
.manifesto-preview p{margin:0;color:var(--muted);font-size:1.05rem}
.manifesto-preview a{text-decoration:none;color:#2a8fff;font-weight:700;white-space:nowrap}

.page-main{
  width:min(820px,calc(100% - 48px));
  margin:0 auto;
  padding:70px 0 110px;
}
.page-main h1{
  margin:0 0 28px;
  font-size:clamp(2.6rem,4.8vw,4.3rem);
  line-height:1.05;
  letter-spacing:-.04em;
}
.manifesto-text{
  display:grid;
  gap:21px;
}
.manifesto-text p{
  margin:0;
  color:#e6edf5;
  font-size:1.04rem;
  line-height:1.72;
}
.manifesto-text p:first-child{
  color:#fff;
  font-size:1.18rem;
}
.simple-copy{color:var(--muted);font-size:1.16rem;line-height:1.65}
.contact-link{
  display:inline-block;
  margin-top:24px;
  color:var(--cyan);
  text-decoration:none;
  font-size:1.25rem;
  font-weight:800;
}
footer{border-top:1px solid var(--line)}
.footer-inner{
  width:min(var(--max),calc(100% - 56px));
  margin:0 auto;
  padding:28px 0 36px;
  display:flex;align-items:center;gap:13px;
}
.footer-inner img{width:42px;height:42px;border-radius:11px}
.footer-name{font-weight:800;letter-spacing:.2em}
.footer-tag{color:var(--muted);font-size:.9rem;font-style:italic}

@media(max-width:980px){
  .site-header{width:min(var(--max),calc(100% - 32px))}
  .nav{gap:18px}
  .hero{width:min(var(--max),calc(100% - 32px));grid-template-columns:1fr}
  .hero-art{min-height:420px}
  .value-row{width:min(var(--max),calc(100% - 32px));grid-template-columns:1fr}
  .value{padding:24px 0;border-right:0;border-bottom:1px solid var(--line)}
  .value:last-child{border-bottom:0}
  .manifesto-preview{width:min(var(--max),calc(100% - 32px));align-items:flex-start;flex-direction:column}
}
@media(max-width:560px){
  .brand span{display:none}
  .nav{gap:12px}
  .nav a{font-size:.82rem}
  .hero h1{font-size:3rem}
  .hero-art{min-height:330px}
  .preview-left{align-items:flex-start}
}

.manifesto-preview{display:none !important;}
