

/* ================================================
   SHARED DESIGN TOKENS FROM MAIN SITE
   ================================================ */

:root {
  --cs-slate: #4c4d4e;
  --cs-warm-white: #fffdf6;
  --cs-blush-text: #60486b;
  --cs-blush-low: #eeeaeb;
  --cs-warm-grey: #f7f1e4;
  --cs-blush-high: #877a8d;
  --cs-blue-text: #306ec7;
  --cs-dusty-pink: #d4c7c9;
  --cs-teal: #ccd8db;
  --cs-teal2: #edf2f2;
}

@font-face {
  font-family: "Moderne Fraktur Unz 1";
  src: url("../assets/images/moderne-20fraktur-20unz1-20regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Typewriter Mt Std;
  src: url("../assets/images/typewriter-20mt-20std-20regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Berthold Akzidenz Grotesk;
  src: url("../assets/images/berthold-20akzidenz-20grotesk-20regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: var(--cs-warm-white);
  color: var(--cs-slate);
}

.sans-medium {
  font-family: Berthold Akzidenz Grotesk, Times New Roman, sans-serif;
  font-size: 22px;
  line-height: 123%;
}

.sans-large {
  letter-spacing: 0;
  font-family: Berthold Akzidenz Grotesk, Times New Roman, sans-serif;
  font-size: 34px;
  line-height: 123%;
}

.sans-small {
  letter-spacing: .05em;
  font-family: Berthold Akzidenz Grotesk, Times New Roman, sans-serif;
  font-size: 16px;
  line-height: 141%;
}

.monospace-16 {
  text-align: left;
  text-transform: lowercase;
  font-family: Typewriter Mt Std, Arial, sans-serif;
  font-size: 16px;
  line-height: 141%;
}

.display-small {
  text-align: center;
  letter-spacing: -.02em;
  font-family: "Moderne Fraktur Unz 1", Impact, sans-serif;
  font-size: 72px;
  line-height: 106%;
}


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

body {
    font-family: Berthold Akzidenz Grotesk, sans-serif;
    background: var(--cs-warm-white);
    color: var(--cs-slate);
}

.form-container {
    max-width: 420px;
    margin: 80px auto;
    background: var(--cs-blush-low);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-container h1 {
    margin-bottom: 8px;
}

.form-container p {
    margin-bottom: 24px;
    color: #666;
}

.form-container button {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--cs-blush-text);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: var(--cs-blush-text);
}

.error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.dashboard-container {
    max-width: 700px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-container h1 {
    margin-bottom: 8px;
}

.dashboard-container h2 {
    margin: 24px 0 12px;
}

.dashboard-container ul {
    padding-left: 20px;
}

.dashboard-container ul li {
    margin-bottom: 8px;
}

.dashboard-container a {
    color: #4f46e5;
}

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

.dashboard-links {
    display: flex;
    gap: 16px;
}

.dashboard-links a {
    color: var(--cs-blue-text);
    text-decoration: none;
    font-size: 14px;
}

.module-block {
    margin-bottom: 32px;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.module-block h3 {
    margin-bottom: 16px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cs-blue-text);
}

.lesson-list {
    list-style: none;
    padding: 0;
}

.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.lesson-item a {
    color: var(--cs-slate);
    text-decoration: none;
    font-size: 15px;
}

.lesson-item a:hover {
    color: #4f46e5;
}

.lesson-duration {
    font-size: 13px;
    color: #999;
}

.lesson-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.lesson-breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
    gap: 8px;
}

.lesson-breadcrumb a {
    color: var(--cs-blue-text);
    text-decoration: none;
}

.lesson-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 24px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 32px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    color: #999;
    margin-bottom: 32px;
}

.lesson-description {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    line-height: 1.7;
}

.lesson-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #eee;
    margin-top: 16px;
}

.lesson-navigation a {
    color: var(--cs-blue-text);
    text-decoration: none;
    font-size: 14px;
}

.nav-prev { text-align: left; }
.nav-next { text-align: right; }

.complete-section {
    margin: 24px 0;
    text-align: center;
}

.btn-complete {
    padding: 12px 32px;
    background: var(--cs-blush-text);
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

.btn-complete:hover {
    background: var(--cs-blush-text);
}

.btn-completed {
    background: #16a34a;
    cursor: default;
}

.btn-completed:hover {
    background: #16a34a;
}

.lesson-completed a {
    color: #16a34a;
}

.lesson-locked {
    opacity: 0.4;
}

.lesson-title-locked {
    color: #999;
    font-size: 15px;
}

.lesson-coming-soon {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-left: 8px;
}


