@import url('../../colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--po-navy); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ===== HEADER ===== */
.po-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 44px;
  transition: background-color 240ms var(--ease-out);
}
.po-header.scrolled { background: var(--po-navy); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.po-header .logo { height: 32px; }
.po-header nav { display: flex; gap: 28px; align-items: center; }
.po-header nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: white;
  opacity: 0.9; transition: color 140ms var(--ease-out);
}
.po-header nav a:hover { color: var(--po-coral); opacity: 1; }
.po-header .right { display: flex; gap: 18px; align-items: center; }

/* live pill */
.po-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35); color: white;
  cursor: pointer;
}
.po-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--po-coral); box-shadow: 0 0 0 4px rgba(255,90,96,0.25); animation: pulse 1.6s var(--ease-in-out) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,90,96,0.25); } 50% { box-shadow: 0 0 0 10px rgba(255,90,96,0); } }
.po-lang {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: white; opacity: 0.85; cursor: pointer;
}
.po-lang .sep { opacity: 0.4; margin: 0 4px; }
.po-lang .active { color: var(--po-coral); }

/* ===== HERO ===== */
.po-hero {
  height: 100vh; min-height: 720px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 80px 120px;
}
.po-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(108,160,220,0.35), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(117,219,205,0.20), transparent 50%),
    linear-gradient(180deg, #0c2d52 0%, #051a36 60%, #1D1E3A 100%);
}
.po-hero .bg::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,30,58,0.85) 0%, rgba(29,30,58,0.30) 50%, rgba(29,30,58,0.20) 100%);
}
.po-hero .copy { position: relative; z-index: 1; max-width: 1100px; }
.po-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 88px; line-height: 0.98; letter-spacing: -0.02em;
  color: white; margin: 18px 0 28px; text-wrap: balance;
}
.po-hero h1 .a { color: var(--po-coral); }
.po-hero .lead {
  font-family: var(--font-body); font-weight: 400; font-size: 20px; line-height: 1.5;
  color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 0 36px;
}
.po-hero .ctas { display: flex; gap: 16px; }
.po-hero .scroll-hint {
  position: absolute; bottom: 40px; right: 80px; z-index: 1;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.po-hero .scroll-hint::after { content:""; display: block; width: 1px; height: 36px; background: rgba(255,255,255,0.4); animation: scroll-bar 2s var(--ease-in-out) infinite;}
@keyframes scroll-bar { 0% { transform-origin: top; transform: scaleY(0); } 50% { transform-origin: top; transform: scaleY(1); } 51% { transform-origin: bottom; transform: scaleY(1); } 100% { transform-origin: bottom; transform: scaleY(0); } }

/* ===== EYEBROW & SECTION HEADINGS ===== */
.po-eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--po-coral);
}
.po-section { padding: 140px 80px; position: relative; }
.po-section h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 64px; line-height: 1.0; letter-spacing: -0.015em;
  color: white; margin: 18px 0 0; max-width: 1100px;
}
.po-section h2 .a { color: var(--po-coral); }

/* ===== MISSION ===== */
.po-mission { background: var(--po-blue); }
.po-mission .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center; }
.po-mission .lead {
  font-family: var(--font-body); font-weight: 400; font-size: 20px; line-height: 1.55;
  color: rgba(255,255,255,0.88); margin: 32px 0 36px; max-width: 580px;
}
.po-mission .photo {
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #c8b094 0%, #6a4a32 60%, #1d1e3a 100%);
}
.po-mission .photo .badge { position: absolute; right: -28px; bottom: -28px; width: 200px; opacity: 0.95; }

/* ===== SOLUTIONS GRID ===== */
.po-solutions { background: var(--po-navy); }
.po-solutions .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 80px;
}
.po-tile {
  background: var(--po-blue);
  padding: 44px 36px; min-height: 320px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: background-color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.po-tile:hover { background: #06438e; transform: translateY(-3px); }
.po-tile .icon { width: 64px; height: 64px; opacity: 0.95; }
.po-tile h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  line-height: 1.1; color: white; margin: 0;
}
.po-tile p {
  font-family: var(--font-body); font-weight: 400; font-size: 15px; line-height: 1.55;
  color: rgba(255,255,255,0.78); margin: 0;
}
.po-tile .arrow {
  margin-top: auto; align-self: flex-start;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--po-coral);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 200ms var(--ease-out);
}
.po-tile:hover .arrow { gap: 14px; }

/* ===== MAP ===== */
.po-map-section { background: var(--po-navy); padding: 140px 80px; border-top: 1px solid rgba(255,255,255,0.08); }
.po-map-wrap {
  position: relative; margin-top: 60px;
  aspect-ratio: 16/8; background: var(--po-navy);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 2px;
  overflow: hidden;
}
.po-map { width: 100%; height: 100%; display: block; }
.po-map .land { fill: #2a3160; }
.po-map .grid-line { stroke: rgba(255,255,255,0.06); stroke-width: 0.5; }
.po-map-legend {
  display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.po-map-legend .item { display: flex; align-items: center; gap: 8px; }
.po-map-legend .dot { width: 10px; height: 10px; border-radius: 50%; }

/* ===== NEWS ===== */
.po-news { background: var(--po-grey); color: var(--po-navy); }
.po-news .po-eyebrow { color: var(--po-coral); }
.po-news h2 { color: var(--po-navy); }
.po-news .head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.po-news .head .all {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--po-navy);
  border-bottom: 2px solid var(--po-coral); padding-bottom: 4px;
  white-space: nowrap;
}
.po-news .row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 60px;
}
.po-article { cursor: pointer; }
.po-article .thumb { aspect-ratio: 16/10; overflow: hidden; background: #ccd; }
.po-article .thumb .ph { width: 100%; height: 100%; transition: transform 480ms var(--ease-out); }
.po-article:hover .thumb .ph { transform: scale(1.04); }
.po-article .date {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--po-coral);
  margin-top: 18px;
}
.po-article h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  line-height: 1.2; color: var(--po-navy); margin: 8px 0 0; letter-spacing: -0.005em;
}

/* ===== FOOTER ===== */
.po-footer { background: var(--po-navy); padding: 100px 80px 50px; border-top: 1px solid rgba(255,255,255,0.08); }
.po-footer .top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
.po-footer .col h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--po-coral);
  margin: 0 0 18px;
}
.po-footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.po-footer .col a {
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  color: rgba(255,255,255,0.78); transition: color 140ms;
}
.po-footer .col a:hover { color: var(--po-coral); }
.po-footer .brand img { height: 38px; margin-bottom: 22px; }
.po-footer .brand p {
  font-family: var(--font-body); font-weight: 400; font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65); max-width: 320px; margin: 0 0 24px;
}
.po-footer .newsletter { display: flex; border-bottom: 2px solid rgba(255,255,255,0.3); max-width: 320px; transition: border-color .2s;}
.po-footer .newsletter:focus-within { border-color: var(--po-coral); }
.po-footer .newsletter input {
  flex: 1; background: transparent; border: 0; outline: none;
  padding: 10px 0; font-family: var(--font-body); font-size: 14px; color: white;
}
.po-footer .newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.po-footer .newsletter button {
  background: transparent; border: 0; color: var(--po-coral);
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0 4px; cursor: pointer;
}
.po-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 80px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10);
  font-family: var(--font-utility); font-size: 12px; color: rgba(255,255,255,0.55);
}
.po-footer .bottom .legal { display: flex; gap: 24px; }
.po-footer .bottom .legal a:hover { color: var(--po-coral); }
.po-footer .partners {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.po-footer .partners .plate {
  padding: 8px 14px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
}
