:root {
  --bg: #0b1220;
  --bg-alt: #111a2e;
  --card: #16213a;
  --border: #24314e;
  --text: #e7ecf5;
  --text-dim: #9fb0cc;
  --amber: #f5a623;
  --amber-dim: #c9860f;
  --cyan: #38bdf8;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.notice-bar {
  background: linear-gradient(90deg, #3a2a06, #241a04);
  border-bottom: 1px solid var(--amber-dim);
  color: #f4d9a5;
  font-size: 14px;
  text-align: center;
  padding: 10px 16px;
}
.notice-bar a { color: #ffd98a; text-decoration: underline; }

header.site-header {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.header-banner {
  position: relative;
  width: 100%;
  line-height: 0;
  background: #05070c;
}
.header-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-plate {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 34%;
  max-width: 320px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 4%;
  box-sizing: border-box;
}
.logo-plate .logo-word {
  font-size: clamp(18px, 4vw, 38px);
  font-weight: 600;
  color: #111;
  letter-spacing: -1px;
  line-height: 1;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.logo-plate .logo-sub {
  font-size: clamp(8px, 1.2vw, 13px);
  font-weight: 600;
  color: #111;
  letter-spacing: 2px;
  margin-top: 5px;
}

.nav-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(4px);
}
.nav-overlay nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 10px 22px;
}
.nav-overlay nav.main-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-overlay nav.main-nav a.active,
.nav-overlay nav.main-nav a:hover {
  color: var(--amber);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  padding: 8px 16px;
  cursor: pointer;
}

.hero-content { padding: 48px 0 56px; background: var(--bg-alt); }
.hero-content h1 {
  font-size: 38px;
  margin: 0 0 14px;
  max-width: 720px;
}
.hero-content p.lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
}
.hero-content .cta-row { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}
.btn-amber { background: var(--amber); color: #1b1400; }
.btn-amber:hover { background: #ffb84d; text-decoration: none; }
.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--text); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); text-decoration: none; }

section { padding: 64px 0; }
section.alt { background: var(--bg-alt); }
h2.section-title {
  font-size: 28px;
  margin: 0 0 8px;
}
p.section-sub {
  color: var(--text-dim);
  margin: 0 0 36px;
  max-width: 640px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img.card-img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: #0e1729;
  padding: 14px;
}
.card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin: 0 0 6px; font-size: 17px; }
.card-body .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-body p { color: var(--text-dim); font-size: 14px; margin: 0 0 14px; flex: 1; }
.card-body .more { font-size: 13px; font-weight: 700; }

.press-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.press-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dim);
}

.quote-list { display: flex; flex-direction: column; gap: 16px; }
.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
}
.quote-card .outlet {
  font-weight: 800;
  font-size: 18px;
  color: var(--amber);
}
.quote-card .outlet .badge {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quote-card blockquote {
  margin: 0 0 6px;
  font-style: italic;
  font-size: 16px;
  color: var(--text);
}
.quote-card .ref { font-size: 13px; }
@media (max-width: 640px) {
  .quote-card { grid-template-columns: 1fr; }
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.data-table th, table.data-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
table.data-table th {
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
table.data-table tr:hover td { background: rgba(255,255,255,0.03); }

.news-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}
.news-item .date {
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
}
.news-item h3 { margin: 0 0 6px; font-size: 17px; }
.news-item p { margin: 0; color: var(--text-dim); font-size: 14px; }
@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.info-card h3 { margin-top: 0; font-size: 16px; color: var(--amber); }
.info-card p { margin: 0 0 10px; font-size: 14px; color: var(--text-dim); }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  color: var(--text-dim);
  font-size: 13px;
}
footer.site-footer .foot-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer.site-footer a { color: var(--text-dim); }
footer.site-footer a:hover { color: var(--amber); }


/* Mobile navigation + responsive tweaks */
@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin: 4px; }
  .logo-plate { width: 46%; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--bg);
    transition: max-height 0.2s ease;
    z-index: 60;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }
  .main-nav ul li { border-top: 1px solid var(--border); }
  .main-nav a { display: block; padding: 12px 20px; font-size: 16px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .notice-bar { font-size: 12px; padding: 8px 12px; }
  .logo-plate { width: 52%; padding: 0 4%; }
  section { padding: 40px 0; }
  h2.section-title { font-size: 22px; }
  p.section-sub { margin-bottom: 24px; }
  .hero-content { padding: 32px 0 40px; }
  .hero-content h1 { font-size: 24px; }
  .hero-content p.lead { font-size: 15px; }
  .btn { padding: 10px 18px; font-size: 13px; }
  .press-strip { justify-content: flex-start; }
  table.data-table { font-size: 12px; }
  table.data-table th, table.data-table td { padding: 8px 8px; }
  footer.site-footer .foot-row { flex-direction: column; }
}
