:root{
  --bg:#ffffff;
  --surface:#f4f6f8;
  --surface2:#eef1f4;
  --text:#0b0f14;
  --muted:#5b6674;
  --border:#d9dee5;
  --brand:#0b3a6a;
  --brand2:#0f6ab5;
  --accent:#1a8cff;
  --shadow: 0 14px 28px rgba(0,0,0,.10);
  --radius:16px;
  --max: 1180px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
          "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.55
}

a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}

header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none
}

.mark{
  width:34px;height:34px;border-radius:10px;
  background:linear-gradient(135deg,var(--brand2),var(--brand));
}

.brand strong{letter-spacing:.2px}

.links{display:flex;gap:18px;align-items:center;flex-wrap:wrap}

.links a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}

.links a:hover{background:var(--surface);color:var(--text)}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  background:var(--brand);
  color:white;text-decoration:none;
  border:1px solid rgba(0,0,0,.06);
}

.btn.secondary{
  background:transparent;color:var(--text);
  border:1px solid var(--border);
}

.btn:hover{filter:brightness(1.05)}

/* Hero */
.hero{
  position:relative;
  background:
    linear-gradient(90deg, rgba(11,58,106,.92), rgba(15,106,181,.82)),
    radial-gradient(900px 520px at 75% 10%, rgba(26,140,255,.55), transparent 60%);
  color:white;
}

.hero .wrap{
  padding:54px 0 34px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:20px;
  align-items:end;
}

@media (max-width: 920px){
  .hero .wrap{grid-template-columns:1fr}
}

.breadcrumbs{color:rgba(255,255,255,.78);font-size:13px;margin-bottom:10px}

h1{
  margin:0 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.02
}

.lede{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size: clamp(16px,1.6vw,19px)
}

.hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius);
  padding:16px;
}

.hero-card .kpi{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:10px
}

@media (max-width: 520px){
  .hero-card .kpi{grid-template-columns:1fr}
}

.stat{
  padding:12px;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}

.stat .num{font-weight:800;font-size:22px}
.stat .lbl{font-size:13px;color:rgba(255,255,255,.80);margin-top:2px}

/* Sections */
.section{padding:40px 0}
.section.alt{background:var(--surface)}
.section h2{margin:0 0 12px;font-size:28px}
.section .sub{margin:0 0 16px;color:var(--muted);max-width:80ch}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}

@media (max-width: 920px){
  .grid3{grid-template-columns:1fr}
}

.card{
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.card.padded{padding:16px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted)}

.tag{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;color:var(--muted);
  border:1px solid var(--border);
  background:var(--surface);
  padding:6px 10px;
  border-radius:999px;
}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  align-items:start
}

@media (max-width: 920px){
  .split{grid-template-columns:1fr}
}

.list{margin:10px 0 0;padding-left:18px;color:var(--muted)}

/* Horizontal product strip (Leonardo-style “tiles”) */
.strip{
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom:6px;
  scroll-snap-type:x mandatory
}

.tile{
  min-width:230px;
  scroll-snap-align:start;
  border-radius:18px;
  border:1px solid var(--border);
  background:white;
  overflow:hidden;
  box-shadow: 0 12px 22px rgba(0,0,0,.06);
  text-decoration:none;
}

/* Tile image handling */
.thumb{
  height:130px;
  overflow:hidden;
  background:#eef1f4; /* fallback */
}

.thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain; /* use cover if you want it to fill */
  background:#eef1f4; /* optional letterbox */
}

.tile .thumb img{
  min-width:0 !important;
  min-height:0 !important;
}

.tile .meta{padding:12px}
.tile .meta strong{display:block}
.tile .meta span{display:block;margin-top:4px;color:var(--muted);font-size:13px}

.banner{
  display:flex;gap:14px;align-items:center;justify-content:space-between;flex-wrap:wrap;
  background:linear-gradient(90deg, rgba(11,58,106,.08), rgba(15,106,181,.08));
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
}

.banner strong{font-size:18px}

footer{
  background:#0b0f14;
  color:#cbd5e1;
  padding:30px 0 36px;
  margin-top:10px
}

footer a{color:#cbd5e1;text-decoration:none}
footer a:hover{text-decoration:underline}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:14px
}

@media (max-width: 920px){
  .footer-grid{grid-template-columns:1fr}
}

.small{font-size:13px;color:#9fb0c4}
hr.sep{border:0;border-top:1px solid rgba(255,255,255,.12);margin:18px 0}

/* FORCE tile images to fit */
.tile .thumb{
  height:130px !important;
  width:100% !important;
  overflow:hidden !important;
  display:block !important;
}

.tile .thumb img{
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:100% !important;
  min-width:0 !important;
  min-height:0 !important;
  display:block !important;
  object-fit:contain !important;
}
/* Make the coloured block grow to match the full height of the brand text */
.brand{
  align-items: stretch;   /* was center */
}

.mark{
  width:34px;             /* keep same width */
  height:auto;            /* override fixed height */
  align-self: stretch;    /* stretch to full height of the text block */
  border-radius:12px;     /* optional: looks nicer when taller */
}

/* Make “Potential Energy Group” slightly larger */
.brand strong{
  font-size: 18px;        /* tweak to taste (e.g. 19px / 20px) */
  line-height: 1.1;
}

/* Make the rail infrastructure line dark teal */
.tagline{
  color:#0b5f66;          /* dark teal */
  font-size:12px;         /* keep your existing size */
}

