:root {
  --navy: #102a63;
  --navy-deep: #071634;
  --blue: #1c4c99;
  --green: #79c943;
  --green-deep: #1d9a72;
  --white: #ffffff;
  --mist: #f3f7fb;
  --text: #15233f;
  --muted: #5d6b85;
  --shadow: 0 28px 80px rgba(7, 22, 52, 0.18);
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 201, 67, 0.24), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(28, 76, 153, 0.18), transparent 28rem),
    linear-gradient(135deg, #f7fbff 0%, #edf4fb 48%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: linear-gradient(rgba(16,42,99,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16,42,99,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 85%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 36px 0;
}

.hero-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 99, 0.10);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% 44%;
  height: 52%;
  background: linear-gradient(120deg, rgba(121,201,67,.18), rgba(28,76,153,.10));
  transform: rotate(-8deg);
  border-radius: 80px;
  pointer-events: none;
}

.brand-row {
  padding: 28px 34px 0;
  position: relative;
  z-index: 1;
}

.brand-logo {
  display: block;
  width: min(330px, 72vw);
  height: auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
  gap: 26px;
  align-items: center;
  padding: 24px 38px 38px;
}

.copy-panel { max-width: 590px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(121, 201, 67, 0.16);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(121, 201, 67, .20);
}

h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3.6rem, 8vw, 7.3rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.serbian {
  margin: 18px 0 0;
  color: var(--green-deep);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.05;
}

.serbian.cyrillic {
  margin-top: 7px;
  color: var(--blue);
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  letter-spacing: .01em;
}

.intro {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  max-width: 58ch;
}

.intro.sr { margin-top: 10px; }

.status-pill {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(16, 42, 99, 0.20);
}

.pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 rgba(121, 201, 67, .62);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(121, 201, 67, .65); }
  70% { box-shadow: 0 0 0 11px rgba(121, 201, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(121, 201, 67, 0); }
}

.art-panel {
  min-height: 430px;
  display: grid;
  place-items: end center;
  padding: 12px 0 0;
}

.workers {
  width: min(100%, 650px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(7, 22, 52, 0.17));
}

@media (max-width: 880px) {
  .page-shell { width: min(100% - 22px, 720px); padding: 18px 0; }
  .hero-card { border-radius: 26px; }
  .brand-row { padding: 22px 22px 0; }
  .hero-grid { grid-template-columns: 1fr; padding: 20px 22px 28px; text-align: center; }
  .copy-panel { margin: 0 auto; }
  .intro { margin-left: auto; margin-right: auto; }
  .art-panel { min-height: auto; padding-top: 6px; }
  .workers { width: min(100%, 560px); }
  .status-pill { justify-content: center; }
}

@media (max-width: 520px) {
  .brand-logo { width: min(280px, 100%); margin: 0 auto; }
  .eyebrow { font-size: .72rem; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .serbian { font-size: 1.45rem; }
  .status-pill { width: 100%; border-radius: 18px; }
}
