@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Golos+Text:wght@400;500;600;700&display=swap");

:root {
  --color-main: #f5c791;
  --color-main-hover: #eeb16b;
  --color-main-light: #fff8f0;
  --color-blue: #1b2241;
  --color-blue-light: #3d435d;
  --color-blue-light-hover: #272d4b;
  --color-blue-light-bg: #2f3652;
  --color-blue-extra: #f4f6ff;
  --color-green: #07ad65;
  --color-teal: #3d435d;
  --color-white: #ffffff;
  --color-grey: #777777;
  --color-border: #dfe3f0;
  --font-default: "Golos Text", Verdana, Arial, sans-serif;
  --font-title: "Bebas Neue", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-white);
  color: var(--color-blue);
  font-family: var(--font-default);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.section-blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.section-light {
  background: var(--color-blue-extra);
}

.section-white {
  background: var(--color-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 16px 0 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
}

.small-link,
.nav-links a,
.header-cta,
.button {
  text-decoration: none;
}

.small-link:hover,
.nav-links a:hover {
  color: var(--color-main);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 0 24px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 600;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 5px;
  background: var(--color-main);
  color: var(--color-blue);
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.button-primary:hover,
.button-dark:hover {
  background: var(--color-main-hover);
}

.header-cta:active,
.button:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 80px;
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(245, 199, 145, 0.12);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--color-teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 5px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--color-main);
  color: var(--color-blue);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--color-white);
}

.button-secondary:hover {
  border-color: var(--color-main);
  color: var(--color-main);
}

.button-dark {
  margin-top: 12px;
  background: var(--color-blue);
  color: var(--color-white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.hero-facts div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--color-white);
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 42% center;
  border-radius: 16px;
  filter: saturate(0.9);
}

.deadline-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-blue);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.deadline-card span,
.deadline-card small {
  display: block;
  color: var(--color-grey);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.deadline-card strong {
  display: block;
  margin: 8px 0 4px;
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 400;
  line-height: 0.95;
}

.stat-strip {
  padding: 52px 0;
  background: var(--color-main-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.stat-item strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(46px, 5vw, 84px);
  font-weight: 400;
  line-height: 0.95;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  color: var(--color-grey);
  font-size: 17px;
}

.intro-block,
.theme-block,
.section-white,
.section-light,
.steps-block,
.dates-block,
.winners,
.team,
.faq,
.cta-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.intro-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.intro-card,
.info-card,
.award-panel {
  border-radius: 16px;
  background: var(--color-white);
}

.intro-card {
  padding: 48px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.intro-card p {
  margin-bottom: 22px;
  font-size: 19px;
}

.intro-card p:last-child {
  margin-bottom: 0;
}

.theme-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: stretch;
}

.theme-grid > div:first-child p:not(.eyebrow) {
  max-width: 710px;
  font-size: 19px;
}

.award-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  background: var(--color-blue);
  color: var(--color-white);
}

.panel-label {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 34px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(245, 199, 145, 0.16);
  color: var(--color-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.award-panel h3 {
  max-width: 420px;
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.award-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 138px;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 210px;
  padding: 32px;
  border: 1px solid var(--color-border);
}

.info-card.wide-card {
  grid-column: 1 / -1;
  min-height: 0;
}

.info-card h3 {
  color: var(--color-blue);
}

.info-card p {
  margin-bottom: 0;
  color: var(--color-grey);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.steps-grid article {
  min-height: 270px;
  padding: 30px;
  border-radius: 16px;
  background: var(--color-blue-light);
}

.steps-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--color-main);
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 1;
}

.steps-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.timeline article {
  position: relative;
  min-height: 190px;
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--color-blue-extra);
}

.timeline article:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 42px;
  border: 4px solid var(--color-main);
  border-radius: 50%;
  background: var(--color-blue);
}

.timeline time {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline p {
  margin-bottom: 0;
  color: var(--color-grey);
  font-size: 15px;
}

.requirement-list {
  display: grid;
  gap: 12px;
}

.requirement-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 0.64fr);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 18px 24px;
  border-radius: 10px;
  background: var(--color-white);
}

.requirement-list strong {
  color: var(--color-blue);
}

.requirement-list span {
  color: var(--color-grey);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.winners-grid article {
  min-height: 176px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 18px;
  font-weight: 700;
}

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
  padding: 34px 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-blue);
}

.report-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.report-card p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--color-grey);
}

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

.team-grid article {
  min-height: 226px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
}

.team-grid span,
.team-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--color-blue-extra);
  color: var(--color-blue);
  font-weight: 800;
  overflow: hidden;
}

.team-photo {
  position: relative;
  background: #9eaad2;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo.blue-filter img {
  filter: grayscale(1) sepia(0.52) hue-rotate(188deg) saturate(3.1) brightness(0.64) contrast(1.08);
}

.team-photo.blue-filter:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 34, 65, 0.28);
  mix-blend-mode: color;
  pointer-events: none;
}

.team-grid article:nth-child(1) .team-photo img {
  object-position: 50% 44%;
}

.team-grid article:nth-child(2) .team-photo img {
  object-position: 50% 34%;
}

.team-grid article:nth-child(3) .team-photo img {
  object-position: 50% 38%;
}

.team-grid article:nth-child(4) .team-photo img {
  object-position: 50% 30%;
}

.team-grid article:nth-child(5) .team-photo img {
  object-position: 50% 28%;
}

.team-grid article:nth-child(6) .team-photo img {
  object-position: 50% 36%;
}

.team-grid h3 {
  margin-bottom: 6px;
}

.team-grid p {
  margin-bottom: 0;
  color: var(--color-grey);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--color-white);
  border-radius: 8px;
  background: var(--color-white);
}

.faq-list details:not(:last-child) {
  margin-bottom: 10px;
}

.faq-list summary {
  min-height: 76px;
  padding: 24px 28px;
  color: var(--color-blue);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 28px 28px;
  color: var(--color-grey);
}

.registered-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.registered-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 34px 36px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
}

.registered-box h2 {
  margin-bottom: 8px;
  font-size: clamp(42px, 4vw, 62px);
}

.registered-box p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--color-grey);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.cta-box h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.footer-grid img {
  width: 48px;
  margin-bottom: 28px;
}

.footer-grid p,
.footer-grid address {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

@media (max-width: 1024px) {
  .topbar,
  .nav-links {
    display: none;
  }

  .hero-grid,
  .theme-grid,
  .split-grid,
  .intro-block,
  .footer-grid,
  .cta-box,
  .report-card,
  .registered-box {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media,
  .hero-media img {
    min-height: 0;
    height: auto;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .sticky-heading {
    position: static;
  }

  .steps-grid,
  .cards-grid.three,
  .winners-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .navbar {
    padding: 12px 0 16px;
  }

  .hero,
  .intro-block,
  .theme-block,
  .section-white,
  .section-light,
  .steps-block,
  .dates-block,
  .winners,
  .team,
  .faq,
  .cta-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-facts,
  .stats-grid,
  .steps-grid,
  .cards-grid.two,
  .cards-grid.three,
  .timeline,
  .winners-grid,
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-card,
  .award-panel,
  .info-card {
    padding: 24px;
  }

  .requirement-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .deadline-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

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