.sample-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 13px;
  padding: 10px 20px;
  text-align: center;
}

.sample-banner .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.vault-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.vault-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.vb-star { color: var(--orange); }

.vault-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.vault-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 28px;
}

.vault-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.vault-pill {
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink-soft);
}

.vault-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vault-hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mock {
  width: 260px;
  height: 540px;
  background: var(--ink);
  border-radius: 44px;
  padding: 14px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: rotate(4deg);
}

html[data-theme="dark"] .phone-mock {
  background: #2b2a26;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

.phone-grid {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  background: var(--bg);
}

.pg-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  padding: 6px;
}

.pg-1 { background: #c9962c; }
.pg-2 { background: #1c1c1a; color: #a8342f; }
.pg-3 { background: #3a1f14; }
.pg-4 { background: #a8342f; color: #faf3ee; }
.pg-5 { background: #2a2a26; }
.pg-6 { background: #d9a94a; }
.pg-7 { background: #141410; color: #d9a94a; }
.pg-8 { background: #4a2a10; }
.pg-9 { background: #1a1a17; color: #f5f4ee; }

.vault-why,
.vault-collections,
.vault-included,
.vault-how,
.vault-faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.vault-stats-headline {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  text-align: center;
}

.vault-stat-line {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

@media (max-width: 768px) {
  .vault-stat-line { font-size: 34px; }
}

.vault-why-sub {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 44px;
}

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

.vault-why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: left;
}

.vwc-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 32px;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.vault-why-card h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.vault-why-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  text-align: left;
}

.collection-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.cc-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cc-mosaic span {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  text-align: center;
  padding: 4px;
}

.cc-mosaic-1 span:nth-child(1) { background: #c9962c; }
.cc-mosaic-1 span:nth-child(2) { background: #1c1c1a; color: #a8342f; }
.cc-mosaic-1 span:nth-child(3) { background: #3a1f14; }
.cc-mosaic-1 span:nth-child(4) { background: #2a2a26; }
.cc-mosaic-1 span:nth-child(5) { background: #a8342f; color: #faf3ee; }
.cc-mosaic-1 span:nth-child(6) { background: #d9a94a; }
.cc-mosaic-1 span:nth-child(7) { background: #141410; color: #d9a94a; }
.cc-mosaic-1 span:nth-child(8) { background: #4a2a10; }
.cc-mosaic-1 span:nth-child(9) { background: #1a1a17; }

.cc-mosaic-2 span:nth-child(odd) { background: #1c1c1a; color: #a8342f; }
.cc-mosaic-2 span:nth-child(even) { background: #c9962c; }

.cc-mosaic-3 span:nth-child(3n+1) { background: #d9a94a; }
.cc-mosaic-3 span:nth-child(3n+2) { background: #141410; color: #a8342f; }
.cc-mosaic-3 span:nth-child(3n) { background: #3a1f14; }

.cc-mosaic-4 span:nth-child(odd) { background: #2a2a26; }
.cc-mosaic-4 span:nth-child(even) { background: #a8342f; color: #faf3ee; }

.cc-mosaic-5 span:nth-child(3n+1) { background: #1c1c1a; color: #d9a94a; }
.cc-mosaic-5 span:nth-child(3n+2) { background: #c9962c; }
.cc-mosaic-5 span:nth-child(3n) { background: #4a2a10; }

.cc-mosaic-6 span:nth-child(odd) { background: #3a1f14; }
.cc-mosaic-6 span:nth-child(even) { background: #1a1a17; color: #a8342f; }

.collection-card h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.collection-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.cc-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg);
  border-radius: 999px;
  padding: 5px 12px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.included-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: left;
}

.ic-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 14px;
}

.included-card h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.included-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
  text-align: left;
}

.how-step {
  display: flex;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.how-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
}

.how-step h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.how-step p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.faq-list {
  margin-top: 40px;
  text-align: left;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  color: var(--ink-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-body { max-height: 160px; }

.faq-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 4px 22px;
  max-width: 640px;
}

@media (max-width: 860px) {
  .vault-hero { grid-template-columns: 1fr; text-align: center; }
  .vault-sub { margin-left: auto; margin-right: auto; }
  .vault-pills { justify-content: center; }
  .vault-why-grid, .collections-grid, .included-grid, .how-steps { grid-template-columns: 1fr; }
  .phone-mock { margin: 0 auto; }
}
