:root{
  --navy-950:#08111c;
  --navy-900:#0d1c2e;
  --navy-850:#13263d;
  --navy-800:#18314e;
  --navy-700:#244b73;
  --gold:#d7b15a;
  --gold-2:#f0d893;
  --text:#183047;
  --muted:#5e7285;
  --line:rgba(12,31,52,.08);
  --shadow:0 18px 40px rgba(10,24,40,.10);
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fbfcfd 0%,#f2f6fa 100%);
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(var(--max),92%);margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(8,17,28,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.08em;
  color:#fff;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(215,177,90,.24), rgba(215,177,90,.08));
  border:1px solid rgba(215,177,90,.30);
  color:var(--gold-2);
  font-size:1.05rem;
}
.brand-text{font-size:1.2rem}
.brand-text span{color:var(--gold)}
.menu-toggle{display:none}
.nav-links{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-links a{
  color:#e9f0f8;
  font-weight:700;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.nav-links a:hover,
.nav-links a.active{
  background:linear-gradient(180deg,var(--gold),#c99837);
  color:#102338;
  border-color:transparent;
}

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(215,177,90,.12), transparent 20%),
    radial-gradient(circle at 12% 16%, rgba(255,255,255,.06), transparent 18%),
    linear-gradient(135deg,#08111c 0%,#11243b 55%,#1b3a5b 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:38px;
  align-items:center;
  padding:92px 0 88px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  margin-bottom:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:var(--gold-2);
  font-weight:700;
  font-size:.95rem;
}
.hero h1{
  margin:0 0 18px;
  font-size:clamp(3rem,5vw,5.2rem);
  line-height:1.02;
  max-width:760px;
}
.hero p{
  margin:0 0 28px;
  max-width:720px;
  color:#d5e0eb;
  font-size:1.12rem;
  line-height:1.8;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  min-height:54px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  font-weight:800;
  transition:.2s ease;
}
.btn-primary{
  background:linear-gradient(180deg,var(--gold),#c99837);
  color:#102338;
  box-shadow:0 14px 28px rgba(0,0,0,.22);
}
.btn-secondary{
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}
.btn:hover{transform:translateY(-2px)}

.hero-panel{
  position:relative;
  min-height:580px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(135deg, rgba(8,17,28,.18), rgba(8,17,28,.72));
  box-shadow:0 28px 50px rgba(3,9,18,.26);
}
.hero-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('assets/logo-miro.jpg') center/80% no-repeat;
  opacity:.34;
}
.hero-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(8,17,28,.14)),
    radial-gradient(circle at 76% 78%, rgba(215,177,90,.22), transparent 18%);
}
.hero-card{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  z-index:2;
  border-radius:24px;
  padding:24px;
  background:rgba(8,17,28,.58);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
}
.hero-card h3{
  margin:0 0 12px;
  color:var(--gold-2);
  font-size:1.35rem;
}
.hero-card p{
  margin:0;
  color:#d8e3ee;
  font-size:1rem;
  line-height:1.7;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:34px;
}
.feature-link{
  display:block;
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:22px;
  color:#fff;
  transition:.2s ease;
}
.feature-link:hover{
  transform:translateY(-2px);
  border-color:rgba(215,177,90,.26);
}
.feature-link h3{
  margin:0 0 10px;
  color:var(--gold-2);
  font-size:1.8rem;
}
.feature-link p{
  margin:0;
  color:#d8e3ee;
  line-height:1.7;
  font-size:1rem;
}

.section{padding:78px 0}
.section-tight{padding:56px 0}
.section-soft{background:linear-gradient(180deg,#f3f7fb 0%,#fafbfd 100%)}
.section-dark{
  color:#fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(215,177,90,.10), transparent 18%),
    linear-gradient(135deg,#0b1726 0%,#11243b 60%,#18314e 100%);
}
.section-head{
  max-width:860px;
  margin-bottom:30px;
}
.section-head h2{
  margin:0 0 12px;
  font-size:2.35rem;
  line-height:1.1;
}
.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}
.section-dark .section-head p{color:#d8e3ee}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card{
  background:#fff;
  border-radius:28px;
  padding:28px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.card h3{
  margin:0 0 12px;
  font-size:1.35rem;
}
.card p,.card li{
  color:var(--muted);
  line-height:1.8;
}
.icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(215,177,90,.18), rgba(215,177,90,.08));
  border:1px solid rgba(215,177,90,.24);
  color:#946c18;
  font-weight:900;
  margin-bottom:16px;
}
.service-card{
  display:flex;
  flex-direction:column;
  height:100%;
}
.service-card .link{
  margin-top:auto;
  color:#17375a;
  font-weight:800;
}
.service-card .link span{color:#8d6920}

.showcase{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:24px;
  align-items:stretch;
}
.panel-brand,.panel-robot{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:500px;
}
.panel-brand{
  background:linear-gradient(135deg, rgba(8,17,28,.96), rgba(17,36,59,.84));
  color:#fff;
}
.panel-brand::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('assets/logo-miro.jpg') center/72% no-repeat;
  opacity:.14;
}
.panel-brand .inner,.panel-robot .inner{
  position:relative;
  z-index:2;
  padding:42px;
}
.panel-brand h3,.panel-robot h3{
  margin:0 0 14px;
  font-size:2rem;
}
.panel-brand p,.panel-robot p{
  margin:0;
  color:#d8e3ee;
  line-height:1.8;
}
.feature-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:22px;
}
.point{
  border-radius:20px;
  padding:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.point strong{
  display:block;
  color:var(--gold-2);
  margin-bottom:8px;
}
.point span{
  color:#d8e3ee;
  line-height:1.7;
}
.panel-robot{
  background:linear-gradient(135deg, rgba(8,17,28,.98), rgba(24,49,78,.88));
  color:#fff;
}
.panel-robot::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('assets/robot-miro.jpg') center/cover no-repeat;
  opacity:.28;
}
.panel-robot::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(8,17,28,.10), rgba(8,17,28,.78)),
    url('assets/logo-miro.jpg') center/44% no-repeat;
  opacity:.18;
}
.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.tag{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(215,177,90,.14);
  border:1px solid rgba(215,177,90,.22);
  color:var(--gold-2);
  font-size:.9rem;
  font-weight:700;
}

.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.step{
  background:#fff;
  border-radius:24px;
  padding:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.step-number{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#fff;
  background:linear-gradient(180deg,var(--gold),#c99837);
  margin-bottom:16px;
}
.step h3{margin:0 0 10px}
.step p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.cta{
  border-radius:34px;
  padding:40px;
  background:
    radial-gradient(circle at 85% 18%, rgba(215,177,90,.16), transparent 18%),
    linear-gradient(135deg,#0b1726 0%,#15304d 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
}
.cta h2{
  margin:0 0 12px;
  font-size:2.2rem;
}
.cta p{
  margin:0 0 22px;
  color:#d8e3ee;
  line-height:1.8;
  max-width:820px;
}

.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.contact-list{
  list-style:none;
  padding:0;
  margin:0;
}
.contact-list li{
  padding:14px 0;
  border-bottom:1px solid rgba(12,31,52,.08);
  line-height:1.7;
}
.highlight{
  margin-top:18px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(215,177,90,.12);
  border-left:4px solid var(--gold);
  color:#2d435a;
  line-height:1.7;
}

.footer{
  background:#08111c;
  color:#d8e3ee;
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.footer a{color:var(--gold-2)}

@media (max-width:980px){
  .menu-toggle{
    display:grid;
    place-items:center;
    width:46px;
    height:46px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:1.25rem;
  }
  .nav-links{
    position:absolute;
    right:0;
    top:72px;
    width:240px;
    display:none;
    flex-direction:column;
    gap:8px;
    background:rgba(8,17,28,.98);
    border:1px solid rgba(255,255,255,.08);
    padding:12px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
  }
  .nav-links.open{display:flex}
  .nav-links a{
    width:100%;
    text-align:center;
    padding:11px 14px;
  }
  .hero-grid,.showcase,.grid-3,.grid-2,.contact-box,.process,.stats{
    grid-template-columns:1fr;
  }
  .feature-points{grid-template-columns:1fr}
  .hero-grid{padding:58px 0}
  .hero h1{font-size:2rem;line-height:1.12}
  .hero p{text-align:left;font-size:1rem}
  .hero-panel,.panel-brand,.panel-robot{min-height:360px}
  .hero-card,.panel-brand .inner,.panel-robot .inner,.cta{padding:24px}
  .section{padding:56px 0}
  .section-head h2,.cta h2{font-size:1.8rem}
}
@media (max-width:560px){
  .brand-text{font-size:1rem}
  .hero h1{font-size:1.75rem}
  .btn{width:100%}
  .hero-actions{flex-direction:column}
  .menu-toggle{width:42px;height:42px}
  .nav-links{width:210px;top:68px}
}