:root {
  --background: #070b10;
  --surface: #0d141c;
  --surface-raised: #111b25;
  --surface-soft: #16222d;
  --border: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(255, 255, 255, 0.18);
  --text: #f4f7f9;
  --text-muted: #9eacb8;
  --green: #30c86f;
  --green-bright: #62e994;
  --green-dark: #15914a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-large: 26px;
  --radius-medium: 17px;
  --content-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(48, 200, 111, 0.09), transparent 32rem),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 14px max(24px, calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 16, 0.86);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 190px;
  height: 46px;
  object-fit: contain;
}

.brand-logo.logo-missing {
  width: 50px;
  opacity: 0;
}

.brand-copy {
  display: grid;
  padding-left: 14px;
  border-left: 1px solid var(--border-bright);
}

.brand-kicker {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 750;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-navigation a {
  padding: 11px 14px;
  border-radius: 10px;
  color: #d9e0e5;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.primary-navigation a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.primary-navigation .nav-primary {
  margin-left: 6px;
  padding-inline: 18px;
  background: var(--green);
  color: #04150b;
}

.primary-navigation .nav-primary:hover {
  background: var(--green-bright);
  color: #04150b;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: white;
}

main {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.7fr);
  gap: 48px;
  align-items: center;
  min-height: 610px;
  padding: 82px 0 72px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  z-index: -1;
  top: 70px;
  right: -220px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(48, 200, 111, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(48, 200, 111, 0.12), transparent 62%);
}

.hero-background::before,
.hero-background::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(48, 200, 111, 0.1);
  border-radius: 50%;
  inset: 90px;
}

.hero-background::after {
  inset: 200px;
  background: rgba(48, 200, 111, 0.05);
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-description {
  max-width: 680px;
  margin: 27px 0 0;
  color: var(--text-muted);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #04150b;
  box-shadow: 0 12px 34px rgba(48, 200, 111, 0.18);
}

.button-primary:hover {
  background: var(--green-bright);
}

.button-secondary {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.85rem;
}

.hero-panel {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(13, 20, 28, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-label {
  margin: 1px 5px 14px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 17px 14px;
  border-top: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.quick-link:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(3px);
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(48, 200, 111, 0.24);
  border-radius: 11px;
  background: rgba(48, 200, 111, 0.09);
  color: var(--green-bright);
  font-size: 1.05rem;
  font-weight: 850;
}

.quick-link strong,
.quick-link small {
  display: block;
}

.quick-link strong {
  font-size: 0.94rem;
}

.quick-link small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.77rem;
}

.quick-arrow {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.news-section {
  padding: 76px 0 90px;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.date-label {
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 650;
}

.news-viewer {
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.news-viewer iframe {
  width: 100%;
  height: min(78vh, 920px);
  min-height: 680px;
  border: 0;
  background: white;
}

.news-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 570px;
  padding: 50px 24px;
  text-align: center;
}

.news-placeholder h3 {
  margin: 24px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.news-placeholder p {
  max-width: 610px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.news-placeholder code {
  padding: 2px 7px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce6ec;
}

.document-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 102px;
  border: 2px solid rgba(48, 200, 111, 0.48);
  border-radius: 12px;
  background: rgba(48, 200, 111, 0.07);
  color: var(--green-bright);
}

.document-icon::after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 25px;
  height: 25px;
  border-bottom: 2px solid rgba(48, 200, 111, 0.48);
  border-left: 2px solid rgba(48, 200, 111, 0.48);
  border-bottom-left-radius: 7px;
  background: var(--surface);
  content: "";
}

.document-icon span {
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  padding: 31px 0 42px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.site-footer div {
  display: flex;
  gap: 9px;
  align-items: center;
}

.site-footer strong {
  color: white;
}

.site-footer p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100vw - 48px));
  padding: 13px 17px;
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  background: #15202a;
  color: white;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    min-height: 72px;
    padding-inline: 20px;
  }

  .brand-logo {
    max-width: 150px;
    height: 38px;
  }

  .brand-copy {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #0c131b;
    box-shadow: var(--shadow);
  }

  .primary-navigation.open {
    display: grid;
  }

  .primary-navigation a {
    padding: 14px;
  }

  .primary-navigation .nav-primary {
    margin: 4px 0 0;
    text-align: center;
  }

  main {
    width: min(calc(100% - 34px), var(--content-width));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding: 72px 0 65px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 12px;
  }

  .news-section {
    padding: 57px 0 70px;
  }

  .news-viewer,
  .news-placeholder {
    min-height: 450px;
  }

  .news-viewer iframe {
    min-height: 590px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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