:root {
  --blue-950: #061a39;
  --blue-900: #082653;
  --blue-800: #0b3670;
  --blue-100: #eaf3ff;
  --orange: #f47b16;
  --orange-600: #df6608;
  --yellow: #ffc928;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5f6b80;
  --line: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(3, 15, 34, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #f7f9fc;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(6, 26, 57, .88);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand img {
  width: 210px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
}

.nav a:hover {
  color: var(--yellow);
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease, top .22s ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 132px 0 64px;
  color: var(--white);
  background: radial-gradient(circle at 76% 18%, #124d91 0, var(--blue-900) 34%, var(--blue-950) 78%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(244, 123, 22, .95) 0 12%, transparent 12.2%),
    linear-gradient(320deg, transparent 0 76%, rgba(255, 201, 40, .96) 76.2% 100%);
  opacity: .95;
}

.hero::after {
  content: "";
  position: absolute;
  right: -13vw;
  bottom: -28vw;
  width: 58vw;
  aspect-ratio: 1;
  border: 42px solid rgba(255, 201, 40, .16);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  padding-top: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(46px, 4.7vw, 55px);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: -4px 5px 2px #0000006e;
}

.hero-tagline {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.14;
  font-weight: 800;
  text-shadow: -4px 5px 2px #0000006e;
}

.lead {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.hero-actions,
.hero-number {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 7px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.icon-instagram {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.nav-cta .icon-instagram {
  width: 17px;
  height: 17px;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-600);
}

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

.hero-number {
  width: fit-content;
  padding: 10px 18px;
  background: rgb(255 255 255);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-number span {
  font-weight: 800;
  text-transform: uppercase;
  color: #061a39;
}

.hero-number strong {
  color: var(--orange);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.hero-photo {
  align-self: end;
  display: flex;
  justify-content: center;
  min-height: 620px;
  margin-bottom: -90px;
}

.hero-photo img {
  width: min(660px, 108%);
  max-width: none;
  align-self: end;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 48px rgba(0, 0, 0, .42));
  transform-origin: 50% 100%;
  animation: hero-candidate-float 10s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes hero-candidate-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter: drop-shadow(0 30px 48px rgba(0, 0, 0, .42));
  }

  22% {
    transform: translate3d(3px, -5px, 0) rotate(.14deg) scale(1.002);
  }

  46% {
    transform: translate3d(-2px, -8px, 0) rotate(-.1deg) scale(1.004);
    filter: drop-shadow(0 33px 50px rgba(0, 0, 0, .39));
  }

  70% {
    transform: translate3d(2px, -4px, 0) rotate(.08deg) scale(1.002);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter: drop-shadow(0 30px 48px rgba(0, 0, 0, .42));
  }
}

.intro-strip {
  color: var(--white);
  background: var(--orange);
}

.strip-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.strip-grid p {
  margin: 0 auto 0 0;
  font-size: 22px;
  font-weight: 900;
}

.strip-grid span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition-duration: 0.4s;
}

section.intro-strip span:hover {
margin-top: -10px;
background-color: #072045;
}

.section {
  padding: 92px 0;
}

.split {
  background: var(--white);
}

.split-grid,
.region-grid,
.reel-grid,
.final-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.portrait-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-900);
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section h2,
.final-cta h2 {
  color: var(--blue-950);
  font-size: clamp(32px, 4vw, 35px);
  font-weight: 900;
}

.section-copy p:not(.eyebrow),
.region p,
.final-cta p,
.reel-card p,
.reel-commitments p,
.statement-box p {
  color: var(--muted);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 122px;
  padding: 18px;
  border-radius: 8px;
  background: var(--blue-100);
  border: 1px solid transparent;
  box-shadow: 0 10px 26px rgba(8, 38, 83, 0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: -60% -30% auto;
  z-index: -1;
  height: 90px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  transform: translateX(-120%) rotate(14deg);
  transition: transform .65s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(244, 123, 22, .38);
  background: #f1f7ff;
  box-shadow: 0 18px 38px rgba(8, 38, 83, .14);
}

.stat-card:hover::before {
  transform: translateX(120%) rotate(14deg);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stats strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  transition: transform .25s ease, color .25s ease;
}

.stat-card:hover strong {
  color: var(--orange-600);
  transform: scale(1.06);
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

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

.statement-box {
  text-align: center;
}

.statement blockquote {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.7vw, 45px);
  line-height: 1.08;
  font-weight: 900;
}

.statement-box p:last-child {
  color: rgba(255, 255, 255, .76);
  max-width: 1040px;
  margin: 40px auto 0;
}

.proposals {
  background: #f7f9fc;
}

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

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

.proposal-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #e4eaf2;
  box-shadow: 0 14px 34px rgba(8, 38, 83, .08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.proposal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--orange), var(--yellow));
  transform: scaleY(.16);
  transform-origin: top;
  transition: transform .28s ease;
}

.proposal-card::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(244, 123, 22, .1);
  transform: scale(.25);
  opacity: 0;
  transition: transform .35s ease, opacity .25s ease;
}

.proposal-card:hover {
  transform: translateY(-8px) rotate(-.55deg);
  border-color: rgba(244, 123, 22, .34);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  box-shadow: 0 24px 48px rgba(8, 38, 83, .14);
}

.proposal-card:hover::before {
  transform: scaleY(1);
}

.proposal-card:hover::after {
  transform: scale(1);
  opacity: 1;
}

.proposal-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  border-radius: 6px;
  color: var(--orange);
  font-weight: 900;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.proposal-card:hover span {
  color: var(--white);
  background: var(--orange);
  transform: translateX(4px);
}

.proposal-card h3 {
  position: relative;
  z-index: 1;
  margin: 20px 0 12px;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.1;
  transition: color .25s ease;
}

.proposal-card:hover h3 {
  color: var(--blue-950);
}

.proposal-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.region {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.region::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 7vw;
  width: min(440px, 32vw);
  aspect-ratio: 1;
  border: 34px solid rgba(244, 123, 22, .08);
  border-radius: 44% 56% 48% 52%;
  transform: rotate(-18deg);
}

.region::after {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 54px;
  width: min(620px, 45vw);
  height: 120px;
  border-bottom: 2px dashed rgba(8, 38, 83, .16);
  border-radius: 0 0 50% 50%;
  transform: rotate(-4deg);
}

.region-grid {
  position: relative;
  z-index: 1;
}

.city-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-list::before {
  content: "";
  position: absolute;
  inset: 28px 24px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 123, 22, .22) 50%, transparent 0) 0 0 / 18px 2px repeat-x,
    linear-gradient(rgba(244, 123, 22, .16) 50%, transparent 0) 0 0 / 2px 18px repeat-y;
  opacity: .55;
  pointer-events: none;
}

.city-list li {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 16px 16px 16px 48px;
  border-radius: 7px;
  color: var(--blue-950);
  background: var(--blue-100);
  border: 1px solid transparent;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 38, 83, 0);
  transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.city-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(244, 123, 22, .28);
  transform: translateY(-50%);
  transition: transform .24s ease, box-shadow .24s ease;
}

.city-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 57, .08), transparent 48%);
  opacity: 0;
  transition: opacity .24s ease;
}

.city-list li span {
  position: relative;
  z-index: 1;
}

.city-list li:hover {
  transform: translateX(8px);
  background: #fff7ef;
  border-color: rgba(244, 123, 22, .28);
  box-shadow: 0 18px 34px rgba(8, 38, 83, .1);
}

.city-list li:hover::before {
  transform: translateY(-50%) scale(1.18);
  box-shadow: 0 0 0 8px rgba(244, 123, 22, .14);
}

.city-list li:hover::after {
  opacity: 1;
}

.reel {
  position: relative;
  overflow: hidden;
  color: var(--blue-950);
  background: #fff7ef;
}

.reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(244, 123, 22, .09) 0 21%, transparent 21.2%),
    radial-gradient(circle at 90% 10%, rgba(8, 38, 83, .08), transparent 26%);
}

.reel::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -120px;
  width: 310px;
  aspect-ratio: 1;
  border: 24px solid rgba(244, 123, 22, .1);
  border-radius: 50%;
}

.reel-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1fr;
}

.reel-card,
.reel-commitments {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid #f5d2b5;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 22px 54px rgba(8, 38, 83, .08);
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--orange), var(--yellow));
}

.reel-card h2 {
  max-width: 620px;
  color: var(--blue-950);
}

.reel-card p {
  color: var(--muted);
}

.reel-card strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue-900);
  font-size: 18px;
  line-height: 1.2;
}

.reel-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reel-steps li {
  position: relative;
  min-height: 98px;
  padding: 18px 20px 18px 72px;
  border-radius: 7px;
  color: var(--blue-950);
  background: var(--white);
  border: 1px solid #f2e1d4;
  font-weight: 800;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.reel-steps li::before {
  content: counter(commitment);
  counter-increment: commitment;
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  background: var(--yellow);
  font-size: 15px;
  font-weight: 900;
}

.reel-steps li:hover {
  transform: translateX(8px);
  border-color: rgba(244, 123, 22, .35);
  box-shadow: 0 16px 34px rgba(8, 38, 83, .1);
}

.reel-steps {
  counter-reset: commitment;
}

.reel-steps span {
  display: block;
  color: var(--blue-900);
  font-size: 21px;
  line-height: 1.15;
}

.reel-steps p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.final-cta {
  padding: 92px 0;
  background: linear-gradient(100deg, #fff 0 62%, #fff3e8 62% 100%);
}

.final-grid {
  grid-template-columns: 1.05fr .75fr;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 123, 22, .16);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel > strong,
.cta-panel > span,
.cta-panel > small {
  display: block;
}

.cta-panel > strong {
  font-size: 28px;
  line-height: 1.1;
}

.cta-panel > span {
  margin: 8px 0 10px;
  color: var(--yellow);
  font-weight: 900;
}

.cta-panel > small {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #d8e8ff;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.cta-panel .btn {
  width: fit-content;
  min-height: 50px;
  padding-inline: 22px;
  box-shadow: 0 14px 28px rgba(244, 123, 22, .22);
}

.cta-panel .btn span {
  margin: 0;
  color: var(--white);
}

.cta-instagram-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.cta-instagram-mark .icon-instagram {
  width: 27px;
  height: 27px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, .72);
  background: #031126;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid img {
  width: 180px;
}

.footer-grid p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: grid;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    opacity: 0;
    transition: max-height .28s ease, opacity .22s ease, padding-top .22s ease;
  }

  .site-header.is-menu-open .nav {
    max-height: 280px;
    padding-top: 16px;
    opacity: 1;
  }

  .nav a {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .nav-cta {
    margin-top: 12px;
    border-top: 0;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid,
  .split-grid,
  .region-grid,
  .reel-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

.hero-copy p.eyebrow {
  color: #222e37;
}

  .hero-photo {
    max-width: 620px;
    margin: 0 auto -60px;
    min-height: auto;
  }

  .hero-photo img {
    width: min(520px, 100%);
  }

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

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

  .site-header {
    padding: 14px;
  }

  .brand img {
    width: 174px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .lead,
  .section-copy p:not(.eyebrow),
  .region p,
  .final-cta p,
  .reel-card p,
  .reel-commitments p,
  .statement-box p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-number strong {
    font-size: 38px;
  }

  .strip-grid p {
    width: 100%;
    font-size: 19px;
  }

  .section,
  .final-cta {
    padding: 62px 0;
  }

  .stats,
  .proposal-grid,
  .city-list {
    grid-template-columns: 1fr;
  }

  .proposal-card,
  .reel-card,
  .reel-commitments {
    min-height: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-photo img {
    animation: none;
  }
}
