:root {
  --ink: #0b0b0b;
  --ink-soft: #141414;
  --paper: #f4f1e9;
  --white: #fff;
  --orange: #ff5a1f;
  --orange-dark: #d9420b;
  --muted: #a6a39c;
  --line: rgba(255, 255, 255, 0.14);
  --paper-line: rgba(11, 11, 11, 0.14);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  background: var(--orange);
  color: var(--white);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.section-title em,
.hero-title em {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}

.section-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #5e5b55;
  font-size: 17px;
  line-height: 1.7;
}

.announcement {
  position: relative;
  z-index: 31;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 44px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  animation: pulse 1.8s infinite;
}

.announcement button {
  position: absolute;
  right: 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.8;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.brand-mark svg {
  width: 27px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: #cfccc4;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #ff713e;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-sm {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.menu-button {
  display: none;
}

.mobile-login {
  display: none;
}

.hero {
  position: relative;
  min-height: 748px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #0b0b0b 0%, rgba(11, 11, 11, 0.92) 25%, rgba(11, 11, 11, 0.15) 72%),
    linear-gradient(0deg, #0b0b0b 0%, transparent 30%),
    url("./hero-film-school.png") center / cover no-repeat;
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.16;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding: 92px 0 110px;
}

.hero-copy {
  width: min(880px, 68vw);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: #e8e4da;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.record-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.15);
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 7.6vw, 112px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-line {
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 585px;
  margin: 30px 0 0;
  color: #c1beb6;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.play-link span:first-child {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.play-link:hover span:first-child {
  background: var(--white);
  color: var(--ink);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
  color: #a9a69f;
  font-size: 13px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #2b2b2b;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.avatar:first-child {
  margin-left: 0;
  background: #a53b15;
}

.avatar:nth-child(2) {
  background: #3d5261;
}

.avatar:nth-child(3) {
  background: #6f573d;
}

.avatar:nth-child(4) {
  background: var(--orange);
}

.proof-stars {
  color: var(--orange);
  letter-spacing: 1px;
}

.hero-note {
  position: absolute;
  right: 4vw;
  bottom: 64px;
  z-index: 3;
  width: 244px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-note-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.hero-note p {
  margin: 8px 0 0;
  color: #a9a69f;
  font-size: 12px;
  line-height: 1.5;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--orange);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 30px;
  padding: 16px 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.ticker-track span::after {
  content: "✦";
}

.benefits {
  padding: 100px 0;
  background: var(--paper);
  color: var(--ink);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--paper-line);
}

.benefit {
  min-height: 228px;
  padding: 34px 30px 28px 0;
  border-right: 1px solid var(--paper-line);
}

.benefit:not(:first-child) {
  padding-left: 30px;
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--orange);
  color: var(--white);
}

.benefit h3 {
  margin: 34px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.benefit p {
  margin: 0;
  color: #6d6a64;
  font-size: 14px;
  line-height: 1.6;
}

.courses-section {
  padding: 118px 0 128px;
  background: var(--paper);
  color: var(--ink);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #827f78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.section-index::before {
  width: 56px;
  height: 1px;
  background: var(--paper-line);
  content: "";
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-chip {
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: #5b5852;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.course-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: #fffdf8;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(26, 23, 19, 0.13);
}

.course-cover {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background-color: #1c1c1c;
  background-image:
    linear-gradient(150deg, transparent 38%, rgba(255, 90, 31, 0.48)),
    url("./hero-film-school.png");
  background-position: center;
  background-size: cover;
}

.course-card:nth-child(2n) .course-cover {
  background-position: 78% center;
  filter: saturate(0.55);
}

.course-card:nth-child(3n) .course-cover {
  background-position: 92% center;
  filter: sepia(0.3) contrast(1.12);
}

.course-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
  content: "";
}

.course-category,
.course-badge {
  position: absolute;
  z-index: 1;
  top: 18px;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-category {
  left: 18px;
  background: rgba(11, 11, 11, 0.7);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.course-badge {
  right: 18px;
  background: var(--orange);
  color: var(--white);
}

.course-number {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.course-body {
  padding: 23px;
}

.course-body h3 {
  min-height: 58px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.course-body > p {
  min-height: 66px;
  margin: 12px 0 18px;
  color: #706d66;
  font-size: 14px;
  line-height: 1.55;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 16px;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  color: #68655f;
  font-size: 12px;
  font-weight: 600;
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.course-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price del {
  color: #9d9991;
  font-size: 12px;
  font-weight: 500;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.arrow-link svg {
  transition: transform 0.2s ease;
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 60px 24px;
  border: 1px dashed var(--paper-line);
  border-radius: var(--radius);
  color: #77736c;
  text-align: center;
}

.membership {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--ink);
}

.membership::before {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.22), transparent 68%);
  content: "";
}

.membership-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #101010;
}

.membership-copy {
  padding: clamp(40px, 6vw, 78px);
}

.membership-copy h2 {
  max-width: 750px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.membership-copy h2 em {
  color: var(--orange);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}

.membership-copy > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #aaa79f;
  font-size: 16px;
  line-height: 1.7;
}

.membership-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin: 30px 0 38px;
}

.membership-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8e5de;
  font-size: 14px;
}

.membership-list svg {
  color: var(--orange);
}

.membership-price {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 5vw, 60px);
  background: var(--orange);
}

.membership-price::before {
  position: absolute;
  top: -20px;
  left: -20px;
  color: rgba(255, 255, 255, 0.13);
  content: "∞";
  font-family: Georgia, serif;
  font-size: 180px;
  line-height: 1;
}

.membership-price > * {
  position: relative;
  z-index: 1;
}

.membership-price small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.membership-price strong {
  display: block;
  margin-top: auto;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 6vw, 80px);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.membership-price p {
  margin: 8px 0 26px;
  font-size: 13px;
}

.testimonials {
  padding: 120px 0;
  background: var(--paper);
  color: var(--ink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.quote-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.quote-card.featured {
  background: var(--orange);
  color: var(--white);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.6;
}

.quote-card blockquote {
  margin: 32px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.quote-card:not(.featured) blockquote {
  font-size: 19px;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.quote-person .avatar {
  margin: 0;
  border-color: transparent;
}

.quote-person strong,
.quote-person small {
  display: block;
}

.quote-person strong {
  font-size: 13px;
}

.quote-person small {
  margin-top: 3px;
  color: inherit;
  font-size: 11px;
  opacity: 0.62;
}

.manifesto {
  padding: 120px 0;
  background: #111;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.manifesto-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72)),
    url("./hero-film-school.png") 76% center / cover;
}

.manifesto-visual::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--radius-lg) - 8px);
  content: "";
}

.manifesto-caption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.manifesto-caption span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto-caption strong {
  display: block;
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.manifesto-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.manifesto-copy h2 em {
  color: var(--orange);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}

.manifesto-copy > p {
  margin: 27px 0 0;
  color: #aaa79f;
  font-size: 17px;
  line-height: 1.75;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.manifesto-stat {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.manifesto-stat strong,
.manifesto-stat small {
  display: block;
}

.manifesto-stat strong {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.manifesto-stat small {
  margin-top: 4px;
  color: #807e78;
  font-size: 11px;
}

.contact {
  padding: 112px 0;
  background: var(--orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.contact-copy p {
  max-width: 510px;
  margin: 22px 0;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  outline: 0;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

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

.field select option {
  color: var(--ink);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 7px;
}

.footer {
  padding: 76px 0 24px;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.6fr);
  gap: 50px;
}

.footer-about p {
  max-width: 390px;
  margin: 22px 0 0;
  color: #89867f;
  font-size: 14px;
  line-height: 1.65;
}

.footer-col h3 {
  margin: 0 0 19px;
  color: #76736d;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 11px 0;
  color: #d8d5cd;
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #77746e;
  font-size: 11px;
}

.footer-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-shell {
  min-height: 70vh;
  padding: 90px 0 120px;
  background: var(--paper);
  color: var(--ink);
}

.page-hero {
  padding-bottom: 64px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 7vw, 94px);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.page-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #68655e;
  font-size: 17px;
  line-height: 1.7;
}

.course-detail-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, #0b0b0b 8%, rgba(11, 11, 11, 0.72), rgba(11, 11, 11, 0.22)),
    linear-gradient(0deg, #0b0b0b, transparent 54%),
    url("./hero-film-school.png") center / cover;
}

.course-detail-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 90px 0 78px;
}

.course-detail-copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.course-detail-copy > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #cbc8c1;
  font-size: 18px;
  line-height: 1.65;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.detail-meta span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(11, 11, 11, 0.45);
  font-size: 12px;
  backdrop-filter: blur(6px);
}

.detail-content {
  padding: 90px 0 120px;
  background: var(--paper);
  color: var(--ink);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 70px;
  align-items: start;
}

.detail-main h2,
.dashboard-section h2 {
  margin: 0 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.detail-main > p {
  color: #625f58;
  font-size: 17px;
  line-height: 1.8;
}

.outcome-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0 60px;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: flex;
  gap: 11px;
  padding: 17px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  background: #fffdf8;
  font-size: 14px;
  line-height: 1.45;
}

.outcome-list svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.curriculum {
  border-top: 1px solid var(--paper-line);
}

.curriculum-item {
  border-bottom: 1px solid var(--paper-line);
}

.curriculum-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 23px 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.curriculum-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.curriculum-head span {
  color: #817e77;
  font-size: 12px;
}

.curriculum-body {
  max-height: 0;
  overflow: hidden;
  color: #68655e;
  line-height: 1.65;
  transition: max-height 0.3s ease;
}

.curriculum-item.open .curriculum-body {
  max-height: 180px;
  padding-bottom: 22px;
}

.curriculum-item.open .curriculum-head svg {
  transform: rotate(45deg);
}

.purchase-card {
  position: sticky;
  top: 112px;
  padding: 27px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.purchase-card .price {
  margin: 12px 0 22px;
  font-size: 38px;
}

.purchase-card ul {
  margin: 24px 0;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.purchase-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0;
  color: #c7c4bd;
  font-size: 13px;
}

.purchase-card li svg {
  color: var(--orange);
}

.guarantee {
  margin: 16px 0 0;
  color: #87847d;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.auth-shell {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  color: var(--ink);
}

.auth-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent),
    url("./hero-film-school.png") 73% center / cover;
}

.auth-visual-copy {
  position: absolute;
  right: 48px;
  bottom: 48px;
  left: 48px;
  color: var(--white);
}

.auth-visual-copy blockquote {
  max-width: 600px;
  margin: 0 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.auth-visual-copy span {
  color: #b9b6ae;
  font-size: 13px;
}

.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 40px;
}

.auth-form {
  width: min(100%, 470px);
}

.auth-form h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  letter-spacing: -0.06em;
}

.auth-form > p {
  margin: 13px 0 34px;
  color: #6c6962;
  line-height: 1.6;
}

.auth-form .field {
  margin-bottom: 16px;
}

.auth-form .field input {
  border-color: var(--paper-line);
  background: var(--white);
  color: var(--ink);
}

.auth-form .field input::placeholder {
  color: #99958d;
}

.auth-form .btn {
  margin-top: 10px;
}

.auth-switch {
  margin-top: 24px;
  color: #716e67;
  font-size: 13px;
  text-align: center;
}

.auth-switch a {
  color: var(--orange-dark);
  font-weight: 800;
}

.demo-box {
  margin-top: 26px;
  padding: 16px;
  border: 1px dashed var(--paper-line);
  border-radius: var(--radius-sm);
  color: #6f6c65;
  font-size: 12px;
  line-height: 1.55;
}

.dashboard {
  min-height: 75vh;
  padding: 56px 0 110px;
  background: #f0ede5;
  color: var(--ink);
}

.dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.dashboard-head h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -0.06em;
}

.dashboard-head p {
  margin: 10px 0 0;
  color: #6b6861;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.stat-card {
  padding: 24px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.stat-card small,
.stat-card strong {
  display: block;
}

.stat-card small {
  color: #77736c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.stat-card strong {
  margin-top: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 20px;
}

.panel {
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--paper-line);
}

.panel-head h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table th,
.data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--paper-line);
  text-align: left;
  white-space: nowrap;
}

.data-table th {
  color: #817d76;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 9px;
  background: #ecf7ee;
  color: #29753a;
  font-size: 10px;
  font-weight: 800;
}

.status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status.draft {
  background: #f2eee4;
  color: #837b69;
}

.row-actions {
  display: flex;
  gap: 6px;
}

.row-actions button {
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 7px 9px;
  background: transparent;
  color: #625f58;
  font-size: 11px;
  cursor: pointer;
}

.row-actions button:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.activity-list {
  margin: 0;
  padding: 8px 22px 20px;
  list-style: none;
}

.activity-list li {
  position: relative;
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--paper-line);
  color: #625f58;
  font-size: 13px;
  line-height: 1.45;
}

.activity-list li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.activity-list li:last-child {
  border-bottom: 0;
}

.activity-list small {
  display: block;
  margin-top: 4px;
  color: #99958c;
}

.student-course {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--paper-line);
}

.student-course:last-child {
  border-bottom: 0;
}

.student-thumb {
  aspect-ratio: 1.45;
  border-radius: 10px;
  background:
    linear-gradient(145deg, transparent, rgba(255, 90, 31, 0.58)),
    url("./hero-film-school.png") center / cover;
}

.student-course h3 {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.progress {
  width: min(230px, 100%);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3dfd6;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.progress-row small {
  color: #817e77;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.18s ease;
}

.modal {
  width: min(100%, 720px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  animation: riseIn 0.25s ease;
}

.modal-head {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--paper-line);
  background: rgba(244, 241, 233, 0.94);
  backdrop-filter: blur(12px);
}

.modal-head h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.modal-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.modal-body {
  padding: 26px;
}

.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-form .field input,
.modal-form .field textarea,
.modal-form .field select {
  border-color: var(--paper-line);
  background: var(--white);
  color: var(--ink);
}

.modal-form .field input::placeholder,
.modal-form .field textarea::placeholder {
  color: #99958d;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 12px;
  color: #5d5a54;
  font-size: 13px;
}

.modal-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.toast-region {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 280px;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: #171717;
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 13px;
  animation: riseIn 0.25s ease;
}

.toast-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.error-box {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #ffe5de;
  color: #a33110;
  font-size: 13px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

@keyframes pulse {
  50% {
    opacity: 0.36;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .hero-note {
    display: none;
  }

  .hero-copy {
    width: min(760px, 78vw);
  }

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

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(n + 3) {
    border-top: 1px solid var(--paper-line);
  }

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

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

  .quote-card.featured {
    grid-column: 1 / -1;
  }

  .manifesto-grid {
    gap: 50px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-links.mobile-open {
    position: absolute;
    inset: 100% 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 28px 24px 34px;
    border-bottom: 1px solid var(--line);
    background: #0d0d0d;
    box-shadow: var(--shadow);
  }

  .nav-links.mobile-open .nav-link {
    width: 100%;
    padding: 13px 0;
    font-size: 20px;
    text-align: left;
  }

  .nav-links.mobile-open .mobile-login {
    display: inline-flex;
    margin-top: 14px;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, #0b0b0b 0%, rgba(11, 11, 11, 0.86) 45%, rgba(11, 11, 11, 0.25)),
      linear-gradient(0deg, #0b0b0b 0%, transparent 30%),
      url("./hero-film-school.png") 64% center / cover no-repeat;
  }

  .hero-grid {
    padding-block: 80px;
  }

  .hero-copy {
    width: 92%;
  }

  .hero-title {
    font-size: clamp(54px, 13vw, 84px);
  }

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

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

  .membership-price {
    min-height: 360px;
  }

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

  .manifesto-visual {
    min-height: 450px;
  }

  .footer-grid {
    gap: 28px;
  }

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

  .purchase-card {
    position: static;
  }

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

  .auth-visual {
    min-height: 390px;
  }

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

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

@media (max-width: 600px) {
  .announcement {
    justify-content: flex-start;
    padding-right: 50px;
    padding-left: 15px;
    text-align: left;
  }

  .nav-wrap {
    height: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 12px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(48px, 13.4vw, 69px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

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

  .hero-actions .btn,
  .play-link {
    justify-content: center;
  }

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

  .benefits,
  .courses-section,
  .testimonials,
  .membership,
  .manifesto,
  .contact {
    padding-block: 82px;
  }

  .benefit-grid,
  .course-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: auto;
    padding: 28px 0 !important;
    border-top: 1px solid var(--paper-line);
    border-right: 0;
  }

  .benefit:first-child {
    border-top: 0;
  }

  .quote-card.featured {
    grid-column: auto;
  }

  .membership-copy,
  .membership-price {
    padding: 34px 26px;
  }

  .membership-list,
  .outcome-list {
    grid-template-columns: 1fr;
  }

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

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

  .field.full,
  .modal-actions {
    grid-column: auto;
  }

  .footer-bottom,
  .dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-shell {
    padding-top: 66px;
  }

  .course-detail-hero {
    min-height: 570px;
  }

  .auth-visual {
    display: none;
  }

  .auth-form-wrap {
    min-height: calc(100vh - 108px);
    padding: 60px 20px;
  }

  .auth-form h1 {
    font-size: 40px;
  }

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

  .student-course {
    grid-template-columns: 82px 1fr;
  }

  .student-course .btn {
    grid-column: 1 / -1;
  }

  .toast-region {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .toast {
    min-width: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
