/* ============================================================
   VOLA CREATOR PROGRAM — styles.css
   Prototype / English master.
   Localize text content per market in index.html.
   ============================================================ */

/* ----------------------------------------------------------
   FONT — Archivo variable, self-hosted (OFL)
   Latin covers: RO/PL/ES/EN/IT.
   Latin-ext covers diacritics: ă/ș/ț (RO), ą/ę/ó (PL), etc.
   BG (Cyrillic) needs a separate subset — add @font-face later.
   ---------------------------------------------------------- */
@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ----------------------------------------------------------
   DESIGN TOKENS
   Change nothing here unless the brief changes.
   A/B CTA swap: comment line A, uncomment line B.
   ---------------------------------------------------------- */
:root {
  /* --- Palette --- */
  --bg:          #FFFFFF;
  --bg-fallback: #F9FCFE;
  --bg-cool:     #F2F6FC;
  --bg-warm:     #FBF3DE;
  --text:        #0B0E1B;
  --text-muted:  #4B5066;
  --blue:        #2C55D3;
  --blue-light:  #4895D8;
  --gold:        #EDB44D;
  --border:      #E6ECF5;
  --footer-bg:   #0B0E1B;
  --error:       #dc2626;
  --success-bg:  #f0fdf4;
  --success-bd:  #86efac;
  --success-txt: #15803d;

  /* --- CTA A/B ---
     A: blue (default)
     B: gold — swap to: --cta-bg: #EDB44D; --cta-text: #0B0E1B;
  */
  --cta-bg:   #2C55D3; /* A */
  --cta-text: #FFFFFF; /* A */

  /* --- Type scale — fluid via clamp() ---
     Mobile  → Desktop
     H1: 32  → 52px
     H2: 24  → 34px
     Sub: 18 → 22px
     Body:16 → 18px
     Small:  14px (fixed)
  */
  --t-h1:    clamp(2rem,     5.5vw, 3.25rem);
  --t-h2:    clamp(1.5rem,   3.5vw, 2.125rem);
  --t-sub:   clamp(1.125rem, 2vw,   1.375rem);
  --t-body:  clamp(1rem,     1.5vw, 1.125rem);
  --t-small: 0.875rem;

  /* --- Spacing --- */
  --pad-section: clamp(2.5rem, 6vw, 6rem);
  --pad-x:       clamp(1.25rem, 4vw, 2rem);

  /* --- Layout --- */
  --w-max:  1080px;
  --w-text:  660px;
}

/* ----------------------------------------------------------
   RESET
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Smooth scroll respects prefers-reduced-motion via the media query below */
}

body {
  font-family: 'Archivo', sans-serif;
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--blue);
  text-decoration: underline;
}
a:hover {
  color: var(--blue-light);
}

/* Reduced motion: kill scroll animation and transitions */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ----------------------------------------------------------
   ACCESSIBILITY UTILITIES
   ---------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Narrower column for prose + form */
.text-block {
  max-width: var(--w-text);
}

/* ----------------------------------------------------------
   SCROLL FADE-IN
   Applied to section contents via JS (IntersectionObserver).
   ---------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: inherit;
  font-size: var(--t-body);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  padding: 0.875rem 1.75rem;
  min-height: 44px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background-color: var(--cta-bg);
  color: var(--cta-text);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--blue-light);
  color: #fff;
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 0.875rem 1.25rem;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--text);
  border-color: var(--text-muted);
}

/* Full-width (mobile default) */
.btn-full  { width: 100%; }

/* Grows to fill flex container */
.btn-flex  { flex: 1; min-width: 180px; }

/* ----------------------------------------------------------
   GOLD ACCENT — for money numbers
   ---------------------------------------------------------- */
.gold {
  color: var(--gold);
  font-weight: 700;
}

/* ===========================================================
   TOP BAR
   =========================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: 0.75rem;
}

.topbar .container {
  display: flex;
  align-items: center;
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.wordmark {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  user-select: none;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.hero h1 {
  font-size: var(--t-h1);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.25rem;
  /* Tight headline column — ~18 ch is intentional */
  max-width: 18ch;
}

.hero-sub {
  font-size: var(--t-sub);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.cta-hero {
  font-size: 1.0625rem;
  padding: 1rem 2.25rem;
  min-height: 52px;
}

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.how-it-works {
  background: var(--bg-warm);
  padding-block: var(--pad-section);
}

.how-it-works h2 {
  font-size: var(--t-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  max-width: var(--w-text);
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--t-body);
  line-height: 1.5;
  counter-increment: steps-counter;
}

/* Blue number badge via pseudo-element */
.steps-list {
  counter-reset: steps-counter;
}
.steps-list li::before {
  content: counter(steps-counter);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

/* BONUS tag + line */
.bonus-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: var(--w-text);
}

.bonus-tag {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--text);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.5625rem;
  border-radius: 3px;
  margin-top: 0.2rem;
}

.bonus-line p {
  font-size: var(--t-body);
  color: var(--text);
  line-height: 1.5;
}

/* ===========================================================
   OBJECTIONS
   =========================================================== */
.objections {
  padding-block: var(--pad-section);
  border-bottom: 1px solid var(--border);
}

.objection-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: var(--w-text);
}

.objection strong {
  display: block;
  font-size: var(--t-sub);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.objection p {
  font-size: var(--t-body);
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .objection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 100%;
  }
}

/* ===========================================================
   SOCIAL PROOF
   =========================================================== */
.proof {
  background: var(--bg-warm);
  padding-block: var(--pad-section);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.proof-meta {
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.proof-quote {
  font-size: var(--t-body);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
}

/* ===========================================================
   THE HONEST VERSION
   =========================================================== */
.honest {
  padding-block: var(--pad-section);
  border-top: 1px solid var(--border);
}

.honest p {
  font-size: var(--t-sub);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================================================
   FORM SECTION
   =========================================================== */
.apply-section {
  background: var(--bg-cool);
  padding-block: var(--pad-section);
}

.apply-section h2 {
  font-size: var(--t-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.625rem;
}

.form-justification {
  font-size: var(--t-small);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

/* --- Step indicator --- */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--text-muted);
}

.step-dots {
  display: flex;
  gap: 0.375rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}

.dot-active {
  background: var(--blue);
}

/* --- Fieldsets --- */
.form-step {
  border: none;
  padding: 0;
  min-width: 0;
}

.form-step.hidden {
  display: none;
}

@keyframes step-enter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.form-step.step-enter {
  animation: step-enter 0.28s ease forwards;
}

/* --- Field wrapper --- */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.375rem;
}

/* Labels */
.field > label:not(.radio-label):not(.check-label) {
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* Text inputs, email, tel, select, textarea */
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;   /* Hard 16px floor: prevents iOS Safari zoom */
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 0.875rem;
  width: 100%;
  min-height: 44px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 85, 211, 0.12);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--error);
}

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

/* Custom select arrow */
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%234B5066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

/* --- Radio + checkbox groups --- */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-label,
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: var(--t-body);
  color: var(--text);
  min-height: 44px;
  padding-block: 0.25rem;
}

/* Vertically center single-line radio labels */
.radio-label {
  align-items: center;
}

.radio-label input[type="radio"],
.check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--blue);
  cursor: pointer;
  margin-top: 0.125rem;
}

/* Consent row alignment */
.field-check {
  flex-direction: column;
}

.field-check .check-label {
  align-items: flex-start;
}

/* --- Hints & errors --- */
.field-hint {
  font-size: var(--t-small);
  color: var(--text-muted);
  line-height: 1.45;
}

.field-hint-inline {
  font-size: 0.9em;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.25rem;
}

.field-error {
  font-size: var(--t-small);
  color: var(--error);
  min-height: 1em;
  line-height: 1.4;
}

/* --- Form action row --- */
.form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.form-actions .btn-ghost {
  flex-shrink: 0;
}

/* --- Success / error states --- */
.form-success {
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: var(--success-bg);
  border: 1px solid var(--success-bd);
  text-align: center;
}

.success-headline {
  font-size: var(--t-sub);
  font-weight: 700;
  color: var(--success-txt);
  line-height: 1.4;
}

.form-error-box {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
}

.form-error-box p {
  font-size: var(--t-body);
  color: var(--error);
}

.hidden {
  display: none !important;
}

/* ===========================================================
   CREATOR EXAMPLES — video carousel
   =========================================================== */
.creator-examples {
  background: var(--bg-cool);
  padding-block: var(--pad-section);
}

.creator-examples h2 {
  font-size: var(--t-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: var(--t-body);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Carousel wrapper: positions arrows outside the track */
.carousel-wrapper {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem; /* space for scrollbar on desktop */
  /* Hide scrollbar visually but keep scrolling */
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.carousel-track::-webkit-scrollbar {
  height: 4px;
}
.carousel-track::-webkit-scrollbar-track {
  background: transparent;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* Video cards — portrait 9:16 ratio */
.video-card {
  flex-shrink: 0;
  width: 180px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Subtle border, no heavy shadow */
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.18s ease;
}

.video-card:hover {
  transform: translateY(-3px);
}

.video-card-thumb {
  width: 100%;
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-cool);
}

.video-card-info {
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.video-earn {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.video-views {
  font-size: var(--t-small);
  color: var(--text-muted);
}

/* Carousel arrow buttons */
.carousel-btn {
  display: none; /* hidden on mobile — just swipe */
  position: absolute;
  top: 40%; /* sits next to thumb area */
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.carousel-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

@media (min-width: 640px) {
  .carousel-btn { display: flex; }
  .video-card { width: 160px; }
  .carousel-wrapper { padding-inline: 28px; }
}

@media (min-width: 900px) {
  .video-card { width: 175px; }
}

/* ===========================================================
   CTA BAND — tight section right after carousel
   =========================================================== */
.cta-band {
  background: var(--blue);
  padding-block: 3rem;
  text-align: center;
}

.cta-band .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-band-title {
  font-size: var(--t-h2);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-band-sub {
  font-size: var(--t-body);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.cta-band-btn {
  background: var(--gold);
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  border: none;
}

.cta-band-btn:hover,
.cta-band-btn:focus-visible {
  background: #f5c05a;
  outline: none;
}

/* ===========================================================
   MODAL
   =========================================================== */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11, 14, 27, 0.55);
  display: flex;
  align-items: flex-end;   /* mobile: sheet from bottom */
  justify-content: center;
  /* Fade in */
  animation: modal-fade 0.2s ease forwards;
}

.modal-overlay.hidden {
  display: none !important;
}

@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-dialog {
  background: var(--bg);
  width: 100%;
  max-height: 92dvh; /* dvh so mobile browser chrome is excluded */
  max-height: 92vh;  /* fallback */
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: sheet-up 0.28s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes sheet-up {
  from { transform: translateY(24px); opacity: 0.6; }
  to   { transform: none; opacity: 1; }
}

@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }
  .modal-dialog {
    max-width: 560px;
    border-radius: 12px;
    animation: dialog-pop 0.22s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  }
  @keyframes dialog-pop {
    from { transform: scale(0.97) translateY(8px); opacity: 0; }
    to   { transform: none; opacity: 1; }
  }
}

/* Modal header — sticky */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

.modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--bg-cool);
  color: var(--text);
  outline: none;
}

/* Modal body — scrollable */
.modal-body {
  overflow-y: auto;
  padding: 1.5rem;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* Reduce top spacing inside modal (header already has label) */
.modal-body .apply-section {
  background: none;
  padding: 0;
}

.modal-body .form-justification {
  font-size: var(--t-small);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ===========================================================
   FORM — 3-URL video links group
   =========================================================== */
.video-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.video-links-group input[type="url"] {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 0.875rem;
  width: 100%;
  min-height: 44px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.video-links-group input[type="url"]:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 85, 211, 0.12);
}

.video-links-group input[type="url"].is-invalid {
  border-color: var(--error);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--footer-bg);
  padding-block: 2.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--t-small);
  font-weight: 600;
  text-decoration: none;
}

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

.footer-legal {
  font-size: var(--t-small);
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}
