:root {
  --page-bg: #FFFDF7;
  --text: #253047;
  --card: #FFFFFF;
  --sun: #FFE66D;
  --sky: #64CFFF;
  --mint: #A8F0D0;
  --coral: #FF8A80;
  --lavender: #C9B6FF;
  --cta: #7358F7;
  --cta-text: #FFFFFF;
  --muted: #526176;
  --input-bg: #F8FAFC;
  --border: #E5E7EB;
  --shadow: 0 18px 44px rgba(37, 48, 71, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content: 1180px;
  --form-max: 820px;
  --space: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body.community-page,
body.legal-page {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--cta); }
button, input, textarea, select { font: inherit; color: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--cta);
  color: var(--cta-text);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 0.75rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.community-wrap {
  width: min(var(--content), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.community-header {
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.community-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1.25rem;
  min-height: 4.35rem;
}

.community-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.community-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.15rem;
}

.community-nav {
  justify-self: center;
}

.community-nav a,
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.community-nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.community-nav a:hover,
.community-nav a[aria-current="page"],
.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--cta);
}

.community-nav a[aria-current="page"] {
  background: #F3EDFF;
}

.community-hero-wrap { padding-top: 1.5rem; }

.community-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem 1.5rem;
  align-items: center;
  background: var(--sun);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 3.25rem) clamp(1.4rem, 3.5vw, 3.25rem);
  overflow: visible;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  color: var(--cta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero-lead {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text);
  max-width: 34rem;
}

.hero-tagline {
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--cta);
  color: var(--cta-text);
  text-decoration: none;
  font-weight: 800;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(115, 88, 247, 0.28);
  min-height: 48px;
}
.cta-arrow {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.hero-cta:hover { filter: brightness(1.05); }

.hero-mascot-stage {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.5rem 0.25rem 0.5rem;
}

.hero-mascot {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
}

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.deco-circle {
  border-radius: 50%;
}

.deco-sky { width: 120px; height: 120px; background: rgba(100, 207, 255, 0.55); top: 8%; left: 4%; }
.deco-mint { width: 72px; height: 72px; background: rgba(168, 240, 208, 0.8); right: 8%; top: 18%; }
.deco-coral { width: 46px; height: 46px; background: rgba(255, 138, 128, 0.85); left: 12%; bottom: 18%; }
.deco-lavender { width: 88px; height: 88px; background: rgba(201, 182, 255, 0.7); right: 2%; bottom: 12%; }

.deco-star, .deco-spark { width: 28px; height: 28px; }
.star-1 { top: 10%; right: 28%; }
.star-2 { left: 8%; top: 42%; width: 22px; height: 22px; }
.spark-1 { right: 18%; bottom: 28%; }
.spark-2 { left: 28%; top: 14%; width: 20px; height: 20px; }

@media (prefers-reduced-motion: no-preference) {
  .deco-sky, .deco-lavender { animation: floaty 7s ease-in-out infinite; }
  .deco-mint, .deco-coral { animation: floaty 5.5s ease-in-out infinite reverse; }
  .deco-star, .deco-spark { animation: twinkle 3.2s ease-in-out infinite; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.55; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(8deg); }
}

.community-form-wrap {
  position: relative;
  z-index: 3;
  margin-top: -3.25rem;
  padding-bottom: 1rem;
}
#share, #how-it-works { scroll-margin-top: 5.5rem; }

.community-form-card {
  width: min(var(--form-max), 100%);
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.community-form-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
}

.form-lead {
  margin: 0.4rem 0 1.15rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.field { margin-bottom: 1rem; }
.field-compact { margin-bottom: 0.85rem; }

.field label,
.field-compact label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

#idea-form textarea,
#idea-form input[type="text"],
#credit-form input[type="text"],
.tracking-row input {
  width: 100%;
  display: block;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
}

#idea-form textarea {
  min-height: 0;
  height: auto;
  resize: vertical;
  line-height: 1.45;
  font-family: inherit;
}

#idea-form input[type="text"],
#credit-form input[type="text"] {
  max-width: 22rem;
}

#idea-form textarea:focus,
#idea-form input[type="text"]:focus,
#credit-form input[type="text"]:focus,
.tracking-row input:focus,
.check-row input:focus-visible,
.idea-chip:focus-visible,
.submit-btn:focus-visible,
.hero-cta:focus-visible,
.copy-btn:focus-visible,
.secondary-btn:focus-visible,
.community-nav a:focus-visible,
.footer-nav a:focus-visible,
.about-page a:focus-visible,
.rimoq-visit:focus-visible,
.social-chip:focus-visible,
.social-icon:focus-visible,
.footer-social a:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 2px;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 0.4rem;
}

.char-count {
  margin: 0;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
  margin-left: auto;
}

.field-error,
.form-error {
  margin: 0.65rem 0 0;
  color: #9b1c2c;
  font-weight: 600;
}

.inspiration { margin: 0.25rem 0 1.35rem; }
.inspiration-label {
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.idea-chip {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  min-height: 44px;
  flex: 0 1 auto;
  white-space: normal;
  line-height: 1.3;
  overflow: visible;
  max-width: 100%;
}

.chip-yellow { background: #FFF3B0; }
.chip-sky { background: #D6F3FF; }
.chip-mint { background: #D9F8EB; }
.idea-chip:hover { border-color: var(--cta); }

.privacy-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #F3EDFF;
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  margin: 0.35rem 0 1rem;
  color: var(--text);
}

.privacy-note p { margin: 0 0 0.25rem; }
.privacy-note p:last-child { margin-bottom: 0; color: var(--muted); }
.privacy-icon { width: 28px; height: 28px; flex-shrink: 0; margin-top: 0.1rem; }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0.85rem 0;
  min-height: 44px;
}

.check-row input[type="checkbox"] {
  width: 1.25rem;
  min-width: 1.25rem;
  max-width: 1.25rem;
  height: 1.25rem;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--cta);
  cursor: pointer;
}

.check-row label {
  display: block;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.4;
}

.attribution-preview {
  margin: -0.25rem 0 0.85rem;
  padding: 0.7rem 0.9rem;
  background: #EEF8FF;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.turnstile-box { margin: 1rem 0 0.25rem; }

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  min-height: 52px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #7358F7 0%, #5B8CFF 100%);
  color: var(--cta-text);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(115, 88, 247, 0.25);
}

.submit-btn:hover { filter: brightness(1.06); }
.submit-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  filter: none;
}

.post-publish-note,
.how-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.post-publish-note { margin: 1rem 0 0; }

.success-panel {
  text-align: left;
}

.success-kicker {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.tracking-box {
  margin: 1.1rem 0;
  padding: 1rem;
  background: var(--input-bg);
  border-radius: var(--radius-md);
}

.tracking-label { margin: 0 0 0.5rem; font-weight: 700; }
.tracking-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.tracking-row input { flex: 1 1 220px; }
.copy-btn, .secondary-btn {
  border: none;
  border-radius: 12px;
  min-height: 44px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-weight: 700;
}
.copy-btn { background: var(--cta); color: #fff; }
.secondary-btn { background: #EFEAFE; color: var(--text); }
a.secondary-btn, a.track-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.copy-status { min-height: 1.2em; margin: 0.4rem 0 0; color: var(--muted); }

.how-section {
  padding: 3.25rem 0 2.5rem;
}

.how-section h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.how-note { text-align: center; margin: 0.5rem auto 1.5rem; max-width: 36rem; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.how-card {
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.5rem;
  min-height: 100%;
  border: 1px solid rgba(37, 48, 71, 0.06);
}

.how-yellow { background: #FFF6C8; }
.how-sky { background: #D9F3FF; }
.how-mint { background: #D8F8EA; }
.how-coral { background: #FFE4E1; }

.how-icon { width: 48px; height: 48px; margin-bottom: 0.7rem; }
.how-icon svg { width: 48px; height: 48px; display: block; }
.how-card h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.how-card p { margin: 0; color: var(--text); }

.community-footer {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0 2rem;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.footer-nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: var(--cta); }
.footer-admin { font-size: 0.85rem; opacity: 0.7; }
.footer-channels { display: inline-flex; gap: 1.1rem; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  width: 100%;
  margin-top: 0.15rem;
}
.footer-social a {
  color: var(--cta);
  text-decoration: none;
  font-weight: 800;
}
.footer-social a:hover { text-decoration: underline; }

.header-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0;
  flex: none;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-icon:hover {
  border-color: var(--cta);
  background: #F3EDFF;
  color: var(--cta);
}
.social-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(37, 48, 71, 0.08);
  border: 1px solid rgba(37, 48, 71, 0.06);
}
.social-chip svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  flex-shrink: 0;
}
.social-youtube { background: #FFE4E1; }
.social-instagram { background: #EDE4FF; }
.social-tiktok { background: #D8F8EA; }
.social-facebook { background: #D9F3FF; }
.social-chip:hover { filter: brightness(1.03); transform: translateY(-1px); }

.social-follow-section {
  padding: 0.5rem 0 3rem;
}
.social-follow-section h2 {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.social-follow-lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  color: var(--text);
}
.social-follow-section .social-chips { justify-content: center; }
.social-chips-lg .social-chip {
  min-height: 52px;
  padding: 0.7rem 1.15rem;
  font-size: 1.05rem;
}
.social-chips-lg .social-chip svg {
  width: 1.4rem;
  height: 1.4rem;
}

@media (prefers-reduced-motion: reduce) {
  .social-chip:hover { transform: none; }
}

.legal-main {
  width: min(46rem, calc(100% - 2rem));
  margin: 1.5rem auto 3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  scroll-margin-top: 5.5rem;
}
.legal-main h1 { margin-top: 0; }
.legal-main h2 { margin-top: 1.7rem; }
.legal-main .muted { color: var(--muted); }

@media (max-width: 900px) {
  .community-hero {
    grid-template-columns: 1fr;
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .hero-mascot-stage { min-height: 0; padding: 0; }
  .hero-mascot { max-height: 220px; width: min(58%, 240px); }
  .community-form-wrap { margin-top: 1.25rem; }
  .how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .community-header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand social"
      "nav nav";
    min-height: 0;
    padding: 0.7rem 0 0.85rem;
  }
  .community-brand { grid-area: brand; }
  .header-social { grid-area: social; }
  .community-nav {
    grid-area: nav;
    width: 100%;
    gap: 0.15rem;
  }
  .community-nav a { padding: 0.4rem 0.55rem; }
}

@media (max-width: 520px) {
  .community-nav a { font-size: 0.88rem; }
  .hero-mascot { max-height: 180px; width: min(64%, 200px); }
  .community-form-card { padding: 1.2rem 1rem 1.4rem; }
  #idea-form input[type="text"],
  #credit-form input[type="text"] { max-width: none; }
  .tracking-row { flex-direction: column; }
  .deco-sky, .deco-lavender { width: 64px; height: 64px; }
  .chip-row { flex-direction: column; align-items: stretch; }
  .idea-chip { width: 100%; text-align: center; white-space: normal; }
}

.track-hero-wrap { padding-top: 1.5rem; }
.track-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(140px, 0.5fr);
  gap: 1.25rem;
  align-items: center;
  background: var(--sun);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 2.5vw, 2.25rem) clamp(1.2rem, 3vw, 2.4rem);
}
.track-hero h1 {
  margin: 0.15rem 0 0.55rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.track-mascot {
  justify-self: end;
  width: min(42%, 180px);
  max-height: 180px;
  object-fit: contain;
}
.track-body {
  position: relative;
  z-index: 3;
  margin-top: -1.5rem;
  padding-bottom: 2.5rem;
  display: grid;
  gap: 1rem;
}
.track-card { width: min(var(--form-max), 100%); margin: 0 auto; }
.track-kicker {
  margin: 0 0 0.35rem;
  font-weight: 800;
  color: var(--cta);
}
.track-card h2 { margin: 0 0 0.65rem; }
.idea-quote {
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--input-bg);
  border-left: 4px solid var(--cta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.12rem;
  font-weight: 700;
}
.muted-note { color: var(--muted); margin: 0.65rem 0 0; }
.credit-summary { margin: 0 0 0.75rem; }
.progress-steps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.progress-step {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.85rem;
  position: relative;
  padding-bottom: 1.05rem;
}
.progress-step:last-child { padding-bottom: 0; }
.progress-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 1.25rem;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.progress-marker {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  margin-top: 0.15rem;
}
.progress-copy { display: flex; flex-direction: column; gap: 0.1rem; }
.progress-copy strong { font-size: 1rem; }
.progress-copy span { color: var(--muted); font-size: 0.95rem; }
.progress-step.is-done .progress-marker,
.progress-step.is-current .progress-marker {
  border-color: var(--cta);
  background: var(--cta);
  box-shadow: 0 0 0 4px #EFEAFE;
}
.progress-step.is-done:not(:last-child)::before,
.progress-step.is-current:not(:last-child)::before {
  background: #C9B6FF;
}
.progress-step.is-current .progress-copy strong { color: var(--cta); }
.progress-step.is-todo .progress-copy { opacity: 0.62; }
.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.track-actions .submit-btn,
.track-home-btn {
  width: auto;
  min-width: 12rem;
  margin-top: 0;
  text-decoration: none;
  display: inline-flex;
}
.track-channels { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.track-channels a { font-weight: 700; }

@media (max-width: 900px) {
  .track-hero { grid-template-columns: 1fr; }
  .track-mascot { justify-self: center; max-height: 140px; }
}

.about-hero .about-hero-prose {
  margin-top: 1rem;
  max-width: 38rem;
}
.about-hero .about-hero-prose p {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.6;
}
.about-hero .about-hero-prose p:last-child { margin-bottom: 0; }

.about-section {
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
}
.about-band {
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
}
.about-band-sky { background: #E8F7FF; }
.about-band-mint { background: #E8FAF3; }
.about-band-lavender { background: #F3EDFF; }

.about-page h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.about-narrow {
  width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
}
.about-prose {
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}
.about-prose p { margin: 0 0 1rem; }
.about-prose p:last-child { margin-bottom: 0; }
.about-center-block { margin-left: auto; margin-right: auto; }
.about-lead {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text);
}
.about-band .community-wrap > h2,
.about-band .about-lead {
  width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.about-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.about-steps > li { min-width: 0; }
.about-steps .how-card { height: 100%; }
.step-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta);
}

.about-flow {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 0.5rem;
  align-items: stretch;
}
.about-flow-step {
  position: relative;
  flex: 1 1 12rem;
  max-width: 13rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.1rem 0.9rem 1.15rem;
  text-align: center;
  border: 1px solid rgba(37, 48, 71, 0.06);
}
.about-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.7rem;
  top: 50%;
  transform: translate(50%, -50%);
  color: var(--cta);
  font-weight: 800;
  font-size: 1.15rem;
  z-index: 1;
  pointer-events: none;
}
.flow-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.65rem;
}
.flow-icon svg { width: 48px; height: 48px; display: block; }
.flow-label {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.flow-sun { background: #FFFBEA; }
.flow-sky { background: #F3FBFF; }
.flow-mint { background: #F1FBF6; }
.flow-coral { background: #FFF6F5; }
.flow-lavender { background: #F7F3FF; }

.about-section-cta { margin: 1.5rem 0 0; }
.about-closed-note {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.about-meet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.7fr);
  gap: 2rem 1.5rem;
  align-items: center;
}
.about-meet-mascot {
  display: grid;
  place-items: center;
}
.about-meet-mascot img {
  width: min(100%, 320px);
  max-height: 340px;
  object-fit: contain;
}

.about-final-wrap {
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.about-final-cta {
  background: linear-gradient(135deg, #D9F8EB 0%, #D6F3FF 52%, #EDE4FF 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 4vw, 3rem) clamp(1.3rem, 3.5vw, 2.75rem);
  text-align: center;
}
.about-final-cta h2 { margin-bottom: 0.75rem; }
.about-final-cta p {
  margin: 0 auto 0.85rem;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.6;
}
.about-final-cta .about-section-cta { margin-top: 1.15rem; }
.about-final-cta .hero-cta { justify-content: center; }

.about-rimoq {
  padding: 2.75rem 0 3rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.about-rimoq-inner {
  width: min(38rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-rimoq h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.about-rimoq p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.about-rimoq p:last-child { margin-bottom: 0; }
.rimoq-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-weight: 800;
  text-decoration: none;
  color: var(--cta);
}

@media (min-width: 640px) {
  .about-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .about-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .about-meet-grid { grid-template-columns: 1fr; }
  .about-meet-mascot img { max-height: 220px; width: min(58%, 240px); }
  .about-flow-step:not(:last-child)::after { content: none; }
}

@media (max-width: 700px) {
  .about-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .about-flow-step {
    max-width: none;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    padding: 0.9rem 1rem;
  }
  .flow-icon { margin: 0; width: 48px; height: 48px; }
  .about-flow-step:not(:last-child)::after {
    content: "↓";
    position: static;
    transform: none;
    grid-column: 1 / -1;
    justify-self: center;
    margin: 0.15rem 0 -0.15rem;
  }
}

@media (max-width: 520px) {
  .about-meet-mascot img { max-height: 180px; width: min(64%, 200px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .deco, .hero-cta, .submit-btn { animation: none; }
}
