/* Karni Ilyas Award 2026 */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --gold: #C19C31;
  --gold-soft: #d4b04a;
  --gold-dark: #9a7d27;
  --grey-bg: #D5D5D4;
  --black: #0a0a0a;
  --red: #C42026;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --font-display: "Bahnschrift", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Aptos", "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 100vh;
  background: var(--grey-bg);
  animation: page-enter 0.48s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: page-leave 0.22s ease both;
}

::view-transition-new(root) {
  animation: page-enter 0.42s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

main {
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}

html.is-transitioning-out main {
  opacity: 0;
  transform: translateY(-10px);
  filter: blur(4px);
  pointer-events: none;
}

html.is-transitioning-in main {
  animation: page-enter 0.42s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes page-leave {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(3px);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-soft {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes reveal-left {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reveal-right {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.topbar { display: none; }

.page {
  position: relative;
  background-color: var(--grey-bg);
  background-image: url('bg-grey.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-blend-mode: luminosity;
  min-height: 100vh;
  padding: 28px 64px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tvone-logo {
  width: 150px;
  height: auto;
  display: block;
  position: absolute;
  top: 32px;
  left: 64px;
}

.layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding-right: 60px;
  min-height: calc(100vh - 120px);
}

/* Landing nav */
.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
}
.nav a {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 20px;
  text-transform: uppercase;
  border: 1px solid var(--gold-dark);
  border-radius: 2px;
  transition: background 0.22s ease, padding-left 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  display: block;
}
.nav a:hover {
  background: var(--gold-soft);
  padding-left: 26px;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(154,125,39,0.25);
}

.tvone-logo {
  animation: reveal-left 0.62s cubic-bezier(0.2, 0.72, 0.22, 1) 0.04s both;
}

.layout .nav a {
  animation: reveal-left 0.54s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.layout .nav a:nth-child(1) { animation-delay: 0.12s; }
.layout .nav a:nth-child(2) { animation-delay: 0.17s; }
.layout .nav a:nth-child(3) { animation-delay: 0.22s; }
.layout .nav a:nth-child(4) { animation-delay: 0.27s; }
.layout .nav a:nth-child(5) { animation-delay: 0.32s; }

.hero-logo {
  animation: reveal-soft 0.72s cubic-bezier(0.2, 0.72, 0.22, 1) 0.18s both;
}

.main-title span {
  animation: reveal-right 0.58s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.main-title span:nth-child(1) { animation-delay: 0.24s; }
.main-title span:nth-child(2) { animation-delay: 0.31s; }
.main-title span:nth-child(3) { animation-delay: 0.38s; }

.trophy {
  animation: reveal-right 0.8s cubic-bezier(0.2, 0.72, 0.22, 1) 0.34s both;
}

/* Landing hero */
.hero {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  align-self: center;
}
.hero-tagline {
  position: absolute;
  top: 10%;
  left: 63%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
  z-index: 2;
}
.hero-logo {
  width: min(100%, 760px);
  max-width: 760px;
  max-height: 74vh;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.main-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
  align-self: center;
}
.main-title span {
  display: block;
}

.trophy {
  position: absolute;
  right: -200px;
  bottom: 0;
  width: 720px;
  height: auto;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 1100px) {
  .layout { grid-template-columns: 240px 1fr; gap: 24px; min-height: auto; padding-right: 0; }
  .main-title { grid-column: 2 / 3; margin-top: 24px; font-size: 40px; }
  .trophy { width: 160px; right: 12px; }
}

@media (max-width: 760px) {
  .page { padding: 20px; }
  .tvone-logo { width: 110px; margin-bottom: 24px; position: static; display: block; }
  .layout { grid-template-columns: 1fr; gap: 16px; min-height: auto; align-items: center; }
  .hero-tagline { position: static; transform: none; text-align: center; margin-bottom: 8px; white-space: normal; }
  .main-title { white-space: normal; font-size: 36px; text-align: center; grid-column: auto; }
  .trophy { position: static; width: 160px; margin: 20px auto 0; display: block; }
}

@media (max-width: 480px) {
  .page { padding: 16px; }
  .tvone-logo { width: 90px; }
  .main-title { font-size: 28px; }
  .trophy { width: 120px; }
  .hero-logo { max-height: 50vh; }
}

/* About page */
.page-about {
  background: var(--grey-bg);
  padding: 28px 64px 48px;
}

.page-about .page-header,
.page-about .about-stage {
  max-width: 1820px;
  margin: 0 auto;
  width: 100%;
}

.page-about .page-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 8px;
  row-gap: 10px;
  align-items: center;
}

.page-about .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-about .brand-left {
  justify-content: flex-start;
}

.page-about .brand-right {
  justify-content: flex-end;
}

.page-about .brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-about .brand-logo-tvone {
  width: 205px;
  max-width: 18vw;
  max-height: 62px;
}

.page-about .brand-logo-ki {
  width: 320px;
  max-width: 24vw;
  max-height: 112px;
}

.page-about .brand-left,
.page-campaign .brand-left {
  animation: reveal-left 0.56s cubic-bezier(0.2, 0.72, 0.22, 1) 0.04s both;
}

.page-about .brand-right,
.page-campaign .brand-right {
  animation: reveal-right 0.56s cubic-bezier(0.2, 0.72, 0.22, 1) 0.08s both;
}

.page-about .nav a,
.page-campaign .nav a {
  animation: reveal-up 0.5s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.page-about .nav a:nth-child(1),
.page-campaign .nav a:nth-child(1) { animation-delay: 0.08s; }
.page-about .nav a:nth-child(2),
.page-campaign .nav a:nth-child(2) { animation-delay: 0.12s; }
.page-about .nav a:nth-child(3),
.page-campaign .nav a:nth-child(3) { animation-delay: 0.16s; }
.page-about .nav a:nth-child(4),
.page-campaign .nav a:nth-child(4) { animation-delay: 0.2s; }
.page-about .nav a:nth-child(5),
.page-campaign .nav a:nth-child(5) { animation-delay: 0.24s; }
.page-about .nav a:nth-child(6),
.page-campaign .nav a:nth-child(6) { animation-delay: 0.28s; }

.page-about .nav {
  margin: 0;
}

.page-about .nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-about .nav a {
  background: var(--gold);
  color: #5a4a18;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(12px, 0.8vw, 14px);
  text-decoration: none;
  text-transform: uppercase;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.page-about .nav a:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(154, 125, 39, 0.18);
}

.page-about .nav a[aria-current="page"] {
  background: var(--red);
  color: #ffffff;
  border-color: #9a181e;
  pointer-events: none;
}

.page-about .nav a[aria-current="page"]:hover {
  background: var(--red);
  box-shadow: none;
  transform: none;
}

.page-about .about-stage {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  animation: reveal-up 0.64s cubic-bezier(0.2, 0.72, 0.22, 1) 0.18s both;
}

.page-about .about-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 760px;
}

.page-about .about-trophy {
  width: min(100%, 360px);
  max-width: 360px;
  height: auto;
  display: block;
  margin-top: 64px;
  margin-left: -6px;
}

.page-about .about-copy {
  padding-top: 4px;
  color: #171717;
  max-width: 1180px;
}

.page-about .about-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.page-about .about-body {
  font-size: clamp(21px, 1.25vw, 28px);
  line-height: 1.45;
  letter-spacing: 0.008em;
  text-align: justify;
}

.page-about .about-body p {
  margin: 0 0 30px;
}

.page-about .about-body strong {
  font-weight: 800;
}

.page-about .about-body em {
  font-style: italic;
}

@media (max-width: 1280px) {
  .page-about {
    padding-left: 28px;
    padding-right: 28px;
  }

  .page-about .page-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 6px;
  }

  .page-about .brand-logo-tvone {
    width: 150px;
    max-width: 14vw;
    max-height: 48px;
  }

  .page-about .brand-logo-ki {
    width: 250px;
    max-width: 22vw;
    max-height: 92px;
  }

  .page-about .nav a {
    font-size: 13px;
    min-height: 40px;
    padding: 7px 10px;
  }

  .page-about .about-stage {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
  }

  .page-about .about-visual {
    min-height: 620px;
  }

  .page-about .about-trophy {
    max-width: 300px;
  }

  .page-about .about-body {
    font-size: 20px;
  }
}

@media (max-width: 860px) {
  .page-about {
    padding-top: 18px;
  }

  .page-about .page-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-about .brand-left,
  .page-about .brand-right {
    justify-content: center;
  }

  .page-about .nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .page-about .about-visual {
    min-height: 0;
    justify-content: center;
  }

  .page-about .about-trophy {
    max-width: 240px;
    margin: 0 auto;
  }

  .page-about .about-body {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .page-about {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-about .nav-grid {
    grid-template-columns: 1fr;
  }

  .page-about .nav a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .page-about .brand-logo-tvone {
    width: 180px;
    max-width: 60vw;
    max-height: 56px;
  }

  .page-about .brand-logo-ki {
    width: 260px;
    max-width: 72vw;
    max-height: 96px;
  }

  .page-about .about-title {
    font-size: 24px;
  }

  .page-about .about-body {
    font-size: 16px;
    text-align: left;
  }

  .page-about .about-body p {
    margin-bottom: 20px;
  }

  .page-about .about-trophy {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .page-about {
    padding: 14px 14px 32px;
  }

  .page-about .brand-logo-tvone {
    width: 140px;
    max-width: 55vw;
  }

  .page-about .brand-logo-ki {
    width: 200px;
    max-width: 68vw;
  }

  .page-about .about-title {
    font-size: 20px;
  }

  .page-about .about-body {
    font-size: 15px;
  }

  .page-about .about-trophy {
    max-width: 160px;
  }
}

/* Campaign pages */
.page-campaign {
  background: var(--grey-bg);
  padding: 28px 64px 48px;
  overflow: visible;
}

.page-campaign .page-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 4px;
  row-gap: 10px;
  align-items: center;
  max-width: 1820px;
  margin: 0 auto;
  width: 100%;
}

.page-campaign .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-campaign .brand-left {
  justify-content: flex-start;
  align-self: center;
}

.page-campaign .brand-right {
  justify-content: flex-end;
  align-self: center;
}

.page-campaign .brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-campaign .brand-logo-tvone {
  width: 205px;
  max-width: 18vw;
  max-height: 62px;
}

.page-campaign .brand-logo-ki {
  max-width: 24vw;
  max-height: 95px;
}

.page-campaign .nav {
  margin: 0;
}

.page-campaign .nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-campaign .nav a {
  background: var(--gold);
  color: #5a4a18;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(12px, 0.8vw, 14px);
  text-decoration: none;
  text-transform: uppercase;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.page-campaign .nav a:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(154, 125, 39, 0.18);
}

.page-campaign .nav a[aria-current="page"] {
  background: var(--red);
  color: #ffffff;
  border-color: #9a181e;
  pointer-events: none;
}

.page-campaign .nav a[aria-current="page"]:hover {
  background: var(--red);
  box-shadow: none;
  transform: none;
}

.campaign-hero {
  max-width: 1820px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  animation: reveal-up 0.6s cubic-bezier(0.2, 0.72, 0.22, 1) 0.18s both;
}

.campaign-copy,
.campaign-panel,
.campaign-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.campaign-copy {
  padding: 28px 30px;
}

.campaign-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--gold-dark);
}

.campaign-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(34px, 3.4vw, 62px);
  color: #171717;
}

.campaign-lead {
  margin: 18px 0 0;
  font-size: clamp(18px, 1.25vw, 26px);
  line-height: 1.5;
  color: #2c2c2c;
}

.campaign-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.campaign-panel h2,
.campaign-card h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #171717;
}

.campaign-panel h2 {
  font-size: 30px;
}

.campaign-panel p {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 22px;
}

.campaign-panel span,
.campaign-panel li,
.campaign-card p {
  font-size: 17px;
  line-height: 1.55;
  color: #2e2e2e;
}

.campaign-panel-accent {
  background: linear-gradient(180deg, rgba(193, 156, 49, 0.2), rgba(255, 255, 255, 0.7));
}

.campaign-panel-cta {
  justify-content: center;
}

.campaign-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  text-decoration: none;
  background: var(--gold);
  color: #171717;
  font-family: var(--font-display);
  text-transform: uppercase;
  border: 1px solid var(--gold-dark);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.campaign-button:hover,
.campaign-button:focus-visible {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(154, 125, 39, 0.2);
}

/* Registration form */
.registration-document {
  width: 100%;
  max-width: 1720px;
  margin: 10px auto 0;
  color: #080808;
  animation: reveal-up 0.62s cubic-bezier(0.2, 0.72, 0.22, 1) 0.16s both;
}

.registration-document h1 {
  margin: 8px 0 32px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.05vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-align: center;
  text-transform: uppercase;
}

.registration-form {
  display: grid;
  grid-template-columns: minmax(620px, 1.1fr) minmax(430px, 0.9fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: start;
}

.registration-biodata h2,
.registration-side h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(25px, 1.65vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.registration-field {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(290px, 1fr);
  column-gap: 22px;
  row-gap: 5px;
  align-items: center;
  margin-bottom: 22px;
  animation: reveal-up 0.42s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.registration-field:nth-of-type(1) { animation-delay: 0.2s; }
.registration-field:nth-of-type(2) { animation-delay: 0.24s; }
.registration-field:nth-of-type(3) { animation-delay: 0.28s; }
.registration-field:nth-of-type(4) { animation-delay: 0.32s; }
.registration-field:nth-of-type(5) { animation-delay: 0.36s; }
.registration-field:nth-of-type(6) { animation-delay: 0.4s; }
.registration-field:nth-of-type(7) { animation-delay: 0.44s; }
.registration-field:nth-of-type(8) { animation-delay: 0.48s; }
.registration-field:nth-of-type(9) { animation-delay: 0.52s; }

.registration-field label,
.upload-field label {
  font-size: clamp(20px, 1.32vw, 31px);
  line-height: 1.12;
  letter-spacing: 0;
}

.registration-field label em,
.upload-field label em {
  font-style: italic;
}

.registration-field input,
.registration-field textarea {
  width: 100%;
  min-height: 48px;
  border: 5px solid #757575;
  border-radius: 2px;
  background: #ffffff;
  color: #111111;
  font: 500 19px/1.25 var(--font-body);
  padding: 8px 12px;
  outline: none;
}

.registration-field textarea {
  min-height: 74px;
  resize: vertical;
}

.registration-field-synopsis {
  align-items: start;
}

.registration-field-synopsis textarea {
  min-height: 288px;
  overflow-y: auto;
}

.registration-field input:focus,
.registration-field textarea:focus,
.upload-field input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(193, 156, 49, 0.2);
}

.registration-side {
  padding-top: 2px;
  animation: reveal-right 0.58s cubic-bezier(0.2, 0.72, 0.22, 1) 0.24s both;
}

.registration-downloads {
  margin-bottom: 34px;
}

.download-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  max-width: 560px;
  color: #111111;
  text-decoration: none;
  font-size: clamp(20px, 1.28vw, 30px);
  line-height: 1.16;
  transition: color 0.18s ease, transform 0.18s ease;
}

.download-row:hover,
.download-row:focus-visible {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.download-row + .download-row {
  margin-top: 6px;
}

.download-icon {
  width: 40px;
  height: 44px;
  border: 4px solid #a41221;
  border-radius: 8px;
  color: #a41221;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.registration-uploads {
  margin-bottom: 24px;
}

.upload-field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin-left: 78px;
  margin-bottom: 13px;
}

.upload-field::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #080808;
}

.upload-field input {
  width: min(100%, 480px);
  min-height: 36px;
  color: #111111;
  font: 500 14px/1.2 var(--font-body);
}

.registration-submit {
  width: min(100%, 480px);
  min-height: 54px;
  margin-left: 78px;
  border: 1px solid var(--gold-dark);
  background: var(--gold);
  color: #111111;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.registration-submit:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(154, 125, 39, 0.18);
}

.registration-submit.is-loading {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: var(--gold);
  animation: btn-pulse 1.2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { opacity: 0.72; }
  50%       { opacity: 0.48; }
}

.registration-alert {
  max-width: 1180px;
  margin: 0 auto 22px;
  padding: 14px 18px;
  border-left: 6px solid;
  background: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

.registration-alert ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.registration-alert-danger {
  border-color: #b01826;
}

.registration-alert-warning {
  border-color: var(--gold);
}

.registration-error {
  grid-column: 2;
  color: #b01826;
  font-size: 14px;
  font-weight: 700;
}

.upload-field .registration-error {
  grid-column: auto;
}

.registration-field .is-invalid,
.upload-field .is-invalid {
  border-color: #b01826;
}

.award-document {
  max-width: 1580px;
  margin: 16px auto 0;
  width: 100%;
  color: #111111;
  animation: reveal-up 0.62s cubic-bezier(0.2, 0.72, 0.22, 1) 0.18s both;
}

.award-document h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.35vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0.02em;
}

.award-section {
  max-width: 1420px;
  animation: reveal-up 0.52s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.award-section:nth-of-type(1) { animation-delay: 0.18s; }
.award-section:nth-of-type(2) { animation-delay: 0.24s; }
.award-section:nth-of-type(3) { animation-delay: 0.3s; }

.award-section + .award-section {
  margin-top: 34px;
}

.award-section h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.65vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

.award-category-list {
  margin: 0;
  padding-left: 36px;
  font-size: clamp(21px, 1.55vw, 34px);
  line-height: 1.28;
}

.award-category-list > li + li {
  margin-top: 28px;
}

.award-category-list span {
  display: block;
  margin-bottom: 4px;
}

.award-category-list ul {
  margin: 0;
  padding-left: 220px;
  list-style-type: circle;
}

.award-subtheme-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 12px 42px;
  margin: 14px 0 0;
  padding-left: 36px;
  font-size: clamp(21px, 1.42vw, 31px);
  line-height: 1.24;
}

.award-subtheme-list li::marker {
  color: var(--gold-dark);
}

.award-theme {
  margin-left: 0;
  margin-right: 0;
}

.award-theme h2 {
  text-align: left;
}

.award-theme p {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.campaign-grid,
.rule-grid {
  max-width: 1820px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.campaign-card {
  padding: 22px 24px;
  animation: reveal-up 0.54s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.campaign-card:nth-child(1) { animation-delay: 0.2s; }
.campaign-card:nth-child(2) { animation-delay: 0.26s; }
.campaign-card:nth-child(3) { animation-delay: 0.32s; }
.campaign-card:nth-child(4) { animation-delay: 0.38s; }

.campaign-card h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.campaign-card p {
  margin: 0;
}

.rule-list {
  margin: 0;
  padding-left: 20px;
}

.rule-list li + li {
  margin-top: 8px;
}

.rules-document {
  max-width: 1680px;
  width: 100%;
  margin: 28px auto 0;
  color: #070707;
  animation: reveal-up 0.62s cubic-bezier(0.2, 0.72, 0.22, 1) 0.18s both;
}

.rules-slide[hidden] {
  display: none;
}

.rules-slide {
  position: relative;
  min-height: min(680px, 80vh);
  padding: clamp(20px, 2vw, 34px) clamp(24px, 3vw, 54px) 34px;
  background: rgba(255, 255, 255, 0.34);
  border-left: 8px solid var(--gold);
}

.rules-slide h1,
.rules-slide h2,
.rules-slide h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.rules-slide h1 {
  max-width: 1120px;
  font-size: clamp(28px, 2.05vw, 42px);
  margin-bottom: 6px;
}

.rules-slide h2 {
  font-size: clamp(25px, 1.85vw, 38px);
  color: #111111;
}

.rules-slide h3 {
  font-size: clamp(23px, 1.75vw, 36px);
  margin-top: 10px;
}

.rules-slide h3 span {
  font-family: var(--font-body);
  font-weight: 400;
}

.rules-slide ul {
  margin: 8px 0 0;
  padding-left: clamp(34px, 4.8vw, 92px);
  font-size: clamp(21px, 1.43vw, 32px);
  line-height: 1.31;
}

.rules-slide li + li {
  margin-top: 4px;
}

.rules-slide li::marker {
  color: #111111;
  font-size: 0.74em;
}

.rules-slide ul ul {
  padding-left: clamp(28px, 5.8vw, 132px);
  font-size: 0.92em;
  list-style-type: circle;
}

.rules-slide a {
  color: #4f8792;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.rules-technical-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: start;
}

.rules-technical-grid > div:first-child {
  max-width: 820px;
}

.rules-technical-grid > div:last-child {
  padding-top: clamp(30px, 2.05vw, 42px);
}

.rules-technical-grid h3 + ul {
  margin-bottom: 34px;
}

.rules-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 0 86px 4px;
}

.rules-actions-single {
  justify-content: center;
  padding: 0;
  margin-top: 54px;
}

.rules-page-button,
.rules-register-button {
  min-height: 50px;
  border: 1px solid var(--gold);
  background: transparent;
  color: #4d421d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.05vw, 24px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.rules-page-button:hover,
.rules-register-button:hover {
  background: rgba(193, 156, 49, 0.14);
  color: #111111;
  transform: translateY(-2px);
}

.rules-page-button:focus-visible,
.rules-register-button:focus-visible {
  outline: 3px solid rgba(170, 23, 35, 0.35);
  outline-offset: 3px;
}

.rules-page-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
}

.rules-next {
  padding-right: 18px;
}

.rules-next::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #aa1723;
  border-right: 2px solid #aa1723;
  transform: rotate(45deg);
}

.rules-prev {
  padding-left: 18px;
}

.rules-prev::before {
  content: "";
  width: 9px;
  height: 9px;
  border-left: 2px solid #aa1723;
  border-bottom: 2px solid #aa1723;
  transform: rotate(45deg);
}

.rules-register-button {
  min-width: 360px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: #aa1723;
  background: #aa1723;
  color: #ffffff !important;
  padding: 0 36px;
}

.rules-register-button:hover {
  background: #8f101a;
  border-color: #8f101a;
  color: #ffffff !important;
}

.rules-register-button:visited,
.rules-register-button:focus-visible {
  color: #ffffff !important;
}

.page-winners .campaign-hero {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.campaign-hero-winners .campaign-copy {
  max-width: 1540px;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.campaign-hero-winners .campaign-copy h1 {
  font-size: clamp(30px, 2.4vw, 48px);
}

.campaign-hero-winners .campaign-lead {
  max-width: 1480px;
  margin-top: 14px;
  font-size: clamp(17px, 1.05vw, 23px);
  line-height: 1.48;
}

.winner-grid {
  max-width: 1820px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.winner-card {
  appearance: none;
  border: 1px solid rgba(91, 74, 24, 0.18);
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  animation: reveal-up 0.56s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.winner-card:nth-child(1) { animation-delay: 0.18s; }
.winner-card:nth-child(2) { animation-delay: 0.24s; }
.winner-card:nth-child(3) { animation-delay: 0.3s; }
.winner-card:nth-child(4) { animation-delay: 0.36s; }
.winner-card:nth-child(5) { animation-delay: 0.42s; }

.winner-card:hover,
.winner-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(193, 156, 49, 0.55);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.winner-card:focus-visible {
  outline: 3px solid rgba(170, 23, 35, 0.28);
  outline-offset: 3px;
}

.winner-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dfddda;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.winner-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.winner-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
  color: #171717;
}

.winner-rank {
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  background: var(--gold);
  color: #241d0a;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.winner-title {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.35vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  color: #171717;
}

.winner-work,
.winner-university {
  display: block;
  font-size: clamp(15px, 0.88vw, 18px);
  line-height: 1.35;
  color: #343434;
}

.winner-work {
  font-weight: 700;
}

.winner-modal[hidden] {
  display: none;
}

.winner-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.winner-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.winner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 16, 0.72);
}

.winner-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  background: var(--grey-bg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.winner-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  color: #171717;
}

.winner-modal-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
}

.winner-modal h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(26px, 2vw, 40px);
}

.winner-modal-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  border: 0;
}

.winner-modal-video[hidden],
.winner-modal-no-video[hidden] {
  display: none;
}

.winner-modal-no-video {
  margin: 0;
  padding: 32px 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f0efed;
}

@media (max-width: 1280px) {
  .page-campaign {
    padding-left: 28px;
    padding-right: 28px;
  }

  .page-campaign .page-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 4px;
  }

  .page-campaign .brand-logo-tvone {
    width: 150px;
    max-width: 14vw;
    max-height: 48px;
  }

  .page-campaign .brand-logo-ki {
    max-width: 22vw;
    max-height: 92px;
  }

  .page-campaign .nav a {
    font-size: 13px;
    min-height: 40px;
    padding: 7px 10px;
  }

  .campaign-hero {
    grid-template-columns: 1fr;
  }

  .registration-form {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .registration-field {
    grid-template-columns: minmax(240px, 0.55fr) minmax(300px, 1fr);
  }

  .upload-field,
  .registration-submit {
    margin-left: 32px;
  }

  .award-category-list ul {
    padding-left: 96px;
  }

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

@media (max-width: 860px) {
  .page-campaign {
    padding-top: 18px;
  }

  .page-campaign .page-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-campaign .brand-left,
  .page-campaign .brand-right {
    justify-content: center;
  }

  .page-campaign .nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-hero,
  .campaign-grid,
  .rule-grid {
    gap: 16px;
  }

  .campaign-grid,
  .rule-grid {
    grid-template-columns: 1fr;
  }

  .registration-document h1 {
    margin-top: 4px;
    margin-bottom: 24px;
  }

  .registration-field {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .registration-field label,
  .upload-field label {
    font-size: 20px;
  }

  .registration-field input,
  .registration-field textarea {
    min-height: 44px;
    border-width: 4px;
  }

  .registration-field-synopsis textarea {
    min-height: 260px;
  }

  .registration-error {
    grid-column: auto;
  }

  .download-row {
    max-width: none;
  }

  .rules-document {
    margin-top: 26px;
  }

  .rules-slide ul,
  .rules-slide ul ul {
    padding-left: 34px;
  }

  .rules-technical-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rules-technical-grid > div:first-child {
    max-width: none;
  }

  .rules-technical-grid > div:last-child {
    padding-top: 0;
  }

  .rules-actions {
    padding: 0;
    margin-top: 36px;
  }

  .award-document {
    margin-top: 22px;
  }

  .award-section + .award-section {
    margin-top: 28px;
  }

  .award-category-list ul {
    padding-left: 32px;
  }

  .award-subtheme-list {
    grid-template-columns: 1fr;
    padding-left: 32px;
  }

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

@media (max-width: 560px) {
  .page-campaign {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-campaign .nav-grid {
    grid-template-columns: 1fr;
  }

  .page-campaign .brand-logo-tvone {
    width: 180px;
    max-width: 60vw;
    max-height: 56px;
  }

  .page-campaign .brand-logo-ki {
    max-width: 72vw;
    max-height: 96px;
  }

  .campaign-copy,
  .campaign-panel,
  .campaign-card {
    padding: 18px 16px;
  }

  .campaign-panel h2,
  .campaign-card h2 {
    font-size: 20px;
  }

  .campaign-panel p,
  .campaign-lead,
  .campaign-panel span,
  .campaign-card p {
    font-size: 15px;
  }

  .registration-document h1 {
    font-size: 25px;
  }

  .registration-biodata h2,
  .registration-side h2 {
    font-size: 23px;
  }

  .registration-field label,
  .upload-field label,
  .download-row {
    font-size: 17px;
  }

  .upload-field,
  .registration-submit {
    margin-left: 24px;
  }

  .upload-field::before {
    left: -20px;
    top: 7px;
  }

  .download-icon {
    width: 36px;
    height: 40px;
    border-width: 3px;
  }

  .registration-submit {
    width: calc(100% - 24px);
    font-size: 17px;
  }

  .rules-slide h1 {
    font-size: 24px;
  }

  .rules-slide h2,
  .rules-slide h3 {
    font-size: 22px;
  }

  .rules-slide ul {
    font-size: 18px;
    line-height: 1.35;
  }

  .rules-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .rules-actions-single {
    margin-top: 34px;
  }

  .rules-page-button,
  .rules-register-button {
    min-height: 48px;
    font-size: 18px;
  }

  .rules-register-button {
    min-width: 0;
    width: min(100%, 360px);
  }

  .award-document h1 {
    margin-bottom: 18px;
  }

  .award-section h2 {
    font-size: 22px;
  }

  .award-category-list {
    padding-left: 22px;
    font-size: 18px;
  }

  .award-category-list > li + li {
    margin-top: 22px;
  }

  .award-category-list ul {
    padding-left: 22px;
  }

  .award-theme p {
    font-size: 31px;
  }

  .award-subtheme-list {
    padding-left: 22px;
    font-size: 18px;
    gap: 8px;
  }

  .winner-grid {
    grid-template-columns: 1fr;
  }

  .winner-modal {
    padding: 16px;
  }

  .winner-modal-dialog {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .page-campaign {
    padding: 14px 14px 40px;
  }

  .page-campaign .page-header {
    gap: 12px;
  }

  .page-campaign .brand-logo-tvone {
    width: 140px;
    max-width: 55vw;
    max-height: 44px;
  }

  .page-campaign .brand-logo-ki {
    max-width: 68vw;
    max-height: 80px;
  }

  .page-campaign .nav a {
    font-size: 12px;
    min-height: 36px;
    padding: 6px 8px;
  }

  /* Registration form */
  .registration-document h1 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .registration-biodata h2,
  .registration-side h2 {
    font-size: 19px;
  }

  .registration-field label,
  .upload-field label {
    font-size: 15px;
  }

  .registration-field input,
  .registration-field textarea {
    min-height: 40px;
    font-size: 16px;
    border-width: 3px;
  }

  .registration-field-synopsis textarea {
    min-height: 200px;
  }

  .upload-field,
  .registration-submit {
    margin-left: 16px;
  }

  .upload-field::before {
    left: -14px;
  }

  .registration-submit {
    width: calc(100% - 16px);
    font-size: 15px;
    min-height: 46px;
  }

  .download-row {
    font-size: 15px;
  }

  .download-icon {
    width: 32px;
    height: 36px;
    font-size: 11px;
  }

  /* Rules */
  .rules-slide h1 {
    font-size: 20px;
  }

  .rules-slide h2,
  .rules-slide h3 {
    font-size: 19px;
  }

  .rules-slide ul {
    font-size: 16px;
    padding-left: 22px;
  }

  .rules-slide ul ul {
    padding-left: 18px;
  }

  /* Award 2026 */
  .award-theme p {
    font-size: 24px;
  }

  .award-section h2 {
    font-size: 19px;
  }

  .award-category-list {
    font-size: 16px;
    padding-left: 18px;
  }

  .award-subtheme-list {
    font-size: 16px;
    padding-left: 18px;
  }

  /* Winners */
  .winner-modal {
    padding: 10px;
  }

  .winner-modal-dialog {
    padding: 14px 12px;
  }

  .winner-modal h2 {
    font-size: 18px;
  }

  /* Campaign hero */
  .campaign-copy h1 {
    font-size: 26px;
  }

  .campaign-lead {
    font-size: 14px;
  }
}

/* Registration success page */
.success-accent-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-soft), var(--gold));
  margin-top: 28px;
}

.success-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: reveal-up 0.62s cubic-bezier(0.2, 0.72, 0.22, 1) 0.1s both;
}

.success-hero {
  text-align: center;
  padding-bottom: 36px;
}

.success-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 46px;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 10px rgba(193, 156, 49, 0.15), 0 0 0 20px rgba(193, 156, 49, 0.07);
  animation: badge-pop 0.6s cubic-bezier(0.2, 0.72, 0.22, 1) 0.2s both;
}

@keyframes badge-pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.success-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: #111111;
}

.success-event {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(13px, 1vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  line-height: 1.5;
}

.success-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 156, 49, 0.5), transparent);
  margin-bottom: 40px;
}

.success-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 48px;
  align-items: start;
  margin-bottom: 44px;
}

.success-steps h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #444;
}

.success-steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.success-steps li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.45;
  color: #222;
}

.step-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(193, 156, 49, 0.12);
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

.success-contact-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(193, 156, 49, 0.3);
  padding: 22px 28px;
  min-width: 210px;
  flex-shrink: 0;
}

.success-contact-label {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

.success-contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  word-break: break-all;
}

.success-contact-email:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.success-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 44px;
  background: var(--gold);
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold-dark);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.success-home-button:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(154, 125, 39, 0.25);
}

@media (max-width: 680px) {
  .success-document {
    padding: 32px 16px 48px;
  }

  .success-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .success-contact-box {
    min-width: 0;
    text-align: left;
    padding: 16px 18px;
  }

  .success-badge {
    width: 72px;
    height: 72px;
    font-size: 36px;
  }

  .success-home-button {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .success-document {
    padding: 24px 12px 40px;
  }

  .success-badge {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin-bottom: 18px;
    box-shadow: 0 0 0 8px rgba(193, 156, 49, 0.15);
  }

  .success-hero h1 {
    font-size: 24px;
  }

  .success-event {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .success-steps h2 {
    font-size: 13px;
  }

  .success-steps li {
    font-size: 14px;
    gap: 10px;
  }

  .step-num {
    font-size: 11px;
    padding: 2px 6px;
  }

  .success-contact-label {
    font-size: 12px;
  }

  .success-contact-email {
    font-size: 13px;
  }
}
