/* =========================================================
   MR SHRIMP — стили лендинга BOX
   Только секции этой страницы. Каркас (тема, шапка, футер,
   кнопки, модалка) — в storefront.css.
   ========================================================= */

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(12,112,135,0.30) 0%, rgba(12,112,135,0) 55%),
    radial-gradient(100% 80% at 12% 92%, rgba(12,112,135,0.18) 0%, rgba(12,112,135,0) 50%),
    linear-gradient(180deg, #013047 0%, var(--bg-primary) 48%, #001b2a 100%);
  z-index: -2;
}
.hero-canvas { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero-shrimp {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(54vw, 720px);
  color: var(--accent-cool);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.hero-shrimp svg { width: 100%; height: auto; }

.hero-content { max-width: 720px; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-cool); font-weight: 600;
  border: 1px solid var(--accent-cool-line);
  padding: 9px 16px; border-radius: 999px;
  margin-bottom: 30px;
}
.hero-eyebrow svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
  letter-spacing: -0.015em;
  line-height: 1.06;
}
.hero h1 em { font-style: italic; color: var(--accent-cool); font-weight: 500; }
.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.6;
}
.hero-actions { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 14.5px; color: var(--text-muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-note .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-cool); }

/* Преимущества */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.feature {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius);
  padding: 32px 26px;
  background: rgba(12,112,135,0.05);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.feature:hover { border-color: var(--accent-cool-line); transform: translateY(-4px); background: rgba(12,112,135,0.1); }
.feature-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--accent-cool-line);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--accent-cool);
  margin-bottom: 22px;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 21px; margin-bottom: 9px; }
.feature p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }

/* Боксы */
.box-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 56px; align-items: start; }
.box-card {
  position: relative;
  border: 1px solid var(--accent-cool-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12,112,135,0.10), rgba(0,35,54,0.4));
  padding: 40px 36px 36px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.box-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); }
.box-card.featured {
  border-color: var(--accent-cool);
  box-shadow: 0 0 0 1px var(--accent-cool), 0 24px 60px -28px rgba(12,112,135,0.6);
  background: linear-gradient(180deg, rgba(12,112,135,0.20), rgba(0,35,54,0.5));
}
.box-badge {
  position: absolute; top: -14px; left: 36px;
  background: var(--accent-cool);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
}
.box-badge svg { width: 14px; height: 14px; }
.box-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.box-name { font-size: 17px; letter-spacing: 0.04em; }
.box-name .label { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-cool); font-weight: 600; display:block; margin-bottom: 6px; }
.box-name strong { font-family: var(--font-serif); font-size: 32px; font-weight: 600; }
.box-icon { color: var(--accent-cool); opacity: 0.8; }
.box-icon svg { width: 46px; height: 46px; }
.box-price { font-family: var(--font-serif); font-size: 46px; font-weight: 700; margin: 18px 0 4px; letter-spacing: -0.01em; }
.box-price span { font-size: 22px; color: var(--text-muted); font-weight: 400; }
.box-tag { font-size: 15px; color: var(--text-muted); margin-bottom: 26px; }
.box-divider { height: 1px; background: var(--line-subtle); margin: 4px 0 24px; }
.box-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }
.box-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-light); line-height: 1.45; }
.box-list li svg { width: 18px; height: 18px; color: var(--accent-cool); flex-shrink: 0; margin-top: 2px; }
.box-list .plus { color: var(--accent-cool); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin: 6px 0 -2px; display: flex; align-items: center; gap: 10px; }
.box-list .plus::before { content:""; flex:1; height:1px; background: var(--accent-cool-line); }
.box-list .plus::after { content:""; flex:1; height:1px; background: var(--accent-cool-line); }
.box-card .btn { width: 100%; }
.box-note { text-align: center; font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 34px auto 0; max-width: 62ch; }

/* Как это работает */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 58px; position: relative; }
.step { position: relative; }
.step-num {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 600;
  color: var(--accent-cool);
  width: 44px; height: 44px;
  border: 1px solid var(--accent-cool-line);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
  background: var(--bg-primary);
}
.step-icon { color: var(--accent-cool); margin-bottom: 16px; }
.step-icon svg { width: 38px; height: 38px; }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.steps::before {
  content:""; position: absolute; top: 22px; left: 8%; right: 8%; height: 1px;
  background: var(--line-subtle); z-index: 0;
}

/* Форма заказа */
.order-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; margin-top: 12px; }
.order-aside .section-title { font-size: clamp(28px, 4vw, 44px); }
.order-aside-list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.order-aside-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-light); font-size: 15.5px; }
.order-aside-list li svg { width: 22px; height: 22px; color: var(--accent-cool); flex-shrink: 0; margin-top: 2px; }
.order-aside-list li span { color: var(--text-muted); }

.order-form {
  background: var(--bg-alt);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius);
  padding: 38px 36px;
}
.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label.field-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-light); margin-bottom: 10px; letter-spacing: 0.01em; }
label.field-label .req { color: var(--accent-warm); }

.input, .textarea, .select {
  width: 100%;
  background: rgba(1,38,57,0.6);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 15.5px;
  padding: 14px 16px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.input::placeholder, .textarea::placeholder { color: rgba(228,214,185,0.34); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent-cool);
  background: rgba(1,38,57,0.9);
  box-shadow: 0 0 0 3px var(--accent-cool-soft);
}
.input.invalid, .textarea.invalid { border-color: var(--accent-warm); box-shadow: 0 0 0 3px rgba(243,94,74,0.15); }
.textarea { resize: vertical; min-height: 96px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230C7087' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; cursor: pointer; }
.field-error { font-size: 13px; color: var(--accent-warm); margin-top: 7px; display: none; }
.field-error.show { display: block; }
.field-hint { font-size: 13px; color: var(--text-muted); margin-top: 7px; line-height: 1.5; }

/* радио-карточки */
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-card {
  position: relative;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .2s ease, background .2s ease;
}
.radio-card:hover { border-color: var(--accent-cool-line); }
.radio-card input { position: absolute; opacity: 0; }
.radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 1.6px solid var(--accent-cool-line); flex-shrink: 0; display: grid; place-items: center; transition: .2s; }
.radio-dot::after { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-cool); transform: scale(0); transition: transform .2s ease; }
.radio-card input:checked ~ .radio-dot { border-color: var(--accent-cool); }
.radio-card input:checked ~ .radio-dot::after { transform: scale(1); }
.radio-card:has(input:checked) { border-color: var(--accent-cool); background: var(--accent-cool-soft); }
.radio-card .rc-text strong { display: block; font-size: 15px; font-weight: 600; }
.radio-card .rc-text span { font-size: 13px; color: var(--text-muted); }

/* чекбокс 152-ФЗ */
.consent { display: flex; gap: 13px; align-items: flex-start; margin: 4px 0 24px; }
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent .checkbox {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.6px solid var(--accent-cool-line);
  border-radius: 6px;
  display: grid; place-items: center;
  cursor: pointer; transition: .2s; margin-top: 1px;
}
.consent .checkbox svg { width: 14px; height: 14px; color: #fff; opacity: 0; transform: scale(0.6); transition: .2s; }
.consent input:checked ~ .checkbox { background: var(--accent-cool); border-color: var(--accent-cool); }
.consent input:checked ~ .checkbox svg { opacity: 1; transform: scale(1); }
.consent input:focus-visible ~ .checkbox { box-shadow: 0 0 0 3px var(--accent-cool-soft); }
.consent label.consent-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; cursor: pointer; }
.consent a { color: var(--accent-cool); text-decoration: underline; text-underline-offset: 2px; }

.form-status { margin-top: 16px; font-size: 14.5px; display: none; align-items: center; gap: 10px; padding: 14px 16px; border-radius: var(--radius-sm); }
.form-status.show { display: flex; }
.form-status.success { background: rgba(12,112,135,0.18); border: 1px solid var(--accent-cool-line); color: var(--text-light); }
.form-status.error { background: rgba(243,94,74,0.14); border: 1px solid rgba(243,94,74,0.5); color: #ffd9d2; }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-submit { width: 100%; margin-top: 4px; }
.form-hint { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 14px; }

/* FAQ */
.faq-list { margin-top: 50px; max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line-subtle); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  font-family: var(--font-serif); font-size: clamp(18px, 2.4vw, 23px); font-weight: 500;
  color: var(--text-light); text-align: left;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--accent-cool); }
.faq-toggle { width: 32px; height: 32px; flex-shrink: 0; border: 1px solid var(--accent-cool-line); border-radius: 50%; display: grid; place-items: center; position: relative; transition: .3s; }
.faq-toggle::before, .faq-toggle::after { content:""; position: absolute; background: var(--accent-cool); border-radius: 2px; transition: .3s; }
.faq-toggle::before { width: 13px; height: 1.6px; }
.faq-toggle::after { width: 1.6px; height: 13px; }
.faq-item.open .faq-toggle { background: var(--accent-cool); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: #fff; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); height: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 26px; color: var(--text-muted); font-size: 16.5px; line-height: 1.65; max-width: 64ch; }

/* Отзывы */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.reviews-head .btn { flex-shrink: 0; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.review-card {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius);
  background: rgba(12,112,135,0.05);
  padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.review-card:hover { border-color: var(--accent-cool-line); background: rgba(12,112,135,0.09); transform: translateY(-3px); }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.review-name { font-family: var(--font-serif); font-size: 19px; font-weight: 600; line-height: 1.25; }
.review-meta { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stars { display: flex; gap: 3px; color: var(--accent-cool); flex-shrink: 0; margin-top: 3px; }
.stars svg { width: 15px; height: 15px; }
.stars .off { opacity: 0.25; }
.review-text {
  font-size: 15px; color: var(--text-light); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
  flex-grow: 1; /* карточки в ряду одной высоты, «Читать полностью» прижата к низу */
}
.review-card.expanded .review-text { display: block; -webkit-line-clamp: unset; overflow: visible; }
.review-more {
  display: none;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  color: var(--accent-cool); text-align: left;
  transition: color .2s ease;
}
.review-more:hover { color: var(--text-light); }
.review-more.show { display: inline-block; }

/* Пустое состояние — полноценный вариант на первое время */
.reviews-empty {
  display: none;
  margin-top: 50px;
  border: 1px dashed var(--accent-cool-line);
  border-radius: var(--radius);
  padding: clamp(50px, 8vw, 84px) 30px;
  text-align: center;
  flex-direction: column; align-items: center;
  background: rgba(12,112,135,0.04);
}
.reviews-empty.show { display: flex; }
.reviews-empty .re-art { width: 132px; color: var(--accent-cool); opacity: 0.85; margin-bottom: 30px; }
.reviews-empty .re-art svg { width: 100%; height: auto; }
.reviews-empty h3 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 14px; }
.reviews-empty p { color: var(--text-muted); font-size: 16.5px; max-width: 48ch; margin-bottom: 30px; line-height: 1.65; }

/* Бирюзовая залитая кнопка (не CTA-красная — красный только для заказа) */
.btn-cool { background: var(--accent-cool); color: #fff; }
.btn-cool:hover { transform: translateY(-2px); background: #0d7e98; box-shadow: 0 12px 28px -12px rgba(12,112,135,0.7); }
.btn-cool:active { transform: translateY(0); }
.btn-cool:disabled { background: rgba(12,112,135,0.3); color: rgba(255,255,255,0.5); cursor: not-allowed; transform: none; box-shadow: none; }

/* Модалка отзыва */
.modal-review { max-width: 560px; }

/* Интерактивный выбор оценки */
.star-input { display: flex; gap: 4px; }
.star-input button { background: none; border: none; padding: 5px; cursor: pointer; color: var(--accent-cool); line-height: 0; border-radius: 8px; }
.star-input button:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--accent-cool-soft); }
.star-input svg { width: 30px; height: 30px; transition: transform .15s ease; }
.star-input svg path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; transition: fill .15s ease; }
.star-input button:hover svg { transform: scale(1.12); }
.star-input button.on svg path { fill: currentColor; }
.rating-hint { font-size: 13.5px; color: var(--text-muted); margin-top: 8px; min-height: 20px; }

/* «Спасибо» после отправки (премодерация) */
.review-thanks { display: none; text-align: center; padding: 22px 6px 10px; flex-direction: column; align-items: center; }
.review-thanks.show { display: flex; }
.review-thanks .rt-icon {
  width: 68px; height: 68px; border-radius: 50%;
  border: 1px solid var(--accent-cool-line);
  background: var(--accent-cool-soft);
  display: grid; place-items: center; color: var(--accent-cool);
  margin-bottom: 22px;
}
.review-thanks .rt-icon svg { width: 34px; height: 34px; }
.review-thanks .rt-title { font-family: var(--font-serif); font-size: 28px; font-weight: 600; color: var(--text-light); margin-bottom: 12px; }
.review-thanks .rt-text { color: var(--text-muted); font-size: 15.5px; max-width: 42ch; line-height: 1.65; margin-bottom: 28px; }

/* политика поверх формы отзыва, если открыли из неё */
#policyModal { z-index: 220; }

/* Следите за нами */
.follow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.channel-card {
  border: 1px solid var(--accent-cool-line);
  border-radius: var(--radius);
  padding: 30px 32px;
  display: flex; align-items: center; gap: 22px;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  background: rgba(12,112,135,0.06);
}
.channel-card:hover { transform: translateY(-4px); background: rgba(12,112,135,0.14); border-color: var(--accent-cool); }
.channel-card .ch-icon { width: 58px; height: 58px; border-radius: 15px; border: 1px solid var(--accent-cool-line); display: grid; place-items: center; color: var(--accent-cool); flex-shrink: 0; }
.channel-card .ch-icon svg { width: 32px; height: 32px; }
.channel-card .ch-text strong { font-family: var(--font-serif); font-size: 23px; font-weight: 600; display: block; }
.channel-card .ch-text span { font-size: 14.5px; color: var(--text-muted); }
.channel-card .ch-arrow { margin-left: auto; color: var(--accent-cool); transition: transform .3s ease; }
.channel-card:hover .ch-arrow { transform: translateX(5px); }

/* Адаптив лендинга */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .order-layout { grid-template-columns: 1fr; gap: 38px; }
  .hero-shrimp { opacity: 0.28; right: -18%; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .box-grid { grid-template-columns: 1fr; }
  .follow-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .order-form { padding: 30px 22px; }
  .box-card { padding: 36px 26px 30px; }
}

/* =========================================================
   Видео-секция (продажный ролик BOX)
   ========================================================= */
.video-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.video-head .section-lead { margin-left: auto; margin-right: auto; }

.video-frame {
  position: relative;
  max-width: 940px;
  margin: 52px auto 0;
  border: 1px solid var(--accent-cool-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: 0 0 0 1px rgba(12,112,135,0.18), 0 34px 70px -34px rgba(0,0,0,0.65), 0 0 60px -30px rgba(12,112,135,0.5);
}
/* соотношение сторон: 16:9. Для вертикального ролика поменяй на 9 / 16 (и max-width у .video-frame, напр. 420px). */
.video-aspect { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--bg-alt); }
.video-aspect video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }

.video-cover {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  cursor: pointer;
  /* полупрозрачная обложка: постер-кадр виден под play-кнопкой, лёгкое затемнение
     по центру/снизу — для контраста кнопки и читаемости */
  background:
    radial-gradient(58% 58% at 50% 50%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 72%),
    linear-gradient(180deg, rgba(1,28,40,0.22) 0%, rgba(0,16,26,0.42) 100%);
  border: none;
  width: 100%; height: 100%;
  transition: opacity .35s ease;
}
.video-cover.hidden { opacity: 0; pointer-events: none; }
.video-cover .cover-bubbles { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.video-cover .play {
  position: relative; z-index: 2;
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--accent-cool);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 14px 40px -12px rgba(12,112,135,0.8);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.video-cover .play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-cover:hover .play { transform: scale(1.07); background: #0d7e98; box-shadow: 0 18px 48px -12px rgba(12,112,135,0.9); }
.video-cover:focus-visible { outline: none; }
.video-cover:focus-visible .play { box-shadow: 0 0 0 4px var(--accent-cool-soft), 0 14px 40px -12px rgba(12,112,135,0.8); }
.video-cover .cover-label {
  position: absolute; bottom: 26px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-sans); font-size: 13.5px; letter-spacing: 0.04em;
  color: var(--text-muted);
  z-index: 2;
}
.video-cta { text-align: center; margin-top: 38px; }

@media (max-width: 560px) {
  .video-frame { margin-top: 38px; }
  .video-cover .play { width: 70px; height: 70px; }
  .video-cover .play svg { width: 28px; height: 28px; }
}
