:root {
  --bg: #ffffff;
  --bg-soft: #fff7f9;
  --surface: #ffffff;
  --surface-soft: #fff8fa;
  --text: #1b1220;
  --muted: #705b64;
  --line: #f0d4dd;
  --brand: #d5354d;
  --brand-strong: #bd2d44;
  --brand-soft: #fff0f4;
  --accent: #ffdce6;
  --danger: #9b2c2c;
  --success: #2f855a;
  --shadow: 0 16px 38px rgba(31, 18, 24, 0.08);
  --font-body: "Manrope", sans-serif;
  --font-display: "Sora", sans-serif;
  --font-ui: "Space Grotesk", sans-serif;
  --font-brand: "Syne", sans-serif;
  --font-hero: "Barlow Condensed", sans-serif;
  --font-accent: "Teko", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 6%, rgba(245, 156, 182, 0.24), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(204, 46, 103, 0.14), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #fff3f7 100%);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  font-family: var(--font-display);
  color: #20131a;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 2.5rem 0;
}

.section-compact {
  padding: 1rem 0 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--surface-soft) 0%, #ffeef4 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.kicker {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 0;
}

.nav-left {
  justify-self: start;
}

.brand {
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7e183c;
}

.nav-menu {
  display: flex;
  gap: 0.95rem;
  justify-self: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: #7f1d44;
  background: var(--brand-soft);
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.auth-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.auth-link:hover {
  color: var(--brand);
}

.auth-btn {
  text-decoration: none;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--brand) 0%, #df477c 100%);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
}

.auth-btn:hover {
  background: linear-gradient(120deg, var(--brand-strong) 0%, #ca2f63 100%);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.36rem 0.68rem;
  font: inherit;
  cursor: pointer;
}

.flash-wrap {
  display: grid;
  gap: 0.5rem;
}

.flash {
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.flash.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
}

.flash-success {
  border-color: #b5dcc7;
  background: #eefaf2;
}

.flash-warning,
.flash-error {
  border-color: #edc4d1;
  background: #fff0f4;
}

.hero-home {
  padding: 3.2rem 0 2.5rem;
  position: relative;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 134, 176, 0.18), transparent 35%),
    radial-gradient(circle at 6% 80%, rgba(202, 67, 117, 0.16), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}

.hero-grid h1 {
  font-size: clamp(2rem, 6vw, 3.7rem);
  max-width: 17ch;
}

.hero-actions {
  margin-top: 1.15rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric-value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #5f1332;
}

.metric-label {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.87rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff9fb 0%, #ffeaf1 100%);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.hero-panel-title {
  margin: 0 0 0.45rem;
  font-weight: 800;
  font-size: 1.08rem;
  color: #722242;
}

.hero-path {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.hero-path li + li {
  margin-top: 0.42rem;
}

.hero-panel .btn-secondary {
  margin-top: 1rem;
  display: inline-block;
}

.lp-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
}

.lp-hero-main {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 247, 0.92));
  box-shadow: 0 18px 42px rgba(163, 40, 88, 0.12);
  padding: clamp(1rem, 2.8vw, 1.7rem);
}

.lp-hero-main h1 {
  font-size: clamp(2.1rem, 6.6vw, 4rem);
  letter-spacing: -0.01em;
}

.lp-hero-main .lead {
  margin-top: 0.35rem;
}

.lp-hero-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-hero-tags span {
  display: inline-block;
  border: 1px solid #eec6d4;
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  background: #fff;
  color: #7f2446;
  font-weight: 700;
  font-size: 0.79rem;
}

.lp-hero-metrics > div {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.65rem;
}

.lp-hero-card {
  border: 1px solid #edcad8;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(117, 25, 60, 0.96) 0%, rgba(168, 39, 86, 0.95) 100%);
  box-shadow: 0 16px 40px rgba(126, 26, 64, 0.22);
  padding: 1.1rem;
  color: #fff3f7;
  position: relative;
  overflow: hidden;
}

.lp-hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.lp-hero-card-title {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.lp-hero-card .hero-path {
  color: #ffe0ea;
  position: relative;
  z-index: 1;
}

.lp-hero-card .btn-secondary {
  background: #fff;
  color: #7f1d44;
  position: relative;
  z-index: 1;
}

.lp-hero-card .btn-secondary:hover {
  background: #ffe8f0;
}

.lp-hero-cta {
  margin-top: 1rem;
}

.lp-proof-strip {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.lp-proof-strip article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem;
}

.lp-proof-title {
  margin: 0;
  font-weight: 800;
  color: #6b1b3a;
}

.lp-proof-copy {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.lp-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.lp-roadmap-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem;
  box-shadow: var(--shadow);
}

.lp-step {
  margin: 0 0 0.3rem;
  display: inline-block;
  border-radius: 999px;
  padding: 0.16rem 0.48rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a1f44;
  background: #ffe8f0;
}

.lp-roadmap-card p {
  color: var(--muted);
}

.lp-program-grid {
  margin-bottom: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp-program-card {
  border: 1px solid #efcfdb;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fff6fa 100%);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.lp-program-card p {
  color: var(--muted);
}

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.lp-testimonial-card {
  border: 1px solid #efcfdb;
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  position: relative;
}

.lp-testimonial-card::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffd5e5;
}

.lp-testimonial-highlight {
  background: linear-gradient(160deg, #fff7fb 0%, #ffeef5 100%);
  box-shadow: 0 16px 32px rgba(169, 35, 85, 0.12);
}

.lp-quote {
  color: #52333f;
  font-size: 1rem;
}

.lp-person {
  margin-top: 0.65rem;
  font-weight: 800;
  color: #782548;
}

.lp-faq-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 1.05rem;
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.lp-faq-grid details {
  border: 1px solid #f0d2dd;
  border-radius: 12px;
  background: #fff9fc;
  padding: 0.65rem 0.72rem;
}

.lp-faq-grid summary {
  font-weight: 800;
  color: #68213d;
  cursor: pointer;
}

.lp-faq-grid p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.lp-final-cta {
  border: 1px solid #f0d0dd;
  background: linear-gradient(130deg, #ffffff 0%, #ffeef5 55%, #ffdce8 100%);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.58rem 1rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand) 0%, #df477c 100%);
}

.btn-primary:hover {
  background: linear-gradient(120deg, var(--brand-strong) 0%, #ca2f63 100%);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(120deg, #2a1b21 0%, #50323d 100%);
}

.btn-secondary:hover {
  background: linear-gradient(120deg, #1e1418 0%, #422935 100%);
}

.btn-ghost {
  color: #6f1b3c;
  border: 1px solid var(--line);
  background: #fff;
}

.btn-ghost:hover {
  background: var(--brand-soft);
}

.section-head {
  margin-bottom: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.95rem;
  box-shadow: var(--shadow);
}

.feature-card p {
  color: var(--muted);
}

.course-preview-grid {
  margin-bottom: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.course-preview {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.course-preview p {
  color: var(--muted);
}

.course-tag {
  display: inline-block;
  margin: 0 0 0.32rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #7f1d44;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
  background: linear-gradient(120deg, #fff 0%, #fff1f6 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band h2 {
  margin-bottom: 0.2rem;
}

.cta-band-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 2.8rem 0 1.3rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  max-width: 18ch;
}

.about-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(231, 66, 89, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
}

.about-hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(90deg, #3edbb9 0%, #24c9de 100%);
  padding: 1.15rem 0 1.3rem;
}

.about-hero > .container {
  width: min(1380px, 96vw);
}

.about-hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(480px, 0.9fr);
  gap: 1.1rem;
  align-items: center;
  padding: clamp(1.15rem, 2.1vw, 1.8rem) clamp(1.15rem, 2.2vw, 1.7rem);
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(17, 13, 24, 0.14);
}

.about-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.7rem;
  padding: 0.26rem 0.62rem;
  border: 1px solid rgba(255, 199, 212, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffb8c6;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-chip-light {
  background: var(--brand-soft);
  border-color: #f0d4dd;
  color: #8a2844;
}

.about-hero-copy {
  padding-left: 0.3rem;
}

.about-hero-copy h1 {
  max-width: 11.1ch;
  margin: 0;
  color: #151024;
  font-family: var(--font-body);
  font-size: clamp(2.45rem, 4.8vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.about-hero-lead {
  margin-top: 0.55rem;
  max-width: 38rem;
  color: #595465;
  font-size: 0.98rem;
  line-height: 1.64;
}

.about-hero-watch {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 56px;
  margin-top: 0.82rem;
  padding: 0.5rem 1.24rem 0.5rem 0.68rem;
  border: 0;
  border-radius: 0;
  background: #17112b;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 28px rgba(23, 17, 43, 0.18);
  cursor: pointer;
}

.about-hero-watch:hover {
  background: #0f0a1c;
}

.about-hero-watch-icon {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 6px 12px rgba(14, 11, 20, 0.18));
}

.about-hero-watch-icon::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #17112b;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: 0;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-btn-solid {
  background: linear-gradient(135deg, var(--brand), #e74259);
  color: #ffffff;
}

.about-btn-solid:hover {
  background: linear-gradient(135deg, var(--brand-strong), #d83851);
}

.about-btn-outline {
  border: 1px solid rgba(255, 220, 228, 0.42);
  color: #fff4f7;
  background: rgba(255, 255, 255, 0.05);
}

.about-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-hero-media {
  position: relative;
  min-height: 16.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.15rem 0.05rem 0.15rem;
}

.about-hero-media-button {
  display: block;
  position: relative;
  z-index: 3;
  width: min(100%, 34rem);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.about-hero-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 20px 34px rgba(25, 16, 36, 0.18);
  background: #1c1430;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-hero-media-button:hover .about-hero-media-card {
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(25, 16, 36, 0.24);
}

.about-hero-watch:focus-visible,
.about-hero-media-button:focus-visible,
.video-modal-close:focus-visible {
  outline: 3px solid rgba(36, 201, 222, 0.72);
  outline-offset: 4px;
}

.about-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.about-hero-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 6rem;
  height: 6rem;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 18px rgba(14, 11, 20, 0.28));
}

.about-hero-play::before {
  content: "";
  position: absolute;
  left: 2.42rem;
  top: 2rem;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.5rem solid #ffffff;
}

.about-hero-corner-flag {
  position: absolute;
  left: 1.2rem;
  top: 3.45rem;
  z-index: 4;
  width: 5.2rem;
  height: 5.2rem;
  background: transparent;
  clip-path: none;
}

.about-hero-corner-icon {
  position: absolute;
  left: 0.8rem;
  top: 0.72rem;
  width: 1.42rem;
  height: 1.42rem;
}

.about-hero-corner-icon::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.33rem;
  border-top: 0.28rem solid transparent;
  border-bottom: 0.28rem solid transparent;
  border-left: 0.44rem solid #ffffff;
}

.about-hero-triangle,
.about-hero-dots {
  position: absolute;
  z-index: 1;
}

.about-hero-triangle {
  background: linear-gradient(135deg, rgba(42, 225, 226, 0.84), rgba(53, 233, 198, 0.7));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.about-hero-triangle-top {
  right: 3.8rem;
  top: 1.2rem;
  width: 9rem;
  height: 8rem;
}

.about-hero-triangle-bottom-left {
  left: 0;
  bottom: 1rem;
  width: 10.5rem;
  height: 9.5rem;
}

.about-hero-triangle-bottom-right {
  right: 0;
  bottom: 1.4rem;
  width: 8.2rem;
  height: 7rem;
}

.about-hero-dots {
  width: 10rem;
  height: 7rem;
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(37, 24, 50, 0.28) 1.8px, transparent 1.8px);
  background-size: 13px 13px;
}

.about-hero-dots-top {
  top: 2.15rem;
  right: 1rem;
}

.about-hero-dots-bottom {
  left: -0.45rem;
  bottom: 1.8rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 11, 0.78);
  backdrop-filter: blur(4px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.video-modal-close {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #161122;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(14, 11, 20, 0.22);
}

.video-modal-frame {
  overflow: hidden;
  border-radius: 1.25rem;
  background: #000000;
  box-shadow: 0 28px 60px rgba(5, 4, 8, 0.4);
}

.video-modal-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.about-intro {
  position: relative;
  padding: 3rem 0 2.2rem;
  background: #ffffff;
}

.about-intro .about-chip-light {
  background: #ffffff;
  border-color: #ead7de;
  color: #5d4a52;
}

.about-mission {
  padding: 2.8rem 0 3.2rem;
  background: #ffffff;
}

.about-mission > .container {
  width: min(1720px, 96vw);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: center;
}

.about-mission-copy {
  padding: 0 0.4rem 0 2.4rem;
}

.about-mission-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  margin: 0;
  padding: 0.18rem 0.72rem;
  background: #dfff72;
  color: #182013;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: 0.34rem;
}

.about-mission-copy h2 {
  max-width: none;
  margin: 1rem 0 0;
  color: #161025;
  font-family: var(--font-body);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-mission-copy p:last-of-type {
  max-width: none;
  margin-top: 1.05rem;
  color: #5f5b67;
  font-size: 1.02rem;
  line-height: 1.72;
}

.about-mission-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 1.6rem;
  padding: 0.62rem 1.65rem;
  border-radius: 0;
  background: #17112b;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 28px rgba(23, 17, 43, 0.16);
}

.about-mission-cta:hover {
  background: #0f0a1c;
}

.about-mission-visual {
  position: relative;
  min-height: 31rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 1rem 0 0;
}

.about-mission-image-wrap {
  position: relative;
  width: min(100%, 38.5rem);
  margin: 0;
}

.about-mission-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-glance {
  padding: 4.75rem 0 5rem;
  background: #140f24;
}

.about-glance > .container {
  width: min(1480px, 96vw);
}

.about-glance-shell {
  text-align: center;
}

.about-glance-shell h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2rem;
  margin-top: 3.45rem;
}

.about-glance-item {
  display: flex;
  min-height: 6.6rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  text-align: center;
}

.about-glance-item strong {
  color: #ff2d79;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.about-glance-item span {
  max-width: 24ch;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-glance-item-icon {
  gap: 0.62rem;
}

.about-glance-icon {
  display: block;
  width: 3.45rem;
  height: 3.45rem;
  color: #ff2d79;
}

.about-intro-wrap {
  width: min(980px, 100%);
  text-align: center;
}

.about-intro-wrap h2,
.about-section-head h2,
.about-library-copy h2,
.about-cta-shell h2 {
  margin: 0;
  color: #1f1319;
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.about-intro-wrap p:last-child,
.about-library-copy p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-pillars {
  position: relative;
  padding: 0 0 2.7rem;
  overflow: clip;
}

.about-pillars::before,
.about-pillars::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-pillars::before {
  top: 0.7rem;
  left: 7%;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(222, 67, 89, 0.18), rgba(222, 67, 89, 0));
}

.about-pillars::after {
  right: 4%;
  bottom: 0.1rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(30, 18, 24, 0.08), rgba(30, 18, 24, 0));
}

.about-section-head {
  margin-bottom: 1.2rem;
}

.about-section-head-dark h2 {
  color: #ffffff;
}

.about-pillars-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: stretch;
}

.about-pillars-intro,
.about-pillar-card {
  position: relative;
  overflow: hidden;
}

.about-pillars-intro {
  padding: 1.45rem 1.35rem 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(222, 67, 89, 0.34), transparent 13rem),
    linear-gradient(145deg, #170d12 0%, #0c080b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(10, 7, 9, 0.2);
}

.about-pillars-intro::before {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.about-pillars-intro h2 {
  margin: 0.9rem 0 0;
  color: #ffffff;
  font-family: var(--font-hero);
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.about-pillars-lead {
  margin-top: 1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.about-pillars-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.about-pillars-signals span {
  padding: 0.42rem 0.78rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-pillars-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-pillar-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.12rem 1.12rem;
  border: 1px solid #ead7de;
  background: #ffffff;
  box-shadow: none;
}

.about-pillar-card::before {
  display: none;
}

.about-pillar-card-featured {
  grid-column: 1 / -1;
  padding: 1.3rem 1.25rem 1.24rem;
  background: #ffffff;
}

.about-pillar-label {
  margin: 0;
  color: #b11f3a;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-card-visual {
  display: grid;
  place-items: center;
  width: min(100%, 6.7rem);
  aspect-ratio: 1.06;
  margin-bottom: 0.95rem;
  padding: 0.72rem;
  border: 1px solid rgba(24, 17, 30, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
}

.about-card-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.about-pillar-card-featured .about-card-visual {
  width: min(100%, 7.25rem);
}

.about-card-visual-clarity {
  background: linear-gradient(135deg, #eef6f1 0%, #fbfdfc 100%);
}

.about-card-visual-respect {
  background: linear-gradient(135deg, #f7f4ea 0%, #fffdf8 100%);
}

.about-card-visual-practice {
  background: linear-gradient(135deg, #eef3ff 0%, #fbfcff 100%);
}

.about-card-visual-growth {
  background: linear-gradient(135deg, #f5efe8 0%, #fdfbf8 100%);
}

.about-card-visual-foundations {
  background: linear-gradient(135deg, #f1f5f2 0%, #fcfdfc 100%);
}

.about-card-visual-attraction {
  background: linear-gradient(135deg, #eef7f6 0%, #fbfefd 100%);
}

.about-card-visual-connection {
  background: linear-gradient(135deg, #f5f1ea 0%, #fffdf8 100%);
}

.about-pillar-card h3 {
  margin: 0.72rem 0 0;
  color: #20131a;
  font-family: var(--font-hero);
  font-size: clamp(1.4rem, 2vw, 1.88rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.about-pillar-card > p:not(.about-pillar-label) {
  margin-top: 0.72rem;
  color: #5f5158;
  line-height: 1.68;
}

.about-pillar-card-featured h3 {
  max-width: 20rem;
}

.about-pillar-card-featured p:last-child {
  max-width: 38rem;
}

.about-roadmap {
  background:
    radial-gradient(circle at top right, rgba(240, 82, 103, 0.14), transparent 18rem),
    linear-gradient(135deg, #140d12 0%, #0e090d 100%);
  padding: 2.5rem 0;
}

.about-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-roadmap-step {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-roadmap-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-roadmap-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 9, 13, 0) 30%, rgba(14, 9, 13, 0.2) 100%);
}

.about-roadmap-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-roadmap-step-awkward .about-roadmap-photo img {
  object-position: center 42%;
}

.about-roadmap-step-confidence .about-roadmap-photo img {
  object-position: center 25%;
}

.about-roadmap-step-dating .about-roadmap-photo img {
  object-position: center 44%;
}

.about-roadmap-step-connection .about-roadmap-photo img {
  object-position: center 36%;
}

.about-roadmap-step h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.06;
}

.about-roadmap-step p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.about-library {
  position: relative;
  padding: 2.7rem 0 2.2rem;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 13, 20, 0.06), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #faf8f7 100%);
}

.about-library::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(27, 18, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 18, 32, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
  opacity: 0.42;
}

.about-library .about-chip-light {
  background: #ffffff;
  border-color: #ead7de;
  color: #5d4a52;
}

.about-library-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: 1.2rem;
  align-items: start;
}

.about-library-copy {
  padding: 1.35rem 1.3rem 1.25rem;
  border: 1px solid rgba(27, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(18, 13, 20, 0.05);
}

.about-library-cards {
  display: grid;
  gap: 0.95rem;
}

.about-library-cards article,
.about-library-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.05rem;
  border: 1px solid #e5dfe2;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 30px rgba(18, 13, 20, 0.06);
}

.about-library-cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(24, 17, 30, 0.22), rgba(24, 17, 30, 0.06));
}

.about-library-card .about-card-visual {
  width: min(100%, 5.9rem);
  margin-bottom: 0.8rem;
}

.about-library-cards h3 {
  margin: 0;
  color: #20131a;
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.about-library-cards p {
  margin-top: 0.48rem;
  color: var(--muted);
  line-height: 1.62;
}

.about-cta-band {
  padding: 0 0 2.8rem;
}

.about-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid #ead7de;
  box-shadow: none;
}

.about-cta-shell h2 {
  max-width: 18ch;
}

.about-cta-actions {
  flex: 0 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.about-card p {
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.value-card p {
  color: var(--muted);
}

.course-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.course-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.course-level {
  margin: 0 0 0.35rem;
  display: inline-block;
  border-radius: 999px;
  padding: 0.14rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--brand-soft);
  color: #7f1d44;
}

.course-item p,
.course-item li {
  color: var(--muted);
}

.course-item ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.pathway {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.pathway ol {
  margin: 0.6rem 0 0.8rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.story-quote {
  color: #4f3540;
}

.story-name {
  margin-top: 0.7rem;
  font-weight: 700;
  color: #7a2145;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats-strip > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem;
}

.contact-page {
  background: #ffffff;
}

.contact-hero {
  padding: 2.6rem 0 2rem;
  background: #ffffff;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 2.3rem;
  align-items: stretch;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.25rem 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(231, 66, 89, 0.18), transparent 13rem),
    linear-gradient(145deg, #120d14 0%, #080609 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(12, 8, 10, 0.22);
}

.contact-hero-kicker {
  margin: 0;
  color: #cfff6e;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  max-width: none;
  margin: 0.7rem 0 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-hero-lead {
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-info-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
  align-content: start;
}

.contact-info-item {
  position: relative;
  padding: 0.95rem 1rem 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d5354d;
}

.contact-info-item h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-info-item p {
  margin-top: 0.72rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.62;
}

.contact-info-item p + p {
  margin-top: 0.18rem;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contact-socials a {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececec;
  border-radius: 0;
  background: #f8f8f8;
  color: #3c3b40;
  text-decoration: none;
}

.contact-socials a:hover {
  color: #17112b;
  background: #f0f0f0;
}

.contact-socials svg {
  width: 1rem;
  height: 1rem;
}

.contact-card-kicker {
  margin: 0;
  color: #d83f59;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form-card,
.contact-side-card {
  border: 1px solid #ececec;
  box-shadow: 0 18px 36px rgba(16, 13, 18, 0.08);
  background: #ffffff;
}

.contact-form-card-top {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.65rem 3rem 2.4rem;
}

.contact-card-head-top h2 {
  margin: 0;
  color: #17151a;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.contact-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form-top {
  display: grid;
  gap: 1.7rem;
  margin-top: 1.8rem;
  flex: 1 1 auto;
}

.contact-form-grid-top {
  gap: 1.2rem;
}

.contact-form-card-top .auth-field {
  position: relative;
  margin: 0;
}

.contact-form-card-top input,
.contact-form-card-top textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #dbdbdb;
  border-radius: 0;
  background: transparent;
  color: #232027;
  padding: 0.95rem 0 0.92rem;
  font-size: 1.02rem;
  line-height: 1.4;
}

.contact-form-card-top input::placeholder,
.contact-form-card-top textarea::placeholder {
  color: #ababab;
  opacity: 1;
}

.contact-form-card-top input:focus,
.contact-form-card-top textarea:focus {
  outline: none;
  border-bottom-color: #1a1622;
}

.contact-form-card-top textarea {
  min-height: 7.8rem;
  resize: vertical;
}

.contact-card-head h2,
.contact-side-card h2 {
  margin: 0.55rem 0 0;
  color: #1c1117;
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.contact-card-head-top h2 {
  margin: 0;
  color: #17151a;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.auth-actions-top {
  margin-top: 0.15rem;
}

.contact-status {
  margin-top: 0.25rem;
  color: var(--success);
  font-weight: 600;
  min-height: 1.2rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.contact-status.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
}

.contact-submit-button {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #d5354d, #e74259);
  color: #ffffff;
  padding: 1.18rem 1rem;
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.contact-submit-button:hover {
  background: linear-gradient(135deg, #bd2d44, #db3953);
}

.contact-main {
  padding: 0 0 2.8rem;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.contact-side-card {
  padding: 1.25rem 1.15rem;
}

.contact-side-card-dark {
  background:
    radial-gradient(circle at top right, rgba(230, 78, 99, 0.24), transparent 12rem),
    linear-gradient(140deg, #150d12 0%, #0e090d 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-side-card-dark h2,
.contact-side-card-dark p:not(.contact-card-kicker),
.contact-side-card-dark li {
  color: #ffffff;
}

.contact-side-card-dark p:not(.contact-card-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-side-card-light {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f9 100%);
}

.contact-value-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-value-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.7;
}

.contact-value-list li + li {
  margin-top: 0.62rem;
}

.contact-value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 0.42rem;
  height: 0.42rem;
  background: #e44861;
}

.contact-side-card .faq-list {
  margin-top: 0.95rem;
}

.contact-side-card .faq-list details {
  border: 1px solid #ead7de;
  background: #ffffff;
  padding: 0.7rem 0.75rem;
}

.contact-side-card .faq-list details + details {
  margin-top: 0.7rem;
}

.contact-side-card .faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #20131a;
}

.contact-side-card .faq-list p {
  margin-top: 0.45rem;
  color: #62545b;
}

.dashboard-shell {
  padding: 2.2rem 0 2.8rem;
}

.dashboard-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 18px;
  background: linear-gradient(130deg, #741f43 0%, #a02a5b 50%, #c53d71 100%);
  color: #fff;
  padding: 1.2rem;
}

.dashboard-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  opacity: 0.92;
}

.dashboard-hero h1 {
  margin: 0.35rem 0 0.45rem;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.dashboard-hero .lead {
  margin: 0;
  color: #fce4ed;
  max-width: 55ch;
}

.dashboard-hero-badge {
  min-width: 220px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.8rem;
}

.badge-label {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-value {
  margin: 0.3rem 0 0;
  font-size: 1.28rem;
  font-weight: 800;
}

.badge-note {
  margin-top: 0.3rem;
  color: #ffe5ef;
}

.dashboard-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 1rem;
}

.dashboard-main,
.dashboard-side {
  display: grid;
  gap: 1rem;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.dashboard-stat,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow);
}

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

.stat-value {
  margin: 0.25rem 0 0;
  font-size: 1.8rem;
  font-weight: 800;
}

.stat-note,
.dashboard-card p,
.dashboard-list {
  color: var(--muted);
}

.progress-mock {
  margin-top: 0.8rem;
}

.progress-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.progress-track {
  margin-top: 0.35rem;
  height: 10px;
  border-radius: 999px;
  background: #f3e5eb;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #cc2e67 0%, #f06f99 100%);
}

.dashboard-list {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.dashboard-list li + li {
  margin-top: 0.45rem;
}

.dashboard-actions {
  display: grid;
  gap: 0.55rem;
}

.dashboard-action-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.58rem 0.68rem;
  text-decoration: none;
  font-weight: 700;
  color: #5d1934;
  background: #fff3f7;
}

.dashboard-action-link:hover {
  background: #ffe8f0;
}

.dashboard-signout {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  background: var(--danger);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.dashboard-signout:hover {
  background: #842c3f;
}

.member-dashboard,
.member-settings-page {
  position: relative;
  padding: 1.8rem 0 3rem;
  background:
    radial-gradient(circle at 8% 10%, rgba(213, 53, 77, 0.12), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(207, 255, 110, 0.2), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, #fff5f7 54%, #fffaf4 100%);
  overflow: clip;
}

.member-dashboard::before,
.member-settings-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 21, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 21, 29, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06));
}

.member-dashboard-shell,
.member-settings-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, 94vw);
  margin: 0 auto;
}

.member-dashboard-shell {
  display: grid;
  gap: 1rem;
}

.member-dashboard-hero,
.member-settings-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.78fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1.25rem;
  border: 1px solid rgba(213, 53, 77, 0.1);
  background:
    radial-gradient(circle at top right, rgba(207, 255, 110, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(213, 53, 77, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff7f9 100%);
  box-shadow: 0 24px 50px rgba(83, 42, 58, 0.12);
}

.member-dashboard-kicker,
.member-settings-kicker,
.member-library-kicker,
.member-settings-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 0.72rem;
  padding: 0.22rem 0.62rem;
  border: 1px solid rgba(213, 53, 77, 0.12);
  background: #fff0f4;
  color: #b92e45;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.member-dashboard-hero h1,
.member-settings-hero h1 {
  margin: 0;
  color: #1b1220;
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.member-dashboard-lead,
.member-settings-lead {
  margin-top: 0.9rem;
  max-width: 58ch;
  color: #6e5a64;
  font-size: 1rem;
  line-height: 1.75;
}

.member-dashboard-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.member-dashboard-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(213, 53, 77, 0.1);
  background: #ffffff;
  color: #5d4750;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
}

.member-dashboard-actions {
  margin-top: 1rem;
}

.member-dashboard-settings,
.member-settings-back,
.member-settings-signout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1rem;
  border: 1px solid #d5354d;
  background: #d5354d;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(213, 53, 77, 0.18);
}

.member-dashboard-settings:hover,
.member-settings-back:hover,
.member-settings-signout:hover {
  background: #bd2d44;
}

.member-dashboard-focus-card {
  display: grid;
  align-content: start;
  gap: 0.78rem;
  padding: 1rem;
  border: 1px solid rgba(213, 53, 77, 0.1);
  background:
    radial-gradient(circle at top right, rgba(207, 255, 110, 0.14), transparent 32%),
    linear-gradient(180deg, #fff8f3 0%, #fffefd 100%);
}

.member-dashboard-focus-kicker {
  margin: 0;
  color: #c3374f;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.member-dashboard-focus-card h2 {
  margin: 0;
  color: #1c121f;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.member-dashboard-focus-card p {
  color: #6d5964;
}

.member-dashboard-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.member-dashboard-focus-grid article {
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(213, 53, 77, 0.08);
  background: #ffffff;
}

.member-dashboard-focus-grid span {
  display: block;
  color: #8a6d78;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.member-dashboard-focus-grid strong {
  display: block;
  margin-top: 0.22rem;
  color: #1b1220;
  font-size: 1.05rem;
  font-weight: 800;
}

.member-library-panel {
  display: grid;
  gap: 0.9rem;
}

.member-library-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.member-library-head h2 {
  margin: 0;
  color: #1b1220;
  font-family: var(--font-hero);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.member-library-head p {
  margin-top: 0.48rem;
  max-width: 56ch;
  color: #6d5964;
}

.member-library-track-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.48rem;
}

.member-library-track-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.68rem;
  border: 1px solid rgba(213, 53, 77, 0.1);
  background: #ffffff;
  color: #6f1f36;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
}

.member-course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
}

.member-course-card {
  position: relative;
  min-height: 100%;
  padding: 0.92rem;
  border: 1px solid rgba(213, 53, 77, 0.1);
  background:
    radial-gradient(circle at top right, rgba(207, 255, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
  box-shadow: 0 16px 34px rgba(69, 35, 49, 0.1);
}

.member-course-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d5354d 0%, #ff9c66 68%, #cfff6e 100%);
}

.member-course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.member-course-index {
  color: #d5354d;
  font-family: var(--font-accent);
  font-size: 1.65rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.member-course-phase {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.18rem 0.52rem;
  background: #fff0f4;
  color: #b92e45;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.member-course-track {
  margin-top: 0.72rem;
  color: #61831e;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.member-course-card h3 {
  margin: 0.28rem 0 0;
  color: #1d1320;
  font-size: 1.06rem;
  line-height: 1.24;
}

.member-course-summary {
  margin-top: 0.52rem;
  color: #685560;
  font-size: 0.92rem;
  line-height: 1.62;
}

.member-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.8rem;
}

.member-course-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.16rem 0.5rem;
  border: 1px solid rgba(213, 53, 77, 0.08);
  background: #fff3f7;
  color: #6f2237;
  font-size: 0.76rem;
  font-weight: 700;
}

.member-settings-shell {
  display: grid;
  gap: 1rem;
}

.member-settings-hero {
  align-items: center;
}

.member-settings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.member-settings-card {
  padding: 1rem;
  border: 1px solid rgba(213, 53, 77, 0.1);
  background:
    radial-gradient(circle at top right, rgba(207, 255, 110, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
  box-shadow: 0 16px 32px rgba(69, 35, 49, 0.1);
}

.member-settings-card h2 {
  margin: 0;
  color: #1c121f;
  font-size: 1.25rem;
}

.member-settings-card p {
  margin-top: 0.45rem;
  color: #6d5964;
}

.member-settings-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.member-settings-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(213, 53, 77, 0.1);
  background: #fff3f7;
  color: #6f2237;
  text-decoration: none;
  font-family: var(--font-ui);
  text-transform: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.member-settings-links a:hover {
  background: #ffe8f0;
}

.member-settings-card-wide {
  grid-column: span 3;
}

.member-settings-signout {
  width: 100%;
  margin-top: 0.8rem;
  cursor: pointer;
}

@media (max-width: 1260px) {
  .member-course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .member-dashboard-hero,
  .member-settings-hero,
  .member-settings-grid {
    grid-template-columns: 1fr;
  }

  .member-library-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-library-track-pills {
    justify-content: flex-start;
  }

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

  .member-settings-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .member-dashboard,
  .member-settings-page {
    padding: 1.2rem 0 2.2rem;
  }

  .member-dashboard-shell,
  .member-settings-shell {
    width: min(94vw, 100%);
  }

  .member-dashboard-hero,
  .member-settings-hero {
    padding: 1rem;
  }

  .member-dashboard-hero h1,
  .member-settings-hero h1,
  .member-library-head h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .member-dashboard-focus-grid,
  .member-course-grid {
    grid-template-columns: 1fr;
  }

  .member-dashboard-settings,
  .member-settings-back,
  .member-settings-links a,
  .member-settings-signout {
    width: 100%;
  }
}

.auth-section {
  position: relative;
  padding: clamp(3rem, 5vw, 4.4rem) 1.25rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 43, 43, 0.07), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(24, 20, 15, 0.05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f4f0 100%);
  overflow: hidden;
}

.auth-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: 26px;
  align-items: stretch;
}

.auth-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid #e4ddd4;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(24, 20, 15, 0.06);
  color: #18140f;
}

.auth-brand-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: 0 0 0.85rem;
  padding: 0.32rem 0.78rem;
  background: #fff0f1;
  border: 1px solid rgba(212, 43, 43, 0.18);
  color: #d42b2b;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.auth-brand-title {
  margin: 1.15rem 0 0;
  color: #18140f;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.auth-brand-copy {
  margin-top: 0.85rem;
  max-width: 36rem;
  color: #6b5f53;
  font-size: 1rem;
  line-height: 1.72;
}

.auth-brand-visual {
  position: relative;
  margin: 1rem 0 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e4ddd4;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(24, 20, 15, 0.08);
}

.auth-brand-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.auth-brand-visual-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(24, 20, 15, 0.08);
  border: 1px solid #e4ddd4;
  border-radius: 8px;
}

.auth-brand-visual-caption strong {
  color: #18140f;
  font-family: "Syne", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.auth-brand-visual-caption span {
  color: #6b5f53;
  font-size: 0.84rem;
  line-height: 1.45;
}

.auth-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.auth-brand-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.78rem;
  background: #f7f4f0;
  border: 1px solid #e4ddd4;
  color: #5f5247;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 100px;
}

.auth-brand-points {
  display: grid;
  gap: 14px;
  margin-top: 1.4rem;
}

.auth-brand-point {
  padding: 0.95rem 1rem;
  border-left: 2px solid #d42b2b;
  background: #f7f4f0;
  box-shadow: inset 0 0 0 1px rgba(228, 221, 212, 0.9);
  border-radius: 0 8px 8px 0;
}

.auth-brand-point-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.auth-brand-point-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(228, 221, 212, 0.9);
}

.auth-brand-point-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-brand-point-icon--rose {
  background: #fff0f1;
  color: #d42b2b;
}

.auth-brand-point-icon--lime {
  background: #f2f7f4;
  color: #2f6e58;
}

.auth-brand-point-icon--gold {
  background: #f9f4eb;
  color: #9a6b1f;
}

.auth-brand-point-body span {
  display: block;
  margin-bottom: 0.3rem;
  color: #18140f;
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.auth-brand-point p {
  color: #6b5f53;
}

.auth-card {
  width: min(560px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e4ddd4;
  border-radius: 14px;
  padding: 1.45rem;
  box-shadow: 0 10px 30px rgba(24, 20, 15, 0.06);
  color: #18140f;
  backdrop-filter: none;
}

.auth-shell .auth-card {
  width: 100%;
  margin: 0;
}

.auth-card-signup {
  border: 1px solid #e4ddd4;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(24, 20, 15, 0.06);
  padding: 1.6rem;
}

.auth-card-kicker {
  margin: 0 0 0.55rem;
  color: #d42b2b;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-card-kicker-signup {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.14em;
}

.auth-card-kicker-signup::before {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #d42b2b;
}

.auth-card-wide {
  width: min(760px, 92vw);
}

.auth-guided-card {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.auth-guided-card-intro {
  text-align: center;
}

.auth-guided-card .auth-status-icon {
  margin-left: auto;
  margin-right: auto;
}

.auth-guided-card .auth-status-lead,
.auth-guided-card .auth-status-meta,
.auth-guided-card .auth-status-steps,
.auth-guided-card .auth-form-block {
  width: min(100%, 33rem);
  margin-left: auto;
  margin-right: auto;
}

.auth-form-block {
  padding: 0.78rem 0.84rem 0.82rem;
  background: linear-gradient(180deg, #fffdf9 0%, #fff6f8 100%);
  border: 1px solid rgba(213, 53, 77, 0.1);
  border-left: 3px solid rgba(213, 53, 77, 0.42);
  box-shadow: none;
}

.auth-form-block h2 {
  margin: 0 0 0.18rem;
  font-size: 0.98rem;
}

.auth-form-block p {
  margin: 0 0 0.45rem;
  color: #765f69;
  font-size: 0.9rem;
  line-height: 1.42;
}

.auth-guided-card form {
  margin-top: 0;
}

.auth-guided-card-wideform .auth-status-lead,
.auth-guided-card-wideform .auth-status-steps,
.auth-guided-card-wideform .auth-form-block {
  width: min(100%, 39rem);
}

.auth-form-block-wide {
  width: min(100%, 39rem);
}

.auth-card h1 {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #18140f;
}

.auth-card h2 {
  margin: 1.25rem 0 0.6rem;
  font-size: 1.2rem;
  color: #18140f;
}

.auth-card p {
  color: #6b5f53;
}

.auth-signup-head {
  margin-bottom: 1.1rem;
}

.auth-signup-title {
  margin-bottom: 0.45rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #18140f;
}

.auth-signup-title em {
  font-style: italic;
  color: #d5354d;
}

.auth-signup-copy {
  max-width: 34rem;
  color: #6b5f53;
  font-size: 0.98rem;
  line-height: 1.68;
}

.auth-signup-flow {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.auth-signup-step {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  border: 1px solid #e4ddd4;
  border-radius: 999px;
  background: #f7f4f0;
  color: #5f5247;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.auth-card form {
  margin-top: 1rem;
}

.auth-card-signup form {
  margin-top: 0;
  padding: 1.05rem 1rem 1rem;
  border: 1px solid #e4ddd4;
  border-radius: 10px;
  background: #faf7f3;
}

.auth-card input,
.auth-card textarea,
.auth-card select {
  width: 100%;
  border: 1.5px solid #e4ddd4;
  border-radius: 8px;
  padding: 0.68rem 0.78rem;
  font: inherit;
  color: #18140f;
  background: #ffffff;
}

.auth-card-signup input,
.auth-card-signup textarea,
.auth-card-signup select {
  border-color: #e4ddd4;
  border-radius: 8px;
  padding: 0.78rem 0.86rem;
  background: #ffffff;
}

.auth-card input::placeholder,
.auth-card textarea::placeholder,
.auth-card select::placeholder {
  color: #9f9489;
}

.auth-card textarea {
  resize: vertical;
}

.auth-card input:focus,
.auth-card textarea:focus,
.auth-card select:focus {
  outline: none;
  border-color: #d42b2b;
  box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.12);
}

.auth-card input[type="checkbox"],
.auth-card input[type="radio"] {
  width: auto;
  accent-color: #d42b2b;
}

.auth-card input.is-invalid,
.auth-card textarea.is-invalid,
.auth-card select.is-invalid {
  border-color: #ef7387;
  background: #fff6f8;
}

.auth-field {
  margin: 0 0 0.8rem;
}

.auth-field-has-errors label {
  color: #8f2337;
}

.auth-field label {
  display: block;
  margin-bottom: 0.26rem;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3a3028;
}

.auth-card-signup .auth-field label {
  margin-bottom: 0.42rem;
  color: #3a3028;
  font-family: "Syne", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-help {
  margin-top: 0.45rem;
  color: #7a6e62;
  font-size: 0.84rem;
  line-height: 1.6;
}

.auth-field-has-errors .auth-help {
  color: #7a6e62;
}

.auth-help ul {
  margin: 0;
  padding-left: 1.1rem;
}

.auth-help li + li {
  margin-top: 0.18rem;
}

.auth-field-password {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0.55rem;
  top: 2.1rem;
  border: 0;
  background: transparent;
  color: #d42b2b;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.auth-card-signup .password-toggle {
  top: 2.3rem;
  right: 0.75rem;
}

.password-strength {
  margin-top: 0.45rem;
}

.password-strength-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #f0e3e8;
  overflow: hidden;
}

.password-strength-fill {
  width: 0%;
  height: 100%;
  background: #c44545;
  transition: width 180ms ease;
}

.password-strength[data-level="1"] .password-strength-fill {
  background: #c44545;
}

.password-strength[data-level="2"] .password-strength-fill {
  background: #d07f33;
}

.password-strength[data-level="3"] .password-strength-fill {
  background: #b0a836;
}

.password-strength[data-level="4"] .password-strength-fill {
  background: #4f9d4f;
}

.password-strength[data-level="5"] .password-strength-fill {
  background: #23854d;
}

.password-strength-text {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: #6f5e67;
}

.caps-warning {
  display: none;
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #9a6218;
}

.caps-warning.visible {
  display: block;
}

.remember-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  margin: 0.2rem 0 0.5rem;
  color: #5f5247;
}

.form-errors {
  margin-bottom: 0.8rem;
  padding: 0.85rem 0.95rem;
  border-left: 3px solid #d42b2b;
  background: #fff6f6;
  box-shadow: inset 0 0 0 1px rgba(212, 43, 43, 0.08);
  border-radius: 8px;
}

.form-errors-title {
  margin: 0 0 0.35rem;
  color: #7f2133;
  font-size: 0.96rem;
  font-weight: 800;
}

.form-error {
  margin: 0.45rem 0 0;
  color: #b61f34;
  font-size: 0.9rem;
  font-weight: 800;
}

.auth-card .form-error,
.auth-field .form-error {
  color: #b61f34 !important;
}

.form-error + .form-error {
  margin-top: 0.3rem;
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.auth-actions-wrap {
  flex-wrap: wrap;
}

.auth-submit {
  border: 0;
  background: #d42b2b;
  color: #fff;
  border-radius: 4px;
  padding: 0.72rem 1.05rem;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.auth-card-signup .auth-submit {
  border-radius: 4px;
  padding: 0.84rem 1.4rem;
  box-shadow: none;
}

.auth-submit:hover {
  background: #b82020;
}

.auth-submit.is-loading {
  opacity: 0.8;
  cursor: not-allowed;
}

.auth-submit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.auth-submit-secondary {
  background: #ffffff;
  color: #3a3028;
  border: 1.5px solid #e4ddd4;
  border-radius: 4px;
}

.auth-submit-secondary:hover {
  background: #ffffff;
  border-color: #3a3028;
}

.auth-submit-danger {
  background: #9b2c2c;
}

.auth-submit-danger:hover {
  background: #842c3f;
}

.auth-inline-link {
  color: #d42b2b;
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.auth-inline-link:hover {
  color: #b82020;
}

.auth-signup-footnote {
  margin-top: 0.95rem;
  color: #7a6e62;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.auth-actions-stack {
  align-items: stretch;
}

.auth-status-section {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.auth-status-shell {
  width: min(900px, 100%);
  margin: 0 auto;
}

.auth-status-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 249, 251, 0.99) 100%);
  border: 1px solid rgba(213, 53, 77, 0.1);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(101, 56, 74, 0.1);
}

.auth-status-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff2e9 0%, #fff0f4 100%);
  color: #d5354d;
  box-shadow: inset 0 0 0 1px rgba(213, 53, 77, 0.08);
}

.auth-status-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-status-eyebrow {
  margin: 0 0 0.45rem;
  color: #d5354d;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-status-lead {
  width: min(100%, 31rem);
  margin: 0.1rem auto 0;
  padding-left: 0.72rem;
  border-left: 2px solid rgba(213, 53, 77, 0.28);
  color: #66555e;
  font-size: 0.94rem;
  line-height: 1.45;
}

.auth-status-meta {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.auth-status-meta-item {
  padding: 0.72rem 0.8rem;
  background: linear-gradient(180deg, #fffdfa 0%, #fff6f8 100%);
  border: 1px solid rgba(213, 53, 77, 0.08);
  box-shadow: none;
  text-align: left;
}

.auth-status-meta-label {
  display: block;
  margin-bottom: 0.22rem;
  color: #7b5d68;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-status-meta-item strong {
  color: #201520;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  word-break: break-word;
}

.auth-status-note {
  width: min(100%, 30rem);
  margin: 0 0 1rem;
  color: #6b5a63;
}

.auth-status-steps {
  width: min(100%, 34rem);
  display: grid;
  gap: 0.5rem;
  margin: 0 auto 0.75rem;
}

.auth-status-step {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  padding: 0.6rem 0.72rem;
  background: linear-gradient(180deg, #fffdf9 0%, #fff6f8 100%);
  border: 1px solid rgba(213, 53, 77, 0.08);
  border-left: 2px solid rgba(213, 53, 77, 0.28);
  box-shadow: none;
  text-align: left;
}

.auth-status-step-number {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d5354d;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
}

.auth-status-step p {
  margin: 0;
  color: #64535c;
  font-size: 0.91rem;
  line-height: 1.42;
}

.auth-status-card .auth-actions {
  width: 100%;
  justify-content: center;
}

.auth-status-card .auth-submit {
  min-width: 200px;
}

@media (max-width: 980px) {
  .auth-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .auth-brand-panel {
    padding: 1.35rem 1.2rem;
  }

  .auth-brand-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .auth-brand-visual img {
    aspect-ratio: 1.7 / 1;
  }
}

@media (max-width: 760px) {
  .auth-section {
    padding: 2.25rem 0.95rem;
  }

  .auth-brand-visual-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.72rem 0.78rem;
  }

  .auth-form-block {
    padding: 0.72rem 0.78rem 0.76rem;
  }

  .auth-brand-point-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0.72rem;
  }

  .auth-brand-point-icon {
    width: 36px;
    height: 36px;
  }

  .auth-status-card {
    padding: 1rem;
  }

  .auth-status-step {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0.56rem 0.65rem;
  }

  .auth-status-step-number {
    width: 24px;
    height: 24px;
    font-size: 0.74rem;
  }

  .auth-status-icon {
    width: 54px;
    height: 54px;
  }

  .auth-status-card .auth-submit {
    min-width: 0;
    width: 100%;
  }
}

.email-list {
  display: grid;
  gap: 0.55rem;
}

.account-email-card {
  display: grid;
  gap: 1rem;
}

.account-email-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.account-email-sub {
  max-width: 38rem;
  color: #66555e;
  font-size: 0.97rem;
  line-height: 1.55;
}

.account-email-back {
  flex-shrink: 0;
}

.account-email-note {
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(213, 53, 77, 0.34);
  background: linear-gradient(180deg, #fffdfa 0%, #fff5f8 100%);
  color: #6a5862;
  font-size: 0.92rem;
  line-height: 1.5;
}

.account-email-block {
  display: grid;
  gap: 0.85rem;
}

.account-email-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.account-email-block-head p {
  color: #6b5a63;
}

.email-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(213, 53, 77, 0.12);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  background: #ffffff;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.email-option input {
  accent-color: #d5354d;
}

.email-option:hover {
  border-color: rgba(213, 53, 77, 0.24);
  background: #fffafb;
}

.email-option:has(input:checked) {
  border-color: rgba(213, 53, 77, 0.34);
  background: #fff5f8;
  box-shadow: 0 8px 18px rgba(101, 56, 74, 0.06);
}

.email-main {
  min-width: 0;
  flex: 1 1 16rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.email-badge {
  border: 1px solid rgba(213, 53, 77, 0.14);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.75rem;
  background: #fff6f8;
  color: #7a3346;
}

.email-badge-success {
  border-color: #9dd5b3;
  background: #effaf3;
}

.email-badge-warning {
  border-color: #edc790;
  background: #fff4e5;
}

.account-email-actions {
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.account-email-page .section.section-compact {
  padding-bottom: 0;
}

.account-email-section {
  min-height: calc(100vh - 140px);
  padding: 40px 20px;
  background: #f5f2ee;
}

.account-email-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4ddd4;
  box-shadow: 0 8px 48px rgba(24, 20, 15, 0.08), 0 2px 8px rgba(24, 20, 15, 0.04);
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  color: #18140f;
}

.account-email-top {
  padding: 28px 30px 24px;
  border-bottom: 1px solid #e4ddd4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-email-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b2b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.account-email-eyebrow::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #d42b2b;
  border-radius: 2px;
  flex-shrink: 0;
}

.account-email-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #18140f;
  line-height: 1.1;
  margin: 0 0 7px;
}

.account-email-desc {
  font-size: 14px;
  color: #7a6e62;
  line-height: 1.65;
  max-width: none;
  width: 100%;
  margin: 0;
}

.account-email-top-left {
  flex: 1;
  min-width: 0;
}

.account-email-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #7a6e62;
  text-decoration: none;
  border: 1.5px solid #e4ddd4;
  border-radius: 7px;
  padding: 8px 14px;
  white-space: nowrap;
  background: #ffffff;
  transition: all 0.2s;
  flex-shrink: 0;
}

.account-email-back-btn:hover {
  border-color: #3a3028;
  color: #18140f;
}

.account-email-notice {
  margin: 16px 20px;
  background: #f5f2ee;
  border: 1px solid #e4ddd4;
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 12.5px;
  color: #7a6e62;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.account-email-notice-icon {
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
  opacity: 0.7;
}

.account-email-card {
  margin: 0 20px 16px;
  border: 1.5px solid #e4ddd4;
  border-radius: 12px;
  overflow: hidden;
}

.account-email-card:last-child {
  margin-bottom: 20px;
}

.account-email-card-head {
  padding: 16px 18px 12px;
}

.account-email-card-title {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: #18140f;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.account-email-card-sub {
  font-size: 12px;
  color: #b0a498;
  line-height: 1.5;
}

.account-email-card-divider {
  height: 1px;
  background: #e4ddd4;
}

.account-email-rows {
  padding: 14px 18px 0;
}

.account-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f2ee;
  border: 1.5px solid #e4ddd4;
  border-radius: 9px;
  padding: 11px 13px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.account-email-row + .account-email-row {
  margin-top: 12px;
}

.account-email-row:hover {
  border-color: #b0a498;
}

.account-email-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-email-row:has(input:checked) {
  border-color: #d42b2b;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(212, 43, 43, 0.09);
}

.account-email-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e4ddd4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.account-email-row:has(input:checked) .account-email-radio {
  border-color: #d42b2b;
}

.account-email-radio-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d42b2b;
  opacity: 0;
  transition: opacity 0.15s;
}

.account-email-row:has(input:checked) .account-email-radio-dot {
  opacity: 1;
}

.account-email-address {
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
  color: #18140f;
  min-width: 0;
  overflow-wrap: anywhere;
}

.account-email-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.account-email-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.account-email-badge-unverified {
  color: #8a6200;
  background: #fef6e0;
  border: 1px solid #f0dc9a;
}

.account-email-badge-verified {
  color: #20613b;
  background: #eef8f0;
  border: 1px solid #b7ddc1;
}

.account-email-badge-primary {
  color: #3a3028;
  background: #f3ede6;
  border: 1px solid #d9cfc3;
}

.account-email-actions {
  display: flex;
  gap: 8px;
  padding: 14px 18px 18px;
  flex-wrap: wrap;
}

.account-email-action-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 7px;
  border: 1.5px solid #e4ddd4;
  background: #ffffff;
  color: #3a3028;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.1px;
}

.account-email-action-btn:hover {
  border-color: #3a3028;
  color: #18140f;
}

.account-email-action-btn-danger {
  background: #d42b2b;
  border-color: #d42b2b;
  color: #ffffff;
}

.account-email-action-btn-danger:hover {
  background: #b81e1e;
  border-color: #b81e1e;
  color: #ffffff;
}

.account-email-empty {
  padding: 18px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #7a6e62;
}

.account-email-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 16px 18px 18px;
}

.account-email-status-item {
  padding: 14px 15px;
  border: 1px solid #e4ddd4;
  border-radius: 10px;
  background: #f5f2ee;
}

.account-email-status-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6e62;
}

.account-email-status-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #18140f;
  overflow-wrap: anywhere;
}

.account-email-form-body {
  padding: 14px 18px 18px;
}

.account-email-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #3a3028;
  margin-bottom: 7px;
}

.account-email-add-form input[type="email"] {
  width: 100%;
  background: #f5f2ee;
  border: 1.5px solid #e4ddd4;
  border-radius: 8px;
  padding: 10px 13px;
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  color: #18140f;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  margin-bottom: 14px;
}

.account-email-add-form input[type="email"]::placeholder {
  color: #b0a498;
}

.account-email-add-form input[type="email"]:focus {
  border-color: #d42b2b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.07);
}

.account-email-add-btn {
  background: #d42b2b;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}

.account-email-add-btn:hover {
  background: #b81e1e;
  transform: translateY(-1px);
}

.account-email-page .form-errors {
  margin-bottom: 12px;
  padding: 11px 13px;
  border-left: 0;
  border: 1px solid #efcfce;
  background: #fff6f5;
  box-shadow: none;
}

@media (max-width: 640px) {
  .account-email-section {
    padding: 26px 14px;
  }

  .account-email-top {
    padding: 22px 20px 18px;
    flex-direction: column;
  }

  .account-email-back-btn {
    width: 100%;
    justify-content: center;
  }

  .account-email-notice,
  .account-email-card {
    margin-left: 14px;
    margin-right: 14px;
  }

  .account-email-actions {
    flex-direction: column;
  }

  .account-email-action-btn,
  .account-email-add-btn {
    width: 100%;
  }
}

.account-password-section {
  min-height: calc(100vh - 140px);
  padding: 40px 20px;
  background: #f5f2ee;
}

.account-password-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4ddd4;
  box-shadow: 0 8px 48px rgba(24, 20, 15, 0.08), 0 2px 8px rgba(24, 20, 15, 0.04);
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  color: #18140f;
}

.account-password-top {
  padding: 28px 30px 24px;
  border-bottom: 1px solid #e4ddd4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-password-top-left {
  flex: 1;
  min-width: 0;
}

.account-password-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b2b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.account-password-eyebrow::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #d42b2b;
  border-radius: 2px;
  flex-shrink: 0;
}

.account-password-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #18140f;
  line-height: 1.1;
  margin: 0 0 7px;
}

.account-password-desc {
  font-size: 14px;
  color: #7a6e62;
  line-height: 1.65;
  margin: 0;
}

.account-password-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #7a6e62;
  text-decoration: none;
  border: 1.5px solid #e4ddd4;
  border-radius: 7px;
  padding: 8px 14px;
  white-space: nowrap;
  background: #ffffff;
  transition: all 0.2s;
  flex-shrink: 0;
}

.account-password-back-btn:hover {
  border-color: #3a3028;
  color: #18140f;
}

.account-password-notice {
  margin: 16px 20px;
  background: #fff6f4;
  border: 1px solid #e8c9c5;
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3f2b27;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.account-password-notice-icon {
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
  color: #b63a34;
  opacity: 1;
}

.account-password-card {
  margin: 0 20px 20px;
  border: 1.5px solid #e4ddd4;
  border-radius: 12px;
  overflow: hidden;
}

.account-password-card-head {
  padding: 16px 18px 12px;
}

.account-password-card-title {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: #18140f;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.account-password-card-sub {
  font-size: 12px;
  color: #b0a498;
  line-height: 1.5;
}

.account-password-card-divider {
  height: 1px;
  background: #e4ddd4;
}

.account-password-form-body {
  padding: 16px 18px 18px;
}

.account-password-field {
  margin-bottom: 14px;
}

.account-password-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #3a3028;
  margin-bottom: 7px;
}

.account-password-form input[type="password"],
.account-password-form input[type="text"],
.account-password-form input[type="email"] {
  width: 100%;
  background: #f5f2ee;
  border: 1.5px solid #e4ddd4;
  border-radius: 8px;
  padding: 10px 72px 10px 13px;
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  color: #18140f;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.account-password-form input[type="password"]::placeholder,
.account-password-form input[type="text"]::placeholder,
.account-password-form input[type="email"]::placeholder {
  color: #b0a498;
}

.account-password-form input[type="password"]:focus,
.account-password-form input[type="text"]:focus,
.account-password-form input[type="email"]:focus {
  border-color: #d42b2b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.07);
}

.account-password-toggle {
  right: 12px;
  top: 34px;
  color: #7a6e62;
}

.account-password-toggle:hover {
  color: #18140f;
}

.account-password-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.account-password-action-btn {
  background: #d42b2b;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}

.account-password-action-btn:hover {
  background: #b81e1e;
  transform: translateY(-1px);
}

a.account-password-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.account-password-action-btn-secondary {
  background: #ffffff;
  color: #3a3028;
  border: 1.5px solid #e4ddd4;
}

.account-password-action-btn-secondary:hover {
  background: #ffffff;
  border-color: #3a3028;
  color: #18140f;
}

.account-password-status-body {
  padding: 16px 18px 18px;
}

.account-password-status-copy {
  font-size: 13.5px;
  line-height: 1.65;
  color: #7a6e62;
}

.account-password-page .form-errors {
  margin-bottom: 12px;
  padding: 11px 13px;
  border-left: 0;
  border: 1px solid #efcfce;
  background: #fff6f5;
  box-shadow: none;
}

@media (max-width: 640px) {
  .account-password-section {
    padding: 26px 14px;
  }

  .account-password-top {
    padding: 22px 20px 18px;
    flex-direction: column;
  }

  .account-password-back-btn {
    width: 100%;
    justify-content: center;
  }

  .account-password-notice,
  .account-password-card {
    margin-left: 14px;
    margin-right: 14px;
  }

  .account-password-action-btn {
    width: 100%;
  }
}

.site-footer {
  margin-top: 2.5rem;
  background:
    radial-gradient(circle at top right, rgba(223, 71, 124, 0.12), transparent 18rem),
    linear-gradient(180deg, #140d12 0%, #0e090d 100%);
  color: #f8eef2;
}

.auth-page .site-footer {
  margin-top: 0;
}

.footer-shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 2.25rem 0 1.2rem;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-block {
  max-width: 42rem;
}

.footer-kicker {
  margin: 0 0 0.45rem;
  color: #ffb4c4;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-block;
  margin: 0;
  text-decoration: none;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-description {
  margin: 0.7rem 0 0;
  color: rgba(248, 238, 242, 0.74);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  background: linear-gradient(135deg, #d5354d, #e74259);
  color: #ffffff;
  border-radius: 0;
  font-weight: 800;
}

.footer-cta:hover {
  background: linear-gradient(135deg, #bd2d44, #db3953);
}

.footer-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-metric {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-metric strong {
  display: block;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  line-height: 0.95;
}

.footer-metric span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid {
  padding: 1.4rem 0 1.1rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-column-wide {
  padding-right: 1rem;
}

.footer-title {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0.28rem 0 0;
  color: rgba(248, 238, 242, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-copy-compact {
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-grid a {
  display: block;
  margin: 0.34rem 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-grid a:hover {
  color: #ffb4c4;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 238, 242, 0.64);
  font-size: 0.88rem;
}

.footer-bottom-copy {
  justify-self: start;
}

.footer-bottom-note {
  justify-self: end;
  text-align: right;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  justify-self: center;
}

.footer-legal-link {
  display: inline-block;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(248, 238, 242, 0.64);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-legal-link:hover {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.86);
}

.lp-footer {
  background: #0e0e0e;
  color: #ffffff;
  padding: 0;
}

.lp-footer-cta-band {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.lp-footer-cta-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
}

.lp-footer-cta-text em {
  font-style: italic;
  color: #e8152a;
}

.lp-btn-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #e8152a;
  color: #ffffff;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 16px 32px;
  border-radius: 0;
}

.lp-btn-footer-cta:hover {
  background: #b50d1e;
  transform: translateY(-2px);
}

.lp-footer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-stat {
  padding: 36px 56px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-stat:last-child {
  border-right: none;
}

.lp-footer-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
  line-height: 1;
}

.lp-footer-stat-num span,
.lp-footer-logo span {
  color: #e8152a;
}

.lp-footer-stat-label,
.lp-footer-col-title,
.lp-footer-tagline {
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
}

.lp-footer-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

.lp-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-logo {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 6px;
}

.lp-footer-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e8152a;
  margin-bottom: 18px;
}

.lp-footer-desc {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.72;
  max-width: 300px;
}

.lp-footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.lp-footer-links a,
.lp-footer-links span {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer-links a:hover {
  color: #e8152a;
}

.lp-footer-bottom {
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-footer-copy,
.lp-footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.lp-footer-bottom-links {
  display: flex;
  gap: 24px;
}

.lp-footer-bottom-links a:hover {
  color: #ffffff;
}

.lp-footer-tagline-right {
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .lp-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .lp-footer-cta-text br {
    display: none;
  }

  .lp-footer-cta-band,
  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-footer-stats {
    grid-template-columns: 1fr;
  }

  .lp-footer-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lp-footer-stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 760px) {
  .lp-footer-main {
    grid-template-columns: 1fr;
  }

  .lp-footer-cta-band,
  .lp-footer-main,
  .lp-footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lp-footer-stat {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.legal-hero {
  padding: 2.6rem 0 1rem;
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.legal-section {
  padding: 0 0 3rem;
}

.legal-panel {
  padding: 2rem;
  border: 1px solid #ece3e7;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(20, 14, 18, 0.06);
}

.legal-updated {
  margin: 0 0 1.25rem;
  color: #7a6670;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-block + .legal-block {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #f0e4e8;
}

.legal-block h2 {
  margin: 0 0 0.42rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.legal-block p {
  color: #5f5259;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-block a {
  color: #b92e46;
  font-weight: 700;
}

.legal-block a:hover {
  color: #8f2236;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

@media (max-width: 980px) {
  .lp-hero-shell,
  .lp-proof-strip,
  .lp-roadmap-grid,
  .lp-program-grid,
  .lp-testimonial-grid,
  .lp-faq-grid,
  .hero-grid,
  .contact-hero-grid,
  .about-grid,
  .about-pillars-grid,
  .about-roadmap-grid,
  .about-library-grid,
  .value-grid,
  .course-preview-grid,
  .course-catalog,
  .story-grid,
  .stats-strip,
  .contact-layout,
  .contact-shell,
  .contact-support-grid,
  .dashboard-layout,
  .footer-metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics,
  .about-hero-metrics,
  .dashboard-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-bottom-note {
    text-align: left;
    justify-self: start;
  }

  .footer-bottom,
  .footer-bottom-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-bottom-copy,
  .footer-bottom-meta {
    justify-self: start;
  }

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

  .about-pillars-shell {
    grid-template-columns: 1fr;
  }

  .about-pillars-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-mission-copy {
    padding: 0;
  }

  .about-mission-visual {
    min-height: 0;
    justify-content: center;
    padding: 0;
  }

  .about-glance {
    padding: 4rem 0 4.2rem;
  }

  .about-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.35rem 1.6rem;
  }

  .about-glance-item-icon {
    grid-column: 1 / -1;
  }

  .about-hero-frame {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-hero-media {
    min-height: 15rem;
    padding: 0.55rem 0.1rem 0.05rem;
  }

  .about-hero-media-button {
    width: 100%;
  }

  .contact-reason-grid,
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-hero-copy {
    padding: 1rem;
  }

  .legal-panel {
    padding: 1.5rem;
  }

  .contact-info-list {
    gap: 1.55rem;
    margin-top: 1.55rem;
  }

  .contact-form-card-top {
    padding: 1.9rem 1.85rem 1.7rem;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
    position: relative;
  }

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

  .auth-link {
    font-size: 0.92rem;
  }

  .auth-btn {
    padding: 0.4rem 0.68rem;
    font-size: 0.9rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 4vw 1rem;
    flex-direction: column;
  }

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

  .feature-grid,
  .lp-roadmap-grid,
  .lp-proof-strip,
  .lp-program-grid,
  .lp-testimonial-grid,
  .lp-faq-grid,
  .hero-metrics,
  .about-hero-metrics,
  .dashboard-stat-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 0.5rem 0 0.75rem;
  }

  .contact-hero {
    padding: 2.4rem 0 1.8rem;
  }

  .about-hero-frame {
    padding: 0.72rem;
    border-radius: 0;
  }

  .about-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.88rem, 10.4vw, 3rem);
  }

  .contact-hero-copy h1,
  .contact-card-head h2,
  .contact-side-card h2 {
    max-width: none;
    font-size: clamp(1.95rem, 10vw, 3.05rem);
  }

  .about-hero-lead,
  .about-intro-wrap p:last-child,
  .about-library-copy p,
  .contact-hero-lead {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .about-hero-watch {
    min-height: 52px;
    margin-top: 0.7rem;
    padding: 0.42rem 0.92rem 0.42rem 0.56rem;
    font-size: 0.92rem;
  }

  .about-hero-watch-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .about-hero-watch-icon::before {
    left: 13px;
    top: 9px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }

  .about-intro,
  .about-library {
    padding-top: 2.2rem;
  }

  .about-mission {
    padding: 1.9rem 0 2rem;
  }

  .about-mission-copy {
    padding: 0;
  }

  .about-mission-copy h2 {
    max-width: none;
    font-size: clamp(1.7rem, 6.8vw, 2.35rem);
  }

  .about-mission-copy p:last-of-type {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .about-mission-cta {
    min-height: 48px;
    padding: 0.56rem 1.15rem;
    font-size: 0.94rem;
  }

  .about-mission-visual {
    min-height: 0;
    padding-top: 0.2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .about-mission-image-wrap {
    width: 100%;
  }

  .about-glance {
    padding: 2.9rem 0 3.1rem;
  }

  .about-glance-shell h2 {
    font-size: clamp(1.8rem, 7.6vw, 2.45rem);
  }

  .about-glance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.6rem;
  }

  .about-glance-item,
  .about-glance-item-icon {
    min-height: 0;
    grid-column: auto;
  }

  .about-glance-item strong {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .about-glance-item span {
    max-width: 26ch;
    font-size: 0.9rem;
  }

  .about-glance-icon {
    width: 3.05rem;
    height: 3.05rem;
  }

  .about-intro-wrap h2,
  .about-section-head h2,
  .about-library-copy h2,
  .about-cta-shell h2 {
    font-size: clamp(1.72rem, 8vw, 2.3rem);
  }

  .about-hero-panel,
  .contact-hero-panel,
  .about-pillar-card,
  .about-roadmap-step,
  .about-library-cards article,
  .about-cta-shell,
  .contact-form-card,
  .contact-side-card {
    padding: 1rem;
  }

  .contact-form-card-top {
    padding: 1.45rem 1.1rem 1.2rem;
  }

  .contact-info-item {
    padding-left: 1.35rem;
  }

  .contact-info-item p {
    font-size: 0.96rem;
  }

  .contact-socials {
    gap: 0.45rem;
  }

  .contact-socials a {
    width: 2.2rem;
    height: 2.2rem;
  }

  .contact-submit-button {
    padding: 1rem 0.85rem;
    font-size: 0.98rem;
  }

  .about-pillars-intro {
    padding: 1.1rem 1rem 1.12rem;
  }

  .about-pillars-lead {
    max-width: none;
  }

  .about-pillars-cards {
    grid-template-columns: 1fr;
  }

  .about-pillar-card-featured {
    grid-column: auto;
  }

  .about-roadmap-step {
    gap: 0.78rem;
  }

  .about-roadmap-photo {
    aspect-ratio: 16 / 10;
    border-radius: 0.85rem;
  }

  .about-card-visual {
    width: min(100%, 5.8rem);
    padding: 0.62rem;
    border-radius: 1rem;
  }

  .about-library-card .about-card-visual {
    width: min(100%, 5.3rem);
  }

  .about-hero-media {
    min-height: 11.6rem;
    padding: 0.22rem 0 0.02rem;
  }

  .about-hero-media-card {
    width: 100%;
    border-radius: 0;
  }

  .video-modal {
    padding: 0.9rem;
  }

  .video-modal-close {
    top: -0.55rem;
    right: -0.2rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .about-hero-play {
    width: 4.7rem;
    height: 4.7rem;
  }

  .about-hero-play::before {
    left: 1.95rem;
    top: 1.52rem;
    border-top-width: 0.8rem;
    border-bottom-width: 0.8rem;
    border-left-width: 1.22rem;
  }

  .about-hero-corner-flag {
    left: 0.3rem;
    top: 1.45rem;
    width: 4.1rem;
    height: 4.1rem;
  }

  .about-hero-corner-icon {
    left: 0.58rem;
    top: 0.54rem;
    width: 1.15rem;
    height: 1.15rem;
  }

  .about-hero-corner-icon::before {
    left: 0.31rem;
    top: 0.24rem;
  }

  .about-hero-triangle-top {
    right: 1.2rem;
    top: 0.25rem;
    width: 6.4rem;
    height: 5.7rem;
  }

  .about-hero-triangle-bottom-left {
    width: 7rem;
    height: 6.2rem;
    bottom: 0.65rem;
  }

  .about-hero-triangle-bottom-right {
    width: 5.8rem;
    height: 5rem;
    bottom: 0.9rem;
  }

  .about-hero-dots {
    width: 6.5rem;
    height: 4.6rem;
    background-size: 10px 10px;
  }

  .about-hero-dots-top {
    top: 0.75rem;
    right: 0;
  }

  .about-hero-dots-bottom {
    left: -0.15rem;
    bottom: 1.05rem;
  }

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

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

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

  .dashboard-hero {
    flex-direction: column;
  }

  .dashboard-hero-badge {
    min-width: 0;
  }

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

  .auth-submit,
  .auth-submit-secondary,
  .auth-submit-danger {
    width: 100%;
  }

.auth-inline-link {
    text-align: center;
  }
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: min(22rem, calc(100vw - 1.5rem));
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice-wrap {
  width: 100%;
  padding: 0.95rem 1rem 1rem;
  display: grid;
  gap: 0.72rem;
  background: rgba(255, 251, 247, 0.96);
  border: 1px solid rgba(24, 18, 14, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 16px 38px rgba(26, 18, 12, 0.12);
  backdrop-filter: blur(14px);
}

.cookie-notice-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cookie-notice-mark {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff6b79 0, #e8152a 55%, #bf1024 100%);
  box-shadow: 0 0 0 5px rgba(232, 21, 42, 0.09);
  flex-shrink: 0;
}

.cookie-notice-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #221814;
}

.cookie-notice-copy {
  max-width: none;
}

.cookie-notice-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(24, 18, 14, 0.74);
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-notice-link,
.cookie-notice-button {
  min-height: 2.3rem;
  padding: 0.58rem 0.88rem;
  font: inherit;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-notice-link {
  color: #251b16;
  border: 1px solid rgba(24, 18, 14, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.cookie-notice-link:hover {
  border-color: rgba(24, 18, 14, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.cookie-notice-button {
  border: 1px solid #e8152a;
  background: #e8152a;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(232, 21, 42, 0.14);
}

.cookie-notice-button:hover {
  background: #d11429;
  border-color: #c20f22;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .cookie-notice {
    width: min(22rem, calc(100vw - 1.5rem));
  }
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .cookie-notice-wrap {
    padding: 0.9rem;
  }

  .cookie-notice-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-notice-link,
  .cookie-notice-button {
    flex: 1 1 0;
    text-align: center;
    justify-content: center;
    min-height: 2.45rem;
  }
}
