/* ============================================================
   SKILLSWAP LANDING PAGE — styles.css
   ============================================================ */


/* ============================================================
   1. RESET & BASE
   ============================================================ */

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
button {
  font-family: inherit;
}


/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */

:root {
  --bg:              #1A1335;
  --bg-deep:         #120D26;
  --surface:         #241A47;
  --surface-up:      #2E2256;
  --border:          rgba(255, 255, 255, 0.08);
  --border-strong:   rgba(255, 255, 255, 0.14);
  --text:            #FFFFFF;
  --text-dim:        rgba(255, 255, 255, 0.66);
  --text-faint:      rgba(255, 255, 255, 0.40);
  --amber:           #FFA53D;
  --amber-dark:      #C97A1A;
  --coral:           #FF6B4A;
  --coral-dark:      #C84A2E;
  --gold:            #FFD15C;
  --green:           #5ED674;
  --teal:            #4FB8D9;
  --purple:          #B59CFF;
  --pink:            #FF8DBF;
}


/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow--centered {
  justify-content: center;
}

.section-h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1;
  margin-bottom: 20px;
}

.section-lede {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 56px;
}

.text-center {
  text-align: center;
}

.text-center.section-lede {
  margin-left: auto;
  margin-right: auto;
}

.text-amber  { color: var(--amber); }
.text-purple { color: var(--purple); }
.text-gold   { color: var(--gold); }
.text-coral  { color: var(--coral); }


/* ============================================================
   4. LAYOUT
   ============================================================ */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}


/* ============================================================
   5. ACCESSIBILITY
   ============================================================ */

.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;
}

.skip-link {
  position: absolute;
  top: -200%;
  left: 0;
  background: var(--amber);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  z-index: 9999;
  border-radius: 0 0 10px 0;
  transition: top 0.15s ease;
}

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

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border-radius: 12px;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 100ms ease, box-shadow 100ms ease;
  position: relative;
}

.btn--amber {
  background: var(--amber);
  color: #000;
  box-shadow: 0 4px 0 0 var(--amber-dark);
}

.btn--amber:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 0 var(--amber-dark);
}

.btn--amber:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 0 var(--amber-dark);
}

.btn--dark {
  background: #000;
  color: #fff;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.5);
}

.btn--dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.5);
}

.btn--dark:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}


/* ============================================================
   7. INPUTS
   ============================================================ */

.input {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  background: var(--surface-up);
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  width: 100%;
  transition: border-color 150ms ease;
  line-height: 1;
}

.input::placeholder {
  color: var(--text-faint);
}

.input:focus {
  border-color: var(--amber);
}


/* ============================================================
   8. NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  background: rgba(18, 13, 38, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 16px;
}

.nav__brand {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.2px;
}

.nav__brand strong {
  color: var(--amber);
  font-weight: 900;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 150ms ease, background 150ms ease;
}

.nav__link:hover {
  color: var(--text);
  background: var(--border);
}

.nav__cta {
  margin-left: 20px;
  padding: 10px 18px;
  font-size: 14px;
}


/* ============================================================
   9. HERO
   ============================================================ */

.hero {
  background: var(--bg-deep);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(181, 156, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.hero__eyebrow {
  margin-bottom: 20px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(255, 209, 92, 0.4);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.hero__h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.97;
  margin-bottom: 24px;
}

.hero__lede {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__form {
  margin-bottom: 36px;
}

.hero__form-row {
  display: flex;
  gap: 10px;
}

.hero__input {
  flex: 1;
  background: var(--surface);
  min-width: 0;
}

.hero__submit {
  flex-shrink: 0;
}

.hero__form-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-faint);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 0 0;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
  margin-right: 24px;
  flex-shrink: 0;
}

.hero__stat-value {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 500;
}

/* Hero visual */

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.hero__halo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(181, 156, 255, 0.13) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}


.hero__wispa {
  width: 78%;
  max-width: 280px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: bob 3.4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(181, 156, 255, 0.15));
}

/* Floating tags */

.hero__tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__tag--xp {
  top: 12%;
  right: 2%;
  color: var(--amber);
  background: rgba(255, 165, 61, 0.10);
  border: 1px solid rgba(255, 165, 61, 0.28);
  animation: floaty 4.6s ease-in-out infinite;
  animation-delay: 0s;
}

.hero__tag--streak {
  top: 50%;
  right: -4%;
  color: var(--coral);
  background: rgba(255, 107, 74, 0.10);
  border: 1px solid rgba(255, 107, 74, 0.28);
  animation: floaty-centered 4.2s ease-in-out infinite;
  animation-delay: -1.5s;
}

.hero__tag--match {
  bottom: 18%;
  left: 2%;
  color: var(--purple);
  background: rgba(181, 156, 255, 0.10);
  border: 1px solid rgba(181, 156, 255, 0.28);
  animation: floaty 5.1s ease-in-out infinite;
  animation-delay: -0.8s;
}


/* ============================================================
   10. FEATURES
   ============================================================ */

.features {
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-card__icon--amber { background: rgba(255, 165, 61, 0.12); }
.feature-card__icon--gold  { background: rgba(255, 209, 92, 0.12); }
.feature-card__icon--coral { background: rgba(255, 107, 74, 0.12); }
.feature-card__icon--purple{ background: rgba(181, 156, 255, 0.12); }

.feature-card__title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card__body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}


/* ============================================================
   11. PATHS — JAK TO DZIAŁA
   ============================================================ */

.paths {
  background: var(--bg-deep);
}

.paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: start;
}

.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
}

.path-card--student {
  border-top: 4px solid var(--amber);
}

.path-card--tutor {
  border-top: 4px solid var(--purple);
}

.path-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.path-card__badge--amber {
  background: rgba(255, 165, 61, 0.14);
  color: var(--amber);
  border: 1px solid rgba(255, 165, 61, 0.28);
}

.path-card__badge--purple {
  background: rgba(181, 156, 255, 0.14);
  color: var(--purple);
  border: 1px solid rgba(181, 156, 255, 0.28);
}

.path-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.path-card__title strong {
  font-weight: 900;
}

.path-card__desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 28px;
}

.path-card__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.path-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

.path-step strong {
  color: var(--text);
  font-weight: 700;
}

.path-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.path-step--amber .path-step__num {
  background: rgba(255, 165, 61, 0.18);
  color: var(--amber);
}

.path-step--purple .path-step__num {
  background: rgba(181, 156, 255, 0.18);
  color: var(--purple);
}

.path-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: 0.1px;
}

.pill--amber {
  background: rgba(255, 165, 61, 0.10);
  color: var(--amber);
  border: 1px solid rgba(255, 165, 61, 0.22);
}

.pill--purple {
  background: rgba(181, 156, 255, 0.10);
  color: var(--purple);
  border: 1px solid rgba(181, 156, 255, 0.22);
}

/* Swipe cards preview */

.swipe-preview {
  position: relative;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swipe-card {
  position: absolute;
  width: 238px;
  border-radius: 18px;
  background: var(--surface-up);
  border: 1px solid var(--border-strong);
}

.swipe-card--back {
  height: 195px;
  transform: rotate(-6deg) translateY(12px);
  opacity: 0.35;
}

.swipe-card--mid {
  height: 205px;
  transform: rotate(3deg) translateY(6px);
  opacity: 0.6;
}

.swipe-card--front {
  padding: 16px;
  z-index: 3;
  height: auto;
}

.swipe-card__match {
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: var(--amber);
  background: rgba(255, 165, 61, 0.14);
  border: 1px solid rgba(255, 165, 61, 0.28);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.swipe-card__tutor {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.swipe-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.swipe-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.swipe-card__subject {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.swipe-card__quote {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}

.swipe-card__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.swipe-card__chips span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  background: var(--border);
  padding: 3px 8px;
  border-radius: 6px;
}

.swipe-card__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.swipe-card__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.swipe-card__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.swipe-card__btn--reject {
  background: rgba(255, 107, 74, 0.14);
  color: var(--coral);
  border: 1px solid rgba(255, 107, 74, 0.28);
}

.swipe-card__btn--like {
  background: rgba(181, 156, 255, 0.14);
  color: var(--purple);
  border: 1px solid rgba(181, 156, 255, 0.28);
}

/* Notifications preview */

.notif-preview {
  background: var(--bg-deep);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.notif-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

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

.notif-item--highlight {
  background: linear-gradient(
    135deg,
    rgba(181, 156, 255, 0.10) 0%,
    rgba(255, 165, 61, 0.06) 100%
  );
}

.notif-item__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.notif-item__avatar--a { background: linear-gradient(135deg, #FF6B4A, #FF8DBF); }
.notif-item__avatar--m { background: linear-gradient(135deg, #4FB8D9, #B59CFF); }
.notif-item__avatar--s { background: linear-gradient(135deg, #B59CFF, #FFA53D); }

.notif-item__body {
  flex: 1;
  min-width: 0;
}

.notif-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-item__sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-item__time {
  font-size: 11px;
  color: var(--text-faint);
  flex-shrink: 0;
  margin-left: 4px;
}

/* Section footer */

.paths__footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.paths__footer-line {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

.paths__footer-text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}


/* ============================================================
   12. CTA BAND
   ============================================================ */

.cta-band {
  background: linear-gradient(130deg, var(--coral) 0%, var(--amber) 100%);
  padding: 80px 0;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-band__left {
  display: flex;
  flex-direction: column;
}

.cta-band__eyebrow {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 16px;
}

.cta-band__h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: #000;
  margin-bottom: 16px;
}

.cta-band__underline {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
  text-decoration-color: rgba(0, 0, 0, 0.4);
}

.cta-band__desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.65;
}

/* CTA form */

.cta-form__label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 8px;
}

.cta-form__row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.cta-form__input {
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(0, 0, 0, 0.12);
  color: #111;
  flex: 1;
  min-width: 0;
}

.cta-form__input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.cta-form__input:focus {
  border-color: rgba(0, 0, 0, 0.5);
  background: #fff;
}

.cta-form__submit {
  flex-shrink: 0;
}

.cta-form__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  user-select: none;
}

.cta-form__check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #000;
  cursor: pointer;
  flex-shrink: 0;
}



/* ============================================================
   14. FOOTER
   ============================================================ */

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  align-items: start;
}

.footer__col--brand {
  padding-right: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
  width: fit-content;
}

.footer__brand {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.footer__brand strong {
  color: var(--amber);
  font-weight: 900;
}

.footer__desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 260px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 150ms ease;
}

.footer__link:hover {
  color: var(--text);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-faint);
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================================
   15. ANIMATIONS
   ============================================================ */

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes floaty-centered {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}


@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(255, 209, 92, 0.35); }
  50%       { box-shadow: 0 0 12px var(--gold), 0 0 28px rgba(255, 209, 92, 0.55); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__wispa,
  .eyebrow__dot {
    animation: none;
  }

  .hero__tag,
  .hero__tag--xp,
  .hero__tag--match {
    animation: none;
  }

  .hero__tag--streak {
    animation: none;
    transform: translateY(-50%);
  }
}


/* ============================================================
   16. RESPONSIVE
   ============================================================ */

/* ── Large screens: cap at 1440px with extra padding ──────── */
@media (min-width: 1440px) {
  .hero__inner {
    gap: 80px;
  }
}

/* ── Medium desktop / tablet landscape: 920px ────────────── */
@media (max-width: 920px) {
  .hero {
    padding: 64px 0 80px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
    min-height: 340px;
  }

  .hero__halo {
    width: 280px;
    height: 280px;
  }

  .hero__ring {
    width: 260px;
    height: 260px;
  }

  .hero__wispa {
    max-width: 220px;
  }

  .hero__tag {
    font-size: 12px;
    padding: 7px 13px;
  }

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

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

  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

/* ── Mobile: < 720px ──────────────────────────────────────── */
@media (max-width: 720px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    margin-left: auto;
  }

  .section {
    padding: 64px 0;
  }

  .section-lede {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .paths__footer-text {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

/* ── Small mobile: < 520px ───────────────────────────────── */
@media (max-width: 520px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero__h1 {
    letter-spacing: -1.5px;
  }

  .hero__lede {
    font-size: 15px;
  }

  .hero__form-row {
    flex-direction: column;
  }

  .hero__stats {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    padding: 0;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .hero__stat-value {
    font-size: 22px;
  }

  .hero__visual {
    min-height: 280px;
  }

  .hero__halo,
  .hero__ring {
    width: 220px;
    height: 220px;
  }

  .hero__wispa {
    max-width: 180px;
  }

  .hero__tag--streak {
    right: 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .path-card {
    padding: 24px 20px;
  }

  .swipe-preview {
    height: 250px;
  }

  .swipe-card--front,
  .swipe-card--mid,
  .swipe-card--back {
    width: 210px;
  }

  .cta-form__row {
    flex-direction: column;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__col--brand {
    grid-column: auto;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
