:root{
  --bg:#f2f5f7;
  --surface:#ffffff;
  --text:#16212d;
  --muted:#5d6c7c;
  --line:#e2e8ee;
  --brand:#69b8d5;
  --brand-dark:#16324d;
  --quote-bg:#f7fafc;
}

*{
  box-sizing:border-box;
}

html{
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:linear-gradient(180deg,#f7fafb 0%,var(--bg) 100%);
  color:var(--text);
}

img{
  display:block;
  max-width:100%;
}

.page{
  padding:40px 24px 60px;
}

.press-release{
  max-width:1280px;
  margin:0 auto;
  background:var(--surface);
  border-radius:22px;
  box-shadow:0 16px 40px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.05);
  overflow:hidden;
}

/* HEADER */

.press-header{
  padding:40px 60px 20px;
  border-bottom:1px solid var(--line);
}

.brand-row{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.brand-left{
  display:flex;
  align-items:center;
  gap:18px;
  text-decoration:none;
  color:inherit;
}

.logo{
  width:120px;
  height:120px;
  object-fit:contain;
  padding:10px;
  border-radius:16px;
  background:white;
  border:1px solid #e6eef3;
}

.company-name{
  margin:0 0 6px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#16324d;
}

.page-label{
  margin:0;
  font-size:38px;
  font-weight:800;
}

/* META */

.meta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.meta-row span{
  font-size:14px;
  font-weight:600;
  color:var(--muted);
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}

/* HERO */

.hero{
  padding:30px 60px 10px;
}

.hero h1{
  margin:0;
  max-width:1000px;
  font-size:76px;
  line-height:.92;
  letter-spacing:-.045em;
  font-weight:850;
  color:#0f1d2d;
}

.hero h1 strong{
  color:#16324d;
}

.standfirst{
  margin:26px 0 0;
  max-width:1000px;
  font-size:24px;
  line-height:1.6;
  color:#556476;
}

/* CONTENT */

.content{
  padding:18px 60px 48px;
}

.content > p{
  margin:0 0 22px;
  max-width:1040px;
  font-size:20px;
  line-height:1.8;
  color:#263544;
}

/* QUOTES */

.quote-card{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:18px;
  margin:36px 0;
  padding:26px 28px;
  background:var(--quote-bg);
  border:1px solid #e2e8ee;
  border-left:4px solid var(--brand);
  border-radius:16px;
}

.quote-mark{
  font-size:70px;
  line-height:.9;
  font-weight:700;
  color:rgba(22,50,77,0.18);
  text-align:center;
}

.quote-body{
  min-width:0;
}

.quote-text{
  margin:0 0 16px;
  font-size:23px;
  line-height:1.6;
  font-style:italic;
  color:#173247;
}

.quote-author strong{
  display:block;
  font-size:16px;
}

.quote-author span{
  font-size:14px;
  color:var(--muted);
}

/* SECTIONS */

.section-block{
  margin-top:40px;
}

.section-block h2{
  margin:0 0 16px;
  font-size:34px;
  letter-spacing:-.02em;
}

.priority-list{
  max-width:1040px;
  padding-left:22px;
}

.priority-list li{
  font-size:19px;
  margin-bottom:12px;
  line-height:1.7;
}

/* INFO GRID */

.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:40px;
}

.info-card{
  padding:24px;
  background:#fafcfd;
  border:1px solid var(--line);
  border-radius:16px;
}

.info-card h3{
  margin:0 0 10px;
  font-size:24px;
}

.info-card p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
}

/* CONTACT */

.contact-card{
  margin-top:24px;
  padding:24px 28px;
  border-radius:16px;
  background:linear-gradient(135deg,#17314c 0%,#244b70 100%);
}

.contact-label{
  margin:0 0 8px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.7);
}

.contact-card a{
  font-size:26px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}

.contact-card a:hover{
  text-decoration:underline;
}

/* RESPONSIVE */

@media (max-width:1000px){

.hero h1{
  font-size:60px;
  max-width:100%;
}

.standfirst{
  font-size:20px;
}

.content > p{
  font-size:18px;
}

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

}

@media (max-width:640px){

.page{
  padding:16px 10px 30px;
}

.press-header,
.hero,
.content{
  padding-left:22px;
  padding-right:22px;
}

.logo{
  width:80px;
  height:80px;
}

.page-label{
  font-size:28px;
}

.hero h1{
  font-size:40px;
  line-height:1;
}

.standfirst{
  font-size:18px;
}

.content > p{
  font-size:17px;
}

.quote-card{
  grid-template-columns:1fr;
  padding:20px;
}

.quote-mark{
  text-align:left;
  font-size:48px;
}

}