
:root{
  --navy:#041529;
  --navy2:#071f3d;
  --navy3:#0b3765;
  --gold:#d2a13a;
  --gold2:#f0c65d;
  --cream:#f5f1e8;
  --paper:#fffdfa;
  --ink:#10233c;
  --muted:#5e6977;
  --green:#155a31;
  --blue:#0d4f94;
  --purple:#432079;
  --line:#d7d0c5;
  --shadow:0 12px 28px rgba(0,0,0,.16);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#071624;
  color:#fff;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}

.site{
  min-height:100vh;
  background:
    linear-gradient(180deg,#020b14 0,#061526 18%,#071624 100%);
}

.header{
  background:linear-gradient(180deg,#020a13,#061526);
  border-bottom:1px solid var(--gold);
}
.header-inner{
  max-width:1480px;
  margin:auto;
  padding:14px 26px 10px;
  display:grid;
  grid-template-columns:150px 1fr 310px;
  align-items:start;
  gap:20px;
}
.seal img{
  width:167px;
  height:167px;
  object-fit:contain;
  display:block;
}
.brand h1{
  margin:0;
  font:700 clamp(38px,4vw,65px)/1 Georgia,"Times New Roman",serif;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.brand .sub{
  margin-top:4px;
  color:var(--gold2);
  font:700 clamp(17px,1.8vw,26px)/1.2 Georgia,"Times New Roman",serif;
}
.topnav{
  margin-top:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  font:700 18px Georgia,"Times New Roman",serif;
}
.topnav a{
  color:#f4f1ea;
  padding-bottom:6px;
}
.topnav a:hover{color:var(--gold2)}
.topnav .active{border-bottom:2px solid var(--gold)}
.modebar{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:26px;
  font:700 clamp(17px,1.7vw,25px) Georgia,"Times New Roman",serif;
  color:#f6f2e9;
}
.modebar span.sep{color:var(--gold);font-size:18px}
.modebar .icon{color:var(--gold2);margin-right:8px}

.backtoec{
 
  display:block;
  margin-right:150px;
}
.backtoec img{
  width:167px;
  max-width:167px;
  height:167px;

  opacity:.95;
}

.wrap{
  max-width:1480px;
  margin:auto;
  padding:16px 28px 24px;
}

.ask-panel{
  border:1px solid #71829b;
  border-radius:18px;
  overflow:hidden;
  background:
    radial-gradient(circle at 78% 45%,rgba(0,159,255,.15),transparent 30%),
    linear-gradient(135deg,#061a31,#082b51);
  display:grid;
  grid-template-columns:minmax(0,1fr) 430px;
  min-height:168px;
  box-shadow:var(--shadow);
}
.ask-left{
  padding:18px 18px 14px 42px;
}
.ask-left h2{
  margin:0 0 12px;
  font:700 clamp(26px,2.5vw,36px) Georgia,"Times New Roman",serif;
}
.ask-line{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
}
.ask-line input{
  height:56px;
  width:100%;
  border-radius:10px;
  border:1px solid #c8c8c8;
  padding:0 16px;
  font-size:20px;
  color:#333;
  background:#fff;
}
.ask-line button{
  min-width:230px;
  border:0;
  border-radius:10px;
  color:#071624;
  background:linear-gradient(180deg,#f4c553,#dca332);
  font-weight:900;
  font-size:21px;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(0,0,0,.22);
}
.ask-line button:hover{filter:brightness(1.06)}
.ask-badges{
  display:flex;
  gap:38px;
  margin-top:14px;
  color:#f5f5f5;
  font-size:16px;
}
.ask-badges span:before{
  content:"✓";
  color:var(--gold2);
  border:2px solid var(--gold2);
  width:18px;
  height:18px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  font-size:12px;
  margin-right:8px;
}
.ask-art{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 48%,rgba(32,157,255,.26),transparent 30%),
    radial-gradient(circle at 25% 40%,rgba(0,118,196,.13),transparent 18%);
}
.ask-art:before,
.ask-art:after{
  content:"";
  position:absolute;
  inset:18px;
  background:
    radial-gradient(circle at 18% 35%,#2bbcff 0 3px,transparent 4px),
    radial-gradient(circle at 38% 62%,#2bbcff 0 3px,transparent 4px),
    radial-gradient(circle at 68% 25%,#2bbcff 0 3px,transparent 4px),
    radial-gradient(circle at 84% 60%,#2bbcff 0 3px,transparent 4px),
    linear-gradient(18deg,transparent 48%,rgba(43,188,255,.35) 49% 50%,transparent 51%),
    linear-gradient(-28deg,transparent 48%,rgba(43,188,255,.28) 49% 50%,transparent 51%);
  opacity:.65;
}
.ask-art img{
  position:relative;
  z-index:2;
  height:162px;
  width:auto;
  object-fit:contain;
  object-position:center bottom;
}

.cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.card{
  background:var(--paper);
  color:var(--ink);
  border:2px solid var(--gold);
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow);
  min-width:0;
}
.card-media{
  height:245px;
  background:#0a1f37;
  overflow:hidden;
  display:grid;
  place-items:center;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.card.method .card-media img{object-fit:contain;background:#efe2ca;padding:7px}
.card.atlas .card-media img{object-fit:cover}
.card-body{
  padding:12px 22px 16px;
  text-align:center;
  display:flex;
  flex-direction:column;
  flex:1;
}
.card-title{
  margin:0;
  font:700 clamp(24px,2vw,31px)/1.05 Georgia,"Times New Roman",serif;
  color:#12294a;
  text-transform:uppercase;
}
.card-sub{
  margin-top:3px;
  font:700 18px Georgia,"Times New Roman",serif;
}
.card-sub.gold{color:#a87516}
.card-sub.green{color:#173f2a}
.card-body p{
  margin:14px auto 14px;
  max-width:320px;
  min-height:62px;
  line-height:1.35;
  font-size:16px;
}
.card-btn{
  margin-top:auto;
  border-radius:8px;
  padding:10px 12px;
  font:700 17px Georgia,"Times New Roman",serif;
  color:white;
  box-shadow:0 5px 11px rgba(0,0,0,.15);
}
.card.bot .card-btn{background:linear-gradient(180deg,#114b8c,#092c62)}
.card.method .card-btn{background:linear-gradient(180deg,#c79224,#8e5d0d)}
.card.atlas .card-btn{background:linear-gradient(180deg,#1d6f3d,#0c4424)}
.card.calc .card-btn{background:linear-gradient(180deg,#5a2f94,#33166c)}
.card-btn:hover{filter:brightness(1.07)}

.calc-media{
  position:relative;
  height:245px;
  background:
    radial-gradient(circle at 80% 22%,rgba(210,161,58,.18),transparent 25%),
    linear-gradient(135deg,#171514,#28211b 45%,#111);
  display:flex;
  justify-content:center;
  align-items:center;
}
.tablet{
  width:210px;
  border-radius:16px;
  padding:11px;
  background:#20272d;
  transform:rotate(-3deg);
  box-shadow:10px 14px 24px rgba(0,0,0,.35);
}
.screen{
  background:white;
  color:#1a2230;
  border-radius:10px;
  padding:12px;
}
.screen h4{
  margin:0 0 10px;
  text-align:center;
  font-size:13px;
}
.screen .r{
  display:flex;
  justify-content:space-between;
  padding:5px 0;
  font-size:11px;
  border-bottom:1px solid #e7e7e7;
}
.screen .amt{
  margin-top:12px;
  color:#4b2a8c;
  font-size:24px;
  font-weight:900;
  text-align:center;
}

.trust{
  margin-top:12px;
  border:1px solid #6f8197;
  border-radius:14px;
  overflow:hidden;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#06192e;
}
.trust-item{
  padding:12px 18px;
  display:grid;
  grid-template-columns:46px 1fr;
  gap:10px;
  align-items:start;
}
.trust-item + .trust-item{border-left:1px solid #7b8593}
.trust-icon{
  color:var(--gold2);
  font-size:28px;
  text-align:center;
}
.trust-item strong{
  display:block;
  font:700 17px Georgia,"Times New Roman",serif;
  margin-bottom:3px;
}
.trust-item span{
  color:#f0f0f0;
  font-size:13px;
  line-height:1.35;
}

.footer{
  border-top:1px solid #36465a;
  background:#041529;
}
.footer-inner{
  max-width:1480px;
  margin:auto;
  padding:14px 30px 16px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:18px;
  align-items:center;
}
.footer-block{
  display:flex;
  align-items:center;
  gap:12px;
}
.script-logo{
  font:italic 40px Georgia,"Times New Roman",serif;
  color:var(--gold2);
}
.footer-title{
  font:700 21px Georgia,"Times New Roman",serif;
  text-transform:uppercase;
}
.footer-sub{
  color:var(--gold2);
  font-size:13px;
  margin-top:3px;
}
.footer-center{
  justify-content:center;
}
.footer-center .temple{
  color:var(--gold2);
  font-size:40px;
}
.footer-right{
  justify-content:flex-end;
  color:var(--gold2);
  font-size:17px;
  text-align:right;
}

@media(max-width:1180px){
  .header-inner{grid-template-columns:110px 1fr 220px}
  .seal img{width:167px;height:167px}
  .backtoec img{height:167px}
  .cards{grid-template-columns:1fr 1fr}
  .card-media,.calc-media{height:270px}
}
@media(max-width:820px){
  .header-inner{grid-template-columns:90px 1fr}
  .backtoec{display:none}
  .topnav{justify-content:flex-start;flex-wrap:wrap}
  .modebar{flex-wrap:wrap}
  .ask-panel{grid-template-columns:1fr}
  .ask-art{min-height:145px}
  .ask-line{grid-template-columns:1fr}
  .ask-line button{min-height:54px}
  .ask-badges{flex-wrap:wrap;gap:14px 24px}
  .cards{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .footer-center,.footer-right{justify-content:flex-start;text-align:left}
  .trust{grid-template-columns:1fr 1fr}
  .trust-item:nth-child(3){border-left:0;border-top:1px solid #7b8593}
  .trust-item:nth-child(4){border-top:1px solid #7b8593}
}
@media(max-width:520px){
  .header-inner{grid-template-columns:1fr;text-align:center}
  .seal{display:flex;justify-content:center}
  .topnav,.modebar{justify-content:center}
  .ask-left{padding:18px}
  .ask-badges{font-size:14px}
  .trust{grid-template-columns:1fr}
  .trust-item + .trust-item{border-left:0;border-top:1px solid #7b8593}
  .wrap{padding:12px}
}
