@import url('brand.css');
@import url('fonts/fonts.css');

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

html { scroll-behavior: smooth; }

body.mtvf-page {
  margin: 0;
  font-family: var(--mtv-brand-font);
  color: var(--mtv-brand-text);
  background: var(--mtv-brand-bg);
  line-height: 1.5;
}

.mtvf-skip { position: absolute; left: -9999px; z-index: 100; }
.mtvf-skip:focus {
  left: 1rem; top: 1rem;
  background: #fff; padding: 0.5rem 0.75rem;
  border-radius: 6px; box-shadow: var(--mtv-shadow);
}

/* Header */
.mtvf-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mtv-brand-border);
}
.mtvf-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
}
.mtvf-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 50vw);
}
.mtvf-header__tag {
  font-size: 0.7rem;
  color: var(--mtv-brand-metrotv);
  font-weight: 600;
  font-family: var(--mtv-brand-font);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: right;
}
@media (min-width: 640px) {
  .mtvf-header__tag { font-size: 0.8rem; }
}

/* Hero */
.mtvf-hero {
  position: relative;
  overflow: hidden;
  background: var(--mtv-brand-ink);
}
.mtvf-hero__pattern {
  position: absolute;
  inset: 0;
  background: var(--mtv-gradient-radial);
  pointer-events: none;
}
.mtvf-hero__inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .mtvf-hero__inner {
    grid-template-columns: 1fr 1fr;
    padding: 5rem 1.25rem 6rem;
    gap: 3rem;
  }
}
.mtvf-hero__content { color: #fff; }
.mtvf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  font-weight: 600;
}
.mtvf-hero__title {
  margin: 1.25rem 0 0;
  font-family: var(--mtv-brand-font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.mtvf-hero__lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
}
.mtvf-value-box {
  margin-top: 1.25rem;
  max-width: 36rem;
  padding: 1rem 1.15rem;
  border-radius: var(--mtv-radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.mtvf-value-box p { margin: 0; }
.mtvf-value-box p + p { margin-top: 0.5rem; }
.mtvf-value-box strong { color: #fff; }
.mtvf-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mtvf-hero__media { position: relative; }
.mtvf-hero__frame {
  overflow: hidden;
  border-radius: var(--mtv-radius);
  box-shadow: var(--mtv-shadow-glow);
  outline: 1px solid rgba(255, 255, 255, 0.1);
}
.mtvf-hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.mtvf-hero__season {
  display: none;
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--mtv-radius);
  background: #fff;
  box-shadow: var(--mtv-shadow);
}
@media (min-width: 640px) {
  .mtvf-hero__season { display: flex; }
}
.mtvf-hero__season-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: oklch(58.5% .235 25.5 / .1);
  color: var(--mtv-brand-primary);
}
.mtvf-hero__season-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
}
.mtvf-hero__season-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--mtv-brand-muted);
}
.mtvf-hero__season-value {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mtv-brand-navy);
}

/* Buttons */
.mtvf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--mtv-gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--mtv-radius-pill);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--mtv-brand-font);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 3px oklch(0 0 0 / .1);
  transition: filter 0.2s, transform 0.15s;
}
.mtvf-btn:hover { filter: brightness(1.06); }
.mtvf-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.mtvf-btn--hero {
  width: auto;
  box-shadow: var(--mtv-shadow-glow);
}
.mtvf-btn--ghost {
  width: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.mtvf-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  filter: none;
}

/* Scenes */
.mtvf-scenes {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.mtvf-scenes__intro {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.mtvf-scenes__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mtv-brand-metrotv);
}
.mtvf-scenes__title {
  margin: 0.75rem 0 0;
  font-family: var(--mtv-brand-font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--mtv-brand-text);
  letter-spacing: -0.02em;
}
.mtvf-scenes__lead {
  margin: 0.75rem 0 0;
  color: var(--mtv-brand-muted);
}
.mtvf-scenes__grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .mtvf-scenes__grid { grid-template-columns: repeat(3, 1fr); }
}
.mtvf-scene-card {
  overflow: hidden;
  border-radius: var(--mtv-radius);
  border: none;
  background: #fff;
  box-shadow: var(--mtv-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mtvf-scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px oklch(18% .02 260 / .18);
}
.mtvf-scene-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.mtvf-scene-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mtvf-scene-card:hover .mtvf-scene-card__media img {
  transform: scale(1.05);
}
.mtvf-scene-card__body { padding: 1.5rem; }
.mtvf-scene-card__tag {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mtv-brand-metrotv);
}
.mtvf-scene-card__body h3 {
  margin: 0.5rem 0 0;
  font-family: var(--mtv-brand-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mtv-brand-text);
}
.mtvf-scene-card__body p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--mtv-brand-muted);
}

.mtvf-steps {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: var(--mtv-radius);
  background: #fff;
  border: none;
  box-shadow: var(--mtv-shadow);
  text-align: center;
}
.mtvf-steps__title {
  margin: 0;
  font-family: var(--mtv-brand-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mtv-brand-text);
}
.mtvf-steps__list {
  margin: 1.25rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 32rem;
  text-align: left;
  counter-reset: step;
}
.mtvf-steps__list li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--mtv-brand-text);
  border-bottom: 1px solid var(--mtv-brand-border);
}
.mtvf-steps__list li:last-child { border-bottom: none; }
.mtvf-steps__list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--mtv-gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35rem;
}
.mtvf-steps__note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mtv-brand-text);
}
.mtvf-steps__cta {
  margin-top: 1.25rem;
  width: auto;
  display: inline-flex;
}

/* METROTV explainer */
.mtvf-explainer {
  border-top: 1px solid var(--mtv-brand-border);
  background: var(--mtv-brand-surface);
  padding: 3.5rem 1.25rem;
}
.mtvf-explainer__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.mtvf-explainer__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mtv-brand-metrotv);
}
.mtvf-explainer__title {
  margin: 0.75rem 0 0;
  font-family: var(--mtv-brand-font-display);
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--mtv-brand-text);
  letter-spacing: -0.02em;
}
.mtvf-explainer__lead,
.mtvf-explainer__more {
  margin: 1rem 0 0;
  color: var(--mtv-brand-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.mtvf-explainer__more a {
  color: var(--mtv-brand-primary);
  font-weight: 600;
}
.mtvf-devices {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.mtvf-devices__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: var(--mtv-radius-pill);
  border: 1px solid var(--mtv-brand-border);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mtv-brand-text);
  letter-spacing: 0.02em;
}

/* FAQ */
.mtvf-faq {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.mtvf-faq__title {
  margin: 0;
  font-family: var(--mtv-brand-font-display);
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: var(--mtv-brand-text);
  letter-spacing: -0.02em;
}
.mtvf-faq__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mtvf-faq__item {
  border: 1px solid var(--mtv-brand-border);
  border-radius: var(--mtv-radius);
  background: #fff;
  box-shadow: var(--mtv-shadow);
  overflow: hidden;
}
.mtvf-faq__item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--mtv-brand-text);
  cursor: pointer;
  list-style: none;
}
.mtvf-faq__item summary::-webkit-details-marker { display: none; }
.mtvf-faq__item summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: var(--mtv-brand-primary);
}
.mtvf-faq__item[open] summary::after { content: '−'; }
.mtvf-faq__item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.9rem;
  color: var(--mtv-brand-muted);
  line-height: 1.55;
}
.mtvf-faq__item a {
  color: var(--mtv-brand-primary);
  font-weight: 600;
}

/* Form section */
.mtvf-form-section {
  border-top: 1px solid var(--mtv-brand-border);
  background: var(--mtv-brand-surface);
  padding: 4rem 0;
}
.mtvf-form-section__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .mtvf-form-section__inner {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
  }
}
.mtvf-form-aside__title {
  margin: 0;
  font-family: var(--mtv-brand-font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--mtv-brand-text);
  letter-spacing: -0.02em;
}
.mtvf-form-sub {
  margin: 0.75rem 0 0;
  color: var(--mtv-brand-muted);
  font-size: 0.95rem;
}
.mtvf-perks__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.mtvf-perks__list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  text-wrap: pretty;
}
.mtvf-perks__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: oklch(58.5% .235 25.5 / .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23da3a2f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.75rem no-repeat;
}

.mtvf-register {
  background: #fff;
  border: none;
  border-radius: var(--mtv-radius);
  box-shadow: var(--mtv-shadow);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .mtvf-register { padding: 2rem; }
}

.mtvf-label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 0.35rem;
  font-size: 0.875rem;
}
.mtvf-label:first-child { margin-top: 0; }
.mtvf-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--mtv-brand-muted);
}
.mtvf-hint--address { margin-top: 0.75rem; }
.mtvf-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--mtv-brand-border);
  border-radius: var(--mtv-radius-pill);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.mtvf-input:focus {
  outline: none;
  border-color: var(--mtv-brand-primary);
  box-shadow: 0 0 0 3px oklch(58.5% .235 25.5 / .12);
}
.mtvf-input:disabled { background: #fafafa; opacity: 0.7; }

.mtvf-form-row {
  display: grid;
  gap: 0;
}
@media (min-width: 640px) {
  .mtvf-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .mtvf-form-row .mtvf-label { margin-top: 1rem; }
}

.mtvf-combobox { position: relative; }
.mtvf-list {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  max-height: 12rem;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--mtv-brand-border);
  border-radius: 8px;
  box-shadow: var(--mtv-shadow);
}
.mtvf-list li { padding: 0.5rem 0.75rem; cursor: pointer; }
.mtvf-list li:hover { background: oklch(58.5% .235 25.5 / .06); }

.mtvf-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.45;
}
.mtvf-check input { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--mtv-brand-primary); }
.mtvf-check a { color: var(--mtv-brand-primary); font-weight: 600; }

.mtvf-error { color: #b00020; margin-top: 0.75rem; font-size: 0.9rem; }
.mtvf-success, .mtvf-already-today { padding: 0.25rem 0; }
.mtvf-success h2, .mtvf-already-today h2 {
  margin-top: 0;
  font-family: var(--mtv-brand-font-display);
  font-weight: 700;
  color: var(--mtv-brand-text);
}
.mtvf-links a { color: var(--mtv-brand-primary); font-weight: 600; }

/* Footer */
.mtvf-footer {
  background: #fff;
  color: var(--mtv-brand-muted);
  padding: 2.5rem 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.6;
  border-top: 1px solid var(--mtv-brand-border);
}
.mtvf-footer p { margin: 0.5rem 0; }
.mtvf-footer a { color: var(--mtv-brand-primary); text-decoration: none; font-weight: 600; }
.mtvf-footer a:hover { color: var(--mtv-brand-primary-dark); }
.mtvf-footer__operator { font-size: 0.8rem; color: var(--mtv-brand-muted); }
.mtvf-footer__links { font-size: 0.8rem; }

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mtvf-scene-card,
  .mtvf-scene-card__media img,
  .mtvf-btn { transition: none; }
}
