
:root{
  --bg-dark: rgb(52, 52, 51);
  --brand: rgb(25, 77, 103);
  --brand-strong: rgb(19, 61, 82);
  --text: #ffffff;
  --muted: rgba(255,255,255,.78);
  --line: rgba(255,255,255,.12);
  --glass: rgba(255,255,255,.08);
  --glass-strong: rgba(255,255,255,.12);
  --shadow: 0 20px 80px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html,body{
  margin:0;
  min-height:100%;
}
body{
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg-dark);
  color:var(--text);
}

.page-shell{
  min-height:100vh;
}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  isolation:isolate;
  background:var(--bg-dark);
}

.hero-media{
  position:absolute;
  inset:0;
  background:url("../assets/hero-bg.png") center center / cover no-repeat;
  transform:scale(1.03);
  filter:saturate(1.03) contrast(1.02);
}

.hero-gradient{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 24%, rgba(25,77,103,.26), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(25,77,103,.24), transparent 30%),
    linear-gradient(180deg, rgba(52,52,51,.14) 0%, rgba(52,52,51,.34) 100%);
}

.grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.18), transparent 85%);
  pointer-events:none;
}

.topbar{
  position:relative;
  z-index:2;
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
  padding:22px 0 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
}

.brand-logo{
  width:88px;
  height:88px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 14px 40px rgba(0,0,0,.22);
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand-text strong{
  font-size:28px;
  letter-spacing:.04em;
}
.brand-text small{
  margin-top:6px;
  color:var(--muted);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.top-actions{
  display:flex;
  align-items:center;
}
.mini-link{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  padding:12px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.05);
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(1280px, calc(100% - 40px));
  min-height:calc(100vh - 112px);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, .8fr);
  align-items:center;
  gap:36px;
  padding:28px 0 56px;
}

.copy{
  max-width:840px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:10px 16px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
}

h1{
  margin:20px 0 8px;
  font-size:clamp(48px, 7vw, 96px);
  line-height:.95;
  letter-spacing:-.04em;
  font-weight:900;
  text-shadow:0 10px 30px rgba(0,0,0,.22);
}

h2{
  margin:0;
  font-size:clamp(26px, 2.8vw, 42px);
  line-height:1.1;
  font-weight:700;
  color:#fff;
  text-shadow:0 8px 24px rgba(0,0,0,.18);
}

.subtitle{
  margin:14px 0 0;
  font-size:clamp(22px, 2.1vw, 32px);
  line-height:1.2;
  color:#f2f4f5;
  font-weight:500;
}

.lead{
  margin:22px 0 0;
  max-width:900px;
  font-size:clamp(18px, 1.5vw, 24px);
  line-height:1.6;
  color:var(--muted);
  text-wrap:balance;
}

.cta-row{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:58px;
  padding:0 26px;
  border-radius:16px;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
  box-shadow:var(--shadow);
}

.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}

.btn-primary{
  background:rgb(192, 76, 109);
  color:#fff;
}

.btn-secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(12px);
}

.glass-panel{
  justify-self:end;
  width:min(100%, 420px);
  padding:24px 24px 26px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}

.panel-badge{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(192, 76, 109);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.feature-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.feature-list li{
  position:relative;
  padding:14px 14px 14px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:16px;
  font-weight:600;
}

.feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:12px;
  bottom:12px;
  width:4px;
  border-radius:999px;
  background:rgb(192, 76, 109);;
}

@media (max-width: 1100px){
  .hero-content{
    grid-template-columns:1fr;
    gap:24px;
    padding-top:18px;
  }
  .glass-panel{
    justify-self:start;
    width:min(100%, 560px);
  }
}

@media (max-width: 720px){
  .topbar{
    width:min(100%, calc(100% - 24px));
    padding-top:14px;
    align-items:flex-start;
    flex-direction:column;
  }
  .hero-content{
    width:min(100%, calc(100% - 24px));
    min-height:auto;
    padding-bottom:36px;
  }
  .brand-logo{
    width:72px;
    height:72px;
    border-radius:20px;
  }
  .brand-text strong{
    font-size:22px;
  }
  .lead{
    max-width:100%;
  }
  .btn{
    width:min(100%, 360px);
  }
  .cta-row{
    flex-direction:column;
    align-items:stretch;
  }
  .glass-panel{
    width:100%;
    padding:20px;
  }
}
