.operon-page {
  --navy: #1f3f6f;
  --navy-dark: #102542;
  --gold: #cfa853;
  --ink: #132033;
  --muted: #6d7788;
  --line: rgba(31, 63, 111, 0.14);
  --panel: rgba(255, 255, 255, 0.76);
  --bg: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 37, 66, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.operon-page {
  min-height: calc(100vh - 78px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(207, 168, 83, 0.18), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(31, 63, 111, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.operon-page footer a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.operon-page footer a:hover { color: var(--navy); }

.operon-page a:focus-visible {
  outline: 3px solid rgba(207, 168, 83, 0.7);
  outline-offset: 4px;
}

.operon-page .hero {
  position: static;
  overflow: visible;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
  padding: 34px 0 64px;
  background: transparent;
}

.operon-page .hero::before { content: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(207, 168, 83, 0.14);
}

.operon-page h1 {
  margin: 26px 0 18px;
  max-width: 760px;
  color: var(--navy-dark);
  font-size: clamp(44px, 7.2vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 660px;
  margin: 0;
  color: #465367;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 14px 28px rgba(31, 63, 111, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(31, 63, 111, 0.22);
}

.button.secondary:hover { box-shadow: 0 14px 28px rgba(31, 63, 111, 0.10); }

.visual-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(207, 168, 83, 0.26), transparent 70%);
  pointer-events: none;
}

.logo-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(31, 63, 111, 0.10);
}

.logo-main img {
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  display: block;
}

.mini-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mini {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 63, 111, 0.10);
}

.mini img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-header {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 28px;
}

.operon-page h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-copy {
  margin: 0;
  color: #4f5c70;
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 24px;
  min-height: 190px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16, 37, 66, 0.06);
}

.card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(207, 168, 83, 0.18);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy-dark);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15.5px;
}

.logos-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.logo-panel {
  min-height: 210px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(16, 37, 66, 0.06);
  margin-bottom: 0;
  position: static;
  z-index: auto;
  justify-content: stretch;
}

.logo-panel img {
  width: auto;
  max-width: 100%;
  max-height: 128px;
  margin: auto;
  object-fit: contain;
  display: block;
}

.logo-panel small {
  color: var(--muted);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: var(--navy-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.contact::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: rgba(207, 168, 83, 0.24);
}

.contact h2,
.contact p,
.contact .contact-lines {
  position: relative;
  z-index: 1;
}

.contact h2 { color: #fff; }
.contact p { margin: 14px 0 0; color: rgba(255, 255, 255, 0.76); line-height: 1.7; }

.contact-lines {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-line {
  display: inline-flex;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 650;
  text-decoration: none;
}

.operon-page footer {
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .operon-page .hero,
  .section-header,
  .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 28px; }
  .cards,
  .logos-section { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .operon-page footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .page { width: min(100% - 28px, 1120px); }
  .visual-card, .contact { padding: 22px; border-radius: 26px; }
  .actions { align-items: stretch; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
