:root {
  color-scheme: dark;
  --bg: #06060a;
  --card: rgba(18, 20, 34, 0.85);
  --surface: rgba(17, 20, 36, 0.6);
  --accent: #7b61ff;
  --accent-2: #53e0ff;
  --text: #f6f5ff;
  --muted: #b8b6d9;
  --success: #2ee59d;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #16182b 0%, #06060a 55%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}

.orb--one {
  width: 320px;
  height: 320px;
  background: rgba(123, 97, 255, 0.35);
  top: -80px;
  left: -40px;
}

.orb--two {
  width: 420px;
  height: 420px;
  background: rgba(83, 224, 255, 0.3);
  bottom: -160px;
  right: -120px;
  animation-delay: 4s;
}

@keyframes drift {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(40px) translateX(-30px);
  }
}

.hero {
  padding: 32px 6vw 60px;
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(100, 140, 220, 0.55);
  text-shadow: 0 0 20px rgba(123, 97, 255, 0.15);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent-2);
  letter-spacing: 0.2em;
}

h1 {
  font-size: clamp(2.6rem, 3vw, 4rem);
  margin: 12px 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 12px;
}

.trust {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ─── Hero Card: Animated Border Wrapper ─── */
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-card-wrapper {
  position: relative;
  padding: 2px;
  border-radius: 26px;
  background: conic-gradient(from var(--border-angle),
      rgba(123, 97, 255, 0.05) 0%,
      rgba(123, 97, 255, 0.7) 25%,
      rgba(83, 224, 255, 0.7) 50%,
      rgba(46, 229, 157, 0.4) 75%,
      rgba(123, 97, 255, 0.05) 100%);
  animation: rotateBorder 6s linear infinite;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card-wrapper:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 24px 64px rgba(123, 97, 255, 0.25),
    0 0 40px rgba(83, 224, 255, 0.12);
}

@keyframes rotateBorder {
  to {
    --border-angle: 360deg;
  }
}

/* ─── Hero Card: Inner Panel ─── */
.hero-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(123, 97, 255, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(83, 224, 255, 0.12) 0%, transparent 40%),
    linear-gradient(160deg, rgba(14, 16, 30, 0.98), rgba(8, 10, 20, 0.99));
  padding: 30px 40px;
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: auto;
  width: 100%;
}

@media (min-width: 960px) {
  .hero-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 34px 45px;
  }
}

/* ─── Hero Card: Content Grouping ─── */
.hero-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 960px) {
  .hero-card__content {
    margin-left: 24px;
    margin-right: 24px;
  }
}

/* ─── Hero Card: Shimmer Sweep ─── */
.hero-card__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.07) 48%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.07) 52%,
      transparent 70%);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: 24px;
  z-index: 1;
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-150%);
  }

  100% {
    transform: translateX(150%);
  }
}

/* ─── Hero Card: Inner Glow Pulse ─── */
.hero-card__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.18), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowPulse {
  0% {
    opacity: 0.3;
    transform: scale(0.85);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* ─── Hero Card: Floating Dots ─── */
.hero-card__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.4;
  animation: floatDot 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.hero-card__dot--1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.hero-card__dot--2 {
  bottom: 20%;
  left: 5%;
  background: var(--accent);
  animation-delay: 3s;
  width: 3px;
  height: 3px;
}

.hero-card__dot--3 {
  top: 50%;
  right: 25%;
  background: var(--success);
  animation-delay: 6s;
  width: 5px;
  height: 5px;
  opacity: 0.3;
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  33% {
    transform: translateY(-12px) translateX(6px);
  }

  66% {
    transform: translateY(6px) translateX(-8px);
  }
}

/* ─── Hero Card: Icon ─── */
.hero-card__icon {
  font-size: 2.6rem;
  margin-bottom: 0;
  filter: drop-shadow(0 0 12px rgba(123, 97, 255, 0.4));
  flex-shrink: 0;
  z-index: 2;
}

/* ─── Hero Card: Typography ─── */
.hero-card h2 {
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
}

.hero-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
  white-space: normal;
}

@media (min-width: 960px) {
  .hero-card p {
    white-space: nowrap;
    font-size: 1.1rem;
  }
}

/* ─── Hero Card: Meta Badges ─── */
.hero-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  flex-shrink: 0;
  z-index: 2;
}

@media (min-width: 960px) {
  .hero-card__meta {
    justify-content: flex-end;
    max-width: 320px;
  }
}

.hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(123, 97, 255, 0.1);
  border: 1px solid rgba(123, 97, 255, 0.25);
  color: var(--text);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card-wrapper:hover .hero-card__badge {
  background: rgba(123, 97, 255, 0.18);
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 97, 255, 0.2);
}

.hero-card-wrapper:hover .hero-card__badge:nth-child(2) {
  transition-delay: 0.05s;
}

.hero-card-wrapper:hover .hero-card__badge:nth-child(3) {
  transition-delay: 0.1s;
}

.primary-button,
.ghost-button {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-button {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #04030b;
  box-shadow: 0 10px 30px rgba(123, 97, 255, 0.35);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.main {
  padding: 0 6vw 60px;
  position: relative;
  z-index: 2;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

input,
select {
  background: rgba(10, 11, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

/* ─── Category Filters: Pills ─── */
.category-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(123, 97, 255, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}

.filter-pill--active {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #04030b;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(123, 97, 255, 0.3);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: grid;
  gap: 12px;
  min-height: 220px;
}

.card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(123, 97, 255, 0.6);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.card__icon {
  font-size: 1.6rem;
}

.card__title {
  font-weight: 600;
}

.card__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.card__tag {
  background: rgba(123, 97, 255, 0.12);
  color: var(--accent-2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  width: fit-content;
}

.card__actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.card__share {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  border: 1px solid rgba(123, 97, 255, 0.35);
}

.cta {
  margin: 20px 6vw 60px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(83, 224, 255, 0.1), rgba(123, 97, 255, 0.16));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}


.veteran-cta {
  margin: 0 6vw 40px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(83, 224, 255, 0.35);
  background: linear-gradient(135deg, rgba(83, 224, 255, 0.08), rgba(123, 97, 255, 0.14));
}

.veteran-cta__eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent-2);
}

.veteran-cta h2 {
  margin: 0 0 10px;
}

.veteran-cta p {
  margin: 0 0 16px;
  color: var(--muted);
}

.veteran-cta p a {
  color: var(--text);
  font-weight: 600;
}

.footer {
  padding: 24px 6vw 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

/* ─── Modal: Container ─── */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 16px;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 8, 0.78);
  backdrop-filter: blur(8px);
}

/* ─── Modal: Content Shell (flex column, viewport-bound) ─── */
.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0b0c16;
  max-width: 680px;
  width: 100%;
  height: 85vh;
  max-height: 85vh;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(123, 97, 255, 0.08);
  overflow: hidden;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

/* ─── Modal: Top Section (pinned) ─── */
.modal__top {
  flex-shrink: 0;
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.modal__icon {
  font-size: 1.8rem;
}

.modal__category {
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
}

.modal__header h3 {
  margin: 4px 0 0;
  font-size: 1.15rem;
}

.modal__summary {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 10px 0 0;
}

.modal__detail {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(123, 97, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(123, 97, 255, 0.1);
}

.modal__detail h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 6px;
}

.modal__detail p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Modal: Scrollable Prompt Area ─── */
.modal__scroll {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 24px;
}

.modal__prompt-label {
  flex-shrink: 0;
  padding: 16px 0 10px;
  background: #0b0c16;
}

.modal__prompt-label h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0;
  opacity: 0.8;
}

.modal__scroll pre {
  flex: 1;
  overflow-y: auto;
  white-space: pre-wrap;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.modal__scroll pre::-webkit-scrollbar {
  width: 6px;
}

.modal__scroll pre::-webkit-scrollbar-track {
  background: transparent;
}

.modal__scroll pre::-webkit-scrollbar-thumb {
  background: rgba(123, 97, 255, 0.2);
  border-radius: 3px;
}

pre {
  white-space: pre-wrap;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ─── Modal: Bottom Section (pinned) ─── */
.modal__bottom {
  flex-shrink: 0;
  padding: 14px 24px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal__copy {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.modal__tip {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 720px) {
  .hero-card-wrapper {
    order: -1;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .veteran-cta {
    margin-bottom: 24px;
  }

  .stats-strip {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 6vw;
  }

  .stat__divider {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq__list {
    max-width: 100%;
  }
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #04030b;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  z-index: 100;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ─── Stats Strip ─── */
.stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px 6vw;
  margin: -20px 6vw 40px;
  background: rgba(18, 20, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat__number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(123, 97, 255, 0.3), transparent);
}

/* ─── Section Headings ─── */
.section-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  text-align: center;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--text) 40%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subheading {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: none;
  margin: 0 auto 40px;
  white-space: nowrap;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 60px 6vw;
  position: relative;
  z-index: 2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.step {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 97, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04030b;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.step__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ─── FAQ Section ─── */
.faq {
  padding: 60px 6vw;
  position: relative;
  z-index: 2;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq__item[open] {
  border-color: rgba(123, 97, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq__question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  transition: color 0.2s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question:hover {
  color: var(--accent-2);
}

.faq__answer {
  padding: 0 22px 18px;
}

.faq__answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}