:root{
  --navy:#092f4d;
  --deep:#061b2c;
  --gold:#f4b51f;
  --white:#ffffff;
  --muted:#bdc9d3;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Arial,Helvetica,sans-serif}
body{
  background:
    radial-gradient(circle at 80% 15%, rgba(244,181,31,.10), transparent 25%),
    linear-gradient(135deg,#082943 0%,#061b2c 70%);
  color:var(--white);
}
.shell{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 18px;
}
.panel{
  width:min(840px,100%);
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,35,56,.78);
  box-shadow:0 18px 60px rgba(0,0,0,.24);
}
.brand-row{
  padding:24px 30px 18px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.logo{
  width:min(305px,78%);
  height:auto;
  display:block;
}
.content{
  padding:38px 42px 32px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:15px;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
}
.kicker::before{
  content:"";
  width:28px;
  height:2px;
  background:var(--gold);
}
h1{
  margin:0;
  max-width:650px;
  font-size:clamp(34px,5.5vw,56px);
  line-height:1.03;
  letter-spacing:-.035em;
  font-weight:800;
}
h1 span{color:var(--gold)}
.intro{
  max-width:650px;
  margin:19px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
}
.contact-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.contact-row a{
  text-decoration:none;
  border-radius:8px;
  padding:13px 17px;
  font-weight:800;
  font-size:15px;
  transition:transform .16s ease,opacity .16s ease;
}
.contact-row a:hover{transform:translateY(-1px);opacity:.92}
.primary{
  background:var(--gold);
  color:#071b2b;
}
.secondary{
  border:1px solid rgba(255,255,255,.18);
  color:var(--white);
  background:rgba(255,255,255,.025);
}
.bottom-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.07);
}
.bottom-row p{
  margin:0;
  color:#92a6b5;
  font-size:13px;
}
.socials{
  display:flex;
  gap:9px;
  flex-shrink:0;
}
.socials a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}
.socials a:hover{background:var(--gold)}
.socials img{
  width:16px;
  height:16px;
}
@media(max-width:640px){
  .shell{padding:16px 12px}
  .panel{border-radius:14px}
  .brand-row{padding:20px 20px 15px}
  .logo{width:min(280px,88%)}
  .content{padding:30px 22px 24px}
  .intro{font-size:15.5px}
  .contact-row{flex-direction:column}
  .contact-row a{text-align:center}
  .bottom-row{align-items:flex-start;flex-direction:column}
}
