:root {
  --orange: #ff6b00;
  --orange-2: #ffb02f;
  --green: #0e9f35;
  --green-2: #0a6829;
  --blue: #062b68;
  --blue-2: #04183d;
  --ink: #102035;
  --muted: #647085;
  --paper: #fffdf8;
  --soft: #f6fbff;
  --line: rgba(6, 43, 104, .14);
  --line-2: rgba(255, 107, 0, .24);
  --shadow: 0 24px 70px rgba(6, 43, 104, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 107, 0, .18), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(14, 159, 53, .14), transparent 32rem),
    linear-gradient(180deg, #fff8ee 0%, #f7fbff 44%, #fff9ee 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.wrap {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 43, 104, .12);
  background: rgba(255, 253, 248, .86);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 168px;
  max-height: 62px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #244361;
  font-size: 14px;
  font-weight: 850;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--green));
  box-shadow: 0 14px 34px rgba(255, 107, 0, .22);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-btn span {
  opacity: 0;
}

.menu-open .menu-btn::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-btn::after {
  transform: translateY(-7px) rotate(-45deg);
}

.main {
  overflow: hidden;
}

.hero {
  padding: 38px 0 54px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 560px;
  padding: 34px;
  border: 1px solid rgba(255, 107, 0, .24);
  border-radius: 34px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .9) 37%, rgba(255, 240, 220, .38) 38%, rgba(237, 255, 240, .65) 100%);
  box-shadow: var(--shadow);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto -12% -36% 36%;
  height: 300px;
  transform: rotate(-6deg);
  background: linear-gradient(90deg, rgba(255, 107, 0, .22), rgba(14, 159, 53, .2), rgba(6, 43, 104, .12));
  filter: blur(6px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 500px;
  max-width: 520px;
  padding: 18px;
}

.hero-media {
  position: relative;
  z-index: 2;
  flex: 1 1 620px;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(6, 43, 104, .22);
}

.badge-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(6, 43, 104, .18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(14, 159, 53, .24);
  border-radius: 999px;
  background: rgba(14, 159, 53, .08);
  color: var(--green-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: #082447;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  color: #0b2447;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: break-word;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 107, 0, .42);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ffbf4b);
  color: #fff;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 107, 0, .2);
}

.btn.ghost {
  color: var(--blue);
  background: rgba(255, 255, 255, .78);
  border-color: var(--line);
}

.btn.ghost:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chips span {
  padding: 8px 11px;
  border: 1px solid rgba(14, 159, 53, .22);
  border-radius: 12px;
  background: #fff;
  color: #0d4422;
  font-size: 13px;
  font-weight: 900;
}

.band {
  padding: 58px 0;
}

.band.alt {
  background: linear-gradient(180deg, rgba(255, 247, 235, .72), rgba(241, 249, 255, .54));
  border-top: 1px solid rgba(255, 107, 0, .1);
  border-bottom: 1px solid rgba(6, 43, 104, .08);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--muted);
}

.stadium-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(6, 43, 104, .92), rgba(4, 24, 61, .95)),
    #071a40;
  box-shadow: 0 24px 70px rgba(6, 43, 104, .2);
}

.stadium-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 240px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02));
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.stadium-card::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: #fff;
  font-weight: 950;
}

.stadium-card p {
  color: rgba(255, 255, 255, .72);
}

.stadium-card:hover,
.tile:hover,
.panel:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, .5);
  box-shadow: 0 26px 62px rgba(255, 107, 0, .15);
}

.split {
  display: flex;
  align-items: center;
  gap: 30px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.copy,
.visual {
  flex: 1 1 0;
  min-width: 0;
}

.frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .34), transparent 25%, transparent 76%, rgba(14, 159, 53, .12));
}

.frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tile,
.panel {
  flex: 1 1 240px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 36px rgba(6, 43, 104, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tile p,
.panel p,
.faq-a p,
.legal-box p {
  color: var(--muted);
  margin-bottom: 0;
}

.panel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.panel .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 950;
}

.wide-visual {
  margin-top: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-q span {
  flex: 0 0 auto;
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
}

.faq-a p {
  padding: 0 18px 18px;
}

.faq-item.open .faq-a {
  max-height: 240px;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

.page-hero {
  padding: 46px 0 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-2);
  font-weight: 850;
}

.page-hero .frame img {
  aspect-ratio: 16 / 7;
}

.legal-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 42px rgba(6, 43, 104, .08);
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.contact-list a,
.contact-list span {
  flex: 1 1 240px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--green-2);
  font-weight: 900;
}

.footer {
  padding: 38px 0 32px;
  border-top: 1px solid rgba(6, 43, 104, .12);
  background: #fffdf8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  max-width: 450px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a:hover {
  color: var(--orange);
}

.tiny {
  margin-top: 18px;
  color: #7c8796;
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid rgba(6, 43, 104, .12);
    background: rgba(255, 253, 248, .97);
  }

  .menu-open .nav {
    display: flex;
  }

  .nav a {
    border-radius: 14px;
  }

  .hero-shell,
  .split,
  .stadium-grid,
  .panel-strip {
    flex-direction: column;
  }

  .hero-shell {
    min-height: auto;
  }

  .split.reverse {
    flex-direction: column;
  }

  .section-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1220px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 126px;
  }

  .topbar-inner {
    min-height: 66px;
  }

  .nav {
    inset: 66px 0 auto 0;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 8px;
  }

  .badge-logo {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .actions .btn {
    width: 100%;
  }

  .chips span {
    flex: 1 1 130px;
  }

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