html {
  color-scheme: light only;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #FFFFFF !important;
  color: #111111 !important;
  line-height: 1.55;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #111111;
}

p, li {
  color: #111111;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #3D6B66;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.wrap.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

section {
  padding: 4rem 0;
  background-color: #FFFFFF;
}

.section-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8362A;
  margin-bottom: 0.5rem;
}

h2.section-title {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  max-width: 24ch;
  margin-bottom: 1.5rem;
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
  background-color: #FFFFFF;
}
.page-hero.center {
  text-align: center;
}

h1.page-title {
  font-size: clamp(2.2rem, 6.5vw, 3.4rem);
  max-width: 20ch;
  margin-bottom: 1rem;
}

.page-sub {
  font-size: 1.05rem;
  max-width: 54ch;
  color: #4A4A4A;
}

.site-header {
  background-color: #FFFFFF;
  position: relative;
  z-index: 10;
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid #E7E5E2;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-mark span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9662B;
}

nav.primary {
  display: none;
}
@media (min-width: 760px) {
  nav.primary {
    display: flex;
    gap: 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111111;
  }
  nav.primary a {
    position: relative;
    padding-bottom: 2px;
  }
  nav.primary a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: #A8362A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }
  nav.primary a:hover::after, nav.primary a[aria-current=page]::after {
    transform: scaleX(1);
  }
}

.nav-cta {
  display: inline-block;
  background: #111111;
  color: #FFFFFF !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

footer {
  padding: 2.5rem 0 4rem;
  background-color: #FFFFFF;
  border-top: 1px solid #E7E5E2;
}
footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #6B6864;
}
footer .foot-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
footer .foot-links a:hover {
  color: #111111;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: #111111;
  color: #FFFFFF;
}
.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: #111111;
  border: 1.5px solid #E7E5E2;
}
.btn-ghost:hover {
  border-color: #111111;
}

.submit-btn {
  width: 100%;
  background: #111111;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem;
  border-radius: 999px;
  border: none;
  transition: transform 0.15s ease;
}
.submit-btn:hover {
  transform: translateY(-2px);
}

.final-cta {
  text-align: center;
  border: 1px solid #E7E5E2;
  border-radius: 28px;
  margin: 0 1rem 4rem;
  padding: 4rem 1.5rem;
  background: #FAFAF9;
}
.final-cta h2 {
  max-width: 20ch;
  margin: 0 auto 1rem;
}
.final-cta p {
  color: #4A4A4A;
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

.avail-band {
  background: #111111 !important;
}
.avail-band .section-label {
  color: #E8A33D;
}
.avail-band h2.section-title {
  color: #FFFFFF;
}
.avail-band p.lead {
  color: #C9C9C9;
  max-width: 46ch;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #1E1E1E;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 0.7rem 1.2rem;
  color: #FFFFFF;
}
.store-btn .icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.store-btn .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-btn .txt small {
  font-size: 0.65rem;
  color: #ADADAD;
}
.store-btn .txt strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}
.store-btn:hover {
  border-color: #555555;
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E7E5E2;
  border-radius: 16px;
  padding: 2.5rem;
}

.field {
  margin-bottom: 1.5rem;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid #E7E5E2;
  background: #FFFFFF;
  color: #111111;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 500px) {
  .field-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-foot {
  text-align: center;
  font-size: 0.82rem;
  color: #6B6864;
  margin-top: 1rem;
}

.confirm {
  display: none;
  text-align: center;
  padding: 2.5rem 0;
}
.confirm.show {
  display: block;
}
.confirm .glyph {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.confirm h2 {
  margin-bottom: 0.5rem;
}
.confirm p {
  color: #4A4A4A;
  max-width: 40ch;
  margin: 0 auto;
}

.hero {
  padding: 4rem 0 2.5rem;
  background-color: #FFFFFF;
}
.hero .wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #4A4A4A;
  border: 1px solid #E7E5E2;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D9662B;
}

.hero-title {
  font-size: clamp(2.3rem, 7vw, 3.6rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: #4A4A4A;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #E7E5E2;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #111111;
  background: #FAFAF9;
}
.platform-badge .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.shop-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border: 1px solid #E7E5E2;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.product-card.flagship {
  border-color: #111111;
  border-width: 1.5px;
  grid-column: span 1;
}
@media (min-width: 700px) {
  .product-card.flagship {
    grid-column: span 3;
    flex-direction: row;
  }
}
.product-card.flagship .card-media {
  background: #FAFAF9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card.flagship .card-media img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 700px) {
  .product-card.flagship .card-media {
    width: 42%;
    flex-shrink: 0;
  }
}
.product-card.flagship .card-body {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card.flagship h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.product-card.flagship p.desc {
  font-size: 0.98rem;
  color: #4A4A4A;
  margin-bottom: 1rem;
  max-width: 48ch;
}
.product-card.ghost {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: #9B9895;
  background: #FAFAF9;
  border-style: dashed;
}
.product-card.ghost .ghost-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1.5px dashed #D8D5D1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: #C7C4C0;
}
.product-card.ghost h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #6B6864;
  margin-bottom: 0.3rem;
}
.product-card.ghost p {
  font-size: 0.82rem;
  color: #9B9895;
}

.app-icon-tile {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  background: linear-gradient(135deg, #E8A33D, #D9662B);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.18);
}
.app-icon-tile .glyph {
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF;
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background: #111111;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  width: fit-content;
}

.card-platforms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.mini-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4A4A4A;
  border: 1px solid #E7E5E2;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.what-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .what-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.what-card {
  border: 1px solid #E7E5E2;
  border-radius: 16px;
  padding: 1.5rem;
  background: #FFFFFF;
}
.what-card .num {
  font-family: "Fraunces", serif;
  font-size: 0.85rem;
  color: #A8362A;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.what-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.what-card p {
  font-size: 0.9rem;
  color: #4A4A4A;
}

.post-feature {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
  align-items: center;
  border: 1px solid #E7E5E2;
  border-radius: 24px;
  padding: 2.5rem;
  background: #FAFAF9;
}
@media (min-width: 860px) {
  .post-feature {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
    padding: 4rem;
  }
}

.post-copy .feature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background: #111111;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.post-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.7rem;
  max-width: 16ch;
}
.post-copy p {
  font-size: 1.02rem;
  color: #4A4A4A;
  margin-bottom: 1.5rem;
  max-width: 46ch;
}

.composer-mock {
  background: #FFFFFF;
  border: 1px solid #E7E5E2;
  border-radius: 18px;
  padding: 1.5rem;
  max-width: 340px;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.12);
}
.composer-mock .row-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6B6864;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.composer-field {
  border: 1px solid #E7E5E2;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  color: #111111;
}
.composer-field.title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.composer-stats {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.stat-chip {
  flex: 1;
  border: 1px solid #E7E5E2;
  border-radius: 10px;
  padding: 0.6rem;
  text-align: center;
}
.stat-chip strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: #A8362A;
}
.stat-chip span {
  font-size: 0.68rem;
  color: #6B6864;
}

.composer-btn {
  display: block;
  text-align: center;
  background: #111111;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 0.7rem;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 1rem;
}

.how-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-card {
  border: 1px solid #E7E5E2;
  border-radius: 16px;
  padding: 1.5rem;
}
.how-card .num {
  font-family: "Fraunces", serif;
  font-size: 0.85rem;
  color: #A8362A;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.how-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.how-card p {
  font-size: 0.9rem;
  color: #4A4A4A;
}

.track-band {
  background: #FAFAF9;
}

.track-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .track-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.dash-mock {
  background: #FFFFFF;
  border: 1px solid #E7E5E2;
  border-radius: 18px;
  padding: 1.5rem;
}
.dash-mock .dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.dash-mock .dash-head strong {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
}
.dash-mock .dash-head span {
  font-size: 0.72rem;
  color: #6B6864;
  background: #F2F1EF;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.dash-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.dash-bar-row span:first-child {
  font-size: 0.8rem;
  font-weight: 500;
}
.dash-bar-row .val {
  font-size: 0.75rem;
  color: #6B6864;
  text-align: right;
}

.dash-bar-track {
  height: 9px;
  background: #F2F1EF;
  border-radius: 999px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  background: #D9662B;
  border-radius: 999px;
}

.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  border: 1px solid #E7E5E2;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
}

.team-photo {
  aspect-ratio: 4/5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo.p1 {
  background: linear-gradient(150deg, #E8A33D, #D9662B);
}
.team-photo.p2 {
  background: linear-gradient(150deg, #3D6B66, #2C4E4A);
}
.team-photo .initial {
  font-family: "Fraunces", serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}
.team-photo .photo-note {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.team-info {
  padding: 1.5rem;
}
.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}
.team-info p {
  font-size: 0.92rem;
  color: #4A4A4A;
}

.team-role {
  font-size: 0.78rem;
  color: #A8362A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.group-photo {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: 16px;
  background: linear-gradient(120deg, #FAFAF9, #F0EEEA);
  border: 1px solid #E7E5E2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.group-photo img {
  height: 100%;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.group-photo .head {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #FFFFFF;
  border: 4px solid #FFFFFF;
  margin-left: -18px;
}
.group-photo .head:first-child {
  margin-left: 0;
}
.group-photo .head.h1 {
  background: #A8362A;
}
.group-photo .head.h2 {
  background: #3D6B66;
}
.group-photo .caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: #6B6864;
  background: #FFFFFF;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #E7E5E2;
}

.values-band {
  background: #FAFAF9;
}

.values-list {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .values-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  border-top: 2px solid #E0DDD8;
  padding-top: 1rem;
}
.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.value-item p {
  font-size: 0.9rem;
  color: #4A4A4A;
}

.quote-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.quote-block p.quote {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.quote-block .attribution {
  font-size: 0.85rem;
  color: #6B6864;
  font-weight: 600;
}

.help-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 700px) {
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.help-card {
  border: 1px solid #E7E5E2;
  border-radius: 16px;
  padding: 1.5rem;
}
.help-card .glyph {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.help-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.help-card p {
  font-size: 0.88rem;
  color: #4A4A4A;
}

.faq-list {
  max-width: 720px;
}

details.faq-item {
  border-bottom: 1px solid #E7E5E2;
  padding: 1rem 0;
}
details.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary .icon-plus {
  font-size: 1.3rem;
  color: #6B6864;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
details.faq-item[open] summary .icon-plus {
  transform: rotate(45deg);
}
details.faq-item .faq-answer {
  font-size: 0.92rem;
  color: #4A4A4A;
  margin-top: 0.7rem;
  max-width: 60ch;
}

.support-band {
  background: #FAFAF9;
}

.legal-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal-card {
  border: 1px solid #E7E5E2;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.legal-card .glyph {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.legal-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.legal-card p {
  font-size: 0.92rem;
  color: #4A4A4A;
  margin-bottom: 1.5rem;
  flex: 1;
}
.legal-card .updated {
  font-size: 0.75rem;
  color: #9B9895;
  margin-bottom: 1rem;
}

.legal-link {
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.legal-link:hover {
  text-decoration: underline;
}

.note-band {
  background: #FAFAF9;
  text-align: center;
}
.note-band .wrap {
  max-width: 640px;
}
.note-band p {
  color: #4A4A4A;
  font-size: 0.95rem;
}

.doc-header {
  margin-bottom: 2.5rem;
}
.doc-header h1 {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.doc-header .updated {
  font-size: 0.85rem;
  color: #6B6864;
}

.toc {
  border: 1px solid #E7E5E2;
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.toc h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.toc ol {
  list-style: decimal;
  padding-left: 1.2rem;
}
.toc li {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.toc a {
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}

article h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.7rem;
  scroll-margin-top: 1rem;
}
article p {
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
  max-width: 68ch;
}
article ul {
  padding-left: 1.3rem;
  margin-bottom: 0.9rem;
}
article li {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  max-width: 64ch;
}
article strong {
  font-weight: 700;
}