/* 岁遇官网 — 对齐小程序主题色 #7c6cf0 */

:root {
  --primary: #7c6cf0;
  --primary-dark: #6355d4;
  --primary-light: #9b8ff5;
  --primary-soft: rgba(124, 108, 240, 0.1);
  --primary-mist: rgba(124, 108, 240, 0.06);
  --text: #111418;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-tint: #f3f1fd;
  --border: #e8eaf0;
  --success: #16a34a;
  --shadow-sm: 0 4px 20px rgba(15, 23, 36, 0.04);
  --shadow-md: 0 16px 40px rgba(124, 108, 240, 0.12);
  --shadow-lg: 0 28px 72px rgba(124, 108, 240, 0.16);
  --shadow-card: 0 1px 2px rgba(15, 23, 36, 0.04), 0 12px 32px rgba(15, 23, 36, 0.06);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 999px;
  --header-height: 72px;
  --content-max: 1040px;
  --page-gutter: clamp(24px, 5vw, 72px);
  --section-gap: 104px;
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Noto Serif SC", "Songti SC", "Noto Sans SC", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: rgba(124, 108, 240, 0.18);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: calc(var(--content-max) + var(--page-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .brand-text {
  color: var(--text);
  text-shadow: none;
}

.site-header:not(.is-scrolled) .brand-text {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.site-header:not(.is-scrolled) .site-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.92);
}

.site-header:not(.is-scrolled) .site-nav a:not(.nav-cta):hover,
.site-header:not(.is-scrolled) .site-nav a:not(.nav-cta).is-active {
  color: #fff;
}

.site-header:not(.is-scrolled) .site-nav a:not(.nav-cta)::after {
  background: #fff;
}

.site-header:not(.is-scrolled) .menu-toggle span {
  background: #fff;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(124, 108, 240, 0.28);
}

.hero-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.25s var(--ease-out);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-out);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta).is-active {
  color: var(--primary);
}

.site-nav .nav-cta {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(124, 108, 240, 0.24);
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.site-header:not(.is-scrolled) .site-nav .nav-cta {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled .site-nav .nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(124, 108, 240, 0.28);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
}

.site-header:not(.is-scrolled) .site-nav .nav-cta:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.65);
}

.site-header.is-scrolled .site-nav .nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #5548c0 100%);
  box-shadow: 0 10px 24px rgba(124, 108, 240, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(124, 108, 240, 0.34);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #5548c0 100%);
  box-shadow: 0 18px 40px rgba(124, 108, 240, 0.4);
}

/* Hero */

.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 80px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: hero-zoom 18s var(--ease-out) both;
}

.hero-media__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(28, 22, 54, 0.28) 0%, rgba(20, 16, 40, 0.74) 100%),
    linear-gradient(
      180deg,
      rgba(28, 22, 54, 0.62) 0%,
      rgba(20, 16, 40, 0.34) 45%,
      rgba(18, 14, 36, 0.78) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  animation: hero-rise 0.9s var(--ease-out) 0.12s both;
}

.hero-brand {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #fff;
  text-indent: 0.18em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.22);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.16);
}

.hero-desc {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* Sections */

.section {
  padding: var(--section-gap) 0;
}

.section-head {
  text-align: center;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-desc {
  margin: 16px auto 0;
  max-width: 540px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 108, 240, 0.35));
}

.section-label::after {
  background: linear-gradient(90deg, rgba(124, 108, 240, 0.35), transparent);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Positioning */

.positioning {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, var(--primary-mist) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(99, 85, 212, 0.05) 0%, transparent 50%),
    var(--bg);
  scroll-margin-top: var(--header-height);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.value-item {
  padding: 28px 22px 26px;
  border-top: 2px solid rgba(124, 108, 240, 0.28);
  background: transparent;
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.value-item:hover {
  border-top-color: var(--primary);
  transform: translateY(-3px);
}

.value-num {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.value-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.value-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Download / channels */

.download {
  position: relative;
  padding: 72px 0 var(--section-gap);
  scroll-margin-top: var(--header-height);
  background:
    radial-gradient(circle at 12% 18%, rgba(124, 108, 240, 0.07) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(155, 143, 245, 0.06) 0%, transparent 38%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-tint) 100%);
}

.download .section-head {
  margin-bottom: 40px;
}

.channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.channel-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 40px 40px 36px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 245, 255, 0.95) 100%);
  border: 1px solid rgba(124, 108, 240, 0.14);
  box-shadow: var(--shadow-card);
}

.channel-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.channel-feature h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.channel-feature__copy > p {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.channel-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.channel-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.channel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.channel-feature__qr {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.channel-feature__qr figcaption {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.qr-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(15, 23, 36, 0.06);
}

.qr-frame--lg {
  width: 220px;
  height: 220px;
  padding: 14px;
  border-radius: calc(var(--radius-md) + 4px);
  border-color: rgba(124, 108, 240, 0.16);
  box-shadow: 0 16px 40px rgba(124, 108, 240, 0.12);
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.channel-side {
  display: grid;
  gap: 20px;
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 28px 22px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(124, 108, 240, 0.1);
  box-shadow: 0 1px 2px rgba(15, 23, 36, 0.03);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 108, 240, 0.18);
}

.channel-card--soon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 248, 250, 0.95) 100%);
}

.channel-card--soon:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(15, 23, 36, 0.03);
  border-color: rgba(124, 108, 240, 0.1);
}

.channel-card__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

.channel-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
}

.channel-card__main > p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.channel-card .qr-frame {
  margin-bottom: 14px;
}

.channel-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(124, 108, 240, 0.06) 0%, rgba(124, 108, 240, 0.02) 100%);
  border: 2px dashed rgba(124, 108, 240, 0.2);
}

.channel-soon span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.channel-tip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.channel-tip--muted {
  background: rgba(100, 116, 139, 0.1);
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  padding: 56px 0 32px;
  background: linear-gradient(180deg, #1a1628 0%, #12101c 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  align-items: center;
  gap: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  min-width: 0;
}

.footer-brand .brand-text {
  color: #fff;
}

.footer-tagline {
  margin: 14px 0 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
}

.footer-desc {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  text-align: left;
}

.footer-contact {
  justify-self: end;
  padding-left: 56px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact h4 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.footer-contact p {
  margin: 0 0 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  white-space: nowrap;
}

.footer-contact p:last-child {
  margin-bottom: 0;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.72);
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Responsive */

@media (max-width: 1024px) {
  :root {
    --section-gap: 88px;
  }

  .hero {
    min-height: clamp(600px, 88vh, 760px);
  }

  .channel-layout {
    grid-template-columns: 1fr;
  }

  .channel-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
    --header-height: 64px;
    --page-gutter: 20px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 36px) 0 64px;
  }

  .hero-brand {
    margin-bottom: 16px;
    letter-spacing: 0.14em;
    text-indent: 0.14em;
  }

  .hero-copy h1 {
    font-size: clamp(24px, 6.4vw, 32px);
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 28px;
    width: 100%;
  }

  .hero-actions .btn {
    width: min(100%, 300px);
  }

  .download {
    padding: 56px 0 var(--section-gap);
  }

  .download .section-head,
  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .section-desc {
    font-size: 15px;
  }

  .channel-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
    text-align: center;
  }

  .channel-feature__copy > p {
    max-width: none;
  }

  .channel-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .channel-points {
    justify-items: center;
    text-align: left;
  }

  .channel-side {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .value-item {
    padding: 22px 4px 20px;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 0;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .site-nav .nav-cta {
    margin: 0;
    padding: 8px 16px;
    font-size: 14px;
  }

  .menu-toggle {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-desc {
    max-width: none;
    text-align: center;
  }

  .footer-contact {
    justify-self: center;
    padding-left: 0;
    padding-top: 24px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .footer-contact p {
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .qr-frame--lg {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .hero-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .site-nav .nav-cta {
    padding: 7px 14px;
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media__img,
  .hero-copy,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
