/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== Variables — Warm Palette ===== */
:root {
  --bg:        #FDF6E8;
  --bg-card:   #FEFBF2;
  --bg-warm:   #F5EDD6;
  --brown:     #7C5B3A;
  --brown-lt:  #E8D5B0;
  --brown-xlt: #F5EDDB;
  --sage:      #7EA88E;
  --sage-lt:   #CCE0D4;
  --rose:      #C07080;
  --rose-lt:   #F0D4DC;
  --gold:      #C09050;
  --gold-lt:   #F0DFC0;
  --text:      #3D2B1F;
  --text-m:    #7A5A40;
  --text-lt:   #B89870;
  --border:    #DEC898;
  --radius:    18px;
  --shadow:    0 4px 20px rgba(100, 70, 40, 0.10);
  --shadow-h:  0 10px 36px rgba(100, 70, 40, 0.20);
  --nav-h:     58px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans TC', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

/* ===== Illustration blend ===== */
.illus { mix-blend-mode: multiply; display: block; }

/* ===== Shared Animations ===== */
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes spin   { to { transform: rotate(360deg); } }

/* ===== Site Nav ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253, 246, 232, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 28px;
  z-index: 500;
}
.nav-logo {
  text-decoration: none;
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  white-space: nowrap;
  margin-right: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0 auto;
}
.nav-links li { display: flex; align-items: center; }
.nav-links li + li::before { content: '│'; color: var(--border); padding: 0 10px; font-size: 0.8rem; }
.nav-links a {
  text-decoration: none;
  color: var(--text-m);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown); font-weight: 700; }

/* ===== Tags ===== */
.tag { display: inline-block; padding: 3px 11px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; }
.tag-purple { background: var(--brown-xlt); color: var(--brown); }
.tag-pink   { background: var(--rose-lt);   color: var(--rose);  }
.tag-green  { background: var(--sage-lt);   color: #3A6B52;      }
.tag-yellow { background: var(--gold-lt);   color: #8B5E20;      }
.tag-gray   { background: #EEE8DC;          color: #6B5A45;      }

/* ===== Shared Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 22px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.2s;
  font-family: 'Noto Sans TC', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(100,70,40,0.15); }
.btn-brown   { background: var(--brown);   color: #fff; }
.btn-sage    { background: var(--sage);    color: #fff; }
.btn-rose    { background: var(--rose);    color: #fff; }
.btn-gold    { background: var(--gold);    color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--brown); color: var(--brown); }
.btn-line    { background: #06C755; color: #fff; }
.btn-ig      { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); color: #fff; }

/* ===== Section Title ===== */
.section-title { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; }
.section-title h2 { font-family: 'Noto Serif TC', serif; font-size: 1.8rem; font-weight: 700; }
.title-deco { font-size: 1rem; color: var(--brown-lt); animation: spin 8s linear infinite; display: inline-block; }

/* ===== Contact Bar ===== */
.contact-bar {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.contact-bar h2 { font-family: 'Noto Serif TC', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.contact-bar p  { color: var(--text-m); margin-bottom: 22px; font-size: 0.92rem; }
.contact-bar-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--text-lt);
  font-size: 0.85rem;
}
.footer-deco { font-size: 1.1rem; letter-spacing: 6px; margin-bottom: 6px; opacity: 0.55; }

/* ===== Disclaimer ===== */
.disclaimer { max-width: 860px; margin: 0 auto; padding: 0 24px 52px; }
.disclaimer-inner {
  background: #FEFAE8;
  border: 1.5px dashed var(--gold-lt);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dis-icon { font-size: 1rem; flex-shrink: 0; padding-top: 2px; }
.dis-text { font-size: 0.82rem; color: var(--text-m); line-height: 1.85; }

/* =============================================
   HOME PAGE
   ============================================= */
.home-hero {
  display: flex;
  align-items: center;
  min-height: calc(56vh);
  background: linear-gradient(135deg, #F0E6CC 0%, #E8DCC0 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.home-hero-text {
  flex: 1;
  padding: 48px 40px 48px 60px;
}
.home-hero-text h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 14px;
}
.home-hero-text p { font-size: 1rem; color: var(--text-m); margin-bottom: 28px; line-height: 1.8; }
.home-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.home-hero-illus {
  flex: 0 0 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 24px 0;
}
.home-hero-illus img { max-width: 100%; max-height: 300px; object-fit: contain; }

/* Home tiles */
.home-tiles {
  max-width: 1060px;
  margin: 0 auto;
  padding: 56px 24px 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.htile {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 32px 24px 28px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.htile:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); border-color: var(--brown-lt); }
.htile-illus { width: 160px; height: 130px; object-fit: contain; margin-bottom: 16px; }
.htile-emoji { font-size: 3.8rem; margin-bottom: 16px; }
.htile h3 { font-family: 'Noto Serif TC', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.htile p  { font-size: 0.85rem; color: var(--text-m); line-height: 1.75; }
.htile-arrow { margin-top: 18px; color: var(--border); font-size: 1.1rem; transition: color 0.2s; }
.htile:hover .htile-arrow { color: var(--brown); }

/* =============================================
   PAGE HERO (shared — shop, boarding)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #F0E6CC 0%, #E8DCC0 100%);
  border-bottom: 1px solid var(--border);
  padding: 44px 24px 52px;
  text-align: center;
  overflow: hidden;
}
.page-hero-emoji { font-size: 3.2rem; display: block; margin-bottom: 12px; animation: bounce 2.2s ease-in-out infinite; }
.page-hero h1 { font-family: 'Noto Serif TC', serif; font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; margin-bottom: 10px; }
.page-hero p  { color: var(--text-m); font-size: 0.95rem; }

/* Boarding hero with illustration */
.boarding-hero {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0;
}
.boarding-hero-text { flex: 1; padding: 44px 32px 44px 56px; }
.boarding-hero-text h1 { font-family: 'Noto Serif TC', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 10px; }
.boarding-hero-text p  { color: var(--text-m); font-size: 0.95rem; }
.boarding-hero-illus { flex: 0 0 340px; display: flex; align-items: flex-end; justify-content: center; padding: 20px 24px 0; }
.boarding-hero-illus img { max-width: 100%; max-height: 260px; object-fit: contain; }

/* Family hero with illustration */
.family-hero {
  background: linear-gradient(135deg, #F0E6CC 0%, #E8DCC0 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.family-hero-text { flex: 1; padding: 44px 32px 44px 56px; }
.family-hero-text h1 { font-family: 'Noto Serif TC', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 10px; }
.family-hero-text p  { color: var(--text-m); font-size: 0.92rem; margin-bottom: 22px; }
.family-hero-illus { flex: 0 0 300px; display: flex; align-items: flex-end; justify-content: center; padding: 16px 20px 0; }
.family-hero-illus img { max-width: 100%; max-height: 240px; object-fit: contain; }

.hero-stats { display: inline-flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.55); backdrop-filter: blur(6px); border: 1px solid var(--border); border-radius: 999px; padding: 10px 24px; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num   { font-family: 'Noto Serif TC', serif; font-size: 1.4rem; font-weight: 700; color: var(--brown); line-height: 1; }
.stat-label { font-size: 0.68rem; color: var(--text-m); margin-top: 2px; }
.stat-divider { color: var(--border); font-size: 0.8rem; }

/* =============================================
   FAMILY PAGE
   ============================================= */
.member-strip {
  background: rgba(253, 246, 232, 0.97);
  padding: 11px 20px;
  text-align: center;
  border-bottom: 1px dashed var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 400;
  box-shadow: 0 2px 8px rgba(100,70,40,0.07);
}
.strip-label { font-size: 0.7rem; color: var(--text-lt); margin-bottom: 7px; }
.strip-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.strip-pill { text-decoration: none; background: var(--brown-xlt); color: var(--brown); padding: 4px 13px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; transition: background 0.2s, color 0.2s; }
.strip-pill:hover { background: var(--brown); color: #fff; }
.strip-pill.female { background: var(--rose-lt); color: var(--rose); }
.strip-pill.female:hover { background: var(--rose); color: #fff; }

.cards-area { max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px; }
.cards-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

/* Card */
.card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(24px);
  display: flex;
  flex-direction: column;
}
.card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s; }
.card:hover   { box-shadow: var(--shadow-h); transform: translateY(-5px) !important; border-color: var(--brown-lt); }

/* Card Photo */
.card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brown-xlt), var(--bg-warm));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.card:hover .card-photo img { transform: scale(1.05); }
.photo-fallback { font-size: 4.5rem; display: none; animation: bounce 2s ease-in-out infinite; }
.card-photo.no-photo img          { display: none; }
.card-photo.no-photo .photo-fallback { display: flex; }
.photo-hover { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0); transition: background 0.25s; }
.photo-hover span { background: rgba(61,43,31,0.55); color: #fff; font-size: 0.82rem; font-weight: 700; padding: 7px 16px; border-radius: 999px; opacity: 0; transform: scale(0.9); transition: opacity 0.25s, transform 0.25s; }
.card-photo:hover .photo-hover           { background: rgba(0,0,0,0.12); }
.card-photo:hover .photo-hover span      { opacity: 1; transform: scale(1); }

.badge-num    { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.88); color: var(--brown); font-family: 'Noto Serif TC', serif; font-weight: 700; font-size: 0.8rem; padding: 2px 10px; border-radius: 999px; }
.badge-gender { position: absolute; top: 10px; right: 10px; font-size: 0.76rem; font-weight: 700; padding: 2px 10px; border-radius: 999px; }
.badge-gender.male    { background: rgba(180, 210, 240, 0.9); color: #2C527A; }
.badge-gender.female  { background: rgba(240, 200, 210, 0.9); color: #8B3050; }
.badge-gender.unknown { background: rgba(220,210,200,0.9);    color: #6B5040; }

/* Thumbnails */
.card-thumbs { display: flex; gap: 5px; padding: 7px 10px; background: var(--brown-xlt); min-height: 50px; align-items: center; }
.card-thumb  { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s, transform 0.15s; flex-shrink: 0; }
.card-thumb:hover { border-color: var(--brown); transform: scale(1.1); }
.thumb-more { width: 50px; height: 50px; border-radius: 8px; background: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--brown); cursor: pointer; flex-shrink: 0; }
.card-thumbs-msg { padding: 8px 10px; background: var(--brown-xlt); font-size: 0.74rem; color: var(--text-lt); text-align: center; }

/* Card body */
.card-body     { padding: 17px 18px 4px; flex: 1; }
.card-name     { font-family: 'Noto Serif TC', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.card-birthday { font-size: 0.79rem; color: var(--text-lt); margin-bottom: 10px; }
.card-birthday .age { color: var(--brown); font-weight: 700; }
.card-tags     { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 11px; }
.card-desc     { font-size: 0.88rem; color: var(--text-m); line-height: 1.72; margin-bottom: 12px; }

/* Card Video */
.card-video { padding: 0 18px 12px; }
.video-wrap { position: relative; padding-top: 56.25%; border-radius: 12px; overflow: hidden; background: #111; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: relative; padding-top: 48%; border-radius: 12px; background: linear-gradient(135deg, var(--brown-xlt), var(--bg-warm)); }
.video-ph-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.video-ph-inner span { font-size: 1.6rem; opacity: 0.45; }
.video-ph-inner p    { font-size: 0.74rem; color: var(--text-lt); }

/* Card Links */
.card-links { padding: 0 18px 18px; display: flex; gap: 8px; flex-wrap: wrap; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(30,18,10,0.94); z-index: 900; flex-direction: column; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: min(90vw,900px); max-height: 78vh; border-radius: 10px; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-controls { display: flex; align-items: center; gap: 20px; margin-top: 18px; }
.lb-btn { background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 1.4rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lb-btn:hover { background: rgba(255,255,255,0.25); }
.lb-btn:disabled { opacity: 0.2; cursor: default; }
.lb-counter { color: rgba(255,255,255,0.6); font-size: 0.88rem; min-width: 56px; text-align: center; }
.lb-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }

/* =============================================
   SHOP CARDS (hat style)
   ============================================= */
.shop-wrap { max-width: 1060px; margin: 0 auto; padding: 48px 24px 72px; }
.shop-notice { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px 32px; text-align: center; box-shadow: var(--shadow); margin-bottom: 48px; }
.shop-notice-icon { font-size: 2.2rem; margin-bottom: 12px; }
.shop-notice h3 { font-family: 'Noto Serif TC', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.shop-notice p  { color: var(--text-m); font-size: 0.92rem; line-height: 1.85; margin-bottom: 20px; }

.shop-grid-v2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 20px; }
.sc { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 18px; overflow: visible; box-shadow: var(--shadow); transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s; position: relative; margin-top: 20px; }
.sc:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); border-color: var(--brown-lt); }

/* hat */
.sc-hat { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; }
.sc-hat-pom  { width: 13px; height: 13px; border-radius: 50%; margin-bottom: -3px; flex-shrink: 0; }
.sc-hat-body { width: 36px; height: 22px; border-radius: 10px 10px 5px 5px; flex-shrink: 0; position: relative; }
.sc-hat-body::after { content: ''; position: absolute; bottom: -5px; left: -4px; right: -4px; height: 8px; border-radius: 4px; background: inherit; opacity: 0.45; }
.sc-hat.pink   .sc-hat-pom, .sc-hat.pink   .sc-hat-body { background: #C07080; }
.sc-hat.blue   .sc-hat-pom, .sc-hat.blue   .sc-hat-body { background: #7090C0; }
.sc-hat.mint   .sc-hat-pom, .sc-hat.mint   .sc-hat-body { background: #6A9E85; }
.sc-hat.yellow .sc-hat-pom, .sc-hat.yellow .sc-hat-body { background: #B88040; }

.sc-photo { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, var(--brown-xlt), var(--bg-warm)); border-radius: 18px 18px 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.sc-photo img { width: 100%; height: 100%; object-fit: cover; }
.sc-body { padding: 13px 13px 15px; }
.sc-name  { font-family: 'Noto Serif TC', serif; font-size: 1rem; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.sc-meta  { font-size: 0.72rem; color: var(--text-lt); margin-bottom: 6px; }
.sc-desc  { font-size: 0.78rem; color: var(--text-m); line-height: 1.6; margin-bottom: 11px; }
.sc-btns  { display: flex; gap: 6px; }
.sc-btn   { flex: 1; text-align: center; text-decoration: none; padding: 7px 4px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; transition: opacity 0.2s, transform 0.15s; }
.sc-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.sc-btn-outline { border: 2px solid var(--border); color: var(--brown); background: transparent; }
.sc-btn-fill    { background: var(--brown); color: #fff; }

/* =============================================
   BOARDING PAGE
   ============================================= */
.boarding-features { max-width: 1060px; margin: 0 auto; padding: 52px 24px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.feature-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 22px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.feature-icon  { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.feature-title { font-family: 'Noto Serif TC', serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc  { font-size: 0.83rem; color: var(--text-m); line-height: 1.75; }

.boarding-steps { max-width: 800px; margin: 44px auto 0; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.step-card  { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 16px; padding: 22px 16px; text-align: center; box-shadow: var(--shadow); }
.step-num   { font-family: 'Noto Serif TC', serif; font-size: 1.8rem; font-weight: 700; color: var(--border); }
.step-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; margin-top: 4px; }
.step-desc  { font-size: 0.78rem; color: var(--text-m); line-height: 1.65; }
.boarding-bottom { padding: 40px 24px 64px; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .home-hero          { flex-direction: column; min-height: auto; }
  .home-hero-text     { padding: 40px 24px 24px; text-align: center; }
  .home-hero-illus    { flex: none; padding: 0 20px 24px; }
  .home-hero-illus img{ max-height: 180px; }
  .home-hero-btns     { justify-content: center; }
  .family-hero        { flex-direction: column; }
  .family-hero-text   { padding: 36px 20px 16px; text-align: center; }
  .family-hero-illus  { flex: none; padding: 0 20px 20px; }
  .boarding-hero      { flex-direction: column; text-align: center; }
  .boarding-hero-text { padding: 36px 20px 16px; }
  .boarding-hero-illus { flex: none; padding: 0 20px 20px; }
  .cards-grid         { grid-template-columns: 1fr; }
  .cards-area         { padding: 32px 14px 60px; }
}
@media (max-width: 480px) {
  .nav-links li + li::before { padding: 0 6px; }
  .nav-links a { font-size: 0.83rem; }
  .boarding-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .boarding-features { grid-template-columns: 1fr; }
}
