:root {
  --background: #fff;
  --foreground: #202723;
  --accent-purple: #c598ff;
  --accent-green: #99ceb2;
  --accent-gold: #fff7e0;
  --accent-blue: #93b4f3;
  --accent-pistachio: #f1fae3;
  --surface: #f7f7f7;
  --surface-light: #e7e7e7;
  --muted: #6b7280;
  --font-sans: "Geist", "Geist Fallback", Arial, Helvetica, sans-serif;
  --font-mono: "Geist Mono", "Geist Mono Fallback", monospace;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.faq-page,
body.info-page {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== SHARED NAV ===== */

.sub-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
}

.sub-nav__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sub-nav__logo img {
  height: 24px;
  width: auto;
  display: block;
}

.sub-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sub-nav__links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.sub-nav__links a:hover {
  color: var(--foreground);
}

.sub-nav__links a.is-active {
  color: var(--foreground);
  font-weight: 600;
}

.sub-nav__cta {
  padding: 0.5rem 1rem;
  background: var(--accent-purple);
  color: #202723 !important;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}

.sub-nav__cta:hover {
  background: rgba(197, 152, 255, 0.9) !important;
  color: #202723 !important;
}

/* ===== GRID BACKGROUND ===== */

.grid-bg {
  background-image:
    linear-gradient(rgba(197, 152, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 152, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== HERO ===== */

.sub-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  overflow: hidden;
}

.sub-hero__glow-left {
  position: absolute;
  top: 25%;
  left: 10%;
  width: 24rem;
  height: 24rem;
  background: rgba(197, 152, 255, 0.08);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

.sub-hero__glow-right {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 20rem;
  height: 20rem;
  background: rgba(153, 206, 178, 0.06);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse-glow 4s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}

.sub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--surface);
  border: 1px solid rgba(231, 231, 231, 0.5);
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.sub-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.sub-hero__eyebrow {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--accent-purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
  font-weight: 500;
}

.sub-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 1.25rem 0;
  color: var(--foreground);
}

.sub-hero__title .gradient-text {
  background: linear-gradient(135deg, #c598ff 0%, #99ceb2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-hero__subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* ===== MAIN CONTENT WRAPPER ===== */

.sub-main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

/* ===== SECTION LABEL ===== */

.section-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--accent-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
  font-weight: 500;
}

.section-label--purple {
  color: var(--accent-purple);
}

/* ===== FAQ SECTION ===== */

.faq-section {
  padding: 4rem 0 2rem;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

.faq-section__desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* ===== FAQ ACCORDION ===== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(231, 231, 231, 0.5);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  background: #fff;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.15s ease;
  font-family: var(--font-sans);
}

.faq-item__question:hover {
  background: var(--surface);
}

.faq-item__question-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
  flex: 1;
  margin: 0;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(231, 231, 231, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-item__icon svg {
  width: 10px;
  height: 10px;
  color: var(--muted);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
  background: rgba(197, 152, 255, 0.15);
  border-color: rgba(197, 152, 255, 0.4);
}

.faq-item.is-open .faq-item__icon svg {
  transform: rotate(180deg);
  color: var(--accent-purple);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 600px;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.5rem;
}

.faq-item__answer-inner p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 0.75rem 0;
}

.faq-item__answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-item__answer-inner a {
  color: var(--accent-purple);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 152, 255, 0.3);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.faq-item__answer-inner a:hover {
  color: var(--foreground);
  border-color: var(--foreground);
}

/* ===== FAQ GRID VARIANT ===== */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-card {
  background: #fff;
  border: 1px solid rgba(231, 231, 231, 0.5);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(197, 152, 255, 0.3);
}

.faq-card__q {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.faq-card__a {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.faq-card__a a {
  color: var(--accent-purple);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 152, 255, 0.3);
  transition: border-color 0.15s ease;
}

.faq-card__a a:hover {
  border-color: var(--accent-purple);
}

/* ===== INFO PAGE SECTIONS ===== */

.info-section {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}

.info-section:first-child {
  border-top: none;
  padding-top: 2rem;
}

.info-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 48rem) {
  .info-section__inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
  }

  .info-section__inner--reverse {
    grid-template-columns: 1.6fr 1fr;
  }

  .info-section__inner--reverse .info-section__label-col {
    order: 2;
  }

  .info-section__inner--reverse .info-section__content-col {
    order: 1;
  }
}

.info-section__label-col {
  padding-top: 0.25rem;
}

.info-section__eyebrow {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--accent-purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.info-section__eyebrow--green {
  color: var(--accent-green);
}

.info-section__section-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--foreground);
  line-height: 1.25;
}

.info-section__content-col p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem 0;
}

.info-section__content-col p:last-child {
  margin-bottom: 0;
}

.info-section__content-col a {
  color: var(--accent-purple);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 152, 255, 0.3);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.info-section__content-col a:hover {
  color: var(--foreground);
  border-color: var(--foreground);
}

/* ===== FEATURE LIST ===== */

.feature-list {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list__icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(153, 206, 178, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list__icon svg {
  width: 8px;
  height: 8px;
  color: var(--accent-green);
}

/* ===== STAT CARDS ===== */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 48rem) {
  .stat-grid--wide {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--surface);
  border: 1px solid rgba(231, 231, 231, 0.5);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-align: center;
}

.stat-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
  margin: 0 0 0.25rem 0;
  line-height: 1;
}

.stat-card__label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  margin: 0;
}

/* ===== HIGHLIGHT BOX ===== */

.highlight-box {
  background: linear-gradient(135deg, rgba(197, 152, 255, 0.06) 0%, rgba(153, 206, 178, 0.06) 100%);
  border: 1px solid rgba(197, 152, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.7;
  margin: 0;
}

.highlight-box--green {
  background: linear-gradient(135deg, rgba(153, 206, 178, 0.08) 0%, rgba(241, 250, 227, 0.5) 100%);
  border-color: rgba(153, 206, 178, 0.3);
}

/* ===== CARD GRID ===== */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 40rem) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: #fff;
  border: 1px solid rgba(231, 231, 231, 0.5);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.info-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border-color: rgba(197, 152, 255, 0.25);
  transform: translateY(-2px);
}

.info-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-xl);
  background: rgba(197, 152, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card__icon--green {
  background: rgba(153, 206, 178, 0.12);
}

.info-card__icon--blue {
  background: rgba(147, 180, 243, 0.12);
}

.info-card__icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-purple);
}

.info-card__icon--green svg {
  color: var(--accent-green);
}

.info-card__icon--blue svg {
  color: var(--accent-blue);
}

.info-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.info-card__body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== TEAM CARD ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 48rem) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: #fff;
  border: 1px solid rgba(231, 231, 231, 0.5);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(197, 152, 255, 0.25);
}

.team-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 152, 255, 0.2) 0%, rgba(153, 206, 178, 0.2) 100%);
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-purple);
}

.team-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.25rem 0;
}

.team-card__role {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}

/* ===== INLINE LINK ===== */

.inline-link {
  color: var(--accent-purple);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 152, 255, 0.3);
  font-weight: 500;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.inline-link:hover {
  color: var(--foreground);
  border-color: var(--foreground);
}

.inline-link--green {
  color: #5a9e7a;
  border-bottom-color: rgba(153, 206, 178, 0.4);
}

.inline-link--green:hover {
  color: var(--foreground);
  border-color: var(--foreground);
}

/* ===== RETURN HOME BUTTON ===== */

.return-home {
  display: flex;
  justify-content: center;
  margin: 3.5rem 0 1rem;
}

.return-home__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--surface);
  border: 1px solid rgba(231, 231, 231, 0.6);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.2s ease, border-color 0.15s ease, transform 0.15s ease;
  font-family: var(--font-sans);
}

.return-home__btn:hover {
  background: #fff;
  border-color: rgba(197, 152, 255, 0.4);
  box-shadow: 0 4px 16px rgba(197, 152, 255, 0.15);
  transform: translateY(-1px);
}

.return-home__btn svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: transform 0.15s ease;
}

.return-home__btn:hover svg {
  transform: translateX(-2px);
}

/* ===== CTA BAND ===== */

.cta-band {
  margin: 3rem 0 0;
  background: var(--surface);
  border: 1px solid rgba(231, 231, 231, 0.5);
  border-radius: var(--radius-3xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24rem;
  height: 12rem;
  background: rgba(197, 152, 255, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.cta-band__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem 0;
  color: var(--foreground);
  position: relative;
  z-index: 1;
}

.cta-band__subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 1.75rem 0;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  position: relative;
  z-index: 1;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 40rem) {
  .cta-band__actions {
    flex-direction: row;
  }
}

.cta-band__primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent-purple);
  color: #202723;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.2s ease;
}

.cta-band__primary:hover {
  background: rgba(197, 152, 255, 0.9);
  box-shadow: 0 8px 24px rgba(197, 152, 255, 0.3);
}

.cta-band__secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #fff;
  color: var(--foreground);
  border: 1px solid rgba(231, 231, 231, 0.7);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cta-band__secondary:hover {
  background: var(--surface);
  border-color: rgba(231, 231, 231, 1);
}

/* ===== FOOTER ===== */

.sub-footer {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
  padding: 2.5rem 1.5rem;
}

.sub-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 48rem) {
  .sub-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.sub-footer__copy {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

.sub-footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sub-footer__links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.sub-footer__links a:hover {
  color: var(--foreground);
}

/* ===== BREADCRUMB ===== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--foreground);
}

.breadcrumb__sep {
  opacity: 0.4;
  font-size: 0.75rem;
}

.breadcrumb__current {
  color: var(--foreground);
  font-weight: 500;
}

/* ===== DIVIDER ===== */

.sub-divider {
  border: none;
  border-top: 1px solid rgba(231, 231, 231, 0.5);
  margin: 2.5rem 0;
}

/* ===== TAG / CHIP ===== */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.tag--purple {
  background: rgba(197, 152, 255, 0.12);
  color: #a370e8;
}

.tag--green {
  background: rgba(153, 206, 178, 0.15);
  color: #5a9e7a;
}

.tag--blue {
  background: rgba(147, 180, 243, 0.15);
  color: #4a7bc7;
}

/* ===== NOTICE BOX ===== */

.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(197, 152, 255, 0.06);
  border: 1px solid rgba(197, 152, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.notice-box__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 1rem;
  height: 1rem;
  color: var(--accent-purple);
}

/* ===== ANIMATIONS ===== */

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes pulse {
  50% { opacity: 0.5; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.animate-fade-in-up--delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-fade-in-up--delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-fade-in-up--delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

/* ===== RESPONSIVE UTILITIES ===== */

@media (max-width: 39.9375rem) {
  .sub-hero {
    padding-top: 6.5rem;
  }

  .faq-item__question {
    padding: 1rem 1.25rem;
  }

  .faq-item__answer-inner {
    padding: 0 1.25rem 1.25rem;
  }

  .cta-band {
    padding: 2rem 1.25rem;
  }

  .info-section {
    padding: 2.5rem 0;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48rem) {
  .sub-main {
    padding-bottom: 7rem;
  }
}