:root {
  --navy-950: #071a36;
  --navy-900: #0b2751;
  --navy-800: #123a78;
  --blue-700: #1556b6;
  --blue-600: #2472e8;
  --blue-500: #3d86f5;
  --blue-100: #e8f2ff;
  --blue-50: #f4f8ff;
  --teal-600: #0f927b;
  --teal-100: #dcf8f1;
  --orange-500: #f39b24;
  --ink: #14213a;
  --text: #35435c;
  --muted: #67748a;
  --line: #dfe6f0;
  --surface: #f7f9fc;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(7, 26, 54, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 26, 54, 0.13);
  --shadow-lg: 0 38px 90px rgba(7, 26, 54, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
select,
input {
  font-size: 16px;
}

img,
svg {
  max-width: 100%;
}

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

button,
select,
input {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

button,
select {
  border: 0;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy-950);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--navy-950);
  color: #d9e8ff;
  font-size: 12px;
  font-weight: 700;
}

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

.topbar-inner > span,
.topbar-inner > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: #69dfbf;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 230, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(36, 114, 232, 0.24);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  padding: 11px 12px;
  border-radius: 11px;
  color: #3b4961;
  font-size: 14px;
  font-weight: 750;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--blue-50);
  color: var(--blue-700);
}

.primary-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 18px;
  background: var(--navy-900);
  color: var(--white);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  background: var(--blue-700);
  color: var(--white);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 20px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 90px;
  background:
    linear-gradient(135deg, rgba(244, 248, 255, 0.98), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9e4f4, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  width: 480px;
  height: 480px;
  top: -260px;
  right: 4%;
  background: radial-gradient(circle, rgba(61, 134, 245, 0.18), rgba(61, 134, 245, 0));
}

.hero-orb-two {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -210px;
  background: radial-gradient(circle, rgba(15, 146, 123, 0.13), rgba(15, 146, 123, 0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow-light {
  color: #b9d3ff;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(46px, 5.5vw, 72px);
}

.hero-lead {
  max-width: 710px;
  margin: 24px 0 30px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(21, 86, 182, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-900);
}

.button-ghost {
  border: 1px solid #cfdced;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy-900);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #a8bfdf;
  box-shadow: var(--shadow-sm);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.hero-benefits {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  color: #526077;
  font-size: 13px;
  font-weight: 750;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-benefits svg {
  width: 17px;
  height: 17px;
  color: var(--teal-600);
  stroke-width: 2.2;
}

.finder-card {
  scroll-margin-top: 110px;
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.finder-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -60px;
  right: -70px;
  border-radius: 50%;
  background: rgba(61, 134, 245, 0.18);
}

.finder-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.finder-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #bcd6ff;
}

.finder-icon svg {
  width: 24px;
  height: 24px;
}

.finder-heading span:not(.finder-icon) {
  color: #a9c8f8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-heading h2 {
  margin: 3px 0 0;
  color: var(--white);
  font-size: 25px;
  line-height: 1.2;
}

.holiday-finder {
  position: relative;
  display: grid;
  gap: 15px;
}

.field-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #d9e8ff;
  font-size: 12px;
  font-weight: 800;
}

.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.field select:focus-visible {
  outline: 3px solid rgba(100, 173, 255, 0.38);
  outline-offset: 2px;
}

.form-error {
  margin: -4px 0 0;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(255, 185, 76, 0.14);
  color: #ffd89b;
  font-size: 12px;
  font-weight: 750;
}

.finder-submit {
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 54, 113, 0.3);
}

.finder-submit:hover,
.finder-submit:focus-visible {
  background: #5a95f4;
}

.finder-submit svg {
  width: 20px;
  height: 20px;
}

.finder-footer {
  position: relative;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #b8cae6;
  font-size: 11px;
  font-weight: 750;
}

.finder-footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.finder-footer svg {
  width: 15px;
  height: 15px;
}

.finder-footer a {
  color: var(--white);
}

.finder-footer a:hover,
.finder-footer a:focus-visible {
  text-decoration: underline;
}

.quick-facts {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-facts-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.quick-facts-grid div {
  min-height: 66px;
  padding: 0 28px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.quick-facts-grid div:first-child {
  padding-left: 0;
}

.quick-facts-grid div:last-child {
  border-right: 0;
}

.quick-facts-grid strong {
  color: var(--navy-950);
  font-size: 25px;
  line-height: 1.1;
}

.quick-facts-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .eyebrow::after {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: 60px;
  align-items: end;
}

.section h2,
.final-cta h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.section-heading p,
.tools-intro > p,
.reliability-copy > p,
.explainer-grid article p,
.faq-intro p,
.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.split p {
  margin: 0;
}

.year-section {
  padding-top: 96px;
}

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

.year-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.year-card:hover,
.year-card:focus-visible {
  transform: translateY(-5px);
  border-color: #abc2e6;
  box-shadow: var(--shadow-md);
}

.year-card.is-current {
  border-color: #8eb6f1;
  background: linear-gradient(150deg, #f8fbff, #eef5ff);
}

.year-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--teal-100);
  color: #08725f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.year-label {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
}

.year-card strong {
  margin-top: 2px;
  color: var(--navy-950);
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.year-card p {
  margin: 20px 0 0;
  color: var(--muted);
}

.card-link {
  margin-top: auto;
  padding-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
}

.card-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.year-card:hover .card-link svg,
.holiday-card:hover .card-link svg {
  transform: translateX(4px);
}

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

.state-card {
  min-height: 92px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.state-card:hover,
.state-card:focus-visible {
  transform: translateY(-4px);
  border-color: #aac1e5;
  box-shadow: var(--shadow-sm);
}

.state-code {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.state-name {
  color: #2c3a51;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.state-arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-700);
}

.state-arrow svg {
  width: 17px;
  height: 17px;
}

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

.holiday-card {
  min-height: 300px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.holiday-card:hover,
.holiday-card:focus-visible {
  transform: translateY(-5px);
  border-color: #abc2e6;
  box-shadow: var(--shadow-md);
}

.holiday-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.holiday-icon svg {
  width: 30px;
  height: 30px;
}

.holiday-card h3 {
  margin: 24px 0 8px;
  color: var(--navy-950);
  font-size: 23px;
  line-height: 1.2;
}

.holiday-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.tools-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(61, 134, 245, 0.4), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.tools-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.tools-intro h2 {
  color: var(--white);
}

.tools-intro > p {
  color: #c9d8ed;
}

.tools-intro .button {
  margin-top: 28px;
}

.tool-cards {
  display: grid;
  gap: 13px;
}

.tool-cards a {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.tool-cards a:hover,
.tool-cards a:focus-visible {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.tool-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #aecdff;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
}

.tool-cards div {
  display: grid;
}

.tool-cards strong {
  color: var(--white);
  font-size: 15px;
}

.tool-cards small {
  margin-top: 3px;
  color: #b9c9df;
  font-size: 12px;
}

.tool-arrow {
  width: 19px;
  height: 19px;
  color: #9bbff7;
}

.reliability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
}

.reliability-copy h2 {
  max-width: 590px;
}

.text-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 850;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

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

.reliability-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.reliability-list article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--teal-100);
  color: #08725f;
  font-size: 11px;
  font-weight: 900;
}

.reliability-list h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 18px;
}

.reliability-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.explainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.explainer-grid article p {
  max-width: 720px;
}

.help-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.help-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.help-icon svg {
  width: 29px;
  height: 29px;
}

.help-card h3 {
  margin: 25px 0 10px;
  color: var(--navy-950);
  font-size: 26px;
  line-height: 1.2;
}

.help-card p {
  margin: 0;
  color: var(--muted);
}

.help-links {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.help-links a {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 850;
}

.help-links svg {
  width: 17px;
  height: 17px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 78px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-list details[open] {
  border-color: #aac1e5;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  min-height: 76px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-950);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 20px;
  transition: transform 180ms ease;
}

.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
}

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

.final-cta {
  padding: 0 0 104px;
}

.final-cta-box {
  padding: 54px 58px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background:
    radial-gradient(circle at 85% 15%, rgba(61, 134, 245, 0.48), transparent 25%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  max-width: 760px;
  color: var(--white);
}

.final-cta p {
  max-width: 720px;
  color: #c9d8ed;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 76px 0 28px;
  background: var(--navy-950);
  color: #b9c8dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.75fr);
  gap: 44px;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: #8ea7c7;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #9fb0c6;
  font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid h3 {
  margin: 4px 0 8px;
  color: var(--white);
  font-size: 14px;
}

.footer-grid a:not(.brand) {
  color: #a7b7cc;
  font-size: 13px;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: var(--white);
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8094af;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #b8cae0;
  font-weight: 750;
}

@media (max-width: 1060px) {
  .primary-nav a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 42px;
  }

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

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

@media (max-width: 900px) {
  .topbar-inner > div {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    display: none;
    align-items: stretch;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 13px;
  }

  .primary-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid,
  .tools-layout,
  .reliability-grid,
  .explainer-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .finder-card {
    max-width: 680px;
  }

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

  .quick-facts-grid div:nth-child(2) {
    border-right: 0;
  }

  .quick-facts-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .quick-facts-grid div:nth-child(3) {
    padding-left: 0;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .faq-intro {
    position: static;
  }

  .final-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner {
    min-height: 42px;
    justify-content: center;
    text-align: center;
  }

  .topbar-inner > span {
    line-height: 1.3;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 58px 0 66px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-benefits {
    display: grid;
  }

  .finder-card {
    padding: 22px;
    border-radius: 25px;
  }

  .finder-heading h2 {
    font-size: 22px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts-grid div,
  .quick-facts-grid div:first-child,
  .quick-facts-grid div:nth-child(3) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .year-cards,
  .holiday-grid,
  .state-grid {
    grid-template-columns: 1fr;
  }

  .year-card {
    min-height: 285px;
  }

  .tools-layout,
  .reliability-grid,
  .explainer-grid,
  .faq-layout {
    gap: 44px;
  }

  .reliability-list article {
    grid-template-columns: 1fr;
  }

  .help-card {
    padding: 28px;
  }

  .faq-list summary {
    min-height: 70px;
    padding: 18px;
  }

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

  .final-cta {
    padding-bottom: 76px;
  }

  .final-cta-box {
    padding: 38px 28px;
    border-radius: 25px;
  }

  .final-cta .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Dynamic holiday pages ===== */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2314213a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

.holiday-page {
  background: var(--white);
}

.holiday-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 74px;
  background:
    radial-gradient(circle at 84% 15%, rgba(61, 134, 245, 0.16), transparent 28%),
    linear-gradient(135deg, #f4f8ff 0%, #ffffff 65%);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--blue-700);
}

.holiday-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 64px;
  align-items: center;
}

.holiday-hero h1 {
  max-width: 850px;
  margin: 15px 0 20px;
  color: var(--navy-950);
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.holiday-lead {
  max-width: 820px;
  margin: 0 0 28px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
}

.holiday-hero .button svg,
.calendar-download-card .button svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.answer-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 28px;
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.answer-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -65px;
  border-radius: 50%;
  background: rgba(61, 134, 245, .22);
}

.answer-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: #b9d2f6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--white);
  font-size: 39px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.answer-to {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 4px;
  color: #dceafe;
  font-size: 21px;
  font-weight: 800;
}

.answer-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 20px;
  color: #d8e5f8;
}

.countdown-line {
  position: relative;
  z-index: 1;
  padding-top: 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #86f1d3;
  font-size: 14px;
  font-weight: 850;
}

.countdown-line svg {
  width: 19px;
  height: 19px;
}

.holiday-section-heading {
  margin-bottom: 32px;
}

.holiday-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.holiday-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.holiday-table th {
  padding: 17px 18px;
  background: var(--navy-900);
  color: var(--white);
  text-align: left;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.holiday-table th:first-child {
  padding-left: 24px;
}

.holiday-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  vertical-align: middle;
}

.holiday-table tbody tr:last-child td {
  border-bottom: 0;
}

.holiday-table tbody tr:not(.note-row):hover td {
  background: #f8fbff;
}

.holiday-table td strong,
.holiday-table td small {
  display: block;
}

.holiday-table td small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.table-state {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-weight: 850;
}

.table-state span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 11px;
}

.table-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-50);
  color: var(--blue-700);
}

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

.note-row td {
  padding: 10px 24px 14px;
  background: #fffaf0;
  color: #75521b;
  font-size: 12px;
  font-weight: 700;
}

.note-row svg,
.inline-note svg {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  vertical-align: -4px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.insight-card.featured {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.insight-card h2 {
  margin: 13px 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.insight-card.featured h2,
.insight-card.featured p {
  color: var(--white);
}

.insight-card p {
  margin: 0;
  color: var(--text);
}

.state-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 30px;
  align-items: start;
}

.date-panel,
.calendar-download-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.date-panel h2,
.calendar-download-card h2 {
  margin: 12px 0 22px;
  font-size: 32px;
  line-height: 1.2;
}

.date-range {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  border-radius: 19px;
  background: var(--blue-50);
}

.date-range > div {
  display: grid;
}

.date-range span:not(.date-range-arrow) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.date-range strong {
  margin-top: 6px;
  color: var(--navy-950);
  font-size: 21px;
}

.date-range small {
  color: var(--blue-700);
  font-weight: 800;
}

.date-range-arrow {
  color: var(--blue-600);
  font-size: 27px;
  font-weight: 900;
}

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

.detail-list li {
  display: flex;
  gap: 11px;
  color: var(--text);
}

.detail-list svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--teal-600);
  stroke-width: 2.2;
}

.inline-note {
  margin: 22px 0 0;
  padding: 15px 16px;
  border-radius: 14px;
  background: #fff8e9;
  color: #73531e;
  font-size: 13px;
  font-weight: 750;
}

.calendar-download-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(155deg, #f7fbff, #ffffff);
}

.calendar-download-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.calendar-download-icon svg {
  width: 29px;
  height: 29px;
}

.calendar-download-card p {
  color: var(--text);
}

.button-full {
  width: 100%;
  margin: 12px 0 13px;
}

.calendar-download-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.compact-heading {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 35px;
}

.state-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.state-link-grid a {
  min-height: 84px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.state-link-grid a:hover,
.state-link-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: #a9c7ee;
  box-shadow: var(--shadow-sm);
}

.state-link-grid > a > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
}

.state-link-grid strong,
.state-link-grid small {
  display: block;
}

.state-link-grid strong {
  color: var(--navy-950);
}

.state-link-grid small {
  margin-top: 3px;
  color: var(--muted);
}

.state-link-grid svg {
  width: 18px;
  height: 18px;
  color: var(--blue-600);
}

.center-link {
  margin: 30px 0 0;
  text-align: center;
}

.source-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.source-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  border: 1px solid #bfe8dc;
  border-radius: 26px;
  background: linear-gradient(145deg, #effbf7, #ffffff);
}

.source-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--teal-100);
  color: var(--teal-600);
}

.source-icon svg {
  width: 31px;
  height: 31px;
}

.source-box h2 {
  margin: 10px 0 10px;
  font-size: 31px;
}

.source-box p {
  max-width: 900px;
  margin: 0;
  color: var(--text);
}

.source-meta {
  margin-top: 19px;
  padding-top: 17px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #cdebe3;
  color: #3d6c61;
  font-size: 13px;
  font-weight: 800;
}

.source-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-600);
}

.source-meta svg {
  width: 17px;
  height: 17px;
}

.footer-grid-compact {
  grid-template-columns: 1.5fr .8fr .8fr;
}

.not-found-section {
  min-height: 66vh;
  padding: 110px 0;
  display: grid;
  place-items: center;
  background: var(--blue-50);
}

.not-found-box {
  max-width: 800px;
  text-align: center;
}

.not-found-box h1 {
  margin: 14px 0 18px;
  font-size: clamp(45px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.not-found-box p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: var(--text);
  font-size: 18px;
}

.not-found-box .hero-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .holiday-hero-grid,
  .state-detail-grid {
    grid-template-columns: 1fr;
  }

  .holiday-hero-grid {
    gap: 35px;
  }

  .answer-card {
    max-width: 620px;
  }

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

  .calendar-download-card {
    position: static;
  }

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

@media (max-width: 640px) {
  .holiday-hero {
    padding: 35px 0 55px;
  }

  .holiday-hero h1 {
    font-size: 43px;
  }

  .holiday-lead {
    font-size: 17px;
  }

  .answer-card,
  .date-panel,
  .calendar-download-card,
  .source-box {
    padding: 24px;
    border-radius: 21px;
  }

  .holiday-table-wrap {
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .holiday-table,
  .holiday-table tbody,
  .holiday-table tr,
  .holiday-table td {
    width: 100%;
    display: block;
    min-width: 0;
  }

  .holiday-table thead {
    display: none;
  }

  .holiday-table tbody {
    display: grid;
    gap: 14px;
  }

  .holiday-table tr:not(.note-row) {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .holiday-table td {
    min-height: 42px;
    padding: 9px 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    text-align: right;
  }

  .holiday-table td::before {
    content: attr(data-label);
    color: var(--muted);
    text-align: left;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .holiday-table td:first-child {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .holiday-table td:first-child::before,
  .holiday-table td:last-child::before {
    display: none;
  }

  .holiday-table td:last-child {
    min-height: 0;
    padding-bottom: 0;
    border-bottom: 0;
    grid-template-columns: 1fr;
  }

  .table-link {
    width: 100%;
    height: 42px;
  }

  .note-row {
    margin-top: -14px;
  }

  .note-row td {
    display: block;
    padding: 12px 15px;
    border-radius: 0 0 15px 15px;
    text-align: left;
  }

  .note-row td::before {
    display: none;
  }

  .date-range {
    grid-template-columns: 1fr;
  }

  .date-range-arrow {
    transform: rotate(90deg);
    justify-self: start;
  }

  .state-link-grid {
    grid-template-columns: 1fr;
  }

  .source-box {
    grid-template-columns: 1fr;
  }

  .source-meta {
    align-items: flex-start;
    flex-direction: column;
  }

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

.year-card.is-planned,
.holiday-card.is-planned {
  cursor: default;
  opacity: .68;
}

.year-card.is-planned:hover,
.holiday-card.is-planned:hover {
  transform: none;
  box-shadow: none;
}

/* Cross-year navigation for programmatic holiday pages */
.holiday-year-nav {
  padding: 28px 0;
  background: var(--navy-950);
  color: var(--white);
}

.holiday-year-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.holiday-year-nav-inner > div:first-child {
  display: grid;
  gap: 2px;
}

.holiday-year-nav .eyebrow {
  color: #a8c9ff;
}

.holiday-year-nav-inner strong {
  font-size: 20px;
  line-height: 1.3;
}

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

.holiday-year-links a {
  min-width: 62px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.holiday-year-links a:hover,
.holiday-year-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.holiday-year-links a.is-active {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

@media (max-width: 720px) {
  .holiday-year-nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .holiday-year-links {
    justify-content: flex-start;
  }
}

/* Multi-period holiday entries */
.period-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.period-list-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.period-list-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 14px;
  font-weight: 900;
}

.period-list-item div {
  display: grid;
  gap: 3px;
}

.period-list-item strong {
  color: var(--navy-950);
  font-size: 17px;
}

.period-list-item small {
  color: var(--muted);
  font-weight: 700;
}

/* Complete year overview */
.year-category-section {
  padding-bottom: 40px;
}

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

.year-category-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.year-category-card:hover,
.year-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(37, 76, 180, .35);
  box-shadow: var(--shadow-md);
}

.year-category-card > span {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.year-category-card > strong {
  margin-top: 18px;
  color: var(--navy-950);
  font-size: 28px;
  line-height: 1;
}

.year-category-card > small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.year-category-card > em {
  margin-top: auto;
  padding-top: 20px;
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.year-category-card > svg {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  color: var(--blue-700);
}

.year-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.year-overview-table {
  width: 100%;
  min-width: 1500px;
  border-collapse: collapse;
}

.year-overview-table th {
  padding: 17px 16px;
  color: var(--white);
  background: var(--navy-950);
  text-align: left;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.year-overview-table td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  vertical-align: middle;
}

.year-overview-table tbody tr:last-child td {
  border-bottom: 0;
}

.year-overview-table tbody tr:hover {
  background: var(--surface);
}

.year-overview-table td:not(:first-child) a {
  color: var(--blue-700);
  font-weight: 800;
}

.year-overview-table td:not(:first-child) a:hover,
.year-overview-table td:not(:first-child) a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.empty-date {
  color: var(--muted);
  font-weight: 800;
}

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

.state-year-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: 28px;
  align-items: start;
}

.state-year-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.state-year-panel h2 {
  margin: 8px 0 26px;
  color: var(--navy-950);
  font-size: clamp(28px, 3vw, 40px);
}

.state-year-list {
  display: grid;
  gap: 11px;
}

.state-year-list a {
  position: relative;
  padding: 17px 50px 17px 18px;
  display: grid;
  grid-template-columns: minmax(125px, .7fr) minmax(180px, 1.3fr);
  gap: 8px 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.state-year-list a:hover,
.state-year-list a:focus-visible {
  transform: translateX(3px);
  border-color: rgba(37, 76, 180, .35);
  background: var(--white);
}

.state-year-list span {
  color: var(--navy-950);
  font-weight: 900;
}

.state-year-list strong {
  color: var(--blue-700);
  font-size: 16px;
}

.state-year-list small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 700;
}

.state-year-list svg {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  color: var(--blue-700);
}

@media (max-width: 980px) {
  .year-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .state-year-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .year-category-grid,
  .year-state-grid {
    grid-template-columns: 1fr;
  }

  .year-category-card {
    min-height: 175px;
  }

  .state-year-panel {
    padding: 23px;
    border-radius: 20px;
  }

  .state-year-list a {
    grid-template-columns: 1fr;
    padding-right: 46px;
  }

  .state-year-list small {
    grid-column: auto;
  }

  .year-table-wrap {
    border-radius: 18px;
  }
}

.state-year-list .state-year-empty {
  position: relative;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: minmax(125px, .7fr) minmax(180px, 1.3fr);
  gap: 8px 18px;
  align-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  background: #f8fafc;
}

.state-year-list .state-year-empty span {
  color: var(--muted);
}

.state-year-list .state-year-empty strong {
  color: var(--text);
}

.state-year-list .state-year-empty small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 640px) {
  .state-year-list .state-year-empty {
    grid-template-columns: 1fr;
  }

  .state-year-list .state-year-empty small {
    grid-column: auto;
  }
}

/* ===== V5 state hubs and trust pages ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(61, 134, 245, 0.16), transparent 29%),
    linear-gradient(135deg, #f4f8ff 0%, #ffffff 68%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .72fr);
  gap: 64px;
  align-items: center;
}

.page-hero h1 {
  max-width: 880px;
  margin: 14px 0 20px;
  color: var(--navy-950);
  font-size: clamp(44px, 5.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.page-hero p {
  max-width: 820px;
  margin: 0 0 27px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.state-hub-hero .answer-card > span:first-child {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: #b9d2f6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.state-hub-hero .answer-card small {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #86f1d3;
  font-size: 12px;
  font-weight: 800;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading h2 {
  margin: 8px 0 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.split-heading > p {
  margin: 0;
  color: var(--text);
}

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

.holiday-overview-card {
  position: relative;
  min-height: 178px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 26, 54, .06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.holiday-overview-card:hover,
.holiday-overview-card:focus-visible {
  transform: translateY(-3px);
  border-color: #a8c8ef;
  box-shadow: var(--shadow-sm);
}

.holiday-overview-card > span {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.holiday-overview-card > strong {
  margin: 13px 34px 8px 0;
  color: var(--navy-950);
  font-size: 21px;
  line-height: 1.3;
}

.holiday-overview-card > small {
  margin-top: auto;
  color: var(--muted);
  line-height: 1.55;
}

.holiday-overview-card > svg {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 20px;
  height: 20px;
  color: var(--blue-600);
}

.holiday-overview-card.is-unavailable {
  border-style: dashed;
  background: #fafbfd;
  box-shadow: none;
}

.holiday-overview-card.is-unavailable > span,
.holiday-overview-card.is-unavailable > strong {
  color: #647189;
}

.year-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.state-hub-page .year-card-grid .year-card {
  min-height: 170px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7,26,54,.06);
}

.state-hub-page .year-card-grid .year-card > span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.state-hub-page .year-card-grid .year-card > strong {
  margin: 7px 0 12px;
  color: var(--navy-950);
  font-size: 35px;
  letter-spacing: -.04em;
}

.state-hub-page .year-card-grid .year-card > small {
  margin-top: auto;
  color: var(--text);
  font-weight: 750;
}

.state-hub-page .year-card-grid .year-card > svg {
  width: 18px;
  height: 18px;
  margin-top: 14px;
  color: var(--blue-600);
}

.narrow-container {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.static-page-hero {
  padding-bottom: 60px;
}

.static-page-hero h1 {
  max-width: 800px;
}

.static-page-hero p {
  max-width: 760px;
}

.static-content-section {
  padding-top: 72px;
  padding-bottom: 92px;
}

.prose {
  color: var(--text);
  font-size: 17px;
}

.prose h2 {
  margin: 52px 0 15px;
  color: var(--navy-950);
  font-size: clamp(27px, 3.6vw, 37px);
  line-height: 1.16;
  letter-spacing: -.035em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 32px 0 10px;
  color: var(--navy-950);
}

.prose p {
  margin: 0 0 18px;
  line-height: 1.82;
}

.prose a:not(.button):not(.contact-email) {
  color: var(--blue-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #edf3fb;
  color: var(--navy-900);
  font-size: .9em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 10px;
}

.value-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-50);
}

.value-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 17px;
}

.value-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.method-list {
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 13px;
  counter-reset: method;
  list-style: none;
}

.method-list li {
  position: relative;
  min-height: 84px;
  padding: 17px 20px 17px 72px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  counter-increment: method;
}

.method-list li::before {
  content: counter(method);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 900;
}

.method-list strong,
.method-list span {
  display: block;
}

.method-list strong {
  color: var(--navy-950);
}

.method-list span {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
}

.source-list-card {
  margin: 26px 0;
  padding: 24px;
  display: grid;
  gap: 10px;
  border: 1px solid #bfe8dc;
  border-radius: 20px;
  background: #f0fbf7;
}

.source-list-card > strong {
  margin-bottom: 5px;
  color: var(--navy-950);
}

.source-list-card a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none !important;
}

.contact-panel {
  padding: 30px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  border: 1px solid #c5dbf6;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--blue-50), #fff);
}

.contact-panel-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.contact-panel-icon svg {
  width: 29px;
  height: 29px;
}

.contact-panel span {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-panel h2 {
  margin: 5px 0 10px;
}

.contact-panel p {
  margin-bottom: 8px;
}

.contact-email {
  color: var(--navy-900);
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.setup-warning {
  margin: 0 0 28px;
  padding: 20px 22px;
  border: 1px solid #efc56c;
  border-radius: 16px;
  background: #fff9e9;
  color: #6b4b10;
}

.setup-warning strong {
  display: block;
  margin-bottom: 5px;
  color: #4d350a;
}

.setup-warning p {
  margin: 0;
  font-size: 14px;
}

.legal-address {
  padding: 20px 22px;
  border-left: 4px solid var(--blue-600);
  background: var(--blue-50);
  color: var(--text);
  font-style: normal;
  line-height: 1.8;
}

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

.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-600);
  font-weight: 900;
}

.footer-source-link {
  margin-top: 18px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: #bcd5f7 !important;
  font-weight: 800;
}

.footer-source-link svg {
  width: 17px;
  height: 17px;
  color: #69dfbf;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.error-page {
  min-height: 67vh;
  padding: 100px 0;
  display: grid;
  place-items: center;
  background: var(--blue-50);
}

.error-card {
  max-width: 720px;
  text-align: center;
}

.error-code {
  display: block;
  color: var(--blue-600);
  font-size: 24px;
  font-weight: 900;
}

.error-card h1 {
  margin: 10px 0 15px;
  color: var(--navy-950);
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.error-card p {
  max-width: 580px;
  margin: 0 auto 25px;
  color: var(--text);
}

@media (max-width: 1060px) {
  .holiday-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .page-hero-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 34px;
  }

  .split-heading {
    gap: 14px;
  }

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

@media (max-width: 640px) {
  .page-hero {
    padding: 36px 0 54px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .holiday-overview-grid,
  .year-card-grid {
    grid-template-columns: 1fr;
  }

  .holiday-overview-card {
    min-height: 155px;
  }

  .contact-panel {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .narrow-container {
    width: min(calc(100% - 28px), 860px);
  }

  .static-content-section {
    padding-top: 52px;
  }

  .footer-bottom,
  .footer-bottom-links {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Final brand fit for the longer site name. */
@media (max-width: 620px) {
  .brand-copy strong {
    font-size: 17px;
    letter-spacing: -0.035em;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 15px;
  }
}


/* Availability states for complete 2026–2030 coverage. */
.availability-row td {
  background: #fbfcfe;
}

.availability-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.availability-pill.is-none {
  background: #eef2f7;
  color: #475569;
}

.availability-pill.is-pending {
  background: #fff4d6;
  color: #8a5800;
}

@media (max-width: 760px) {
  .availability-row td[data-label="Status"] {
    align-items: center;
  }

  .availability-row .availability-pill {
    justify-self: end;
    text-align: right;
  }
}

/* ===== State hub hero layout correction (V7) ===== */
.state-hub-hero .page-hero-grid {
  grid-template-columns: minmax(0, 760px) minmax(340px, 420px);
  justify-content: space-between;
  gap: 48px;
}

.state-hub-hero .page-hero-grid > div {
  min-width: 0;
}

.state-hub-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.7vw, 64px);
  line-height: 1.03;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: auto;
}

.state-hub-hero .answer-card {
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.state-hub-hero .answer-card p,
.state-hub-hero .answer-card p * {
  color: #e0ebfa;
}

.state-hub-hero .hero-actions {
  align-items: stretch;
}

.state-hub-hero .hero-actions .button {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.state-hub-hero .hero-actions .button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 8px;
}

@media (max-width: 1100px) {
  .state-hub-hero .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 36px;
  }

  .state-hub-hero h1 {
    font-size: clamp(44px, 5vw, 58px);
  }
}

@media (max-width: 900px) {
  .state-hub-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .state-hub-hero .answer-card {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .state-hub-hero h1 {
    font-size: clamp(38px, 11vw, 46px);
    text-wrap: pretty;
  }

  .state-hub-hero .hero-actions .button {
    width: 100%;
    white-space: normal;
  }
}

/* =========================================================
   Ferien-Countdown
   ========================================================= */
.global-countdown-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(83, 142, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(91, 225, 191, 0.16), transparent 28%),
    #081f42;
}

.global-countdown-section::before,
.global-countdown-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.global-countdown-section::before {
  width: 280px;
  height: 280px;
  top: -170px;
  right: 8%;
}

.global-countdown-section::after {
  width: 170px;
  height: 170px;
  bottom: -105px;
  left: 5%;
}

.countdown-widget {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #123a78 0%, #0b2a5c 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(2, 14, 37, 0.24);
}

.countdown-widget::after {
  position: absolute;
  content: "";
  width: 230px;
  height: 230px;
  right: -110px;
  top: -130px;
  border-radius: 50%;
  background: rgba(76, 139, 255, 0.2);
  pointer-events: none;
}

.countdown-widget__icon {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.countdown-widget__icon span {
  font-size: 58px;
  line-height: 1;
  transform: rotate(-5deg);
}

.countdown-widget__content {
  min-width: 0;
}

.countdown-widget__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #8debd2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.countdown-widget__title {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.countdown-widget__message {
  max-width: 880px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.countdown-widget__timer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 22px;
}

.countdown-widget__timer[hidden] {
  display: none;
}

.countdown-widget__timer > div {
  min-width: 94px;
  padding: 13px 14px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
}

.countdown-widget__timer > div strong {
  display: block;
  color: #fff;
  font-size: 28px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown-widget__timer > div span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.countdown-widget__timer > span {
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 24px;
  font-weight: 900;
}

.countdown-widget__controls {
  max-width: 790px;
  margin-top: 22px;
}

.countdown-widget__controls label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.countdown-widget__control-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
}

.countdown-widget__select-shell select {
  min-height: 54px;
  color: #10284f;
  background-color: #fff;
  border-color: transparent;
}

.countdown-widget__details {
  min-height: 54px;
  white-space: nowrap;
  background: #438cf5;
  border-color: #438cf5;
}

.countdown-widget__details:hover,
.countdown-widget__details:focus-visible {
  background: #5b9cff;
  border-color: #5b9cff;
}

.countdown-widget__status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #8debd2;
  font-size: 13px;
  font-weight: 800;
}

.countdown-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(65, 137, 244, 0.19), transparent 32%),
    linear-gradient(135deg, #f7faff 0%, #eef5ff 100%);
  border-bottom: 1px solid #dbe6f5;
}

.countdown-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  align-items: center;
}

.countdown-page-hero__copy h1 {
  max-width: 800px;
  margin: 10px 0 20px;
}

.countdown-page-hero__copy > p {
  max-width: 780px;
  margin: 0;
  color: #52637d;
  font-size: 19px;
  line-height: 1.75;
}

.countdown-page-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.countdown-page-hero__notes span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #17375f;
  font-size: 14px;
  font-weight: 800;
}

.countdown-page-hero__notes svg {
  width: 18px;
  height: 18px;
  color: #2366c6;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.countdown-page-hero__visual {
  position: relative;
  display: grid;
  width: 280px;
  height: 280px;
  place-items: center;
  justify-self: end;
  background: #123a78;
  border: 13px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(18, 58, 120, 0.21);
}

.countdown-page-hero__alarm {
  font-size: 108px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.13));
}

.countdown-page-hero__zzz {
  position: absolute;
  top: 33px;
  right: 31px;
  color: #8debd2;
  font-size: 25px;
  font-weight: 900;
  transform: rotate(9deg);
}

.countdown-page-hero__bag {
  position: absolute;
  bottom: 19px;
  left: 20px;
  font-size: 49px;
  transform: rotate(-13deg);
}

.countdown-page-main {
  background: #fff;
}

.countdown-widget--large {
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 48px;
  border-radius: 34px;
}

.countdown-widget--large .countdown-widget__icon {
  width: 150px;
  height: 150px;
  border-radius: 32px;
}

.countdown-widget--large .countdown-widget__icon span {
  font-size: 76px;
}

.countdown-widget--large .countdown-widget__timer > div {
  min-width: 118px;
  padding: 18px 16px 16px;
}

.countdown-widget--large .countdown-widget__timer > div strong {
  font-size: 38px;
}

.countdown-explainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.countdown-explainer-grid article > p {
  max-width: 760px;
  color: #52637d;
  line-height: 1.75;
}

.countdown-quote-card {
  position: relative;
  padding: 40px;
  color: #fff;
  background: #123a78;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(18, 58, 120, 0.16);
}

.countdown-quote-card > span {
  position: absolute;
  top: 12px;
  left: 24px;
  color: rgba(141, 235, 210, 0.35);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
}

.countdown-quote-card p,
.countdown-quote-card small {
  position: relative;
}

.countdown-quote-card p {
  margin: 18px 0 22px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.55;
}

.countdown-quote-card small {
  color: #8debd2;
  font-weight: 800;
}

.countdown-state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.countdown-state-grid a {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) 20px;
  gap: 11px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  color: #142d52;
  background: #fff;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.countdown-state-grid a:hover,
.countdown-state-grid a:focus-visible {
  border-color: #8bb8f7;
  box-shadow: 0 12px 30px rgba(31, 92, 177, 0.11);
  transform: translateY(-2px);
}

.countdown-state-grid a > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #fff;
  background: #2464c4;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 900;
}

.countdown-state-grid a strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.35;
}

.countdown-state-grid a svg {
  width: 18px;
  height: 18px;
  color: #2464c4;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

@media (max-width: 1050px) {
  .countdown-page-hero__grid {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 42px;
  }

  .countdown-page-hero__visual {
    width: 220px;
    height: 220px;
  }

  .countdown-page-hero__alarm {
    font-size: 82px;
  }

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

@media (max-width: 820px) {
  .global-countdown-section {
    padding: 46px 0;
  }

  .countdown-widget,
  .countdown-widget--large {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .countdown-widget__icon,
  .countdown-widget--large .countdown-widget__icon {
    width: 84px;
    height: 84px;
    border-radius: 21px;
  }

  .countdown-widget__icon span,
  .countdown-widget--large .countdown-widget__icon span {
    font-size: 44px;
  }

  .countdown-page-hero {
    padding: 72px 0 60px;
  }

  .countdown-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .countdown-page-hero__visual {
    display: none;
  }

  .countdown-explainer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 580px) {
  .countdown-widget,
  .countdown-widget--large {
    padding: 24px 18px;
    border-radius: 23px;
  }

  .countdown-widget__title {
    font-size: 27px;
  }

  .countdown-widget__message {
    font-size: 15px;
  }

  .countdown-widget__timer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .countdown-widget__timer > div,
  .countdown-widget--large .countdown-widget__timer > div {
    min-width: 0;
  }

  .countdown-widget__timer > span {
    display: none;
  }

  .countdown-widget__control-row {
    grid-template-columns: 1fr;
  }

  .countdown-widget__details {
    width: 100%;
  }

  .countdown-page-hero__notes {
    display: grid;
  }

  .countdown-state-grid {
    grid-template-columns: 1fr;
  }

  .countdown-quote-card {
    padding: 32px 24px;
  }
}
