:root {
  --deep: #071f3d;
  --navy: #092b59;
  --blue: #146ca8;
  --ice: #eaf8ff;
  --paper: #fffdf8;
  --line: #d8e7f0;
  --text: #162236;
  --muted: #637287;
  --gold: #edae24;
  --rose: #8a1021;
  --green: #18794e;
  --shadow: 0 18px 60px rgba(7, 31, 61, .14);
  --serif: "Playfair Display", "Bodoni 72", Didot, Georgia, serif;
  --sans: "DM Sans", Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #f1faff 0%, #ffffff 34%, #fffaf0 100%);
  font-family: var(--sans);
  line-height: 1.58;
}

a {
  color: inherit;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 48px);
  color: white;
  background:
    radial-gradient(circle at 14% 50%, rgba(155, 226, 255, .16), transparent 30%),
    linear-gradient(90deg, rgba(4, 20, 43, .98), rgba(7, 31, 61, .97) 50%, rgba(18, 9, 22, .98));
  border-bottom: 1px solid rgba(155, 226, 255, .2);
  box-shadow: 0 10px 34px rgba(4, 20, 43, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(188px, 18vw, 238px);
  height: auto;
  filter:
    drop-shadow(0 5px 15px rgba(0, 0, 0, .34))
    drop-shadow(0 0 14px rgba(155, 226, 255, .12));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(235, 248, 255, .86);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: white;
}

.nav .button {
  min-height: 40px;
  border: 1px solid rgba(237, 174, 36, .72);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--deep);
  background: linear-gradient(135deg, #fff7d9, #dff8ff 56%, #b9eaff);
}

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

.hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(34px, 6vw, 58px);
  color: white;
  background:
    linear-gradient(90deg, rgba(4, 20, 43, .94), rgba(4, 20, 43, .72) 48%, rgba(4, 20, 43, .28)),
    url("../images/frozen-sponsorship-hero.jpg");
  background-size: cover;
  background-position: center 34%;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--deep);
  line-height: 1.05;
}

.hero h1 {
  max-width: 850px;
  margin: 0 0 16px;
  color: white;
  font-size: clamp(40px, 6.8vw, 78px);
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(17px, 2vw, 21px);
  text-shadow: 0 2px 14px rgba(4, 20, 43, .5);
}

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

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 950;
}

.action.primary {
  color: var(--deep);
  background: white;
}

.action.secondary {
  border: 1px solid rgba(255, 255, 255, .42);
  color: white;
  background: rgba(255, 255, 255, .12);
}

.section {
  padding: clamp(34px, 6vw, 64px) 0;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 790px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

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

.card,
.callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 40px rgba(7, 31, 61, .06);
}

.card h3,
.callout h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.card p,
.card ul,
.callout p {
  margin: 0;
  color: var(--muted);
}

.card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.callout {
  display: grid;
  gap: 14px;
  border-color: rgba(237, 174, 36, .58);
  background:
    linear-gradient(135deg, rgba(255, 247, 217, .96), rgba(234, 248, 255, .96));
}

.fact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 12px;
  border-bottom: 1px solid #e5eef4;
  padding-bottom: 12px;
}

.fact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fact-list dt {
  color: var(--deep);
  font-weight: 950;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
}

.resource-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--deep);
  background: white;
  text-decoration: none;
  font-weight: 900;
}

.resource-list span {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(7, 31, 61, .05);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5eef4;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--deep);
  background: #f3fbff;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td strong {
  color: var(--deep);
}

tr:last-child td {
  border-bottom: 0;
}

.note {
  border-left: 4px solid var(--gold);
  padding: 12px 0 12px 16px;
  color: var(--muted);
}

.footer {
  padding: 42px 0 36px;
  color: rgba(251, 239, 213, .78);
  background: linear-gradient(180deg, #170912, #10070f);
  border-top: 1px solid rgba(237, 174, 36, .28);
  font-size: 14px;
  font-weight: 700;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 172px;
  height: auto;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(237, 174, 36, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: rgba(251, 239, 213, .82);
  text-decoration: none;
}

.footer-links a:hover {
  color: #7ed8ff;
}

.footer-note {
  display: grid;
  gap: 8px;
  color: rgba(251, 239, 213, .7);
  text-align: right;
}

@media (max-width: 840px) {
  .top {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-note {
    text-align: left;
  }
}
