:root{
  --panel:rgba(255,255,255,0.9);
  --panel-strong:#ffffff;
  --card:#f8fbfd;
}
*{box-sizing:border-box;margin:0;padding:0}
a{color:inherit;text-decoration:none}
.page{
  position:relative;
  overflow:hidden;
}
.page::before,
.page::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(18px);
  opacity:.45;
  pointer-events:none;
}
.page::before{
  width:280px;
  height:280px;
  background:rgba(13,167,160,0.12);
  top:80px;
  right:-80px;
}
.page::after{
  width:220px;
  height:220px;
  background:rgba(245,182,61,0.14);
  left:-70px;
  top:520px;
}
.shell{
  width:calc(100% - 32px);
  margin:0 auto;
}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  letter-spacing:.04em;
}
.brand-logo{
  width:120px;
  max-width:36vw;
  height:auto;
  display:block;
}
.brand small{
  display:block;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.nav{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--ink);
  font-size:14px;
}
.nav a{
  opacity:1;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid rgba(16,52,78,0.14);
  background:rgba(255,255,255,0.72);
  box-shadow:0 10px 24px rgba(44,85,118,0.08);
  font-weight:700;
  transition:opacity .25s ease, transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav a:hover{
  background:#ffffff;
  border-color:rgba(13,167,160,0.35);
  box-shadow:0 14px 28px rgba(44,85,118,0.12);
  transform:translateY(-1px);
}
.nav a.nav-project{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color:transparent;
  color:#fff;
  box-shadow:0 10px 24px rgba(79,209,197,0.28);
}
.nav a.nav-project:hover{
  background:linear-gradient(135deg, #0cbdb6, #3dcee8);
  border-color:transparent;
  box-shadow:0 14px 32px rgba(79,209,197,0.38);
}
.nav-auth{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.nav-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#e53e3e;
  color:#fff;
  font-size:11px;
  font-weight:800;
  margin-left:4px;
  line-height:1;
  vertical-align:middle;
}
.nav-user{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(16,52,78,0.12);
  box-shadow:0 10px 24px rgba(44,85,118,0.08);
  font-size:13px;
  font-weight:700;
  color:var(--ink);
}
.nav-username{
  display:block;
  max-width:180px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.nav-user small{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.04em;
  text-transform:none;
}
.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  align-items:stretch;
  padding:6px 0 12px;
}
.hero-copy,
.hero-panel,
.section-card,
.metric,
.service,
.process-step,
.cta{
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-copy{
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,250,253,0.98));
  border-radius:34px;
  padding:20px;
  position:relative;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(13,167,160,0.09);
  color:#0b7e83;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11px;
  font-weight:700;
}
.hero h1{
  margin-top:14px;
  font-size:clamp(36px, 5.5vw, 64px);
  line-height:1.05;
  letter-spacing:-.04em;
  background:linear-gradient(135deg, #0f172a 0%, #1e3a5f 30%, #0d6e6a 65%, #0da7a0 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero h1 em{
  font-style:normal;
}
.lead{
  margin-top:12px;
  max-width:60ch;
  color:var(--text);
  font-size:16px;
  line-height:1.7;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  box-shadow:0 18px 36px rgba(79,209,197,0.24);
}
.btn-secondary{
  background:#eef6fb;
  color:var(--ink);
  border:1px solid rgba(16,52,78,0.08);
}
.btn:hover{
  transform:translateY(-2px);
}
.hero-strip{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin-top:12px;
}
.mini-card{
  padding:12px;
  border-radius:14px;
  background:#f3f8fc;
  border:1px solid rgba(16,52,78,0.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.mini-card strong{
  display:block;
  font-size:22px;
  margin-bottom:4px;
}
.mini-card span{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.mini-card .read-more{
  display:inline-block;
  margin-top:6px;
  font-size:12px;
  font-weight:700;
  color:var(--brand);
  cursor:pointer;
}
a.mini-card{
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease;
}
a.mini-card:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(16,52,78,0.1);
}
.hero-panel{
  background:linear-gradient(180deg, rgba(49,191,216,0.12), rgba(255,255,255,0.97));
  border-radius:34px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.showcase{
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(16,52,78,0.08);
}
.showcase-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.showcase h2{
  font-size:21px;
}
@keyframes pulse-dot{
  0%,100%{opacity:1}
  50%{opacity:.35}
}
.status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(79,209,197,0.14);
  color:var(--brand);
  font-size:12px;
  font-weight:700;
}
.status::before{
  content:'';
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--brand);
  flex-shrink:0;
  animation:pulse-dot 1.8s ease-in-out infinite;
}
.sim-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.sim-box{
  padding:12px;
  border-radius:14px;
  background:linear-gradient(180deg, #fbfdff, #f0f7fb);
  border:1px solid rgba(16,52,78,0.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.sim-box:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(44,85,118,0.10);
}
.sim-box strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#138ca2;
}
.sim-box p{
  color:var(--text);
  line-height:1.7;
  font-size:14px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.sim-box .read-more{
  display:inline-block;
  margin-top:6px;
  font-size:12px;
  font-weight:700;
  color:#138ca2;
  cursor:pointer;
}
.sim-link{
  display:block;
  margin-top:10px;
  font-size:12px;
  font-weight:700;
  color:#138ca2;
  text-decoration:none;
  letter-spacing:.05em;
  text-align:right;
}
.sim-link:hover{
  text-decoration:underline;
}
.panel-note{
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,0.82);
}
.panel-note h3{
  font-size:16px;
  margin-bottom:6px;
}
.panel-note p{
  color:var(--text);
  line-height:1.8;
}
.section{
  padding:12px 0;
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.eyebrow{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brand);
  margin-bottom:6px;
}
.section-head h2{
  font-size:28px;
  letter-spacing:-.03em;
}
.section-head p{
  max-width:56ch;
  color:var(--muted);
  line-height:1.7;
}
.metrics{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}
.metric{
  background:rgba(255,255,255,0.96);
  color:#0d2233;
  border-radius:22px;
  padding:18px;
  position:relative;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.metric::after{
  content:"";
  position:absolute;
  top:0;left:0;
  width:3px;
  height:100%;
  background:var(--brand);
}
.metric:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(44,85,118,0.10);
}
.metric-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--brand);
  margin-bottom:6px;
  display:block;
}
.metric strong{
  display:block;
  font-size:22px;
  letter-spacing:-.02em;
  color:#071a28;
  line-height:1.1;
  margin-bottom:4px;
}
.metric span:not(.metric-label){
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  color:#506273;
  line-height:1.7;
  font-size:14px;
}
.metric .read-more{
  display:inline-block;
  margin-top:6px;
  font-size:12px;
  font-weight:700;
  color:var(--brand);
  cursor:pointer;
}
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:12px;
}
.service,
.process-step,
.cta{
  border-radius:22px;
}
.service{
  background:linear-gradient(180deg, rgba(255,255,255,0.97), rgba(242,248,252,0.98));
  padding:16px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.service:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(44,85,118,0.12);
}
.service-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
  background:linear-gradient(135deg,rgba(13,167,160,0.16),rgba(49,191,216,0.12));
  color:var(--brand);
  font-size:22px;
  border:1px solid rgba(13,167,160,0.18);
}
.service h3{
  font-size:18px;
  margin-bottom:8px;
}
.service p{
  color:var(--text);
  line-height:1.8;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.service .read-more{
  display:inline-block;
  margin-top:8px;
  font-size:12px;
  font-weight:700;
  color:var(--brand);
  cursor:pointer;
}
.btn-ghost{
  background:#eef6fb;
  color:#1565a8;
  border:1px solid rgba(49,191,216,.18);
}
.btn-outline{
  background:#fff;
  color:var(--ink);
  border:1px solid rgba(16,52,78,.16);
  cursor:pointer;
}
.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.process-step{
  background:rgba(255,255,255,0.97);
  color:#10263a;
  padding:16px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.process-step:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(44,85,118,0.10);
}
.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#092134;
  color:var(--brand-2);
  font-weight:800;
  margin-bottom:10px;
}
.process-step h3{
  font-size:18px;
  margin-bottom:8px;
}
.process-step p{
  color:#53697c;
  line-height:1.8;
}
.cta{
  margin:8px 0 14px;
  background:
    linear-gradient(135deg, rgba(255,200,87,0.16), rgba(79,209,197,0.18)),
    rgba(255,255,255,0.96);
  color:#0f2435;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta h2{
  font-size:26px;
  letter-spacing:-.03em;
  margin-bottom:6px;
}
.cta p{
  max-width:60ch;
  color:#4d6376;
  line-height:1.8;
}
.notice{
  padding:12px 14px;
  border-radius:14px;
  margin:18px 0;
  font-size:14px;
  line-height:1.6;
}
.notice-success{
  background:#eaf8f0;
  border:1px solid rgba(31,122,78,.22);
  color:#1f7a4e;
}
.notice-error{
  background:#fdeef1;
  border:1px solid rgba(180,35,50,.18);
  color:#a61b2b;
}
.contact-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(10,24,38,.48);
  backdrop-filter:blur(10px);
  z-index:1200;
}
.contact-modal.is-open{
  display:flex;
}
.contact-dialog{
  width:min(720px, 100%);
  max-height:calc(100vh - 48px);
  overflow:auto;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(16,52,78,.11);
  border-radius:30px;
  box-shadow:0 32px 70px rgba(20,42,64,.24);
  padding:28px;
}
.contact-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}
.contact-head h3{
  font-size:28px;
  margin-bottom:8px;
}
.contact-head p{
  color:var(--muted);
  line-height:1.7;
}
.contact-close{
  min-width:auto;
  padding:10px 14px;
}
.contact-form{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}
.contact-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.contact-field-full{
  grid-column:1 / -1;
}
.contact-field label{
  font-size:12px;
  font-weight:700;
  color:#5a6577;
}
.contact-field input,
.contact-field textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid rgba(16,52,78,.12);
  border-radius:14px;
  font-size:14px;
  background:#fbfdff;
  font:inherit;
}
.contact-field textarea{
  min-height:150px;
  resize:vertical;
}
.contact-actions{
  grid-column:1 / -1;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer{
  padding:0 0 18px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:14px;
}
/* ── Read-more modal ── */
.readmore-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(10,24,38,.48);
  backdrop-filter:blur(10px);
  z-index:1200;
}
.readmore-modal.is-open{
  display:flex;
}
.readmore-dialog{
  width:min(560px, 100%);
  max-height:calc(100vh - 48px);
  overflow:auto;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(16,52,78,.11);
  border-radius:24px;
  box-shadow:0 32px 70px rgba(20,42,64,.24);
  padding:28px;
}
.readmore-dialog h3{
  font-size:20px;
  margin-bottom:12px;
}
.readmore-dialog p{
  color:var(--text);
  line-height:1.8;
  font-size:15px;
}
.readmore-close{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:16px;
  padding:8px 20px;
  border-radius:999px;
  border:1px solid rgba(16,52,78,0.12);
  background:#eef6fb;
  color:var(--ink);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}
.read-more:hover,
.readmore-close:hover{
  opacity:.8;
}
@media (max-width: 1040px){
  .hero,
  .services,
  .metrics,
  .process{
    grid-template-columns:1fr 1fr;
  }
  .hero{
    grid-template-columns:1fr;
  }
  .cta{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 760px){
  .shell{
    width:calc(100% - 24px);
  }
  .topbar,
  .nav,
  .section-head,
  .footer,
  .hero-actions,
  .hero-strip,
  .metrics,
  .services,
  .process,
  .sim-grid{
    grid-template-columns:1fr;
  }
  .topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:7px 0;
  }
  .section-head,
  .footer{
    display:block;
  }
  .nav{
    display:none;
  }
  .hero-copy,
  .hero-panel,
  .service,
  .process-step,
  .metric,
  .cta{
    padding:12px;
  }
  .hero h1{
    max-width:none;
  }
  .hero-strip{
    display:grid;
  }
  .metrics,
  .services,
  .process{
    display:grid;
  }
  .cta h2,
  .section-head h2{
    font-size:22px;
  }
  .contact-form{
    grid-template-columns:1fr;
  }
  .contact-dialog{
    padding:18px;
  }
}
