:root {
  --navy: #081b4b;
  --orange: #ff6b00;
  --red: #d90812;
  --green: #07964f;
  --ink: #07163d;
  --muted: #5d6b86;
  --line: #e7ecf5;
  --soft: #f5f7fb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.45);
  outline-offset: 3px;
}
.container { width: min(1060px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img { width: 150px; height: auto; display: block; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.nav-actions a:not(.btn) { color: var(--navy); font-weight: 900; font-size: 0.9rem; }
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(8, 27, 75, 0.14);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(8, 27, 75, 0.2); filter: saturate(1.05); }
.btn-green { background: linear-gradient(135deg, var(--green), #00af62); }
.btn-orange { background: linear-gradient(135deg, var(--orange), #ff8a2f); }
.btn-red { background: linear-gradient(135deg, var(--red), #e8292c); }
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0;
}
.panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(8, 27, 75, 0.1);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}
.lede {
  max-width: 680px;
  margin: 20px 0 28px;
  color: #33435f;
  font-size: 1.05rem;
  font-weight: 600;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.status-card {
  padding: 24px;
  border-radius: 14px;
  background: #f8faff;
  border: 1px solid var(--line);
}
.status-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.15rem;
}
.status-card p { margin: 0; color: var(--muted); font-weight: 650; }

@media (max-width: 760px) {
  .navbar { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .nav-actions { justify-content: flex-start; }
  .panel { grid-template-columns: 1fr; padding: 26px; }
  .actions .btn { width: 100%; }
}
