:root {
  --bg: #090a0a;
  --surface: #111312;
  --surface-soft: #171917;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.19);
  --text: #f4f2eb;
  --muted: #999b94;
  --gold: #e7bf6a;
  --gold-light: #ffe1a1;
  --gold-dark: #8d6428;
  --success: #8acb84;
  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #111;
  background: var(--gold-light);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.page-grid {
  position: fixed;
  z-index: -3;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.ambient--one {
  top: -28vw;
  left: 50%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(192, 137, 48, 0.17), rgba(9, 10, 10, 0) 67%);
  transform: translateX(-50%);
}

.ambient--two {
  right: -20vw;
  top: 40vh;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(255, 225, 161, 0.07), rgba(9, 10, 10, 0) 70%);
}

.site-header,
.admin-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__mark {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  width: 21px;
  height: 21px;
  padding: 3px;
  border: 1px solid rgba(231, 191, 106, 0.45);
  border-radius: 50%;
}

.brand__mark span {
  width: 3px;
  border-radius: 2px;
  background: var(--gold);
}

.brand__mark span:nth-child(1) { height: 5px; }
.brand__mark span:nth-child(2) { height: 9px; }
.brand__mark span:nth-child(3) { height: 13px; }

.year-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c6c6bf;
  background: rgba(20, 22, 21, 0.58);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.year-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(231, 191, 106, 0.1);
  animation: pulse 2.8s ease-in-out infinite;
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 34px 0 44px;
}

.hero__intro {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin: 0 7px;
  color: #575950;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.75vw, 54px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.11;
  text-wrap: balance;
}

.title-accent {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #be8d3e 0%, #ffe2a5 48%, #c79545 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.title-accent::after {
  position: absolute;
  right: 0.04em;
  bottom: -0.08em;
  left: 0.04em;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(231, 191, 106, 0.75), transparent);
  transform: scaleX(0);
  animation: draw-line 900ms 700ms cubic-bezier(.22, .85, .28, 1) forwards;
  transform-origin: center;
}

.video-section {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 46px auto 0;
}

.video-glow {
  position: absolute;
  z-index: -2;
  inset: 12% 6% -9%;
  background: rgba(190, 136, 50, 0.18);
  filter: blur(88px);
}

.cinema-words {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: calc((100% - 100vw) / 2);
  bottom: -40px;
  left: calc((100% - 100vw) / 2);
  overflow: hidden;
  pointer-events: none;
}

.cinema-word {
  position: absolute;
  color: rgba(237, 208, 147, 0);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  filter: blur(0.3px);
  opacity: 0;
  animation: cinema-light 15s ease-in-out infinite;
}

.cinema-word--idea {
  top: 1%;
  left: 1%;
  font-size: clamp(30px, 4.2vw, 62px);
  animation-delay: -1s;
}

.cinema-word--knowledge {
  top: 5%;
  right: 2%;
  font-size: clamp(28px, 4vw, 58px);
  animation-delay: -11s;
}

.cinema-word--system {
  top: 15%;
  left: 10%;
  font-size: clamp(26px, 3.5vw, 52px);
  animation-delay: -4s;
}

.cinema-word--income {
  top: 20%;
  right: 10%;
  font-size: clamp(25px, 3.3vw, 48px);
  animation-delay: -7.5s;
}

.cinema-word--efficiency {
  top: 29%;
  left: 2%;
  font-size: clamp(31px, 4.7vw, 68px);
  animation-delay: -13s;
}

.cinema-word--experience {
  top: 38%;
  right: 0;
  font-size: clamp(26px, 3.8vw, 55px);
  animation-delay: -9.5s;
}

.cinema-word--capital {
  top: 49%;
  left: 1%;
  font-size: clamp(28px, 4vw, 58px);
  animation-delay: -6s;
}

.cinema-word--result {
  top: 58%;
  right: 1%;
  font-size: clamp(31px, 4.6vw, 66px);
  animation-delay: -2.5s;
}

.cinema-word--practice {
  top: 68%;
  left: 3%;
  font-size: clamp(25px, 3.4vw, 50px);
  animation-delay: -12s;
}

.cinema-word--growth {
  top: 76%;
  right: 14%;
  font-size: clamp(24px, 3vw, 44px);
  animation-delay: -5s;
}

.cinema-word--freedom {
  top: 85%;
  left: 9%;
  font-size: clamp(27px, 3.7vw, 54px);
  animation-delay: -8.5s;
}

.cinema-word--scale {
  right: 1%;
  bottom: 1%;
  font-size: clamp(28px, 4.1vw, 60px);
  animation-delay: -14s;
}

.video-frame {
  position: relative;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012)),
    #0e100f;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.video-frame::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 225, 161, 0.78), transparent);
}

.video-mount {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 23px;
  background: #0b0d0c;
  place-items: center;
}

.video-mount iframe,
.video-mount video {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-player__media {
  opacity: 1;
  transition: opacity 280ms ease;
}

.video-player__media.is-awaiting-play {
  opacity: 0;
}

.video-cover {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  width: 100%;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  border: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 47%, rgba(231, 191, 106, 0.14), transparent 28%),
    linear-gradient(135deg, #0b0d0c 0%, #151711 52%, #090a0a 100%);
  cursor: pointer;
  place-items: center;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.video-cover::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 46%, rgba(231, 191, 106, 0.15), transparent 31%);
  pointer-events: none;
}

.video-cover.is-hiding {
  visibility: hidden;
  opacity: 0;
}

.video-cover__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-cover__play {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 229, 173, 0.72);
  border-radius: 50%;
  color: #15130e;
  background: linear-gradient(145deg, #ffe1a1, #c7923f);
  box-shadow:
    0 0 0 12px rgba(231, 191, 106, 0.08),
    0 18px 52px rgba(0, 0, 0, 0.42);
  place-items: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-cover:hover .video-cover__play {
  box-shadow:
    0 0 0 14px rgba(231, 191, 106, 0.11),
    0 20px 58px rgba(0, 0, 0, 0.48);
  transform: scale(1.04);
}

.video-cover__play svg {
  width: 34px;
  margin-left: 5px;
}

.video-cover__eyebrow {
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.video-cover strong {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.1vw, 23px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 151, 69, 0.18), transparent 25%),
    linear-gradient(135deg, #0c0e0d, #171913);
  place-items: center;
}

.video-placeholder::before,
.video-placeholder::after {
  position: absolute;
  width: min(54vw, 540px);
  height: min(54vw, 540px);
  border: 1px solid rgba(231, 191, 106, 0.1);
  border-radius: 50%;
  content: "";
  animation: slow-spin 16s linear infinite;
}

.video-placeholder::after {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  border-style: dashed;
  border-color: rgba(231, 191, 106, 0.22);
  animation-direction: reverse;
  animation-duration: 22s;
}

.video-placeholder__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.play-disc {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 225, 161, 0.5);
  border-radius: 50%;
  color: #111;
  background: linear-gradient(145deg, var(--gold-light), #bd8938);
  box-shadow:
    0 0 0 12px rgba(231, 191, 106, 0.06),
    0 18px 50px rgba(138, 93, 28, 0.36);
  place-items: center;
}

.play-disc svg {
  width: 25px;
  margin-left: 4px;
}

.video-placeholder strong {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
}

.video-placeholder p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1020px;
  margin: 24px auto 0;
  padding: 34px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(17, 19, 18, 0.7);
  backdrop-filter: blur(18px);
}

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

.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 6px 7px 6px 24px;
  gap: 20px;
  border-radius: 999px;
  color: #14130f;
  background: linear-gradient(105deg, #c99443, #f6d890 52%, #d4a653);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(184, 129, 46, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-button:hover {
  box-shadow: 0 16px 44px rgba(205, 151, 67, 0.28);
  transform: translateY(-2px);
}

.contact-button__icon {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--gold-light);
  background: #141411;
  transition: transform 180ms ease;
  place-items: center;
}

.contact-button:hover .contact-button__icon {
  transform: rotate(6deg);
}

.contact-button__icon svg {
  width: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #5f615c;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  animation: reveal-up 850ms cubic-bezier(.2, .75, .2, 1) forwards;
}

.reveal--delay-1 { animation-delay: 100ms; }
.reveal--delay-2 { animation-delay: 220ms; }
.reveal--delay-3 { animation-delay: 340ms; }

/* Admin */
.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(159, 111, 39, 0.14), transparent 30%),
    var(--bg);
}

.admin-page.is-locked .skip-link {
  display: none;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.auth-layout {
  display: grid;
  width: min(calc(100% - 32px), 440px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
  place-items: center;
}

.auth-card {
  width: 100%;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(17, 19, 18, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  text-align: center;
  backdrop-filter: blur(18px);
}

.auth-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid rgba(231, 191, 106, 0.25);
  border-radius: 18px;
  color: var(--gold);
  background: rgba(231, 191, 106, 0.055);
  place-items: center;
}

.auth-card__icon svg {
  width: 26px;
}

.auth-card .settings-card__overline {
  margin-bottom: 10px;
}

.auth-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.auth-card__description {
  margin: 15px 0 27px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.auth-form {
  text-align: left;
}

.auth-form label {
  display: block;
  margin-bottom: 9px;
  color: #e8e7e1;
  font-size: 12px;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: #0c0e0d;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.auth-form input:focus {
  border-color: rgba(231, 191, 106, 0.6);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(231, 191, 106, 0.08);
}

.auth-form .button-primary {
  width: 100%;
  margin-top: 3px;
}

.auth-error {
  min-height: 32px;
  margin: 7px 0 0;
  color: #e09a82;
  font-size: 11px;
  line-height: 1.45;
}

.auth-card__note {
  margin: 18px 0 0;
  color: #62655f;
  font-size: 10px;
}

.admin-layout {
  display: block;
  width: min(calc(100% - 48px), 680px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.settings-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(17, 19, 18, 0.84);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.settings-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

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

.settings-card__overline {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.settings-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.status-pill {
  flex: none;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #7f817a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.status-pill.is-saved {
  border-color: rgba(138, 203, 132, 0.25);
  color: var(--success);
  background: rgba(138, 203, 132, 0.07);
}

.logout-button {
  min-width: 55px;
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  color: #74766f;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease;
}

.logout-button:hover {
  color: var(--gold);
}

.field {
  display: block;
  min-width: 0;
  margin: 0 0 29px;
  padding: 0;
  border: 0;
}

.field > label,
.field > legend,
.sub-label {
  display: block;
  margin: 0 0 10px;
  color: #e8e7e1;
  font-size: 13px;
  font-weight: 700;
}

.field input[type="url"],
.field input[type="password"],
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: #0c0e0d;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input[type="url"],
.field input[type="password"] {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 108px;
  padding: 14px 15px;
  line-height: 1.5;
  resize: vertical;
}

.field input[type="url"]:focus,
.field input[type="password"]:focus,
.field textarea:focus {
  border-color: rgba(231, 191, 106, 0.6);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(231, 191, 106, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #50534e;
}

.field__hint {
  display: block;
  margin-top: 8px;
  color: #74766f;
  font-size: 11px;
  line-height: 1.5;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0c0e0d;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control label {
  display: grid;
  min-height: 42px;
  border-radius: 9px;
  color: #777a73;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
  place-items: center;
}

.segmented-control input:checked + label {
  color: var(--gold-light);
  background: #1c1e1b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.segmented-control input:focus-visible + label {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

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

.video-option .sub-label {
  margin-top: 16px;
}

.upload-zone {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  margin: 0 !important;
  border: 1px dashed rgba(231, 191, 106, 0.3);
  border-radius: 14px;
  color: #aaa;
  background: rgba(231, 191, 106, 0.025);
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.upload-zone:hover,
.upload-zone.is-dragging {
  border-color: rgba(231, 191, 106, 0.68);
  background: rgba(231, 191, 106, 0.055);
}

.upload-zone svg {
  width: 25px;
  margin-bottom: 12px;
  color: var(--gold);
}

.upload-zone strong {
  color: #dddcd6;
  font-size: 13px;
}

.upload-zone span {
  margin-top: 5px;
  color: #62655f;
  font-size: 10px;
}

#videoFile {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.input-with-icon {
  position: relative;
}

.input-with-icon svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 15px;
  width: 19px;
  color: var(--gold);
  transform: translateY(-50%);
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 45px !important;
}

.security-details {
  margin: 0 0 27px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.security-details summary {
  min-height: 54px;
  padding: 18px 2px;
  color: #a5a79f;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.security-details summary::marker {
  color: var(--gold);
}

.security-details__content {
  padding: 4px 2px 22px;
}

.password-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.password-grid .field {
  margin-bottom: 0;
}

.settings-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.settings-actions__secondary {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button-primary {
  gap: 9px;
  border: 0;
  color: #17140f;
  background: linear-gradient(105deg, #c99747, #f4d68c);
}

.button-primary svg {
  width: 18px;
}

.button-secondary {
  gap: 8px;
  border: 1px solid var(--line);
  color: #a2a49d;
  background: transparent;
  text-decoration: none;
}

.button-secondary svg {
  width: 17px;
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.admin-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 18px;
  color: #74766f;
  font-size: 11px;
  line-height: 1.6;
}

.admin-note__icon {
  display: grid;
  flex: none;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  place-items: center;
}

.admin-note p {
  margin: 2px 0 0;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border: 1px solid rgba(138, 203, 132, 0.22);
  border-radius: 13px;
  color: #d9e9d6;
  background: #182018;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(15px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast__icon {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #121812;
  background: var(--success);
  place-items: center;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-line {
  to { transform: scaleX(1); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes cinema-light {
  0%, 16%, 100% {
    color: rgba(237, 208, 147, 0);
    opacity: 0;
    text-shadow: 0 0 0 rgba(231, 191, 106, 0);
  }
  32%, 46% {
    color: rgba(237, 208, 147, 0.1);
    opacity: 0.76;
    text-shadow:
      0 0 28px rgba(231, 191, 106, 0.045),
      0 0 80px rgba(231, 191, 106, 0.065);
  }
  64%, 82% {
    color: rgba(237, 208, 147, 0.032);
    opacity: 0.32;
    text-shadow: 0 0 50px rgba(231, 191, 106, 0.025);
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 28px;
  }

  .admin-layout {
    max-width: 680px;
    padding-top: 42px;
  }

  .admin-note {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .site-footer,
  .admin-layout {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding: 20px 0;
  }

  .brand {
    font-size: 11px;
  }

  .year-badge {
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero {
    padding-top: clamp(56px, 10.5svh, 88px);
  }

  .hero__intro {
    min-height: 148px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .eyebrow span {
    margin: 0 4px;
  }

  .hero__title {
    font-size: clamp(24px, 6.55vw, 27px);
    line-height: 1.13;
  }

  .video-section {
    margin-top: 36px;
  }

  .video-frame {
    padding: 6px;
    border-radius: 22px;
  }

  .cinema-words {
    top: -18px;
    right: calc((100% - 100vw) / 2);
    bottom: -32px;
    left: calc((100% - 100vw) / 2);
  }

  .cinema-word {
    font-size: clamp(19px, 7vw, 29px);
    letter-spacing: -0.05em;
  }

  .video-mount {
    border-radius: 16px;
  }

  .video-cover {
    padding: 16px;
  }

  .video-cover__play {
    width: 58px;
    height: 58px;
    margin-bottom: 13px;
    box-shadow:
      0 0 0 9px rgba(231, 191, 106, 0.08),
      0 14px 38px rgba(0, 0, 0, 0.42);
  }

  .video-cover__play svg {
    width: 25px;
    margin-left: 4px;
  }

  .video-cover__eyebrow {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .video-cover strong {
    font-size: 14px;
  }

  .play-disc {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
  }

  .play-disc svg {
    width: 18px;
  }

  .video-placeholder p {
    font-size: 10px;
  }

  .contact {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    margin-top: 14px;
    padding: 26px 22px 22px;
    border-radius: 20px;
  }

  .contact__copy {
    justify-content: center;
    width: 100%;
    gap: 14px;
    text-align: center;
  }

  .contact-button {
    justify-content: space-between;
    width: 100%;
    padding: 6px 10px 6px 18px;
    gap: 4px;
    font-size: clamp(11px, 3.6vw, 14px);
    letter-spacing: -0.015em;
    white-space: nowrap;
  }

  .contact-button__label {
    flex: 1;
    text-align: center;
  }

  .site-footer {
    justify-content: center;
    padding-top: 20px;
    color: #858780;
    text-align: center;
  }

  .site-footer p {
    display: block;
  }

  .admin-layout {
    padding: 24px 0 48px;
  }

  .settings-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .settings-card__header {
    align-items: flex-start;
  }

  .settings-card h2 {
    font-size: 16px;
  }

  .status-pill {
    padding: 6px 8px;
    font-size: 8px;
  }

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

  .settings-actions__secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
    min-height: 52px;
  }

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

  .auth-layout {
    padding: 24px 0;
  }

  .auth-card {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
  }
}

@media (max-width: 340px) {
  .contact-button {
    padding-left: 17px;
    font-size: 11px;
  }
}

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