:root {
  --bg: #0f1117;
  --surface: #1a1d27;
  --surface-2: #242836;
  --text: #f4f6fb;
  --text-muted: #9aa3b8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --max-w: 1180px;
  --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(15, 17, 23, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 72px) 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--glow-1), transparent 42%),
    radial-gradient(circle at 80% 10%, var(--glow-2), transparent 35%),
    radial-gradient(circle at 50% 100%, var(--glow-3), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text, #fff);
  box-shadow: 0 12px 30px var(--accent-shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.phone-mock {
  aspect-ratio: 10 / 16;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--mock-top), var(--mock-bottom));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.mock-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.mock-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-card strong {
  display: block;
  margin-bottom: 6px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mock-stat {
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.85rem;
}

.mock-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.3rem;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.split-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-panel {
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.quote-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 700;
}

.quote-user strong {
  display: block;
}

.quote-user span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.download {
  text-align: center;
  padding: 72px 0 96px;
}

.download-box {
  padding: 48px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
}

.download-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.download-box p {
  margin: 0 auto 24px;
  max-width: 560px;
  color: var(--text-muted);
}

.download-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.download-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.qrcode-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto 24px;
}

.qrcode-img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.qrcode-tip {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.qrcode-img-sm {
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.product-logo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 360px;
  padding: 40px 28px;
}

.hero-card.hero-card-preview {
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 18px;
  width: 100%;
}

.preview-device {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-device-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px;
}

.preview-app-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.preview-device-meta strong {
  display: block;
  font-size: 0.92rem;
}

.preview-device-meta span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.preview-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.preview-gallery-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.preview-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.preview-gallery-item figcaption {
  padding: 6px 8px 8px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.15);
}

.theme-fate .preview-gallery-item:hover {
  border-color: rgba(127, 226, 238, 0.35);
}

.theme-sesame .preview-gallery-item:hover {
  border-color: rgba(246, 161, 208, 0.35);
}

.theme-fish .preview-gallery-item:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.preview-app-icon-qr {
  padding: 2px;
}

.hero-logo-wrap .product-logo {
  width: 180px;
  height: 180px;
  border-radius: 36px;
  padding: 16px;
}

.hero-logo-name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-card .product-logo {
  margin: 0 auto;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

/* Products hub */
.products-hero {
  padding-top: calc(var(--header-h) + 56px);
}

.hero-card-matrix {
  padding: 20px;
}

.product-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.matrix-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 8px;
}

.matrix-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.matrix-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.matrix-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.matrix-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.matrix-glow {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.matrix-fate {
  background: rgba(127, 226, 238, 0.06);
  border-color: rgba(127, 226, 238, 0.22);
}

.matrix-fate .matrix-glow {
  background: radial-gradient(circle at 20% 20%, rgba(127, 226, 238, 0.35), transparent 55%);
}

.matrix-fate:hover {
  border-color: rgba(127, 226, 238, 0.45);
}

.matrix-sesame {
  background: rgba(246, 161, 208, 0.06);
  border-color: rgba(246, 161, 208, 0.22);
}

.matrix-sesame .matrix-glow {
  background: radial-gradient(circle at 80% 10%, rgba(246, 161, 208, 0.35), transparent 50%);
}

.matrix-sesame:hover {
  border-color: rgba(246, 161, 208, 0.45);
}

.matrix-fish {
  background: rgba(56, 189, 248, 0.06);
  border-color: rgba(56, 189, 248, 0.22);
}

.matrix-fish .matrix-glow {
  background: radial-gradient(circle at 70% 80%, rgba(56, 189, 248, 0.3), transparent 50%);
}

.matrix-fish:hover {
  border-color: rgba(56, 189, 248, 0.45);
}

.matrix-logo {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.matrix-logo-qr {
  width: 56px;
  height: 56px;
  padding: 4px;
}

.matrix-info {
  position: relative;
  flex: 1;
}

.matrix-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.matrix-info strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.matrix-info p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.matrix-arrow {
  position: relative;
  align-self: flex-end;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.matrix-card:hover .matrix-arrow {
  transform: translateX(4px);
  color: var(--text);
}

.matrix-empty {
  visibility: hidden;
  pointer-events: none;
}

/* Products showcase */
.products-showcase-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.products-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.showcase-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.showcase-content {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.showcase-fate {
  grid-column: 1 / -1;
}

.showcase-fate .showcase-bg {
  background:
    radial-gradient(circle at 12% 30%, rgba(127, 226, 238, 0.22), transparent 42%),
    radial-gradient(circle at 88% 20%, rgba(78, 203, 217, 0.14), transparent 35%),
    var(--surface);
}

.showcase-fate {
  border-color: rgba(127, 226, 238, 0.25);
}

.showcase-sesame .showcase-bg {
  background:
    radial-gradient(circle at 80% 15%, rgba(246, 161, 208, 0.25), transparent 45%),
    var(--surface);
}

.showcase-sesame {
  border-color: rgba(246, 161, 208, 0.25);
}

.showcase-fish .showcase-bg {
  background:
    radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.22), transparent 45%),
    var(--surface);
}

.showcase-fish {
  border-color: rgba(56, 189, 248, 0.25);
}

.showcase-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.showcase-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: #fff;
  padding: 12px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.showcase-logo-sm {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  padding: 10px;
}

.showcase-logo-qr {
  padding: 6px;
}

.showcase-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
}

.showcase-content h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.showcase-fate h3 {
  font-size: 2rem;
}

.showcase-desc {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
}

.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-chips span {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.showcase-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.showcase-link:hover {
  color: var(--text);
}

.showcase-fate .btn-primary {
  background: linear-gradient(135deg, #7fe2ee, #4ecbd9);
  color: #0d2a30;
  box-shadow: 0 12px 30px rgba(127, 226, 238, 0.28);
}

.showcase-sesame .btn-primary {
  background: linear-gradient(135deg, #f6a1d0, #e882bc);
  color: #3d1a2e;
  box-shadow: 0 12px 30px rgba(246, 161, 208, 0.28);
}

.showcase-fish .btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.28);
}

/* Footer */
.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--text);
}

/* Themes */
.theme-fate {
  --accent: #7fe2ee;
  --accent-2: #4ecbd9;
  --accent-text: #0d2a30;
  --accent-shadow: rgba(127, 226, 238, 0.35);
  --glow-1: rgba(127, 226, 238, 0.22);
  --glow-2: rgba(78, 203, 217, 0.18);
  --glow-3: rgba(56, 189, 248, 0.12);
  --mock-top: #2a9aad;
  --mock-bottom: #0f3d47;
}

.theme-sesame {
  --accent: #f6a1d0;
  --accent-2: #e882bc;
  --accent-text: #3d1a2e;
  --accent-shadow: rgba(246, 161, 208, 0.32);
  --glow-1: rgba(246, 161, 208, 0.2);
  --glow-2: rgba(232, 130, 188, 0.16);
  --glow-3: rgba(219, 112, 170, 0.1);
  --mock-top: #c45d96;
  --mock-bottom: #4a2038;
}

.theme-fish {
  --accent: #38bdf8;
  --accent-2: #0ea5e9;
  --accent-shadow: rgba(56, 189, 248, 0.28);
  --glow-1: rgba(56, 189, 248, 0.18);
  --glow-2: rgba(14, 165, 233, 0.16);
  --glow-3: rgba(2, 132, 199, 0.1);
  --mock-top: #0369a1;
  --mock-bottom: #082f49;
}

.theme-company {
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --accent-shadow: rgba(99, 102, 241, 0.28);
  --glow-1: rgba(99, 102, 241, 0.18);
  --glow-2: rgba(139, 92, 246, 0.14);
  --glow-3: rgba(59, 130, 246, 0.1);
  --mock-top: #4338ca;
  --mock-bottom: #1e1b4b;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .features,
  .testimonials,
  .products-showcase,
  .product-matrix {
    grid-template-columns: 1fr;
  }

  .matrix-header {
    grid-column: auto;
  }

  .matrix-empty {
    display: none;
  }

  .showcase-fate {
    grid-column: auto;
  }

  .showcase-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .showcase-desc {
    max-width: none;
  }

  .showcase-actions {
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    background: rgba(20, 23, 31, 0.96);
    border: 1px solid var(--border);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
