:root{
  --bg:#f7f8fb;
  --surface:#ffffff;
  --text:#101114;
  --muted:#656a73;
  --line:#e7e9ee;
  --accent:#6b5cff;
  --accent-2:#8e82ff;
  --dark:#0f1117;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,input,textarea{
  font:inherit;
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.section{
  position:relative;
  padding:112px 0;
}

.section-muted{
  background:#f0f2f6;
}

.section-dark{
  background:var(--dark);
  color:white;
}

.nav-wrap{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background:rgba(247,248,251,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(16,17,20,.06);
}

.nav{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  font-family:"Manrope",sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:.04em;
}

.brand span{
  color:var(--accent);
  margin-left:4px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:600;
}

.nav-links a:not(.btn){
  color:#454952;
}

.nav-links a:hover:not(.btn){
  color:var(--text);
}

.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  width:34px;
  height:34px;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:12px;
  background:var(--accent);
  color:white;
  font-weight:700;
  border:1px solid var(--accent);
  transition:.2s ease;
  box-shadow:0 10px 30px rgba(107,92,255,.18);
}

.btn:hover{
  transform:translateY(-2px);
  background:#5c4ef0;
}

.btn-small{
  min-height:42px;
  padding:0 16px;
  border-radius:10px;
}

.btn-ghost{
  background:transparent;
  color:var(--text);
  border-color:#cfd3dc;
  box-shadow:none;
}

.btn-ghost:hover{
  background:white;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:150px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:72px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  color:var(--accent);
  margin-bottom:20px;
}

.eyebrow-light{
  color:#bcb5ff;
}

h1,h2,h3,h4{
  font-family:"Manrope",sans-serif;
  line-height:1.1;
}

h1{
  font-size:clamp(50px,7vw,82px);
  letter-spacing:-.055em;
  max-width:820px;
}

h1 span{
  color:var(--accent);
}

.hero-copy>p{
  margin-top:26px;
  color:var(--muted);
  font-size:18px;
  max-width:670px;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:34px;
  flex-wrap:wrap;
}

.hero-proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:48px;
  padding-top:28px;
  border-top:1px solid var(--line);
}

.hero-proof div{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.hero-proof strong{
  font-size:14px;
}

.hero-proof span{
  color:var(--muted);
  font-size:12px;
}

.hero-card{
  position:relative;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.95);
  box-shadow:0 28px 80px rgba(28,26,68,.14);
  border-radius:28px;
  padding:28px;
  backdrop-filter:blur(20px);
}

.card-top{
  display:flex;
  align-items:center;
  gap:9px;
  font-weight:700;
}

.status-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#23c483;
  box-shadow:0 0 0 5px rgba(35,196,131,.13);
}

.mini-chart{
  height:230px;
  margin:30px 0 22px;
  display:flex;
  align-items:flex-end;
  gap:12px;
  padding:26px 14px 8px;
  background:linear-gradient(180deg,#f7f6ff 0%,#efedff 100%);
  border-radius:20px;
}

.bar{
  flex:1;
  border-radius:8px 8px 4px 4px;
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
  opacity:.88;
}

.b1{height:28%}
.b2{height:42%}
.b3{height:39%}
.b4{height:57%}
.b5{height:73%}
.b6{height:91%}

.metric-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.metric{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}

.metric small{
  display:block;
  color:var(--muted);
  margin-bottom:4px;
}

.strategy-list{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.strategy-list span{
  font-size:12px;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
  background:#f2f3f6;
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(20px);
  pointer-events:none;
}

.orb-one{
  width:430px;
  height:430px;
  background:rgba(107,92,255,.11);
  top:130px;
  right:-100px;
}

.orb-two{
  width:300px;
  height:300px;
  background:rgba(65,170,255,.09);
  bottom:20px;
  left:-100px;
}

.section-heading{
  max-width:760px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.statement h2{
  font-size:clamp(36px,5vw,58px);
  letter-spacing:-.04em;
}

.section-heading p{
  margin-top:20px;
  color:var(--muted);
  font-size:17px;
  max-width:700px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:54px;
}

.service-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:30px;
  min-height:240px;
  transition:.25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 60px rgba(16,17,20,.07);
}

.service-number{
  font-size:12px;
  font-weight:800;
  color:var(--accent);
  margin-bottom:38px;
}

.service-card h3{
  font-size:26px;
  margin-bottom:12px;
}

.service-card p{
  color:var(--muted);
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.about-copy p{
  color:var(--muted);
  margin-top:20px;
  font-size:16px;
}

.about-panel{
  background:#11131a;
  color:white;
  border-radius:26px;
  padding:14px 28px;
}

.about-item{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:18px;
  padding:26px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.about-item:last-child{
  border-bottom:none;
}

.about-item>span{
  color:#bcb5ff;
  font-weight:800;
}

.about-item h4{
  font-size:18px;
  margin-bottom:6px;
}

.about-item p{
  color:#b9bdc8;
  font-size:14px;
}

.statement{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:end;
}

.statement p{
  color:#bfc3cd;
  font-size:18px;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:start;
}

.contact-copy>p{
  color:var(--muted);
  margin-top:20px;
  max-width:540px;
}

.contact-details{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:34px;
}

.contact-details a{
  background:white;
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px 18px;
  font-weight:600;
  overflow-wrap:anywhere;
}

.contact-details small{
  display:block;
  color:var(--muted);
  font-weight:600;
  margin-bottom:3px;
}

.contact-form{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:0 24px 70px rgba(20,22,28,.06);
}

.contact-form label{
  display:block;
  font-size:13px;
  font-weight:700;
  margin-bottom:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:8px;
  border:1px solid #d9dde5;
  background:#fafbfc;
  border-radius:12px;
  padding:14px 15px;
  outline:none;
  transition:.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(107,92,255,.1);
}

.contact-form textarea{
  resize:vertical;
}

.form-btn{
  width:100%;
  border:0;
  cursor:pointer;
  margin-top:4px;
}

.form-note{
  text-align:center;
  color:var(--muted);
  font-size:12px;
  margin-top:11px;
}

footer{
  border-top:1px solid var(--line);
  background:white;
}

.footer-inner{
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
  font-size:13px;
}

.footer-inner .brand{
  color:var(--text);
}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

.delay-1{
  transition-delay:.1s;
}

.delay-2{
  transition-delay:.2s;
}

@media (max-width: 900px){
  .hero-grid,
  .about-grid,
  .statement,
  .contact-grid{
    grid-template-columns:1fr;
    gap:48px;
  }

  .hero{
    min-height:auto;
    padding-top:140px;
  }

  .hero-card{
    max-width:650px;
  }

  .statement{
    align-items:start;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .hero-proof{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .section{
    padding:84px 0;
  }

  .container{
    width:min(100% - 28px,1120px);
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:74px;
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:white;
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    box-shadow:0 20px 50px rgba(20,22,28,.12);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    padding:11px;
  }

  h1{
    font-size:48px;
  }

  .hero-proof{
    margin-top:38px;
  }

  .metric-row{
    grid-template-columns:1fr;
  }

  .footer-inner{
    padding:28px 0;
    flex-direction:column;
    align-items:flex-start;
  }
}
