:root{
  --bg:#071018;
  --bg-2:#0b1620;
  --panel:#101d28;
  --panel-2:#132330;
  --line:rgba(255,255,255,0.08);
  --line-strong:rgba(255,255,255,0.15);
  --text:#edf2f7;
  --muted:#a6b3bf;
  --soft:#c9d4dd;
  --accent:#9eb5c7;
  --white:#ffffff;
  --shadow:0 24px 70px rgba(0,0,0,0.35);
  --radius:24px;
  --container:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(158,181,199,0.10), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.05), transparent 18%),
    linear-gradient(180deg, #071018 0%, #09131c 100%);
  line-height:1.6;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.bg-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  z-index:-1;
  opacity:.28;
}

.orb-1{
  width:320px;
  height:320px;
  background:#294a63;
  top:-90px;
  left:-110px;
}

.orb-2{
  width:260px;
  height:260px;
  background:#1c3345;
  bottom:40px;
  right:-80px;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(7,16,24,0.78);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:46px;
  height:46px;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-title{
  font-size:15px;
  font-weight:800;
  letter-spacing:.18em;
}

.brand-sub{
  font-size:11px;
  text-transform:uppercase;
  color:var(--muted);
  letter-spacing:.14em;
  margin-top:4px;
}

.main-nav{
  display:flex;
  gap:28px;
}

.main-nav a{
  color:var(--soft);
  font-size:15px;
  transition:.2s ease;
}

.main-nav a:hover{
  color:var(--white);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  font-weight:600;
  transition:.2s ease;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--white);
  color:#08121a;
  box-shadow:0 10px 25px rgba(255,255,255,0.08);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  border-color:var(--line-strong);
  color:var(--white);
  background:transparent;
}

.btn-secondary:hover,
.btn-outline:hover{
  background:rgba(255,255,255,0.04);
  border-color:rgba(255,255,255,0.24);
}

.btn-outline{
  border-color:var(--line-strong);
  color:var(--white);
  background:transparent;
}

.btn-full{
  width:100%;
}

.hero{
  padding:78px 0 50px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:36px;
  align-items:stretch;
}

.section-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--accent);
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.section-tag::before{
  content:"";
  width:30px;
  height:1px;
  background:var(--accent);
}

.hero h1{
  font-size:clamp(2.4rem, 5vw, 4.8rem);
  line-height:1.04;
  letter-spacing:-.04em;
  margin:18px 0 18px;
  max-width:12ch;
}

.hero-text{
  max-width:60ch;
  color:var(--soft);
  font-size:1.05rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0;
}

.hero-badges{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.hero-badges span{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.025);
  border-radius:16px;
  padding:15px 16px;
  color:var(--soft);
  font-size:.95rem;
}

.hero-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero-card::after{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  right:-50px;
  bottom:-50px;
  background:radial-gradient(circle, rgba(158,181,199,0.18), transparent 65%);
  border-radius:50%;
}

.status-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
}

.status-pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  font-size:13px;
  font-weight:600;
}

.status-note{
  color:var(--muted);
  font-size:14px;
}

.case-list{
  display:grid;
  gap:16px;
}

.case-item{
  border:1px solid rgba(255,255,255,0.07);
  background:rgba(255,255,255,0.03);
  border-radius:16px;
  padding:16px 18px;
}

.case-label{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-bottom:6px;
}

.trace-visual{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:24px 0 18px;
}

.trace-visual span{
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(158,181,199,0.15), rgba(158,181,199,0.92), rgba(255,255,255,0.18));
}

.card-footnote{
  margin:0;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:var(--soft);
  font-size:14px;
}

.trust-band{
  padding:0 0 24px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.trust-box{
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  background:rgba(255,255,255,0.025);
}

.trust-box small{
  display:block;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.13em;
  margin-bottom:7px;
  font-size:11px;
}

.trust-box strong{
  font-size:1rem;
}

.section{
  padding:92px 0;
}

.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top:1px solid rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.04);
}

.section-soft{
  background:rgba(255,255,255,0.015);
}

.section-head{
  max-width:760px;
  margin-bottom:34px;
}

.section-head.narrow{
  max-width:640px;
}

.section-head h2,
.split-grid h2,
.contact-copy h2{
  font-size:clamp(1.9rem, 3vw, 3.1rem);
  line-height:1.12;
  letter-spacing:-.03em;
  margin:16px 0 14px;
}

.section-head p,
.split-grid p,
.contact-copy p{
  color:var(--soft);
}

.cards{
  display:grid;
  gap:22px;
}

.cards.three{
  grid-template-columns:repeat(3,1fr);
}

.cards.four{
  grid-template-columns:repeat(4,1fr);
}

.info-card,
.mini-card{
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  padding:26px;
  box-shadow:var(--shadow);
}

.card-number{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.05);
  font-weight:700;
  margin-bottom:18px;
}

.info-card h3,
.mini-card h3,
.method-box h3,
.timeline-content h3{
  margin:0 0 10px;
  font-size:1.08rem;
}

.info-card p,
.mini-card p,
.method-box p,
.timeline-content p{
  margin:0;
  color:var(--soft);
}

.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:start;
}

.method-boxes{
  display:grid;
  gap:16px;
}

.method-box{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,0.025);
  padding:20px 22px;
}

.timeline{
  display:grid;
  gap:18px;
}

.timeline-row{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:20px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,0.025);
}

.timeline-index{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.05);
  font-weight:800;
}

.faq-wrap{
  display:grid;
  gap:14px;
}

.faq-wrap details{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,0.025);
  padding:18px 20px;
}

.faq-wrap summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
}

.faq-wrap summary::-webkit-details-marker{
  display:none;
}

.faq-wrap p{
  color:var(--soft);
  margin:14px 0 4px;
}

.contact-section{
  padding-bottom:104px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:start;
}

.contact-meta{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.meta-box{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,0.025);
  padding:18px 20px;
}

.meta-box small{
  display:block;
  color:var(--muted);
  margin-bottom:6px;
  font-size:13px;
}

.contact-form{
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding:26px;
  box-shadow:var(--shadow);
}

.form-group{
  display:grid;
  gap:8px;
  margin-bottom:16px;
}

.form-group label{
  color:var(--soft);
  font-size:14px;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.03);
  color:var(--white);
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  outline:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:#7d8c98;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.05);
}

.site-footer{
  border-top:1px solid rgba(255,255,255,0.06);
  background:rgba(0,0,0,0.10);
  padding-top:42px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:24px;
}

.footer-logo{
  font-size:14px;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:10px;
}

.footer-text{
  color:var(--muted);
  max-width:34ch;
}

.site-footer h4{
  margin:0 0 12px;
  font-size:14px;
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.site-footer li,
.site-footer a{
  color:var(--muted);
}

.site-footer a:hover{
  color:var(--white);
}

.footer-bottom{
  margin-top:22px;
  padding:24px 0 30px;
  border-top:1px solid rgba(255,255,255,0.05);
}

.footer-bottom p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

@media (max-width:1080px){
  .main-nav{
    display:none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .cards.three,
  .cards.four,
  .trust-grid,
  .hero-badges{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .container{
    width:min(var(--container), calc(100% - 26px));
  }

  .nav-wrap{
    min-height:76px;
  }

  .btn-outline{
    display:none;
  }

  .hero{
    padding:48px 0 34px;
  }

  .section{
    padding:68px 0;
  }

  .hero-card,
  .info-card,
  .mini-card,
  .contact-form,
  .timeline-row{
    padding:20px;
  }

  .timeline-row{
    grid-template-columns:1fr;
  }
}