:root {
  --bg: #06070a;
  --panel: #0d1016;
  --panel-2: #11151d;
  --panel-3: #161b25;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7fb;
  --muted: #a8afbd;
  --muted-2: #7f8797;
  --gold: #d7b07a;
  --gold-2: #f0d0a3;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(215, 176, 122, 0.12), transparent 30%),
    linear-gradient(180deg, #0b0d12 0%, #06070a 100%);
  color: var(--text);
}

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

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

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(8, 10, 15, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.03);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link--active {
  color: var(--text);
}

.nav-link--ghost {
  color: var(--text);
}

.nav-link--button {
  color: #101114;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  box-shadow: 0 10px 30px rgba(215, 176, 122, 0.2);
}

.nav-link--button:hover,
.nav-link--button:focus-visible {
  background: linear-gradient(180deg, #f4d8af 0%, #d8af78 100%);
  color: #101114;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: white;
}

main {
  display: grid;
  gap: 18px;
}

.section-card,
.card-glass {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(14, 17, 24, 0.92);
  box-shadow: var(--shadow);
}

.section-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.card-glass {
  border-radius: var(--radius-lg);
}

.section-card--hero {
  padding: 26px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  gap: 26px;
  min-height: auto;
 align-items: center;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 8px 8px 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(215, 176, 122, 0.3);
  border-radius: 999px;
  font-size: 0.76rem;
  color: var(--gold-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(215, 176, 122, 0.06);
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero h1 br:last-child {
  display: block;
}

.hero p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #0f1012;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(215, 176, 122, 0.18);
}

.btn-primary--full {
  width: 100%;
}

.members-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.members-proof strong,
.members-proof span {
  display: block;
}

.members-proof strong {
  font-size: 0.97rem;
  font-weight: 700;
}

.members-proof span {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.members-proof__avatars {
  display: flex;
  align-items: center;
}

.members-proof__avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid #12161f;
  border-radius: 50%;
  background: linear-gradient(135deg, #6f7788, #d7b07a);
}

.members-proof__avatars span:first-child {
  margin-left: 0;
}

.hero-media {
  min-height: 610px;
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(215, 176, 122, 0.25);
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 20%, rgba(215, 176, 122, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(135deg, #171b25 0%, #0f131b 42%, #10151d 100%);
}

.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
  pointer-events: none;
}

.media-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(5, 6, 10, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-size: 0.86rem;
  z-index: 1;
}

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

.benefit-card {
  padding: 20px;
}

.benefit-icon {
  color: var(--gold-2);
  font-size: 1.4rem;
}

.benefit-card h3 {
  margin: 12px 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.benefit-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.benefit-card__media {
  min-height: 170px;
  border-radius: 16px;
}

.included-quickanswers {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
  gap: 18px;
}

.included-block,
.quick-answers {
  padding: 0;
}

.included-block h2,
.before-after-copy h2,
.section-heading h2,
.faq-preview h2,
.cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 168px;
  padding: 18px 16px;
}

.mini-stat {
  padding: 18px 16px;
}

.mini-stat__icon {
  color: var(--gold-2);
  font-size: 1.15rem;
}

.mini-stat strong {
  display: block;
  margin-top: 18px;
  font-size: 2.1rem;
  line-height: 1;
}

.mini-stat h3 {
  margin: 8px 0 6px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.mini-stat p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.93rem;
}

.quick-answers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quick-answers__header,
.faq-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.quick-answers__header h3,
.faq-preview__head h2 {
  margin: 0;
}

.quick-answers__header a,
.faq-preview__head a {
  color: var(--gold-2);
  font-size: 0.95rem;
  white-space: nowrap;
}

.quick-answer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.quick-answer h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.quick-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quick-answer span {
  color: var(--gold-2);
  font-size: 1.2rem;
}

.before-after-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
}

.before-after-copy {
  padding: 24px 8px 0 4px;
}

.before-after-copy p,
.section-heading p,
.cta-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.ba-card {
  padding: 14px;
}

.ba-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 220px;
  overflow: hidden;
  border-radius: 16px;
}

.ba-side {
  border-radius: 0;
  min-height: 220px;
}

.ba-side:first-child {
  border-right: 1px solid rgba(255,255,255,0.05);
}

.ba-slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0f1012;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 12px 6px 2px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.modules-section {
  padding-top: 6px;
}

.section-heading {
  margin-bottom: 16px;
}

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

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

.module-card {
  padding: 18px;
}

.module-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.module-card__head h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.module-card__head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.module-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold-2);
  border: 1px solid rgba(215, 176, 122, 0.28);
  background: rgba(215, 176, 122, 0.08);
  font-weight: 700;
}

.module-card ul,
.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-card li,
.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.module-card li::before,
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

.module-card__media {
  margin-top: 18px;
  min-height: 220px;
  border-radius: 18px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.78fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.faq-preview,
.pricing-card,
.cta-card {
  padding: 20px;
}

.faq-preview__list {
  display: grid;
  gap: 12px;
}

.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.card-glass--gold {
  border-color: rgba(215, 176, 122, 0.26);
  background:
    radial-gradient(circle at top, rgba(215, 176, 122, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(16, 18, 24, 0.95);
}

.pricing-badge {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold-2);
  border: 1px solid rgba(215, 176, 122, 0.34);
  background: rgba(215, 176, 122, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.pricing-main {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.pricing-main strong {
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.pricing-main span {
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-card p {
  margin: 12px 0 14px;
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.pricing-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
  text-align: center;
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.cta-card__copy p {
  max-width: 26ch;
}

.cta-card__media {
  min-height: 180px;
  border-radius: 18px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 8px 10px;
  color: var(--muted);
}

.footer-nav,
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav a,
.footer-social a {
  transition: 0.2s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--text);
}

.footer-legal {
  flex-basis: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.footer-legal p {
  margin: 0 0 4px;
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
}

.footer-legal a:hover {
  color: var(--text);
}

@media (max-width: 1280px) {
  .benefits-grid,
  .modules-grid,
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bottom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-card {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }

  .cta-card__copy,
  .cta-card__media {
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    top: 10px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 11, 16, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-link--button {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
    height: 100%;
    display: flex;
    max-height:620px;
  }
  .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

  .included-quickanswers,
  .before-after-section,
  .bottom-grid,
  .cta-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .before-after-copy {
    padding: 4px 0 0;
  }
}

@media (max-width: 768px) {
  .site-shell {
    width: min(calc(100% - 16px), var(--container));
    padding-top: 12px;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .brand span:last-child {
    font-size: 0.94rem;
  }

  .section-card--hero,
  .benefit-card,
  .mini-stat,
  .module-card,
  .faq-preview,
  .pricing-card,
  .cta-card,
  .quick-answer,
  .ba-card {
    padding: 16px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-primary--full {
    width: 100%;
  }

  .members-proof {
    width: 100%;
  }

  .hero-media {
    min-height: 360px;
  }

  .benefits-grid,
  .modules-grid,
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card__media {
    min-height: 200px;
    height: 200px;
  }

  .benefit-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 16px 14px;
    text-align: left;
  }

  .mini-stat__icon {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 2px;
  }

  .mini-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .mini-stat-titleline {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }

  .mini-stat strong {
    margin: 0;
    font-size: 1.9rem;
    line-height: 1;
  }

  .mini-stat h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .mini-stat p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .module-card__head {
    grid-template-columns: auto 1fr;
  }

  .module-card__head span {
    grid-column: 2;
  }

  .faq-preview__head,
  .quick-answers__header,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-main strong {
    font-size: 3.1rem;
  }

  .cta-card__copy p {
    max-width: none;
  }

  .footer {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 480px) {
  .topbar {
    gap: 12px;
  }

  .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.06em;
  }

  .ba-split,
  .ba-side,
  .module-card__media,
  .benefit-card__media,
  .cta-card__media {
    min-height: 180px;
  }

  .hero-media {
    min-height: 300px;
  }
}
.hero-media {
  max-height: 460px;

}

/* =========================
   FAQ PAGE
========================= */

.faq-page {
  display: grid;
  gap: 18px;
}

.faq-surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(14, 17, 24, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.faq-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.faq-hero__copy p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.faq-hero__media {
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
}

.faq-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  padding: 26px;
}

.faq-section__head {
  margin-bottom: 18px;
}

.faq-section__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  letter-spacing: -0.04em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list--spaced {
  margin-top: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(11, 14, 20, 0.88);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq-question__left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.faq-question__left span:last-child {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.faq-dot {
  color: var(--gold-2);
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-plus {
  color: var(--gold-2);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer__inner {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-bullets {
  margin: 0;
  padding-left: 18px;
}

.faq-bullets li + li {
  margin-top: 8px;
}

.faq-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: start;
}

.faq-contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.faq-contact-card__content h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.faq-contact-card__content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 28ch;
}

.faq-contact-card__media {
  min-height: 180px;
  border-radius: 18px;
  overflow: hidden;
}

.faq-contact-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ states */
.faq-item.is-open {
  border-color: rgba(215, 176, 122, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* responsive */
@media (max-width: 1024px) {
  .faq-hero {
    grid-template-columns: 1fr;
  }

  .faq-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-section,
  .faq-hero {
    padding: 18px;
  }

  .faq-grid-2 {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 18px 16px;
  }

  .faq-answer__inner {
    padding: 0 16px 18px;
  }

  .faq-question__left span:last-child {
    font-size: 1.02rem;
  }

  .faq-contact-card__content h3 {
    font-size: 1.6rem;
  }

  .faq-hero__media {
    min-height: 240px;
  }
}
/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  display: grid;
  gap: 18px;
}

.contact-surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(14, 17, 24, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.contact-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.contact-hero__copy p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-hero__media {
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
}

.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-main {
  padding: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 380px;
  gap: 18px;
  align-items: stretch;
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(11, 14, 20, 0.88);
  padding: 28px;
}

.contact-form-card__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.contact-form-card__intro p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--muted-2);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(215, 176, 122, 0.4);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0 3px rgba(215, 176, 122, 0.08);
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form__actions {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding-top: 4px;
}

.contact-submit {
  min-width: 220px;
}

.contact-form__actions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-side-card {
  display: grid;
  grid-template-rows: auto auto auto;
  overflow: hidden;
}

.contact-side-card__media {
  min-height: 240px;
  border-radius: 0;
  border: 0;
}

.contact-side-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-block {
  padding: 24px 22px;
  border-top: 1px solid var(--line);
}

.contact-info-block h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.contact-info-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* responsive */
@media (max-width: 1024px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-side-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero,
  .contact-main {
    padding: 18px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-hero__media {
    min-height: 240px;
  }

  .contact-side-card__media {
    min-height: 220px;
  }

  .contact-submit {
    width: 100%;
    min-width: unset;
  }

  .contact-info-block {
    padding: 18px 16px;
  }

  .contact-info-block h3 {
    font-size: 1.35rem;
  }
}

/* =========================
   TERMS PAGE
========================= */

.terms-page {
  display: grid;
  gap: 18px;
}

.terms-surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(14, 17, 24, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.terms-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.terms-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.terms-hero__copy p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.terms-hero__media {
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
}

.terms-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.terms-section {
  padding: 26px;
}

.terms-intro {
  margin-bottom: 20px;
}

.terms-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.terms-intro p {
  margin: 0;
  max-width: 920px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.terms-list {
  display: grid;
  gap: 12px;
}

.terms-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(11, 14, 20, 0.88);
  overflow: hidden;
}

.terms-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.terms-question__left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.terms-question__left span:last-child {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.terms-dot {
  color: var(--gold-2);
  font-size: 1rem;
  flex-shrink: 0;
}

.terms-plus {
  color: var(--gold-2);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.terms-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.terms-answer__inner {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.terms-item.is-open {
  border-color: rgba(215, 176, 122, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.terms-footer-note {
  margin-top: 24px;
  padding-top: 10px;
}

.terms-footer-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* responsive */
@media (max-width: 1024px) {
  .terms-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .terms-hero,
  .terms-section {
    padding: 18px;
  }

  .terms-question {
    padding: 18px 16px;
  }

  .terms-answer__inner {
    padding: 0 16px 18px;
  }

  .terms-question__left span:last-child {
    font-size: 1.02rem;
  }

  .terms-hero__media {
    min-height: 240px;
  }
}

/* =========================
   PRIVACY PAGE
========================= */

.privacy-page {
  display: grid;
  gap: 18px;
}

.privacy-surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(14, 17, 24, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.privacy-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.privacy-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.privacy-hero__copy p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.privacy-hero__media {
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
}

.privacy-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privacy-section {
  padding: 26px;
}

.privacy-intro {
  margin-bottom: 20px;
}

.privacy-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.privacy-intro p {
  margin: 0;
  max-width: 920px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(11, 14, 20, 0.88);
  overflow: hidden;
}

.privacy-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.privacy-question__left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.privacy-question__left span:last-child {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.privacy-dot {
  color: var(--gold-2);
  font-size: 1rem;
  flex-shrink: 0;
}

.privacy-plus {
  color: var(--gold-2);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.privacy-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.privacy-answer__inner {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.privacy-answer__inner p {
  margin: 0 0 12px;
}

.privacy-bullets {
  margin: 0;
  padding-left: 18px;
}

.privacy-bullets li + li {
  margin-top: 8px;
}

.privacy-item.is-open {
  border-color: rgba(215, 176, 122, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.privacy-footer-note {
  margin-top: 24px;
  padding-top: 10px;
}

.privacy-footer-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* responsive */
@media (max-width: 1024px) {
  .privacy-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .privacy-hero,
  .privacy-section {
    padding: 18px;
  }

  .privacy-question {
    padding: 18px 16px;
  }

  .privacy-answer__inner {
    padding: 0 16px 18px;
  }

  .privacy-question__left span:last-child {
    font-size: 1.02rem;
  }

  .privacy-hero__media {
    min-height: 240px;
  }
}
/* =========================
   COURSE DASHBOARD
========================= */

.course-page {
  width: min(calc(100% - 32px), 1540px);
  margin: 24px auto 34px;
}

.course-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.course-sidebar {
  position: sticky;
  top: 24px;
  padding: 18px;
  overflow: hidden;
}

.course-progress {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 14px;
}

.course-progress__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.course-progress__head h2 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

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

.course-progress__head strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.course-progress__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.course-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.course-sidebar__modules {
  display: grid;
  gap: 12px;
}

.course-module {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.course-module__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.course-module__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.course-module__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(214, 176, 124, 0.24);
  color: var(--gold-2);
  background: rgba(214, 176, 124, 0.07);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.course-module__left h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.course-module__left p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.course-module__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  flex-shrink: 0;
}

.course-module__lessons {
  display: none;
  padding: 8px;
  border-top: 1px solid var(--line);
  gap: 6px;
}

.course-module--open .course-module__lessons {
  display: grid;
}

.course-lesson {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.course-lesson:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.course-lesson--active {
  background: rgba(214, 176, 124, 0.12);
  color: var(--text);
  border: 1px solid rgba(214, 176, 124, 0.2);
}

.course-lesson__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.course-lesson__status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  transition: all 0.25s ease;
}

.course-lesson--locked {
  opacity: 0.45;
}

.course-lesson--locked:hover {
  background: transparent;
  color: var(--muted);
}

.course-lesson--locked .course-lesson__status {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.course-lesson--available .course-lesson__status {
  position: relative;
  background: transparent;
  border: 1px solid rgba(214, 176, 124, 0.35);
  overflow: hidden;
}

.course-lesson--available .course-lesson__status::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.course-lesson--completed .course-lesson__status {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: none;
}

.course-lesson--completed .course-lesson__title,
.course-lesson--active .course-lesson__title {
  color: var(--text);
}

.course-lesson--locked {
  pointer-events: none;
  cursor: default;
}

.course-lesson__time {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.course-content {
  padding: 26px;
}

.course-article__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.course-article__meta {
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.course-article__top h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.course-article__duration {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 176, 124, 0.24);
  background: rgba(214, 176, 124, 0.07);
  color: var(--gold-2);
  font-size: 0.92rem;
  white-space: nowrap;
}

.course-article {
  display: grid;
  gap: 18px;
}

.course-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  padding: 22px;
}

.course-block__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.course-block__icon {
  color: var(--gold-2);
  font-size: 1.1rem;
}

.course-block__head h2 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.course-block__body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.course-block__body p:last-child {
  margin-bottom: 0;
}

.course-image-box {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.course-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.course-bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.course-bullets li + li {
  margin-top: 8px;
}

.course-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.course-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.course-nav__btn:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.course-nav__btn--next {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #101114;
  border-color: rgba(214, 176, 124, 0.36);
}

.course-nav__btn--next:hover {
  background: linear-gradient(180deg, #f2d9b2, #d5ac76);
}

@media (max-width: 1200px) {
  .course-layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  .course-page {
    width: min(calc(100% - 20px), 1540px);
  }

  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-page {
    width: min(calc(100% - 16px), 1540px);
    margin: 16px auto 24px;
  }

  .course-content,
  .course-sidebar,
  .course-progress,
  .course-block {
    padding: 16px;
  }

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

  .course-article__top h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .course-block__head h2 {
    font-size: 1.35rem;
  }

  .course-module__trigger {
    padding: 14px 16px;
  }

  .course-nav {
    flex-direction: column;
  }

  .course-nav__btn {
    width: 100%;
  }
}
.course-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.course-status-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.course-status-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(214, 176, 124, 0.24);
  background: rgba(214, 176, 124, 0.07);
  color: var(--gold-2);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.course-status-card__label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.course-status-card__left strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.course-status-card__button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(214, 176, 124, 0.28);
  border-radius: 14px;
  background: rgba(214, 176, 124, 0.08);
  color: var(--gold-2);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.course-status-card__button:hover {
  background: rgba(214, 176, 124, 0.14);
}

.course-status-card.is-completed {
  border-color: rgba(214, 176, 124, 0.28);
  background:
    linear-gradient(180deg, rgba(214,176,124,0.06), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.02);
}

.course-status-card.is-completed .course-status-card__icon {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #101114;
  border-color: rgba(214, 176, 124, 0.4);
}

.course-status-card.is-completed .course-status-card__button {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line);
}

@media (max-width: 768px) {
  .course-status-card {
    flex-direction: column;
    align-items: stretch;
  }

  .course-status-card__button {
    width: 100%;
  }
}
/* =========================
   COURSE HERO OVERRIDES
   Only for course page
========================= */

.course-page .hero.section-card--hero {
  padding: 20px;
}

.course-page .hero {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 26px;
  align-items: center;
  min-height: unset;
}

.course-page .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.course-page .hero-media {
  min-height: unset;
  max-height: unset;
  height: auto;
  display: flex;
  align-items: center;
}

.course-page .hero-media picture,
.course-page .hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.course-page .hero-media img {
  border-radius: 22px;
}

.course-page .hero h1 {
  max-width: 10ch;
}

@media (max-width: 1024px) {
  .course-page .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .course-page .hero-copy {
    padding: 0;
  }

  .course-page .hero-media {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .course-page .hero.section-card--hero {
    padding: 16px;
  }

  .course-page .hero h1 {
    max-width: none;
  }
}
/* =========================
   SUCCESS PAGE
========================= */

.success-page {
  display: grid;
  gap: 18px;
}

.success-hero .hero-copy h1 {
  max-width: 11ch;
}

.success-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.success-inline-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.success-inline-card__label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.success-inline-card strong {
  font-size: 0.98rem;
  line-height: 1.4;
  word-break: break-word;
}

.success-hero__media {
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: stretch;
}

.success-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.success-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 360px;
  gap: 18px;
  align-items: start;
}

.success-panel,
.success-side {
  padding: 22px;
}

.success-panel__head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.success-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.success-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 122, 0.22);
  background: rgba(215, 176, 122, 0.06);
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.success-state__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.success-state--ok {
  color: #d8c18f;
}

.success-state--pending {
  color: #e4d4aa;
}

.success-state--error {
  color: #f0b5a8;
  border-color: rgba(240, 181, 168, 0.22);
  background: rgba(240, 181, 168, 0.06);
}

.success-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.success-field {
  display: grid;
  gap: 8px;
}

.success-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.success-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.success-field input::placeholder {
  color: var(--muted-2);
}

.success-field input:focus {
  border-color: rgba(215, 176, 122, 0.4);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0 3px rgba(215, 176, 122, 0.08);
}

.success-form__note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.success-form__actions {
  padding-top: 4px;
}

.success-actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.success-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.2s ease;
}

.success-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.success-waiting-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.success-waiting-box p {
  margin: 0;
  color: var(--muted);
}

.success-spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--gold-2);
  animation: successSpin 0.9s linear infinite;
  flex-shrink: 0;
}

@keyframes successSpin {
  to {
    transform: rotate(360deg);
  }
}

.success-side {
  display: grid;
  gap: 18px;
}

.success-side__block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.success-side__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.success-side__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.success-side__list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.success-side__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

.success-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-2);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .success-main-grid {
    grid-template-columns: 1fr;
  }

  .success-hero__media {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .success-panel,
  .success-side {
    padding: 18px;
  }

  .success-actions-grid {
    flex-direction: column;
  }

  .success-secondary-btn,
  .success-form .btn {
    width: 100%;
  }

  .success-waiting-box {
    align-items: flex-start;
  }
}
.success-form-error {
  margin-top: 18px;
  margin-bottom: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 181, 168, 0.22);
  border-radius: 14px;
  background: rgba(240, 181, 168, 0.06);
  color: #f0b5a8;
  line-height: 1.5;
}
/* =========================
   LOGIN PAGE
========================= */

.login-page {
  display: grid;
  gap: 18px;
}

.login-hero .hero-copy h1 {
  max-width: 11ch;
}

.login-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.login-hero__media {
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: stretch;
}

.login-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.login-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 18px;
  align-items: start;
}

.login-panel,
.login-side {
  padding: 22px;
}

.login-panel__head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.login-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.login-field {
  display: grid;
  gap: 8px;
}

.login-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.login-field__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.login-field__helper {
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 600;
}

.login-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.login-field input::placeholder {
  color: var(--muted-2);
}

.login-field input:focus {
  border-color: rgba(215, 176, 122, 0.4);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0 3px rgba(215, 176, 122, 0.08);
}

.login-form__actions {
  padding-top: 4px;
}

.login-form .btn {
  min-width: 220px;
}

.login-error-box {
  margin-top: 18px;
  margin-bottom: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 181, 168, 0.22);
  border-radius: 14px;
  background: rgba(240, 181, 168, 0.06);
  color: #f0b5a8;
  line-height: 1.5;
}

.login-side {
  display: grid;
  gap: 18px;
}

.login-side__block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.login-side__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.login-side__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.login-side__list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.login-side__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

@media (max-width: 1024px) {
  .login-main-grid {
    grid-template-columns: 1fr;
  }

  .login-hero__media {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .login-panel,
  .login-side {
    padding: 18px;
  }

  .login-form .btn {
    width: 100%;
    min-width: unset;
  }

  .login-field__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nav-user {
  font-size: 0.9rem;
  color: var(--muted);
  margin-right: 8px;
}

/* =========================
   CANCEL PAGE
========================= */

.cancel-page {
  display: grid;
  gap: 18px;
}

.cancel-hero .hero-copy h1 {
  max-width: 11ch;
}

.cancel-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.cancel-hero__media {
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: stretch;
}

.cancel-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.cancel-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 18px;
  align-items: start;
}

.cancel-panel,
.cancel-side {
  padding: 22px;
}

.cancel-panel__head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.cancel-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.cancel-actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.cancel-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.2s ease;
}

.cancel-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.cancel-side {
  display: grid;
  gap: 18px;
}

.cancel-side__block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.cancel-side__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cancel-side__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.cancel-side__list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.cancel-side__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

@media (max-width: 1024px) {
  .cancel-main-grid {
    grid-template-columns: 1fr;
  }

  .cancel-hero__media {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .cancel-panel,
  .cancel-side {
    padding: 18px;
  }

  .cancel-actions-grid {
    flex-direction: column;
  }

  .cancel-secondary-btn,
  .cancel-actions-grid .btn {
    width: 100%;
  }
}
/* =========================
   FORGOT PASSWORD PAGE
========================= */

.forgot-page {
  display: grid;
  gap: 18px;
}

.forgot-hero .hero-copy h1 {
  max-width: 11ch;
}

.forgot-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.forgot-hero__media {
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: stretch;
}

.forgot-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.forgot-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 18px;
  align-items: start;
}

.forgot-panel,
.forgot-side {
  padding: 22px;
}

.forgot-panel__head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.forgot-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.forgot-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.forgot-field {
  display: grid;
  gap: 8px;
}

.forgot-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.forgot-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.forgot-field input::placeholder {
  color: var(--muted-2);
}

.forgot-field input:focus {
  border-color: rgba(215, 176, 122, 0.4);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0 3px rgba(215, 176, 122, 0.08);
}

.forgot-form__note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.forgot-form__actions {
  padding-top: 4px;
}

.forgot-form .btn {
  min-width: 220px;
}

.forgot-error-box {
  margin-top: 18px;
  margin-bottom: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 181, 168, 0.22);
  border-radius: 14px;
  background: rgba(240, 181, 168, 0.06);
  color: #f0b5a8;
  line-height: 1.5;
}

.forgot-success-box {
  margin-top: 18px;
  margin-bottom: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(215, 176, 122, 0.22);
  border-radius: 14px;
  background: rgba(215, 176, 122, 0.06);
  color: var(--gold-2);
  line-height: 1.5;
}

.forgot-side {
  display: grid;
  gap: 18px;
}

.forgot-side__block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.forgot-side__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.forgot-side__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.forgot-side__list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.forgot-side__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

@media (max-width: 1024px) {
  .forgot-main-grid {
    grid-template-columns: 1fr;
  }

  .forgot-hero__media {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .forgot-panel,
  .forgot-side {
    padding: 18px;
  }

  .forgot-form .btn {
    width: 100%;
    min-width: unset;
  }
}
.forgot-dev-link {
  margin-top: 16px;
  padding: 14px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  font-size: 0.85rem;
  word-break: break-all;
}

.forgot-dev-link a {
  color: var(--gold-2);
}
/* =========================
   RESET PASSWORD PAGE
========================= */

.reset-page {
  display: grid;
  gap: 18px;
}

.reset-hero .hero-copy h1 {
  max-width: 11ch;
}

.reset-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.reset-hero__media {
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: stretch;
}

.reset-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.reset-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 18px;
  align-items: start;
}

.reset-panel,
.reset-side {
  padding: 22px;
}

.reset-panel__head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.reset-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.reset-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.reset-field {
  display: grid;
  gap: 8px;
}

.reset-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.reset-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.reset-field input::placeholder {
  color: var(--muted-2);
}

.reset-field input:focus {
  border-color: rgba(215, 176, 122, 0.4);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0 3px rgba(215, 176, 122, 0.08);
}

.reset-form__note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reset-form__actions {
  padding-top: 4px;
}

.reset-form .btn {
  min-width: 220px;
}

.reset-error-box {
  margin-top: 18px;
  margin-bottom: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 181, 168, 0.22);
  border-radius: 14px;
  background: rgba(240, 181, 168, 0.06);
  color: #f0b5a8;
  line-height: 1.5;
}

.reset-success-box {
  margin-top: 18px;
  margin-bottom: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(215, 176, 122, 0.22);
  border-radius: 14px;
  background: rgba(215, 176, 122, 0.06);
  color: var(--gold-2);
  line-height: 1.5;
}

.reset-side {
  display: grid;
  gap: 18px;
}

.reset-side__block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.reset-side__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reset-side__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.reset-side__list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.reset-side__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}

@media (max-width: 1024px) {
  .reset-main-grid {
    grid-template-columns: 1fr;
  }

  .reset-hero__media {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .reset-panel,
  .reset-side {
    padding: 18px;
  }

  .reset-form .btn {
    width: 100%;
    min-width: unset;
  }
}
/* =========================
   EXAMPLES / RESULTS PAGE
========================= */

.examples-page {
  display: grid;
  gap: 18px;
}

.examples-hero .hero-copy h1 {
  max-width: 10ch;
}

.examples-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.examples-hero__media {
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: stretch;
}

.examples-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.examples-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.2fr;
  gap: 18px;
  padding: 22px;
  align-items: start;
}

.examples-intro__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.examples-intro__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

.examples-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.example-card {
  overflow: hidden;
}

.example-card__media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 1536 / 911;
  background: #0b0d12;
}

.example-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 768px) {
  .example-card__media {
    aspect-ratio: 4 / 3;
  }
}
.example-card__labels {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.example-card__labels span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(8, 10, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.example-card__body {
  padding: 18px;
}

.example-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.example-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.examples-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.examples-cta__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.examples-cta__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 54ch;
}

.examples-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.examples-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.2s ease;
}

.examples-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1200px) {
  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .examples-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .examples-hero__media {
    min-height: 320px;
    max-height: 420px;
  }

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

  .examples-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .examples-grid,
  .examples-intro__stats {
    grid-template-columns: 1fr;
  }

  .examples-intro,
  .examples-cta {
    padding: 18px;
  }

  .examples-secondary-btn,
  .examples-cta__actions .btn {
    width: 100%;
  }
}
/* =========================
   BILLING REQUIRED PAGE
========================= */

.billing-page {
  display: grid;
  gap: 24px;
}

.billing-hero .hero-copy h1 {
  max-width: 11ch;
}

.billing-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.billing-hero__media {
  min-height: 360px;
  max-height: 460px;
  display: flex;
  align-items: stretch;
}

.billing-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.billing-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
}

.billing-panel,
.billing-side {
  padding: 24px;
  min-width: 0;
}

.billing-panel__head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.billing-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.billing-reasons {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.billing-reason {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.billing-reason h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.billing-reason p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.billing-actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.billing-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.2s ease;
  text-decoration: none;
}

.billing-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.billing-note {
  margin-top: 20px;
}

.billing-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.billing-side {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 24px;
}

.billing-side__block {
  padding: 0;
}

.billing-side__block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.billing-side__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.billing-side__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.billing-side__list li {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .billing-main-grid {
    grid-template-columns: 1fr;
  }

  .billing-side {
    position: static;
  }
}

@media (max-width: 1024px) {
  .billing-hero__media {
    min-height: 300px;
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .billing-panel,
  .billing-side {
    padding: 18px;
  }

  .billing-actions-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .billing-secondary-btn,
  .billing-actions-grid .btn {
    width: 100%;
  }
}
/* =========================
   SHARED UI HELPERS
========================= */

.nav-user {
  font-size: 0.9rem;
  color: var(--muted);
  margin-right: 8px;
}

.success-inline-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.success-inline-card__label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.success-inline-card strong {
  font-size: 0.98rem;
  line-height: 1.4;
  word-break: break-word;
}

.success-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 122, 0.22);
  background: rgba(215, 176, 122, 0.06);
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.success-state__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.success-state--error {
  color: #f0b5a8;
  border-color: rgba(240, 181, 168, 0.22);
  background: rgba(240, 181, 168, 0.06);
}

.success-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-2);
  font-weight: 600;
}

/* =========================
   BILLING REQUIRED PAGE
========================= */

.billing-page {
  display: grid;
  gap: 24px;
}

.billing-hero .hero-copy h1 {
  max-width: 11ch;
}

.billing-hero__meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.billing-hero__media {
  min-height: 360px;
  max-height: 460px;
  display: flex;
  align-items: stretch;
}

.billing-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.billing-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
}

.billing-panel,
.billing-side {
  padding: 24px;
  min-width: 0;
}

.billing-panel__head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.billing-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.billing-reasons {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.billing-reason {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.billing-reason h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.billing-reason p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.billing-actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.billing-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.2s ease;
  text-decoration: none;
}

.billing-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.billing-note {
  margin-top: 20px;
}

.billing-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.billing-side {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 24px;
}

.billing-side__block {
  padding: 0;
}

.billing-side__block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.billing-side__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.billing-side__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.billing-side__list li {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .billing-main-grid {
    grid-template-columns: 1fr;
  }

  .billing-side {
    position: static;
  }
}

@media (max-width: 1024px) {
  .billing-hero__media {
    min-height: 300px;
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .billing-panel,
  .billing-side {
    padding: 18px;
  }

  .billing-actions-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .billing-secondary-btn,
  .billing-actions-grid .btn {
    width: 100%;
  }
}
/* =========================
   COURSE ARTICLE ENHANCEMENTS
========================= */

.section-lead {
  margin-bottom: 16px;
}

.section-lead p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  letter-spacing: -0.02em;
}

.callout {
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(255, 255, 255, 0.02);
}

.callout strong {
  display: block;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.callout p {
  margin: 0;
}

.callout-insight {
  border-color: rgba(215, 176, 122, 0.22);
  background:
    radial-gradient(circle at top left, rgba(215, 176, 122, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(255, 255, 255, 0.02);
}

.callout-insight strong {
  color: var(--gold-2);
}

.callout-warning {
  border-color: rgba(240, 181, 168, 0.22);
  background:
    linear-gradient(180deg, rgba(240,181,168,0.05), rgba(255,255,255,0.01)),
    rgba(255, 255, 255, 0.02);
}

.callout-warning strong {
  color: #f0b5a8;
}

.callout-result {
  border-color: rgba(215, 176, 122, 0.3);
  background:
    linear-gradient(180deg, rgba(215,176,122,0.08), rgba(255,255,255,0.01)),
    rgba(255, 255, 255, 0.02);
}

.callout-result strong {
  color: var(--text);
}

.callout-note {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.018);
}

.callout-note strong {
  color: var(--muted);
}

.tips-list li strong {
  color: var(--text);
}

.exercise-box {
  padding: 18px;
  border: 1px solid rgba(215, 176, 122, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(215, 176, 122, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    rgba(255, 255, 255, 0.02);
}

.exercise-box h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--gold-2);
}

.exercise-box p {
  margin-bottom: 14px;
}

.exercise-box .callout {
  margin-bottom: 0;
}

.closing-quote {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(215, 176, 122, 0.06);
}

.closing-quote p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
}

.course-block__body p + .callout,
.course-block__body ul + .callout,
.course-block__body .callout + p,
.course-block__body .callout + ul,
.course-block__body .exercise-box + p {
  margin-top: 18px;
}

.course-block__body p {
  max-width: 74ch;
}

.course-block__body ul {
  max-width: 74ch;
}

.course-image-box + .callout,
.course-image-box + p,
.course-image-box + ul {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .section-lead p {
    font-size: 1.05rem;
  }

  .callout,
  .exercise-box,
  .closing-quote {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .exercise-box h3 {
    font-size: 1.15rem;
  }

  .closing-quote p {
    font-size: 1rem;
  }
}
/* =========================
   COURSE TITLE ACTIONS + NAV
========================= */

.course-article__top-main {
  min-width: 0;
  flex: 1;
}

.course-article__headline-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.course-article__headline-row h1 {
  margin: 0;
}

.course-title-action {
  flex-shrink: 0;
}

.course-complete-btn {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(214, 176, 124, 0.28);
  border-radius: 14px;
  background: rgba(214, 176, 124, 0.08);
  color: var(--gold-2);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.course-complete-btn:hover {
  background: rgba(214, 176, 124, 0.14);
}

.course-complete-btn.is-completed {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #101114;
  border-color: rgba(214, 176, 124, 0.4);
}

.course-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.course-nav__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.2);
}

@media (max-width: 768px) {
  .course-article__headline-row {
    flex-direction: column;
    align-items: stretch;
  }

  .course-complete-btn {
    width: 100%;
  }
}
.course-complete-btn {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(214, 176, 124, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.course-complete-btn:hover {
  border-color: rgba(214, 176, 124, 0.38);
  background: rgba(214, 176, 124, 0.08);
  color: var(--gold-2);
}

.course-complete-btn.is-completed {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #101114;
  border-color: rgba(214, 176, 124, 0.38);
}
.course-lesson__status {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.25s ease;
  box-sizing: border-box;
}
/* =========================
   ACCOUNT PAGE
========================= */

.account-page {
  display: grid;
  gap: 18px;
}

.account-nav-user {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.account-hero .hero-copy h1 {
  max-width: 10ch;
}

.account-hero__meta {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 760px;
}

.account-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.account-hero__media {
  min-height: 360px;
  max-height: 460px;
  display: flex;
  align-items: stretch;
}

.account-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.account-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 18px;
  align-items: start;
}

.account-main-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.account-side-column {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 24px;
}

.account-panel,
.account-side__block {
  padding: 22px;
  min-width: 0;
}

.account-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.account-panel__subhead {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.account-panel__head h2,
.account-panel__subhead h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.account-panel__copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.account-kicker {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 122, 0.28);
  background: rgba(215, 176, 122, 0.08);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.account-stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.account-stat-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-stat-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.account-stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.93rem;
}

.account-progress-card {
  margin-top: 18px;
}

.account-progress-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.account-progress-chip {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.account-progress-chip span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-progress-chip strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.account-last-viewed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.account-last-viewed__label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.account-last-viewed strong {
  display: block;
  letter-spacing: -0.02em;
}

.account-billing-list {
  display: grid;
  gap: 12px;
}

.account-billing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.account-billing-item__left {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.account-billing-item__top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.account-billing-item__top strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.account-billing-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.account-billing-item__amount {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.account-empty-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.account-empty-card span {
  color: var(--gold-2);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-status--paid {
  color: var(--gold-2);
  border: 1px solid rgba(215, 176, 122, 0.28);
  background: rgba(215, 176, 122, 0.08);
}

.payment-status--warning {
  color: #f0b5a8;
  border: 1px solid rgba(240, 181, 168, 0.24);
  background: rgba(240, 181, 168, 0.06);
}

.payment-status--muted {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.account-side__block h3 {
  margin: 8px 0 14px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.account-side__list {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.account-side__list strong {
  color: var(--text);
}

.account-side__actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.account-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.2s ease;
}

.account-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.account-secondary-btn--full {
  width: 100%;
}

.account-links-grid {
  display: grid;
  gap: 10px;
}

.account-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.2s ease;
}

.account-link-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.account-link-card span {
  color: var(--text);
  font-weight: 600;
}

.account-link-card strong {
  color: var(--gold-2);
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .account-main-grid {
    grid-template-columns: 1fr;
  }

  .account-side-column {
    position: static;
  }
}

@media (max-width: 1024px) {
  .account-hero__media {
    min-height: 300px;
    max-height: 380px;
  }

  .account-nav-user {
    display: none;
  }

  .account-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .account-panel,
  .account-side__block {
    padding: 18px;
  }

  .account-panel__head,
  .account-last-viewed {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-progress-meta,
  .account-stats-grid {
    grid-template-columns: 1fr;
  }

  .account-billing-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-hero__actions .btn,
  .account-hero__actions .account-secondary-btn {
    width: 100%;
  }
}

//* =========================
   CANCEL SUBSCRIPTION PAGE
========================= */

.billing-confirm-form {
  margin-top: 24px;
}

.billing-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.billing-confirm-check input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.billing-confirm-check span {
  color: var(--text);
  line-height: 1.6;
}

.billing-actions-grid--stack {
  flex-direction: column;
  align-items: stretch;
  margin-top: 0;
}

.billing-actions-grid--stack .billing-secondary-btn {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
/* =========================
   INSIDE COURSE PAGE
========================= */

.inside-page {
  display: grid;
  gap: 18px;
}

.inside-nav-user {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.inside-hero .hero-copy h1 {
  max-width: 9ch;
}

.inside-hero__meta {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 760px;
}

.inside-hero__media {
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: stretch;
}

.inside-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.inside-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.2s ease;
}

.inside-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.inside-section {
  padding: 24px;
}

.inside-lesson-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inside-flow-card {
  padding: 18px;
}

.inside-flow-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 122, 0.28);
  background: rgba(215, 176, 122, 0.08);
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.inside-flow-card h3 {
  margin: 14px 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.inside-flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.inside-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.inside-highlight-card {
  padding: 20px;
}

.inside-highlight-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.inside-highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .inside-nav-user {
    display: none;
  }

  .inside-lesson-flow,
  .inside-highlight-grid {
    grid-template-columns: 1fr;
  }

  .inside-hero__media {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .inside-section {
    padding: 18px;
  }

  .inside-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .inside-hero .btn,
  .inside-hero .inside-secondary-btn {
    width: 100%;
  }
}
.inside-method-section {
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.inside-method-copy {
  padding: 8px 6px 0 2px;
}

.inside-method-copy h2 {
  max-width: 8ch;
}

.inside-method-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 26px;
}

.inside-method-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.inside-method-step {
  position: relative;
  display: grid;
  grid-template-columns: 0 1fr;
  gap: 18px;
  align-items: start;
}

.inside-method-step__marker {
  position: absolute;
  left: -26px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 122, 0.30);
  background: linear-gradient(180deg, rgba(215, 176, 122, 0.16), rgba(215, 176, 122, 0.08));
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.inside-method-step__content {
  padding: 20px 22px;
}

.inside-method-step__content h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.inside-method-step__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .inside-method-section {
    grid-template-columns: 1fr;
  }

  .inside-method-copy h2 {
    max-width: none;
  }
}
/* =========================
   INSIDE COURSE - LESSON METHOD
========================= */

.inside-method-section {
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.inside-method-copy {
  padding: 8px 6px 0 2px;
}

.inside-method-copy h2 {
  max-width: 8ch;
}

.inside-method-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 26px;
}

.inside-method-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.inside-method-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.inside-method-step__marker {
  position: absolute;
  left: -26px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 122, 0.30);
  background: linear-gradient(180deg, rgba(215, 176, 122, 0.16), rgba(215, 176, 122, 0.08));
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 1;
}

.inside-method-step__content {
  padding: 20px 22px;
}

.inside-method-step__content h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.inside-method-step__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .inside-method-section {
    grid-template-columns: 1fr;
  }

  .inside-method-copy h2 {
    max-width: none;
  }
}
/* =========================
   INSIDE COURSE - LESSON METHOD
========================= */

.inside-method-heading {
  max-width: 860px;
  margin-bottom: 18px;
}

.inside-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inside-method-card {
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.inside-method-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.inside-method-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 122, 0.30);
  background: rgba(215, 176, 122, 0.08);
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.inside-method-card h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.inside-method-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 34ch;
}

.inside-method-card:hover {
  border-color: rgba(215, 176, 122, 0.22);
  transform: translateY(-1px);
  transition: 0.2s ease;
}

@media (max-width: 1024px) {
  .inside-method-grid {
    grid-template-columns: 1fr;
  }

  .inside-method-card {
    min-height: auto;
  }
}
/* =========================
   INSIDE COURSE - FIT SECTION
========================= */

.inside-fit-card {
  padding: 24px;
}

.inside-fit-head {
  margin-bottom: 18px;
}

.inside-fit-head h2 {
  margin-bottom: 10px;
}

.inside-fit-head p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}

.inside-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inside-fit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.inside-fit-item__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(215, 176, 122, 0.28);
  background: rgba(215, 176, 122, 0.08);
  color: var(--gold-2);
  font-weight: 800;
  flex-shrink: 0;
}

.inside-fit-item h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.inside-fit-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.inside-fit-item--muted {
  background: rgba(255, 255, 255, 0.018);
}

@media (max-width: 768px) {
  .inside-fit-card {
    padding: 18px;
  }

  .inside-fit-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   GLOBAL APP MODAL
========================= */

.app-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.app-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.app-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(10px);
}

.app-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(215, 176, 122, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    rgba(14, 17, 24, 0.96);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.24s ease;
}

.app-modal.is-open .app-modal__dialog {
  transform: translateY(0) scale(1);
}

.app-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.app-modal__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid rgba(215, 176, 122, 0.30);
  background: linear-gradient(180deg, rgba(215, 176, 122, 0.16), rgba(215, 176, 122, 0.08));
  color: var(--gold-2);
  font-size: 1.7rem;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(215, 176, 122, 0.10);
}

.app-modal__content {
  display: grid;
  gap: 10px;
}

.app-modal__eyebrow {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-modal__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.app-modal__message {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 42ch;
}

.app-modal__actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.app-modal__button {
  min-width: 170px;
}

.app-modal--success .app-modal__icon {
  color: var(--gold-2);
}

.app-modal--info .app-modal__icon {
  color: #dce7ff;
  border-color: rgba(220, 231, 255, 0.18);
  background: linear-gradient(180deg, rgba(220, 231, 255, 0.10), rgba(220, 231, 255, 0.04));
}

.app-modal--warning .app-modal__icon {
  color: #ffd8a8;
  border-color: rgba(255, 216, 168, 0.18);
  background: linear-gradient(180deg, rgba(255, 216, 168, 0.10), rgba(255, 216, 168, 0.04));
}

.app-modal--error .app-modal__icon {
  color: #f0b5a8;
  border-color: rgba(240, 181, 168, 0.18);
  background: linear-gradient(180deg, rgba(240, 181, 168, 0.10), rgba(240, 181, 168, 0.04));
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .app-modal {
    padding: 14px;
  }

  .app-modal__dialog {
    width: 100%;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .app-modal__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 16px;
    font-size: 1.4rem;
  }

  .app-modal__title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .app-modal__message {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .app-modal__actions {
    margin-top: 20px;
  }

  .app-modal__button {
    width: 100%;
    min-width: unset;
  }
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.js-wallet-trigger.is-loading {
   opacity: .85;
   cursor: wait;
}
.wallet-launcher-overlay {
  position: absolute !important;
  z-index: 999999 !important;
  opacity: 0.01 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
}

.wallet-launcher-overlay.is-idle {
  left: -10000px !important;
  top: -10000px !important;
  width: 420px !important;
  height: 55px !important;
}


/* =========================================
   GLOBAL WALLET MODAL CHECKOUT
   Reusable across all pages
========================================= */

.ppm-wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ppm-wallet-modal.is-open {
  display: flex;
}

.ppm-wallet-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.ppm-wallet-modal__panel {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(215, 176, 122, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(18, 21, 30, 0.98), rgba(7, 9, 14, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  color: #f5f7fb;
}

.ppm-wallet-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.ppm-wallet-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(215, 176, 122, 0.32);
  border-radius: 999px;
  color: #f0d0a3;
  background: rgba(215, 176, 122, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ppm-wallet-modal__header h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.1rem, 7vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.ppm-wallet-modal__header p {
  margin: 14px 0 0;
  color: #a8afbd;
  line-height: 1.55;
}

.ppm-wallet-modal__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.ppm-wallet-modal__summary span {
  display: block;
  margin-top: 4px;
  color: #a8afbd;
}

.ppm-wallet-modal__summary > strong {
  color: #f0d0a3;
  white-space: nowrap;
}

.ppm-wallet-modal__loading {
  margin: 12px 0;
  color: #a8afbd;
  text-align: center;
}

.ppm-wallet-modal__error {
  margin: 12px 0;
  padding: 13px 14px;
  border: 1px solid rgba(240, 181, 168, 0.28);
  border-radius: 14px;
  color: #ffd6d1;
  background: rgba(170, 45, 45, 0.2);
  line-height: 1.45;
}

#ppm-express-checkout-element {
  min-height: 55px;
}

.ppm-wallet-modal__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: #7f8797;
  font-weight: 700;
}

.ppm-wallet-modal__divider span {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.ppm-wallet-modal__divider em {
  font-style: normal;
}

#ppm-payment-form {
  display: grid;
  gap: 16px;
}

#ppm-payment-form[hidden],
.ppm-wallet-modal__divider[hidden],
.ppm-wallet-modal__error[hidden] {
  display: none !important;
}

.ppm-wallet-modal__submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  color: #101114;
  background: linear-gradient(180deg, #f0d0a3, #d7b07a);
  box-shadow: 0 16px 36px rgba(215, 176, 122, 0.2);
  font-weight: 800;
  cursor: pointer;
}

.ppm-wallet-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.ppm-wallet-modal__note {
  margin: 16px 0 0;
  color: #7f8797;
  text-align: center;
  font-size: 0.92rem;
}

body.ppm-wallet-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .ppm-wallet-modal {
    padding: 10px;
    align-items: flex-end;
  }

  .ppm-wallet-modal__panel {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 24px;
    padding: 22px;
  }
}
.wallet-cta-wrap {
  position: relative;
  display: inline-flex;
  width: 100%;
  max-width: 420px;
}

.wallet-visual-cta {
  width: 100%;
}

#mobile-express-checkout-element {
  position: absolute;
  inset: 0;
  z-index: 20;
  opacity: 0.01;
  pointer-events: auto;
}

/* FRAME HABIT INTERNAL THEME — BUNDLED FOR DEPLOYMENT */
:root {
  --fh-navy: #061a3a;
  --fh-navy-2: #0a224b;
  --fh-blue: #225cff;
  --fh-lime: #c8ff3d;
  --fh-orange: #ff6b35;
  --fh-cream: #f5f3e9;
  --fh-white: #fffefa;
  --fh-ink: #071a38;
  --bg: #061a3a;
  --panel: #0a224b;
  --panel-2: #0d2b5d;
  --panel-3: #123672;
  --text: #fffefa;
  --muted: #b8c4d8;
  --muted-2: #7f91ae;
  --gold: #225cff;
  --gold-2: #c8ff3d;
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(200,255,61,.3);
}

html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  max-width: 100%;
  overflow-x: clip;
  color: var(--fh-white);
  background:
    radial-gradient(circle at 82% -10%, rgba(34,92,255,.28), transparent 30%),
    radial-gradient(circle at -15% 35%, rgba(200,255,61,.07), transparent 24%),
    var(--fh-navy);
  font-family: 'DM Sans', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.16) .7px, transparent .7px);
  background-size: 18px 18px;
}

h1, h2, h3, h4, .brand, .btn, .nav-link { font-family: 'Space Grotesk', sans-serif; }
.site-shell { width: min(calc(100% - 40px), 1280px); padding-top: 16px; }
main { gap: 24px; }

/* Shared navigation */
.topbar {
  top: 12px;
  min-height: 72px;
  margin-bottom: 24px;
  padding: 12px 15px 12px 18px;
  border: 1px solid rgba(200,255,61,.2);
  border-radius: 18px;
  background: rgba(6,26,58,.88);
  box-shadow: 0 16px 48px rgba(0,0,0,.24);
}
.brand { gap: 11px; font-weight: 700; line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.brand-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid var(--fh-lime);
  border-radius: 50%;
  color: transparent;
  background: transparent;
  overflow: hidden;
}
.brand-icon::before, .brand-icon::after { content: ''; position: absolute; left: 50%; top: 50%; background: var(--fh-lime); transform: translate(-50%,-50%); }
.brand-icon::before { width: 14px; height: 2px; }
.brand-icon::after { width: 2px; height: 14px; }
.nav { gap: 5px; }
.nav-link { padding: 10px 12px; color: rgba(255,255,255,.68); font-size: 13px; }
.nav-link:hover, .nav-link:focus-visible { color: white; background: rgba(255,255,255,.07); }
.nav-link--active { color: var(--fh-lime); background: rgba(200,255,61,.07); }
.nav-link--button {
  color: var(--fh-ink);
  background: var(--fh-lime);
  box-shadow: none;
  font-weight: 700;
}
.nav-link--button:hover, .nav-link--button:focus-visible { color: var(--fh-ink); background: #d7ff75; }
.nav-toggle { border-color: rgba(200,255,61,.25); background: rgba(200,255,61,.06); }
.nav-toggle span { background: var(--fh-lime); }

/* Shared surfaces and typography */
.section-card, .card-glass,
.faq-surface, .privacy-surface, .terms-surface, .contact-surface,
.login-panel, .login-side, .forgot-panel, .forgot-side, .reset-panel, .reset-side,
.success-panel, .success-side, .billing-panel, .billing-side, .cancel-panel, .cancel-side,
.account-panel, .account-side__block, .course-sidebar, .course-content {
  border-color: rgba(255,255,255,.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(9,34,74,.94);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}
.section-card, .faq-surface, .privacy-surface, .terms-surface, .contact-surface { border-radius: 25px; }
.card-glass { border-radius: 19px; }
.section-card--hero { position: relative; padding: 22px; border-color: rgba(34,92,255,.45); overflow: hidden; }
.section-card--hero::before,
.faq-hero::before, .privacy-hero::before, .terms-hero::before, .contact-hero::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -95px;
  top: -95px;
  border: 1px solid rgba(200,255,61,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(200,255,61,.025), 0 0 0 68px rgba(200,255,61,.02);
  pointer-events: none;
}
.hero h1, .faq-hero h1, .privacy-hero h1, .terms-hero h1, .contact-hero h1,
.inside-hero h1, .examples-hero h1, .login-hero h1, .forgot-hero h1,
.reset-hero h1, .success-hero h1, .billing-hero h1, .cancel-hero h1, .account-hero h1 {
  max-width: 13ch;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero p, .faq-hero p, .privacy-hero p, .terms-hero p, .contact-hero p,
.inside-hero p, .examples-hero p, .login-hero p, .forgot-hero p,
.reset-hero p, .success-hero p, .billing-hero p, .cancel-hero p, .account-hero p { color: rgba(255,255,255,.68); }
.eyebrow, .account-kicker, .course-article__meta {
  color: var(--fh-lime);
  border-color: rgba(200,255,61,.28);
  background: rgba(200,255,61,.07);
  font-family: 'Space Grotesk', sans-serif;
}
.hero-media, .faq-hero__media, .privacy-hero__media, .terms-hero__media, .contact-hero__media,
.inside-hero__media, .examples-hero__media, .login-hero__media, .forgot-hero__media,
.reset-hero__media, .success-hero__media, .billing-hero__media, .cancel-hero__media, .account-hero__media {
  border: 2px solid rgba(200,255,61,.18);
  border-radius: 18px;
  box-shadow: 10px 10px 0 rgba(34,92,255,.42);
}
.media-placeholder { border-color: rgba(200,255,61,.18); background: var(--fh-navy-2); }
.media-placeholder::before { opacity: .1; }

/* Actions and form controls */
.btn { border-radius: 11px; }
.btn-primary {
  color: white;
  background: var(--fh-blue);
  box-shadow: 0 9px 0 rgba(0,0,0,.2);
}
.btn-primary:hover, .btn-primary:focus-visible { color: white; background: #386dff; transform: translateY(2px); box-shadow: 0 6px 0 rgba(0,0,0,.22); }
.account-secondary-btn, .billing-secondary-btn, .cancel-secondary-btn, .success-secondary-btn, .examples-secondary-btn, .inside-secondary-btn {
  border-color: rgba(200,255,61,.3);
  color: var(--fh-lime);
  background: rgba(200,255,61,.06);
}
.login-field input, .forgot-field input, .reset-field input, .success-field input,
.contact-field input, .contact-field textarea {
  border-color: rgba(255,255,255,.18);
  color: white;
  background: rgba(255,255,255,.055);
}
.login-field input:focus, .forgot-field input:focus, .reset-field input:focus, .success-field input:focus,
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--fh-lime); box-shadow: 0 0 0 3px rgba(200,255,61,.08); }
.login-field input::placeholder, .forgot-field input::placeholder, .reset-field input::placeholder,
.success-field input::placeholder, .contact-field input::placeholder, .contact-field textarea::placeholder { color: rgba(255,255,255,.35); }
.success-link, .login-field__helper { color: var(--fh-lime); }
.contact-info-block a { color: var(--fh-lime); font-weight: 700; }

/* Marketing and information pages */
.inside-section, .examples-intro, .faq-section, .privacy-section, .terms-section, .contact-main { padding: clamp(22px, 3vw, 35px); }
.inside-highlight-card, .inside-method-card, .inside-fit-item, .example-card, .faq-item, .privacy-item, .terms-item,
.contact-form-card, .contact-side-card, .login-side__block, .forgot-side__block, .reset-side__block,
.success-side__block, .billing-side__block, .cancel-side__block {
  border-color: rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
}
.inside-highlight-card:nth-child(3n+1), .inside-method-card:nth-child(3n+1) { border-top: 3px solid var(--fh-blue); }
.inside-highlight-card:nth-child(3n+2), .inside-method-card:nth-child(3n+2) { border-top: 3px solid var(--fh-lime); }
.inside-highlight-card:nth-child(3n+3), .inside-method-card:nth-child(3n+3) { border-top: 3px solid var(--fh-orange); }
.module-card { position: relative; border-color: rgba(255,255,255,.14); overflow: hidden; }
.module-card::after { content: ''; position: absolute; right: -30px; bottom: -30px; width: 90px; height: 90px; border-radius: 50%; background: rgba(34,92,255,.15); }
.module-badge { color: var(--fh-ink); border: 0; background: var(--fh-lime); }
.module-card li::before, .pricing-card li::before { color: var(--fh-lime); }
.example-card__labels span:first-child { color: var(--fh-white); background: var(--fh-orange); }
.example-card__labels span:last-child { color: var(--fh-ink); background: var(--fh-lime); }
.examples-intro__stats strong { color: var(--fh-lime); }
.faq-question, .privacy-question, .terms-question { color: white; background: transparent; }
.faq-dot, .privacy-dot, .terms-dot { color: var(--fh-lime); }
.faq-plus, .privacy-plus, .terms-plus { color: var(--fh-ink); background: var(--fh-lime); }
.faq-answer__inner, .privacy-answer__inner, .terms-answer__inner { color: rgba(255,255,255,.68); }
.pricing-card.card-glass--gold { border-color: var(--fh-lime); background: linear-gradient(145deg, rgba(34,92,255,.25), rgba(200,255,61,.06)), var(--fh-navy-2); box-shadow: 9px 9px 0 rgba(200,255,61,.8); }
.pricing-badge { color: var(--fh-ink); border: 0; background: var(--fh-lime); }
.pricing-main strong { color: white; }
.pricing-main span { color: var(--fh-lime); }
.fh-commerce-note { display: block; margin-top: 16px; color: rgba(255,255,255,.54); font-size: 11px; line-height: 1.5; }
.examples-cta__actions .fh-commerce-note { max-width: 270px; text-align: center; }

/* Account and course application */
.account-stat-card, .account-progress-card, .account-billing-item, .account-empty-card,
.account-link-card, .course-status-card, .course-module, .course-block {
  border-color: rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
}
.account-stat-card:nth-child(4n+1) { border-top: 3px solid var(--fh-blue); }
.account-stat-card:nth-child(4n+2) { border-top: 3px solid var(--fh-orange); }
.account-stat-card:nth-child(4n+3) { border-top: 3px solid var(--fh-lime); }
.account-stat-card:nth-child(4n+4) { border-top: 3px solid white; }
.account-stat-card strong, .course-progress__head strong { color: var(--fh-lime); }
.account-badge, .account-progress-chip { color: var(--fh-ink); border: 0; background: var(--fh-lime); }
.course-progress__bar { background: rgba(255,255,255,.1); }
.course-progress__bar span { background: linear-gradient(90deg, var(--fh-blue), var(--fh-lime)); }
.course-module__trigger { color: white; }
.course-module--open { border-color: rgba(200,255,61,.35); background: rgba(200,255,61,.045); }
.course-module__icon { color: var(--fh-lime); }
.course-lesson { color: rgba(255,255,255,.62); }
.course-lesson:hover, .course-lesson--active { color: white; background: rgba(34,92,255,.18); }
.course-lesson__status { border-color: rgba(200,255,61,.5); }
.course-lesson--completed .course-lesson__status { border-color: var(--fh-lime); background: var(--fh-lime); }
.course-content { min-width: 0; }
.course-article h1 { color: white; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.05em; }
.course-block__body { color: rgba(255,255,255,.75); }
.course-block__body h3, .course-block__body strong { color: white; }
.course-image-box { border-color: rgba(200,255,61,.18); background: var(--fh-navy); }
.course-status-card__icon { color: var(--fh-ink); background: var(--fh-lime); }
.course-status-card__button { color: white; border-color: var(--fh-blue); background: var(--fh-blue); }
.course-nav__btn { border-color: rgba(200,255,61,.25); color: white; background: rgba(255,255,255,.04); }
.course-nav__btn--next { color: var(--fh-ink); background: var(--fh-lime); }

/* Status pages */
.success-state--gold, .account-kicker { color: var(--fh-lime); }
.success-state--gold .success-state__dot { background: var(--fh-lime); }
.success-state--ok .success-state__dot { background: var(--fh-lime); }
.success-state--error .success-state__dot { background: var(--fh-orange); }
.success-inline-card, .success-waiting-box, .login-error-box, .forgot-error-box, .reset-error-box,
.forgot-success-box, .reset-success-box, .billing-note, .billing-reason {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
}

/* Checkout and application modal */
.ppm-wallet-modal__panel, .app-modal__dialog {
  border-color: rgba(200,255,61,.28) !important;
  background: radial-gradient(circle at top, rgba(34,92,255,.28), transparent 34%), var(--fh-navy) !important;
}
.ppm-wallet-modal__eyebrow, .app-modal__eyebrow { color: var(--fh-lime) !important; border-color: rgba(200,255,61,.35) !important; background: rgba(200,255,61,.08) !important; }
.ppm-wallet-modal__summary > strong { color: var(--fh-lime) !important; }
.ppm-wallet-modal__submit, .app-modal__button { color: var(--fh-ink) !important; background: var(--fh-lime) !important; box-shadow: none !important; }
.ppm-wallet-modal__note a { color: var(--fh-lime); text-decoration: underline; }

/* Footer */
.footer { margin-top: 24px; padding: 34px 8px 18px; border-top: 1px solid rgba(255,255,255,.12); }
.footer .brand-icon { width: 34px; height: 34px; }
.footer-nav, .footer-social { color: rgba(255,255,255,.58); }
.footer-nav a:hover, .footer-social a:hover { color: var(--fh-lime); }
.footer-legal { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.42); }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--fh-lime); outline-offset: 3px; }

@media (max-width: 1024px) {
  .nav { background: rgba(6,26,58,.98); border-color: rgba(200,255,61,.2); }
  .course-layout { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
}

@media (max-width: 768px) {
  .site-shell { width: min(calc(100% - 18px), 1280px); }
  .topbar { min-height: 64px; }
  .section-card--hero { padding: 15px; }
  .hero h1, .faq-hero h1, .privacy-hero h1, .terms-hero h1, .contact-hero h1,
  .inside-hero h1, .examples-hero h1, .login-hero h1, .forgot-hero h1,
  .reset-hero h1, .success-hero h1, .billing-hero h1, .cancel-hero h1, .account-hero h1 { max-width: none; font-size: clamp(39px, 12vw, 57px); }
  .hero-media, .faq-hero__media, .privacy-hero__media, .terms-hero__media, .contact-hero__media,
  .inside-hero__media, .examples-hero__media, .login-hero__media, .forgot-hero__media,
  .reset-hero__media, .success-hero__media, .billing-hero__media, .cancel-hero__media, .account-hero__media { box-shadow: 6px 6px 0 rgba(34,92,255,.42); }
  .footer { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   Frame Habit editorial system — internal pages
   The legacy markup remains in place so account, course and checkout flows
   keep working, while the visual hierarchy now follows the approved homepage.
   -------------------------------------------------------------------------- */

.topbar {
  z-index: 100;
  width: 100%;
  border: 2px solid rgba(255,255,255,.12);
  background: rgba(6,26,58,.96);
  backdrop-filter: blur(18px);
}
.brand { color: var(--fh-white); }
.topbar .brand { min-width: max-content; }
.brand-icon { flex: 0 0 auto; }
.nav-link--ghost { margin-left: 5px; }
.nav-user { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.inside-page, .examples-page, .faq-page, .contact-page, .terms-page, .privacy-page,
.login-page, .forgot-page, .reset-page, .account-page {
  gap: 28px;
}

/* Make every visual asset sit above the old placeholder treatment. */
.media-placeholder { position: relative; isolation: isolate; overflow: hidden; }
.media-placeholder::before { z-index: -1 !important; }
.media-placeholder img { position: relative; z-index: 2; display: block; opacity: 1 !important; }

/* Inside the course: an editorial journey rather than a dark card stack. */
.inside-page .inside-hero {
  min-height: 640px;
  padding: clamp(28px, 4vw, 58px);
  border: 2px solid var(--fh-ink);
  color: var(--fh-ink);
  background: var(--fh-cream);
  box-shadow: 12px 12px 0 var(--fh-blue);
}
.inside-page .inside-hero::before { border-color: rgba(34,92,255,.35); box-shadow: 0 0 0 42px rgba(34,92,255,.04), 0 0 0 84px rgba(34,92,255,.025); }
.inside-page .inside-hero h1 { max-width: 9.2ch; color: var(--fh-ink); font-size: clamp(58px, 7vw, 96px); }
.inside-page .inside-hero .hero-copy > p { max-width: 51ch; color: rgba(7,26,56,.7); font-size: 18px; }
.inside-page .inside-hero .eyebrow { color: white; border: 0; background: var(--fh-orange); }
.inside-page .inside-hero__media { min-height: 520px; border: 2px solid var(--fh-ink); box-shadow: 12px 12px 0 var(--fh-lime); }
.inside-page .inside-hero__media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.inside-page .course-status-card { color: white; border: 0; background: var(--fh-navy); }
.inside-page .course-status-card__label { color: rgba(255,255,255,.6) !important; }
.inside-page .course-status-card__button { color: var(--fh-ink); border: 0; background: var(--fh-lime); }

.inside-page > .inside-section:nth-of-type(2) {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-lime);
  box-shadow: 10px 10px 0 var(--fh-orange);
}
.inside-page > .inside-section:nth-of-type(2) .section-heading p { color: rgba(7,26,56,.7); }
.inside-page > .inside-section:nth-of-type(2) .mini-stat {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-cream);
  box-shadow: none;
}
.inside-page > .inside-section:nth-of-type(2) .mini-stat:nth-child(2) { color: white; background: var(--fh-blue); }
.inside-page > .inside-section:nth-of-type(2) .mini-stat:nth-child(3) { color: white; background: var(--fh-navy); }
.inside-page > .inside-section:nth-of-type(2) .mini-stat:nth-child(4) { background: var(--fh-orange); }
.inside-page > .inside-section:nth-of-type(2) .mini-stat:nth-child(5) { background: white; }
.inside-page > .inside-section:nth-of-type(2) .mini-stat strong,
.inside-page > .inside-section:nth-of-type(2) .mini-stat h3 { color: currentColor; }
.inside-page > .inside-section:nth-of-type(2) .mini-stat p { color: currentColor; opacity: .68; }
.inside-page > .inside-section:nth-of-type(2) .mini-stat__icon { color: currentColor; border-color: currentColor; }

.inside-page > .inside-section:nth-of-type(3) {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-orange);
}
.inside-page > .inside-section:nth-of-type(3) .section-heading p { color: rgba(7,26,56,.7); }
.inside-method-grid { gap: 14px; }
.inside-page .inside-method-card {
  min-height: 220px;
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-cream);
  box-shadow: 7px 7px 0 var(--fh-navy);
}
.inside-page .inside-method-card:nth-child(2) { color: white; background: var(--fh-blue); }
.inside-page .inside-method-card:nth-child(3) { background: var(--fh-lime); }
.inside-page .inside-method-card:nth-child(4) { color: white; background: var(--fh-navy); box-shadow-color: var(--fh-lime); }
.inside-page .inside-method-card p { color: currentColor; opacity: .7; }
.inside-method-card__step { color: currentColor; opacity: .55; }

.inside-page > .modules-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.inside-page .module-card {
  min-height: 315px;
  padding: 30px;
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-cream);
  box-shadow: 8px 8px 0 var(--fh-blue);
}
.inside-page .module-card:nth-child(4n+2) { color: white; background: var(--fh-blue); box-shadow-color: var(--fh-lime); }
.inside-page .module-card:nth-child(4n+3) { background: var(--fh-lime); box-shadow-color: var(--fh-orange); }
.inside-page .module-card:nth-child(4n+4) { color: white; background: var(--fh-navy); box-shadow-color: var(--fh-orange); }
.inside-page .module-card::after { width: 120px; height: 120px; background: currentColor; opacity: .055; }
.inside-page .module-card__head h3, .inside-page .module-card__head span,
.inside-page .module-card li { color: currentColor; }
.inside-page .module-card__head h3 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -.045em; }
.inside-page .module-card__head span { opacity: .6; }
.inside-page .module-card li { border-color: currentColor; opacity: .78; }
.inside-page .module-card li::before { color: var(--fh-orange); }
.inside-page .module-card:nth-child(4n+2) li::before,
.inside-page .module-card:nth-child(4n+4) li::before { color: var(--fh-lime); }

.inside-page > .inside-highlights-section {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-cream);
}
.inside-page .inside-highlight-card { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: white; }
.inside-page .inside-highlight-card:nth-child(2) { color: white; background: var(--fh-blue); }
.inside-page .inside-highlight-card:nth-child(3) { background: var(--fh-lime); }
.inside-page .inside-highlight-card p { color: currentColor; opacity: .68; }

.inside-page .bottom-grid { grid-template-columns: 1.2fr .8fr; gap: 22px; }
.inside-page .inside-fit-card { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-orange); box-shadow: none; }
.inside-page .inside-fit-head p, .inside-page .inside-fit-item p { color: rgba(7,26,56,.7); }
.inside-page .inside-fit-item { border: 2px solid var(--fh-ink); background: var(--fh-cream); }
.inside-page .inside-fit-item__icon { color: white; background: var(--fh-blue); }
.inside-page .pricing-card { color: var(--fh-ink); border: 2px solid var(--fh-ink) !important; background: var(--fh-lime) !important; box-shadow: 10px 10px 0 var(--fh-blue) !important; }
.inside-page .pricing-main strong, .inside-page .pricing-main span { color: var(--fh-ink); }
.inside-page .pricing-card p, .inside-page .pricing-card .fh-commerce-note { color: rgba(7,26,56,.7); }
.inside-page .pricing-card li { color: var(--fh-ink); }
.inside-page .pricing-card li::before { color: var(--fh-blue); }
.inside-page .pricing-badge { color: white; background: var(--fh-orange); }
.inside-page .cta-card { grid-column: 1 / -1; color: white; border: 2px solid var(--fh-lime); background: var(--fh-blue); }

/* Inside the course — visual learning layer */
.inside-page .inside-hero__media { position: relative; overflow: visible; }
.inside-page .inside-hero__media img { border-radius: inherit; }
.inside-hero__signal {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--fh-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid var(--fh-ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--fh-ink);
}
.inside-hero__signal span { font-size: 18px; line-height: 1; }
.inside-hero__signal--light { top: 28px; left: -28px; background: var(--fh-lime); }
.inside-hero__signal--frame { right: -24px; bottom: 92px; background: var(--fh-orange); }
.inside-hero__signal--edit { right: 26px; bottom: -18px; color: white; background: var(--fh-blue); }

.inside-results-showcase {
  padding: clamp(28px, 5vw, 64px);
  color: white;
  border: 2px solid var(--fh-lime);
  background: var(--fh-navy);
  box-shadow: 10px 10px 0 var(--fh-orange);
}
.inside-results-showcase__intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: 34px;
}
.inside-results-showcase .eyebrow { color: var(--fh-ink); border: 0; background: var(--fh-lime); }
.inside-results-showcase h2 { max-width: 10ch; margin: 16px 0 0; color: white; font-size: clamp(48px, 6vw, 86px); line-height: .9; letter-spacing: -.055em; }
.inside-results-showcase__intro p { margin: 0 0 22px; color: rgba(255,255,255,.7); font-size: 17px; }
.inside-results-link { display: inline-flex; gap: 10px; align-items: center; color: var(--fh-lime); font-weight: 900; text-decoration: none; border-bottom: 2px solid currentColor; }
.inside-results-link span { font-size: 20px; }
.inside-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.inside-result-card { overflow: hidden; color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); }
.inside-result-card:nth-child(2) { transform: translateY(18px); background: var(--fh-lime); }
.inside-result-card:nth-child(3) { background: var(--fh-orange); }
.inside-result-card__image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 2px solid var(--fh-ink); background: #ddd; }
.inside-result-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inside-result-card__label { position: absolute; top: 12px; left: 12px; padding: 7px 10px; color: white; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; border: 2px solid var(--fh-ink); background: var(--fh-blue); }
.inside-result-card__copy { display: flex; gap: 14px; align-items: flex-start; padding: 20px; }
.inside-result-card__icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; color: white; font-size: 20px; border: 2px solid var(--fh-ink); border-radius: 50%; background: var(--fh-blue); }
.inside-result-card h3 { margin: 1px 0 6px; color: var(--fh-ink); font-size: 22px; }
.inside-result-card p { margin: 0; color: rgba(7,26,56,.7); font-size: 14px; line-height: 1.45; }

.inside-page .module-card { padding: 22px; }
.module-card__preview { position: relative; overflow: hidden; margin: 20px 0; border: 2px solid currentColor; background: rgba(255,255,255,.28); }
.module-card__preview img { display: block; width: 100%; aspect-ratio: 16 / 8.4; object-fit: cover; transition: transform .45s ease; }
.module-card:hover .module-card__preview img { transform: scale(1.025); }
.module-card__preview figcaption { display: flex; gap: 9px; align-items: center; padding: 11px 13px; color: inherit; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; border-top: 2px solid currentColor; }
.module-card__preview figcaption span { font-size: 18px; }
.inside-page .module-card:nth-child(4n+2) .module-card__preview,
.inside-page .module-card:nth-child(4n+3) .module-card__preview { background: rgba(7,26,56,.12); }
.inside-highlight-card__icon { display: grid; width: 48px; height: 48px; margin-bottom: 28px; place-items: center; color: white; font-size: 13px; font-weight: 900; border: 2px solid var(--fh-ink); border-radius: 50%; background: var(--fh-blue); }
.inside-page .inside-highlight-card:nth-child(2) .inside-highlight-card__icon { color: var(--fh-ink); background: var(--fh-orange); }
.inside-page .inside-highlight-card:nth-child(3) .inside-highlight-card__icon { background: var(--fh-navy); }

/* Results page */
.examples-page .examples-hero { color: white; border: 2px solid var(--fh-lime); background: var(--fh-blue); box-shadow: 12px 12px 0 var(--fh-lime); }
.examples-page .examples-hero h1 { max-width: 11ch; color: white; }
.examples-page .examples-hero p { color: rgba(255,255,255,.76); }
.examples-page .success-inline-card { border: 2px solid rgba(255,255,255,.35); background: rgba(6,26,58,.3); }
.examples-page .examples-intro { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-lime); box-shadow: 10px 10px 0 var(--fh-orange); }
.examples-page .examples-intro__copy p { color: rgba(7,26,56,.7); }
.examples-page .mini-stat { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); box-shadow: none; }
.examples-page .mini-stat strong, .examples-page .mini-stat h3 { color: var(--fh-ink); }
.examples-page .mini-stat p { color: rgba(7,26,56,.65); }
.examples-page .examples-grid { gap: 22px; }
.examples-page .example-card { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); box-shadow: 8px 8px 0 var(--fh-blue); }
.examples-page .example-card:nth-child(3n+2) { box-shadow-color: var(--fh-orange); }
.examples-page .example-card:nth-child(3n+3) { box-shadow-color: var(--fh-lime); }
.examples-page .example-card__body p { color: rgba(7,26,56,.68); }

/* FAQ and legal pages */
.faq-page .faq-hero { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-orange); box-shadow: 10px 10px 0 var(--fh-lime); }
.faq-page .faq-hero h1 { color: var(--fh-ink); font-size: clamp(56px, 7vw, 92px); }
.faq-page .faq-hero p { color: rgba(7,26,56,.72); }
.faq-page .faq-section { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); }
.faq-page .faq-section:nth-of-type(3) { background: var(--fh-lime); }
.faq-page .faq-section:nth-of-type(4) { color: white; background: var(--fh-blue); }
.faq-page .faq-item { border-color: currentColor; background: rgba(255,255,255,.3); }
.faq-page .faq-question { color: currentColor; }
.faq-page .faq-answer__inner { color: currentColor; opacity: .72; }
.faq-page .faq-dot { color: var(--fh-orange); }
.faq-page .faq-plus { color: white; background: var(--fh-blue); }
.faq-page .faq-section:nth-of-type(4) .faq-plus { color: var(--fh-ink); background: var(--fh-lime); }
.faq-page .faq-contact-card { border: 2px solid var(--fh-ink); color: var(--fh-ink); background: var(--fh-orange); }

.terms-page .terms-hero, .privacy-page .privacy-hero { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-lime); box-shadow: 10px 10px 0 var(--fh-blue); }
.terms-page .terms-hero h1, .privacy-page .privacy-hero h1 { color: var(--fh-ink); font-size: clamp(58px, 7vw, 94px); }
.terms-page .terms-hero p, .privacy-page .privacy-hero p { color: rgba(7,26,56,.7); }
.terms-page .terms-section, .privacy-page .privacy-section { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); }
.terms-page .terms-item, .privacy-page .privacy-item { border-color: var(--fh-ink); background: white; }
.terms-page .terms-question, .privacy-page .privacy-question { color: var(--fh-ink); }
.terms-page .terms-answer__inner, .privacy-page .privacy-answer__inner { color: rgba(7,26,56,.72); }

/* Contact */
.contact-page .contact-hero { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-lime); box-shadow: 10px 10px 0 var(--fh-orange); }
.contact-page .contact-hero h1 { color: var(--fh-ink); font-size: clamp(62px, 8vw, 108px); }
.contact-page .contact-hero p { color: rgba(7,26,56,.7); }
.contact-page .contact-main { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-orange); }
.contact-page .contact-form-card { border: 2px solid var(--fh-ink); background: var(--fh-cream); }
.contact-page .contact-form-card__intro p, .contact-page .contact-form__actions p { color: rgba(7,26,56,.68); }
.contact-page .contact-field input, .contact-page .contact-field textarea { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: white; }
.contact-page .contact-field input::placeholder, .contact-page .contact-field textarea::placeholder { color: rgba(7,26,56,.42); }
.contact-page .contact-side-card { color: white; border: 2px solid var(--fh-lime); background: var(--fh-navy); box-shadow: 9px 9px 0 var(--fh-blue); }
.contact-page .contact-info-block p { color: rgba(255,255,255,.68); }

/* Access, account and learning application */
.login-page .login-hero, .forgot-page .forgot-hero, .reset-page .reset-hero,
.account-page .account-hero {
  border: 2px solid var(--fh-lime);
  background: var(--fh-blue);
  box-shadow: 10px 10px 0 var(--fh-lime);
}
.login-page .login-panel, .forgot-page .forgot-panel, .reset-page .reset-panel,
.account-page .account-panel { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); }
.login-page .login-main-grid { width: 100%; grid-template-columns: minmax(0, 1fr) minmax(300px, 360px); }
.login-page .login-panel, .login-page .login-side { min-width: 0; }
.login-page .login-panel__head h2,
.login-page .login-field label { color: var(--fh-ink); }
.login-page .login-field label { font-weight: 800; }
.login-page .success-state { color: var(--fh-blue); border-color: rgba(7,26,56,.2); background: rgba(255,255,255,.45); }
.login-page .success-state__dot { background: var(--fh-blue); box-shadow: 0 0 0 5px rgba(34,92,255,.12); }
.login-page .login-panel input, .forgot-page .forgot-panel input, .reset-page .reset-panel input {
  color: var(--fh-ink); border: 2px solid var(--fh-ink); background: white;
}
.login-page .login-panel input::placeholder, .forgot-page .forgot-panel input::placeholder,
.reset-page .reset-panel input::placeholder { color: rgba(7,26,56,.4); }
.login-page .login-panel p, .forgot-page .forgot-panel p, .reset-page .reset-panel p { color: rgba(7,26,56,.68); }
.login-page .login-field__helper {
  padding: 5px 9px;
  color: var(--fh-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 7px;
}
.login-page .login-field__helper:hover,
.login-page .login-field__helper:focus-visible { color: white; text-decoration: none; background: var(--fh-blue); outline: 2px solid var(--fh-ink); }
.login-recovery-card {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
  padding: 14px 16px;
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-lime);
  box-shadow: 4px 4px 0 var(--fh-blue);
}
.login-recovery-card__icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  font-size: 20px;
  font-weight: 900;
  border-radius: 50%;
  background: var(--fh-blue);
}
.login-recovery-card strong { display: block; margin-bottom: 2px; font-size: 13px; }
.login-recovery-card a { color: var(--fh-ink); font-size: 14px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.login-recovery-card a:hover, .login-recovery-card a:focus-visible { color: var(--fh-blue); }
.login-page .success-link, .forgot-page .success-link, .reset-page .success-link { color: var(--fh-blue); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.reset-back-link { display: block; margin-top: 10px; }
.login-page .login-side, .forgot-page .forgot-side, .reset-page .reset-side { border: 2px solid var(--fh-ink); background: var(--fh-orange); }
.login-page .login-side { overflow: hidden; }
.login-page .login-side__block h3 { color: var(--fh-ink); font-weight: 900; }
.login-page .login-side, .forgot-page .forgot-side, .reset-page .reset-side,
.login-page .login-side p, .forgot-page .forgot-side p, .reset-page .reset-side p,
.login-page .login-side li, .forgot-page .forgot-side li, .reset-page .reset-side li { color: var(--fh-ink); }
.login-page .login-side__block, .forgot-page .forgot-side__block, .reset-page .reset-side__block { border-color: var(--fh-ink); background: rgba(255,255,255,.28); }

.account-page .account-hero {
  color: var(--fh-ink);
  border-color: var(--fh-ink);
  background: var(--fh-lime);
  box-shadow: 10px 10px 0 var(--fh-blue);
}
.account-page .account-hero h1 { color: var(--fh-ink); }
.account-page .account-hero .hero-copy > p { color: rgba(7,26,56,.7); }
.account-page .account-hero .course-status-card { color: white; border: 0; background: var(--fh-navy); }
.account-page .account-main-grid { gap: 22px; }
.account-page .account-panel { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); box-shadow: 8px 8px 0 var(--fh-blue); }
.account-page .account-panel p { color: rgba(7,26,56,.68); }
.account-page .account-stat-card { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: white; }
.account-page .account-stat-card:nth-child(2) { color: white; background: var(--fh-blue); }
.account-page .account-stat-card:nth-child(3) { background: var(--fh-lime); }
.account-page .account-stat-card:nth-child(4) { color: white; background: var(--fh-navy); }
.account-page .account-stat-card strong, .account-page .account-stat-card p { color: currentColor; }
.account-page .account-stat-card p { opacity: .68; }
.account-page .account-progress-card, .account-page .account-billing-item,
.account-page .account-empty-card { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: white; }
.account-page .course-progress__bar { background: rgba(7,26,56,.12); }
.account-page .account-side__block { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-orange); box-shadow: 7px 7px 0 var(--fh-lime); }
.account-page .account-side__block:nth-child(2) { background: var(--fh-lime); box-shadow-color: var(--fh-blue); }
.account-page .account-side__block:nth-child(3) { color: white; background: var(--fh-navy); box-shadow-color: var(--fh-orange); }
.account-page .account-side__block p, .account-page .account-side__block li { color: currentColor; opacity: .75; }
.account-page .account-link-card { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); }

.course-page { gap: 28px; }
.course-page > .hero {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-orange);
  box-shadow: 10px 10px 0 var(--fh-lime);
}
.course-page > .hero h1 { color: var(--fh-ink); }
.course-page > .hero .hero-copy > p { color: rgba(7,26,56,.7); }
.course-layout { gap: 22px; }
.course-page .course-sidebar { border: 2px solid var(--fh-lime); background: var(--fh-navy); box-shadow: 8px 8px 0 var(--fh-blue); }
.course-page .course-content { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); box-shadow: 8px 8px 0 var(--fh-orange); }
.course-page .course-article h1, .course-page .course-block__body h3,
.course-page .course-block__body strong { color: var(--fh-ink); }
.course-page .course-article__duration, .course-page .course-block__body { color: rgba(7,26,56,.74); }
.course-page .course-block { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: white; }
.course-page .course-image-box { border: 2px solid var(--fh-ink); background: white; }
.course-page .course-status-card { color: white; border: 0; background: var(--fh-navy); }
.course-page .course-nav__btn { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: white; }
.course-page .course-nav__btn--next { background: var(--fh-lime); }

.success-page .success-hero, .billing-page .billing-hero, .cancel-page .cancel-hero {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: var(--fh-lime);
  box-shadow: 10px 10px 0 var(--fh-blue);
}
.success-page .success-hero h1, .billing-page .billing-hero h1, .cancel-page .cancel-hero h1 { color: var(--fh-ink); }
.success-page .success-hero p, .billing-page .billing-hero p, .cancel-page .cancel-hero p { color: rgba(7,26,56,.7); }
.success-page .success-panel, .billing-page .billing-panel, .cancel-page .cancel-panel { color: var(--fh-ink); border: 2px solid var(--fh-ink); background: var(--fh-cream); }
.success-page .success-panel p, .billing-page .billing-panel p, .cancel-page .cancel-panel p { color: rgba(7,26,56,.7); }
.success-page .success-side, .billing-page .billing-side, .cancel-page .cancel-side {
  border: 2px solid var(--fh-ink);
  box-shadow: 8px 8px 0 var(--fh-orange);
}
.success-page .success-side { color: white; background: var(--fh-navy); box-shadow-color: var(--fh-lime); }
.billing-page .billing-side { color: var(--fh-ink); background: var(--fh-orange); box-shadow-color: var(--fh-lime); }
.cancel-page .cancel-side { color: white; background: var(--fh-blue); box-shadow-color: var(--fh-orange); }
.success-page .success-side p, .success-page .success-side li,
.billing-page .billing-side p, .billing-page .billing-side li,
.cancel-page .cancel-side p, .cancel-page .cancel-side li { color: currentColor; opacity: .76; }
.success-page .success-side__block, .billing-page .billing-side__block, .cancel-page .cancel-side__block {
  border-color: currentColor;
  background: rgba(255,255,255,.16);
}
.billing-page .billing-reason {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: white;
}
.billing-page .billing-reason:nth-child(2) { background: var(--fh-lime); }
.billing-page .billing-reason:nth-child(3) { color: white; background: var(--fh-blue); }
.billing-page .billing-reason p { color: currentColor; opacity: .7; }
.billing-page .billing-note, .cancel-page .success-inline-card, .success-page .success-inline-card,
.billing-page .success-inline-card { border: 2px solid var(--fh-ink); color: white; background: var(--fh-navy); }
.billing-page .billing-note p { color: white; }
.success-page .success-field input {
  color: var(--fh-ink);
  border: 2px solid var(--fh-ink);
  background: white;
}
.success-page .success-field input::placeholder { color: rgba(7,26,56,.42); }

.logout-page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}
.logout-page-shell__fallback {
  width: min(100%, 680px);
  padding: clamp(34px, 6vw, 72px);
  color: var(--fh-ink);
  text-align: center;
  border: 2px solid var(--fh-ink);
  background: var(--fh-lime);
  box-shadow: 12px 12px 0 var(--fh-blue);
}
.logout-page-shell__fallback h1 { margin: 18px 0; color: var(--fh-ink); font-size: clamp(50px, 8vw, 86px); line-height: .92; letter-spacing: -.06em; }
.logout-page-shell__fallback p:not(.eyebrow) { color: rgba(7,26,56,.68); }
.logout-page-shell__fallback .eyebrow { color: white; border: 0; background: var(--fh-orange); }

.footer { padding-top: 42px; }
.footer .brand { color: white; }

@media (max-width: 1180px) {
  .nav-link { padding-inline: 9px; font-size: 12px; }
  .nav-user { max-width: 100px; }
  .login-page .login-main-grid { grid-template-columns: 1fr; }
  .login-page .login-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .inside-page .inside-hero { min-height: 0; }
  .inside-page .inside-hero__media, .inside-page .inside-hero__media img { min-height: 400px; }
  .inside-page .bottom-grid { grid-template-columns: 1fr; }
  .inside-page .cta-card { grid-column: auto; }
  .inside-results-showcase__intro { grid-template-columns: 1fr; }
  .inside-results-grid { grid-template-columns: 1fr 1fr; }
  .inside-result-card:nth-child(2) { transform: none; }
}

@media (max-width: 768px) {
  .inside-page .inside-hero { padding: 22px; box-shadow: 7px 7px 0 var(--fh-blue); }
  .inside-page .inside-hero h1 { font-size: clamp(49px, 14vw, 72px); }
  .inside-page > .modules-grid { grid-template-columns: 1fr; }
  .inside-page .module-card { min-height: 0; padding: 24px; box-shadow: 6px 6px 0 var(--fh-blue); }
  .inside-hero__signal { padding: 8px 10px; font-size: 9px; box-shadow: 3px 3px 0 var(--fh-ink); }
  .inside-hero__signal--light { top: 18px; left: -10px; }
  .inside-hero__signal--frame { right: -8px; bottom: 70px; }
  .inside-hero__signal--edit { right: 14px; bottom: -12px; }
  .inside-results-showcase { padding: 24px; box-shadow: 6px 6px 0 var(--fh-orange); }
  .inside-results-showcase h2 { font-size: clamp(43px, 13vw, 64px); }
  .inside-results-grid { grid-template-columns: 1fr; }
  .module-card__preview img { aspect-ratio: 16 / 9; }
  .login-page .login-side { grid-template-columns: 1fr; }
  .examples-page .examples-hero, .faq-page .faq-hero, .contact-page .contact-hero,
  .terms-page .terms-hero, .privacy-page .privacy-hero { box-shadow: 6px 6px 0 var(--fh-lime); }
}
