:root {
  --bg: #eaf4ff;
  --bg2: #ffffff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface2: rgba(255, 255, 255, 0.92);
  --line: rgba(11, 54, 120, 0.14);
  --text: rgba(12, 32, 72, 0.92);
  --muted: rgba(12, 32, 72, 0.72);
  --muted2: rgba(12, 32, 72, 0.56);
  --blue: #1677ff;
  --blue2: #2ea5ff;
  --blue3: #0b5ed7;
  --shadow: 0 22px 70px rgba(10, 52, 126, 0.14);
  --shadow2: 0 12px 40px rgba(10, 52, 126, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1120px;
  --serif: ui-serif, "Songti SC", "Noto Serif CJK SC", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--sans);
  background: radial-gradient(1000px 700px at 10% 0%, rgba(22, 119, 255, 0.20), transparent 58%),
    radial-gradient(900px 650px at 90% 10%, rgba(46, 165, 255, 0.18), transparent 55%),
    radial-gradient(800px 520px at 70% 110%, rgba(22, 119, 255, 0.14), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2) 60%, #f6fbff);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.7), transparent 60%),
    repeating-linear-gradient(135deg, rgba(10, 52, 126, 0.06) 0 1px, transparent 1px 8px);
  opacity: 0.07;
  mix-blend-mode: multiply;
}

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

button {
  font-family: inherit;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--text);
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 54, 120, 0.08);
  background: rgba(255, 255, 255, 0.55);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header[data-elevated="true"] {
  border-bottom-color: rgba(11, 54, 120, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 55px rgba(10, 52, 126, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.18), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(22, 119, 255, 0.24);
  font-family: var(--serif);
  letter-spacing: 0.08em;
  color: rgba(11, 54, 120, 0.92);
  box-shadow: 0 14px 40px rgba(10, 52, 126, 0.12);
}

.brand-title {
  display: block;
  font-weight: 760;
  font-family: var(--serif);
  letter-spacing: 0.02em;
}

.brand-sub {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(11, 54, 120, 0.14);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle-lines {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(12, 32, 72, 0.82);
  border-radius: 2px;
  transition: transform 200ms ease, top 200ms ease, opacity 200ms ease;
}

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

.nav-toggle-lines::after {
  top: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: rgba(12, 32, 72, 0.92);
  background: rgba(22, 119, 255, 0.06);
  border-color: rgba(22, 119, 255, 0.16);
  transform: translateY(-1px);
}

.nav-link[aria-current="true"] {
  color: rgba(12, 32, 72, 0.92);
  border-color: rgba(22, 119, 255, 0.22);
  background: rgba(22, 119, 255, 0.10);
}

.nav-link-cta {
  color: #fff;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.96), rgba(46, 165, 255, 0.92));
  border-color: rgba(22, 119, 255, 0.35);
  font-weight: 760;
  box-shadow: 0 16px 45px rgba(22, 119, 255, 0.20);
}

.nav-link-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(46, 165, 255, 0.96), rgba(22, 119, 255, 0.96));
  border-color: rgba(46, 165, 255, 0.45);
}

.hero {
  padding: 52px 0 34px;
  position: relative;
}

.hero-inner {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hero-top {
  width: 100%;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(11, 54, 120, 0.86);
  letter-spacing: 0.02em;
  font-size: 14px;
  box-shadow: 0 12px 40px rgba(10, 52, 126, 0.10);
  margin: 0;
}

.entry-card {
  width: min(980px, 100%);
  border-radius: 30px;
  border: 1px solid rgba(11, 54, 120, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  box-shadow: var(--shadow);
  padding: 30px 22px 22px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.entry-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(900px 280px at 12% 0%, rgba(22, 119, 255, 0.18), transparent 60%),
    radial-gradient(900px 280px at 88% 0%, rgba(46, 165, 255, 0.16), transparent 60%);
  pointer-events: none;
}

.entry-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 16px;
  align-items: start;
  padding: 10px 8px 20px;
}

.entry-divider {
  width: 1px;
  height: 100%;
  background: rgba(11, 54, 120, 0.12);
  border-radius: 1px;
}

.entry-col {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 6px 0;
}

.entry-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 900;
  color: rgba(7, 24, 62, 0.92);
}

.entry-pills {
  width: 100%;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.pill {
  width: min(320px, 92%);
  text-align: center;
  padding: 14px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 119, 255, 0.16);
  box-shadow: 0 14px 28px rgba(22, 119, 255, 0.14);
  color: rgba(10, 36, 82, 0.88);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.entry-cta {
  position: relative;
  display: grid;
  place-items: center;
  width: min(640px, 92%);
  margin: 2px auto 0;
  padding: 18px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.98), rgba(46, 165, 255, 0.96));
  border: 1px solid rgba(22, 119, 255, 0.35);
  box-shadow: 0 22px 70px rgba(22, 119, 255, 0.26);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 180ms ease, filter 180ms ease;
}

.entry-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.entry-cta:active {
  transform: translateY(0);
}

.entry-cta-text {
  position: relative;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 950;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.entry-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(500px 200px at 30% 20%, rgba(255, 255, 255, 0.28), transparent 60%),
    radial-gradient(380px 160px at 70% 70%, rgba(255, 255, 255, 0.18), transparent 62%);
  pointer-events: none;
  opacity: 0.9;
}

.entry-cta-sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  right: 26px;
  top: 16px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  border-radius: 3px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14), 0 18px 40px rgba(0, 0, 0, 0.12);
  opacity: 0.95;
  animation: twinkle 1.8s ease-in-out infinite;
}

.entry-cta-sparkle.s2 {
  width: 10px;
  height: 10px;
  right: 64px;
  top: auto;
  bottom: 18px;
  opacity: 0.85;
  animation-duration: 2.1s;
  animation-delay: 0.2s;
}

@keyframes twinkle {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.92;
  }
  50% {
    transform: rotate(45deg) scale(1.25);
    opacity: 1;
  }
}

.hero-quick {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.copy-tile {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(11, 54, 120, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.copy-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 119, 255, 0.22);
  background: rgba(255, 255, 255, 0.86);
}

.copy-tile:active {
  transform: translateY(0);
}

.copy-tile-name {
  width: 56px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background: rgba(22, 119, 255, 0.10);
  color: rgba(11, 54, 120, 0.92);
  font-weight: 900;
  letter-spacing: 0.10em;
}

.copy-tile-value {
  font-size: 14px;
  color: rgba(12, 32, 72, 0.92);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.copy-tile-action {
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.98), rgba(46, 165, 255, 0.92));
  border: 1px solid rgba(22, 119, 255, 0.30);
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 850;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(22, 119, 255, 0.06), rgba(255, 255, 255, 0.35));
  border-top: 1px solid rgba(11, 54, 120, 0.08);
  border-bottom: 1px solid rgba(11, 54, 120, 0.08);
}

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

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: rgba(7, 24, 62, 0.92);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 66ch;
  line-height: 1.7;
  font-size: 14px;
}

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

.feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 54, 120, 0.10);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow2);
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(560px 260px at 0% 0%, rgba(22, 119, 255, 0.14), transparent 62%);
  opacity: 0.95;
  pointer-events: none;
}

.feature-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  position: relative;
}

.feature-desc {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
  position: relative;
}

.chip-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  background: rgba(22, 119, 255, 0.06);
  color: rgba(12, 32, 72, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 54, 120, 0.10);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  box-shadow: var(--shadow2);
}

.panel-highlight {
  background: linear-gradient(180deg, rgba(22, 119, 255, 0.10), rgba(255, 255, 255, 0.74));
  border-color: rgba(22, 119, 255, 0.16);
}

.panel-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.7;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 3px;
  background: rgba(22, 119, 255, 0.92);
  box-shadow: 0 0 0 6px rgba(22, 119, 255, 0.10);
}

.panel-cta {
  display: inline-flex;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(22, 119, 255, 0.22);
  background: rgba(22, 119, 255, 0.08);
  color: rgba(11, 54, 120, 0.92);
  font-weight: 820;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.panel-cta:hover {
  transform: translateY(-1px);
  background: rgba(22, 119, 255, 0.12);
  border-color: rgba(22, 119, 255, 0.30);
}

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

.step {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 54, 120, 0.10);
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.step::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(420px 220px at 50% 0%, rgba(46, 165, 255, 0.16), transparent 62%);
  pointer-events: none;
}

.step-num {
  position: relative;
  font-family: var(--serif);
  color: rgba(11, 54, 120, 0.92);
  letter-spacing: 0.10em;
  font-size: 14px;
  font-weight: 920;
}

.step-body {
  position: relative;
  margin-top: 12px;
}

.step-title {
  font-weight: 850;
  letter-spacing: 0.01em;
  color: rgba(7, 24, 62, 0.92);
}

.step-desc {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

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

.contact-card {
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 54, 120, 0.10);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  box-shadow: var(--shadow2);
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 119, 255, 0.20);
  background: rgba(255, 255, 255, 0.90);
}

.contact-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(7, 24, 62, 0.92);
}

.contact-value {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 920;
  color: rgba(22, 119, 255, 0.96);
  letter-spacing: 0.02em;
}

.contact-meta {
  margin-top: 8px;
  color: var(--muted2);
  font-size: 12px;
}

.contact-note {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 54, 120, 0.10);
  background: rgba(255, 255, 255, 0.62);
  padding: 14px 16px;
  box-shadow: 0 14px 38px rgba(10, 52, 126, 0.08);
}

.contact-note-title {
  font-weight: 860;
  letter-spacing: 0.02em;
  color: rgba(7, 24, 62, 0.92);
}

.contact-note-text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 54, 120, 0.10);
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 850;
  letter-spacing: 0.01em;
  color: rgba(7, 24, 62, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-q::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(22, 119, 255, 0.10);
  border: 1px solid rgba(22, 119, 255, 0.18);
  color: rgba(11, 54, 120, 0.92);
  font-weight: 980;
  flex: 0 0 auto;
  transition: transform 200ms ease;
}

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

.faq-a {
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.site-footer {
  padding: 34px 0 26px;
  border-top: 1px solid rgba(11, 54, 120, 0.08);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0.02em;
  font-weight: 860;
  color: rgba(7, 24, 62, 0.92);
}

.footer-sub {
  margin-top: 6px;
  color: var(--muted2);
  font-size: 13px;
}

.footer-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-copy {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 54, 120, 0.12);
  background: rgba(255, 255, 255, 0.70);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-copy:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 119, 255, 0.22);
  background: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 54, 120, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted2);
  font-size: 12px;
}

.footer-top {
  color: rgba(22, 119, 255, 0.92);
  border-bottom: 1px dashed rgba(22, 119, 255, 0.38);
}

.icp {
  color: rgba(22, 119, 255, 0.92);
  border-bottom: 1px dashed rgba(22, 119, 255, 0.38);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  border-radius: 18px;
  border: 1px solid rgba(11, 54, 120, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 90px rgba(10, 52, 126, 0.18);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px 14px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease;
}

.toast[data-show="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-title {
  font-weight: 920;
  letter-spacing: 0.01em;
  color: rgba(7, 24, 62, 0.92);
}

.toast-desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.toast-close {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background: rgba(22, 119, 255, 0.08);
  cursor: pointer;
}

.toast-close:hover {
  background: rgba(22, 119, 255, 0.12);
}

@media (max-width: 980px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .entry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .entry-divider {
    display: none;
  }

  .entry-card {
    padding: 26px 18px 18px;
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(11, 54, 120, 0.12);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease;
    box-shadow: 0 18px 60px rgba(10, 52, 126, 0.14);
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
  }

  .hero {
    padding-top: 44px;
  }

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

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

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

  * {
    transition: none !important;
    animation: none !important;
  }
}
