:root {
  --fa-blue: #2fa8e0;
  --fa-blue-deep: #0a74a9;
  --fa-sky: #00a6d6;
  --fa-salmon: #f7776f;
  --fa-yellow: #fbaf3f;
  --fa-green: #00a15a;
  --fa-red: #e54749;
  --fa-purple: #684b99;
  --ink: #17212a;
  --muted: #5e6b76;
  --soft: #eef8fc;
  --paper: #f8fbfd;
  --line: #dbe6ed;
  --white: #ffffff;
  --navy: #123b4e;
  --shadow: 0 22px 54px rgba(19, 66, 89, 0.12);
  --radius: 8px;
  font-family: "Albert Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0, var(--soft) 640px, #f6fafc 1200px),
    var(--paper);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 112px;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f8fbfd 100%);
}

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

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.brand-loader img {
  width: min(62vw, 360px);
  height: auto;
  animation: logo-entrance 1s ease both;
}

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

:focus-visible {
  outline: 3px solid var(--fa-yellow);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(47, 168, 224, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(20, 73, 97, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  max-width: 42vw;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-toggle {
  display: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 15px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--fa-salmon);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--fa-blue-deep);
  background: #e9f7fd;
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 112px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  column-gap: 28px;
  row-gap: 0;
  align-items: start;
  min-height: 0;
  padding: clamp(30px, 5vw, 52px) 0 24px;
  overflow: visible;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-copy {
  grid-column: 1;
  max-width: 590px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--fa-blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Raleway", "Albert Sans", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 590px;
  font-size: clamp(2.8rem, 5.25vw, 4.65rem);
  font-weight: 900;
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

h3 {
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-lead {
  max-width: 590px;
  margin: 18px 0 0;
  color: #34444f;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 650;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 590px;
  margin-top: 24px;
}

.hero-stats div {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 36px rgba(19, 66, 89, 0.08);
  text-align: center;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--fa-blue-deep);
  font-family: "Raleway", "Albert Sans", sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-panel {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  display: grid;
  gap: 16px;
  width: min(100%, 700px);
  margin-top: 28px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(47, 168, 224, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.status-pill {
  display: inline-flex;
  justify-self: start;
  min-height: 30px;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  color: var(--fa-blue-deep);
  background: #e8f6fc;
  font-size: clamp(0.92rem, 1.45vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.countdown-card {
  display: grid;
  gap: 15px;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.countdown-card p {
  margin: 0;
  color: var(--ink);
  font-family: "Raleway", "Albert Sans", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

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

.countdown span {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  min-height: 108px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 16px 32px rgba(19, 66, 89, 0.08);
}

.countdown span:first-child {
  border-color: rgba(247, 119, 111, 0.42);
  background: var(--fa-salmon);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(247, 119, 111, 0.24);
}

.countdown strong {
  color: var(--ink);
  font-size: clamp(2.05rem, 4.6vw, 3.45rem);
  line-height: 1;
}

.countdown span:first-child strong {
  color: white;
}

#countdown-reference {
  display: block;
  margin-top: -2px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.countdown-action {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 300px);
  min-height: 62px;
  padding: 15px 32px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--fa-yellow);
  box-shadow: 0 20px 46px rgba(251, 175, 63, 0.34);
  font-family: "Raleway", "Albert Sans", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.countdown-action:not(.is-disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 54px rgba(251, 175, 63, 0.42);
}

.countdown-action.is-disabled {
  cursor: not-allowed;
  color: #758390;
  background: #e6eef3;
  box-shadow: none;
  pointer-events: none;
}

.section {
  padding: clamp(42px, 6vw, 68px) 0;
}

.section.is-scroll-target .section-heading {
  animation: section-arrival 720ms ease both;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.section-heading p:not(.kicker) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.info-grid,
.step-grid,
.doc-grid {
  display: grid;
  gap: 16px;
}

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

.intro .section-heading {
  margin-inline: auto;
  text-align: center;
}

.intro .info-grid {
  max-width: 980px;
  margin-inline: auto;
}

.info-card,
.doc-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.info-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 190px;
  padding: 22px;
  text-align: center;
}

.info-card .icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: white;
}

.info-card .icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accent-blue .icon {
  background: var(--fa-blue);
}

.accent-green .icon {
  background: var(--fa-green);
}

.accent-purple .icon {
  background: var(--fa-purple);
}

.info-card p,
.step-grid p,
.doc-card p,
.faq-card p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: 30px;
  align-items: start;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  justify-items: center;
  min-height: 72px;
  padding: 16px;
  border-left: 8px solid var(--fa-blue);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 40px rgba(19, 66, 89, 0.08);
  text-align: center;
}

.timeline li:nth-child(2) {
  border-color: var(--fa-green);
}

.timeline li:nth-child(3) {
  border-color: var(--fa-yellow);
}

.timeline li:nth-child(4) {
  border-color: var(--fa-purple);
}

.timeline time {
  color: var(--fa-blue-deep);
  font-weight: 900;
}

.timeline span {
  color: var(--ink);
  font-weight: 850;
}

.steps {
  border-block: 1px solid var(--line);
}

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

.step-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(19, 66, 89, 0.1);
  text-align: center;
}

.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f6fc;
  color: var(--fa-blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.step-grid h3 {
  font-size: 1.05rem;
  line-height: 1.12;
}

.cargo-grid {
  display: grid;
  gap: 16px;
}

.cargo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.cargo-card span {
  color: var(--fa-blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cargo-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

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

.doc-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 160px;
  padding: 22px;
  text-align: center;
}

.doc-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--fa-blue-deep);
  background: #e8f6fc;
  font-size: 0.78rem;
  font-weight: 900;
}

.doc-card a {
  color: var(--fa-blue-deep);
  font-weight: 900;
}

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

.cargo-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
}

.cargo-card p {
  flex: 1;
}

.cargo-card a {
  color: var(--fa-blue-deep);
  font-weight: 900;
}

.cargo-card.highlight {
  border-color: rgba(251, 175, 63, 0.55);
  background: linear-gradient(180deg, rgba(251, 175, 63, 0.14), white 56%);
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.faq-card {
  padding: 24px;
}

.faq-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--fa-sky), var(--fa-salmon), var(--fa-purple));
}

details {
  position: relative;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(19, 66, 89, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

details:first-of-type {
  margin-top: 22px;
}

details:hover,
details[open] {
  border-color: rgba(0, 166, 214, 0.34);
  box-shadow: 0 18px 42px rgba(19, 66, 89, 0.12);
}

details[open] {
  background: linear-gradient(180deg, rgba(0, 166, 214, 0.08), #ffffff 58%);
  transform: translateY(-1px);
  animation: faq-card-open 460ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  color: var(--ink);
  font-family: "Raleway", "Albert Sans", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.15;
  list-style: none;
  text-align: left;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  width: 14px;
  height: 14px;
  justify-self: center;
  border-radius: 999px;
  background: var(--fa-salmon);
  box-shadow: 0 0 0 7px rgba(247, 119, 111, 0.12);
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--fa-blue-deep);
  background: #e8f6fc;
  font-family: "Albert Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

details[open] summary {
  color: var(--fa-blue-deep);
}

details[open] summary::before {
  background: var(--fa-sky);
  box-shadow: 0 0 0 8px rgba(0, 166, 214, 0.14);
  animation: faq-dot-pop 520ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

details[open] summary::after {
  content: "-";
  color: white;
  background: var(--fa-sky);
  transform: rotate(180deg);
  animation: faq-toggle-pop 420ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

details p {
  max-width: 860px;
  margin: 0;
  padding: 0 68px 24px 62px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  transform-origin: top;
  animation: faq-answer 520ms cubic-bezier(0.18, 0.82, 0.24, 1) both;
}

.help-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
  margin: 42px 0 70px;
  padding: clamp(26px, 5vw, 42px);
  border-radius: var(--radius);
  color: white;
  background: var(--fa-sky);
  text-align: center;
}

.help-band .kicker {
  color: rgba(255, 255, 255, 0.82);
}

.help-band h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2rem, 4.1vw, 3.8rem);
  line-height: 1.05;
}

.help-band p:not(.kicker) {
  max-width: 940px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  font-weight: 600;
  line-height: 1.45;
}

.help-contact {
  display: flex;
  justify-content: center;
  justify-items: center;
  gap: 28px;
  flex-wrap: wrap;
  min-width: 0;
}

.help-contact a {
  color: white;
  font-weight: 900;
}

@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section-arrival {
  0% {
    opacity: 0.72;
    transform: translateY(12px);
  }
  55% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faq-answer {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(-10px) scaleY(0.92);
  }
  62% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(2px) scaleY(1.01);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scaleY(1);
  }
}

@keyframes faq-card-open {
  0% {
    box-shadow: 0 12px 28px rgba(19, 66, 89, 0.06);
    transform: translateY(0) scale(0.992);
  }
  58% {
    box-shadow: 0 24px 50px rgba(19, 66, 89, 0.14);
    transform: translateY(-4px) scale(1.006);
  }
  100% {
    box-shadow: 0 18px 42px rgba(19, 66, 89, 0.12);
    transform: translateY(-1px) scale(1);
  }
}

@keyframes faq-dot-pop {
  0% {
    transform: scale(0.72);
    box-shadow: 0 0 0 3px rgba(0, 166, 214, 0.08);
  }
  58% {
    transform: scale(1.18);
    box-shadow: 0 0 0 13px rgba(0, 166, 214, 0.18);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 166, 214, 0.14);
  }
}

@keyframes faq-toggle-pop {
  0% {
    transform: rotate(0deg) scale(0.82);
  }
  62% {
    transform: rotate(180deg) scale(1.14);
  }
  100% {
    transform: rotate(180deg) scale(1);
  }
}

@keyframes quiet-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 168, 224, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(47, 168, 224, 0.12);
  }
}

@keyframes logo-entrance {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  22% {
    opacity: 1;
    transform: scale(1);
  }
  76% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes loader-exit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.brand-loader.is-hidden {
  animation: loader-exit 180ms ease forwards;
}

.hero-copy,
.hero-panel,
.hero-stats div,
.info-card,
.timeline li,
.step-grid article,
.doc-card,
.cargo-card,
.faq-card,
.help-band {
  animation: page-rise 520ms ease both;
}

.hero-copy {
  animation-delay: 70ms;
}

.hero-panel {
  animation-delay: 150ms;
}

.hero-stats div:nth-child(1),
.info-card:nth-child(1),
.timeline li:nth-child(1),
.step-grid article:nth-child(1),
.doc-card:nth-child(1),
.cargo-card:nth-child(1) {
  animation-delay: 90ms;
}

.hero-stats div:nth-child(2),
.info-card:nth-child(2),
.timeline li:nth-child(2),
.step-grid article:nth-child(2),
.doc-card:nth-child(2),
.cargo-card:nth-child(2) {
  animation-delay: 140ms;
}

.hero-stats div:nth-child(3),
.info-card:nth-child(3),
.timeline li:nth-child(3),
.step-grid article:nth-child(3),
.doc-card:nth-child(3),
.cargo-card:nth-child(3) {
  animation-delay: 190ms;
}

.timeline li:nth-child(n+4),
.step-grid article:nth-child(n+4),
.doc-card:nth-child(n+4),
.cargo-card:nth-child(n+4) {
  animation-delay: 240ms;
}

.status-pill {
  animation: quiet-pulse 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .split,
  .lower-grid,
  .help-band {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-self: start;
    flex-wrap: wrap;
  }

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

  .hero-panel {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 10px;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header,
  main {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    position: fixed;
    top: 10px;
    grid-template-columns: auto auto;
    gap: 8px;
    min-height: 0;
    padding: 8px 10px;
  }

  body::before {
    height: 96px;
  }

  main {
    padding-top: 88px;
  }

  .brand {
    width: 116px;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: white;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
  }

  .menu-toggle-lines {
    position: relative;
    width: 18px;
    height: 12px;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, top 160ms ease;
  }

  .menu-toggle-lines::before {
    top: 2px;
  }

  .menu-toggle-lines::after {
    top: 9px;
  }

  .site-header.is-menu-open .menu-toggle-lines::before {
    top: 6px;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle-lines::after {
    top: 6px;
    transform: rotate(-45deg);
  }

  .main-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 160ms ease;
  }

  .site-header.is-menu-open .main-nav {
    max-height: 310px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 38px;
    padding: 9px 10px;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .steps h2 {
    font-size: clamp(1.7rem, 9vw, 2.1rem);
  }

  .hero {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .kicker {
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }

  .hero-stats div {
    padding: 9px 6px;
  }

  .hero-stats strong {
    font-size: clamp(0.78rem, 3.4vw, 0.96rem);
  }

  .hero-stats span {
    font-size: 0.64rem;
  }

  .hero-panel {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .status-pill {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  .countdown-card {
    gap: 10px;
  }

  .countdown-card p {
    font-size: 1.35rem;
  }

  .info-grid,
  .step-grid,
  .doc-grid,
  .cargo-grid {
    grid-template-columns: 1fr;
  }

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

  .countdown span {
    min-height: 64px;
    padding: 8px 4px;
    border-radius: 12px;
    font-size: clamp(0.48rem, 2vw, 0.58rem);
    letter-spacing: 0.03em;
  }

  .countdown strong {
    font-size: clamp(1.28rem, 7vw, 1.75rem);
  }

  #countdown-reference {
    font-size: 0.74rem;
  }

  .countdown-action {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .step-grid article {
    min-height: 190px;
  }

  .faq-card {
    padding: 24px 14px;
  }

  summary {
    grid-template-columns: 20px minmax(0, 1fr) 26px;
    gap: 10px;
    min-height: 66px;
    padding: 14px 12px;
    font-size: 1rem;
  }

  summary::before {
    width: 10px;
    height: 10px;
  }

  summary::after {
    width: 26px;
    height: 26px;
    font-size: 1.08rem;
  }

  details p {
    padding: 0 38px 18px 42px;
    font-size: 0.95rem;
  }
}
