@font-face {
  font-family: 'TRIALSagace';
  src: url('assets/fonts/TRIALSagace-Regular-BF678f1fab154dd.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TRIALSagace';
  src: url('assets/fonts/TRIALSagace-Medium-BF678f1fab0c8f7.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TRIALSagace';
  src: url('assets/fonts/TRIALSagace-Bold-BF678f1faaf3141.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TRIALSagace';
  src: url('assets/fonts/TRIALSagace-Black-BF678f1faaf3b71.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TRIALSagace';
  src: url('assets/fonts/TRIALSagace-Light-BF678f1fab0c903.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #071f46;
  --panel: #08152b;
  --paper: #f7f9fc;
  --muted: #637083;
  --gold: #ffd400;
  --cyan: #199bd7;
  --coral: #e30613;
  --green: #39a935;
  --white: #ffffff;
  --line: rgba(7, 31, 70, 0.13);
  --shadow: 0 24px 70px rgba(7, 31, 70, 0.13);
  --soft-shadow: 0 12px 30px rgba(7, 31, 70, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(25, 155, 215, 0.12), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 46%, #eef4fb 100%);
  color: var(--ink);
  font-family: "TRIALSagace", Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 38px rgba(7, 31, 70, 0.06);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0 25%, var(--gold) 25% 50%, var(--coral) 50% 75%, var(--green) 75% 100%);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(190px, 20vw, 292px);
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(7, 31, 70, 0.08);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  color: #173052;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-color: rgba(25, 155, 215, 0.35);
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.2), rgba(25, 155, 215, 0.12));
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  position: relative;
  margin-left: auto;
}

.mobile-menu summary {
  display: grid;
  place-items: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(7, 31, 70, 0.16);
  border-radius: 14px;
  background: var(--ink);
  box-shadow: var(--soft-shadow);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu nav a {
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.mobile-menu nav a[aria-current="page"],
.mobile-menu nav a:hover {
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.28), rgba(25, 155, 215, 0.13));
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(1.08) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 70, 0.96), rgba(7, 31, 70, 0.66) 40%, rgba(7, 31, 70, 0.12)),
    linear-gradient(180deg, rgba(227, 6, 19, 0.14), transparent 38%, rgba(255, 212, 0, 0.12));
}

.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 120px clamp(18px, 6vw, 84px) 74px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7.4vw, 6.35rem);
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.84);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #fff06a);
  color: var(--ink);
  border-color: var(--gold);
}

.button.ghost {
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(7, 31, 70, 0.16);
}

.stats-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1160px, calc(100% - 36px));
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stats-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.content {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

.band {
  background: rgba(255, 255, 255, 0.74);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.split > p {
  margin: 28px 0 0;
  color: #39414b;
  font-size: 1.15rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.edition-panel,
.partner-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.edition-panel > div:first-child p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.cta-card {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(7, 31, 70, 0.96), rgba(10, 77, 137, 0.92)),
    radial-gradient(circle at top right, rgba(255, 212, 0, 0.36), transparent 14rem);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-card span,
.day-grid span,
.competition-grid span,
.next-steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid,
.activity-grid,
.partner-grid,
.impact-grid,
.day-grid,
.schedule-grid,
.competition-grid,
.prize-grid,
.next-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.activity-grid article,
.partner-grid article,
.impact-grid article,
.day-grid article,
.schedule-grid article,
.competition-grid article,
.prize-grid article,
.next-steps article {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.feature-card span,
.impact-grid span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--coral);
  font-weight: 900;
}

.feature-card p,
.activity-grid p,
.partner-grid p,
.impact-grid p,
.day-grid p,
.schedule-grid p,
.competition-grid p,
.prize-grid p,
.next-steps p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  padding: 11px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), #0a4d89);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.page-hero {
  padding: clamp(78px, 10vw, 132px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(7, 31, 70, 0.96), rgba(10, 77, 137, 0.88)),
    radial-gradient(circle at 82% 24%, rgba(255, 212, 0, 0.36), transparent 24rem),
    url("assets/salon-hero.png") center / cover no-repeat;
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.partner-hero {
  background:
    linear-gradient(135deg, rgba(7, 31, 70, 0.94) 0%, rgba(10, 77, 137, 0.86) 48%, rgba(227, 6, 19, 0.78) 120%),
    radial-gradient(circle at 82% 18%, rgba(255, 212, 0, 0.34), transparent 22rem),
    url("assets/salon-hero.png") center / cover no-repeat;
}

.impact-hero {
  background:
    linear-gradient(135deg, rgba(7, 31, 70, 0.94) 0%, rgba(13, 90, 124, 0.86) 50%, rgba(57, 169, 53, 0.78) 130%),
    radial-gradient(circle at 78% 12%, rgba(255, 212, 0, 0.28), transparent 22rem),
    url("assets/salon-hero.png") center / cover no-repeat;
}

.concours-hero {
  background:
    linear-gradient(135deg, rgba(7, 31, 70, 0.94) 0%, rgba(10, 77, 137, 0.86) 42%, rgba(227, 6, 19, 0.78) 120%),
    radial-gradient(circle at 82% 16%, rgba(255, 212, 0, 0.42), transparent 24rem),
    url("assets/salon-hero.png") center / cover no-repeat;
}

.participate-hero {
  background:
    linear-gradient(135deg, rgba(7, 31, 70, 0.94) 0%, rgba(10, 77, 137, 0.86) 48%, rgba(57, 169, 53, 0.78) 130%),
    radial-gradient(circle at 82% 16%, rgba(255, 212, 0, 0.38), transparent 24rem),
    url("assets/salon-hero.png") center / cover no-repeat;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.dot {
  position: absolute;
  left: 154px;
  top: 38px;
  width: 14px;
  height: 14px;
  background: var(--gold);
}

.activity-grid,
.partner-grid,
.impact-grid,
.day-grid,
.schedule-grid,
.competition-grid,
.next-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.activity-grid article,
.partner-grid article,
.day-grid article,
.schedule-grid article {
  min-height: 176px;
  background: rgba(255, 255, 255, 0.72);
}

.schedule-grid article strong {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--coral);
  text-transform: uppercase;
}

.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gala,
.offers,
.indicators,
.criteria {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.check-list,
.result-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.result-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
}

.check-list li::before,
.result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
}

.two-columns {
  columns: 2 260px;
  column-gap: 34px;
}

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

.impact-grid article {
  min-height: 260px;
  background: linear-gradient(150deg, var(--ink), #0a4d89);
  color: var(--white);
}

.competition-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.86));
}

.competition-grid span {
  color: var(--cyan);
}

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

.prize-grid article {
  min-height: 150px;
  box-shadow: var(--soft-shadow);
}

.prize-grid strong {
  color: var(--coral);
  font-size: 1.1rem;
}

.participation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.profile-panel,
.signup-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.profile-list span {
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 155, 215, 0.12), rgba(255, 212, 0, 0.16));
  color: var(--ink);
  font-weight: 800;
}

.signup-form {
  display: grid;
  gap: 18px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(7, 31, 70, 0.16);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.signup-form textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-actions p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.next-steps article {
  min-height: 190px;
}

.partner-cta {
  grid-template-columns: minmax(0, 1fr) auto;
}

.impact-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.metric-table {
  border-top: 1px solid var(--line);
}

.metric-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.metric-table span {
  color: var(--muted);
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin: 40px 0 14px;
  font-size: 1.5rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  padding: 4px 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  color: var(--cyan);
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.contact-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-grid h3 {
  margin-bottom: 10px;
}

.contact-grid a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: clamp(40px, 6vw, 64px) clamp(18px, 4vw, 56px) 26px;
  background: linear-gradient(135deg, var(--ink), #082b5f);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-title {
  font-weight: 850;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.footer-brand p:first-child {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--white);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  color: var(--ink);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-links {
  margin-top: 0;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 650;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-header {
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .split,
  .gala,
  .offers,
  .indicators,
  .criteria,
  .edition-panel,
  .partner-cta,
  .participation-layout,
  .timeline article {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .activity-grid,
  .partner-grid,
  .impact-grid,
  .day-grid,
  .schedule-grid,
  .competition-grid,
  .prize-grid,
  .next-steps,
  .result-list,
  .stats-strip,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dot {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

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

  .hero {
    min-height: 86vh;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 31, 70, 0.36), rgba(7, 31, 70, 0.96)),
      linear-gradient(135deg, rgba(255, 212, 0, 0.14), rgba(227, 6, 19, 0.12));
  }

  .hero-overlay {
    padding: 96px 18px 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.25rem);
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .feature-grid,
  .activity-grid,
  .partner-grid,
  .impact-grid,
  .day-grid,
  .schedule-grid,
  .competition-grid,
  .prize-grid,
  .next-steps,
  .stats-strip,
  .form-row,
  .result-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    margin-top: -22px;
    border-radius: 20px;
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-strip div:last-child {
    border-bottom: 0;
  }

  .metric-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .two-columns {
    columns: 1;
  }

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

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