:root {
  --ink: #101522;
  --navy: #131b2e;
  --muted: #5b6472;
  --line: #d8dde6;
  --soft: #f7f9fb;
  --orange: #e45405;
  --orange-soft: #fff0e8;
  --success: #137a3a;
  --success-soft: #eaf8ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.watch-email-page {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(228, 84, 5, 0.1), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(19, 27, 46, 0.1), transparent 24rem),
    #f7f9fb;
}

.watch-page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.watch-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 16%, rgba(228, 84, 5, 0.62), transparent 26rem),
    radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.17), transparent 21rem),
    linear-gradient(135deg, #131b2e 0%, #0d1424 72%, #2a160f 100%);
  box-shadow: 0 28px 90px rgba(16, 21, 34, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.watch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.watch-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  padding: 42px;
  align-items: center;
}

.watch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  backdrop-filter: blur(10px);
}

.watch-kicker--light {
  background: var(--orange-soft);
  color: var(--orange);
  border-color: rgba(228, 84, 5, 0.18);
}

.watch-hero h1 {
  margin: 20px 0 0;
  max-width: 760px;
  font-family: "Public Sans", sans-serif;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 950;
}

.watch-hero__lead {
  margin: 18px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.03rem;
  line-height: 1.75;
  font-weight: 650;
}

.watch-hero__note {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  max-width: 680px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  padding: 14px 15px;
  font-size: 0.86rem;
  line-height: 1.55;
  font-weight: 650;
}

.watch-hero__skip {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.watch-hero__skip:hover {
  color: #fff;
}

.watch-hero__metrics {
  display: grid;
  gap: 14px;
}

.watch-metric {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  padding: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.watch-metric .material-symbols-outlined {
  color: #ffb891;
  font-size: 32px;
}

.watch-metric strong {
  display: block;
  margin-top: 10px;
  font-family: "Public Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.watch-metric span:last-child {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 650;
}

.watch-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(16, 21, 34, 0.08);
}

.watch-card--overflow {
  overflow: hidden;
}

.watch-card__header {
  padding: 24px 28px;
  border-bottom: 1px solid #eef1f5;
  background: radial-gradient(circle at 0% 0%, rgba(228, 84, 5, 0.09), transparent 14rem), #fff;
}

.watch-eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  margin: 0;
}

.watch-card__title {
  margin: 6px 0 0;
  font-family: "Public Sans", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.watch-card__text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 650;
}

.watch-card__body {
  padding: 28px;
}

.watch-email-page .input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 0.9rem 1rem;
  font-size: 0.94rem;
  font-weight: 750;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: 0.18s ease;
}

.watch-email-page .input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(228, 84, 5, 0.11);
}

.watch-email-page .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(135deg, #ff6b1a, #e45405 58%, #bd4107);
  color: #fff;
  padding: 0.95rem 1.35rem;
  font-size: 0.94rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(228, 84, 5, 0.28);
  transition: 0.18s ease;
  text-decoration: none;
}

.watch-email-page .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 48px rgba(228, 84, 5, 0.36);
}

.watch-email-page .btn-primary:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.watch-email-page .btn-ghost,
.watch-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 0.78rem 1rem;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s ease;
  text-decoration: none;
}

.watch-email-page .btn-ghost:hover,
.watch-btn-secondary:hover {
  border-color: rgba(228, 84, 5, 0.35);
  background: var(--orange-soft);
  color: var(--orange);
}

.watch-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 17px;
  background: linear-gradient(135deg, #ff6b1a, #e45405 58%, #bd4107);
  color: #fff;
  padding: 0.95rem 1.35rem;
  font-size: 0.94rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(228, 84, 5, 0.28);
  text-decoration: none;
}

.watch-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.watch-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 8px;
}

.watch-small-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
}

.hidden-block {
  display: none !important;
}

.watch-step-status {
  margin: 0 0 4px;
  min-height: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.watch-step-status.is-visible {
  margin-top: 16px;
  min-height: 24px;
}

.watch-step-status.is-error {
  color: #dc2626;
}

.watch-step-status.is-success {
  color: var(--success);
}

.watch-step-status.is-muted {
  color: var(--muted);
}

.watch-sectors--error .sector-card {
  border-color: rgba(220, 38, 38, 0.45);
}

.sector-card.sector-card--error {
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.watch-free-lock {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
}

.watch-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.watch-benefit {
  border: 1px solid #e8ecf2;
  background: #fbfcfe;
  border-radius: 22px;
  padding: 18px;
}

.watch-benefit .material-symbols-outlined {
  display: inline-flex;
  height: 42px;
  width: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 24px;
}

.watch-benefit strong {
  display: block;
  margin-top: 13px;
  font-weight: 950;
  font-size: 0.94rem;
}

.watch-benefit span:last-child {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.55;
}

.watch-plan-compare {
  overflow: hidden;
  height: 100%;
}

.watch-plan-row {
  padding: 24px;
}

.watch-plan-row + .watch-plan-row {
  border-top: 1px solid #eef1f5;
}

.watch-plan-row--pro {
  background: radial-gradient(circle at 100% 0%, rgba(228, 84, 5, 0.14), transparent 10rem), #fff8f4;
}

.watch-plan-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
  background: #f1f4f8;
  color: var(--muted);
}

.watch-plan-chip--pro {
  background: var(--orange);
  color: #fff;
}

.watch-check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.watch-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.watch-check-list .material-symbols-outlined {
  color: var(--success);
  font-size: 18px;
  margin-top: 1px;
}

.watch-steps-shell {
  margin-top: 24px;
}

.watch-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  padding: 18px 22px;
}

.watch-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.watch-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 950;
  background: var(--orange-soft);
  color: var(--orange);
}

.watch-badge--neutral {
  background: #eef1f5;
  color: var(--muted);
}

.watch-badge--pro {
  background: var(--success-soft);
  color: var(--success);
}

.watch-badge--starter {
  background: #eef1f5;
  color: var(--muted);
}

.watch-badge--free {
  background: var(--orange-soft);
  color: var(--orange);
}

.watch-progress {
  display: flex;
  align-items: center;
  gap: 9px;
}

.step-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 999px;
  background: #d8dde6;
  box-shadow: inset 0 0 0 2px #fff;
}

.step-dot.is-current,
.step-dot.is-done {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(228, 84, 5, 0.11);
}

.step-line {
  width: 50px;
  height: 2px;
  border-radius: 999px;
  background: #d8dde6;
}

.step-line.is-done {
  background: var(--orange);
}

.step-panel {
  display: none;
}

.step-panel.is-active {
  display: block;
}

.sector-card {
  width: 100%;
  text-align: left;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 18px;
  cursor: pointer;
  transition: 0.18s ease;
  font: inherit;
}

.sector-card:hover {
  border-color: rgba(228, 84, 5, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(16, 21, 34, 0.06);
}

.sector-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #eef1f5;
  color: var(--navy);
  transition: 0.18s ease;
}

.sector-card.is-selected .sector-card__icon {
  background: var(--orange-soft);
  color: var(--orange);
}

.is-selected {
  border-color: var(--orange) !important;
  background: linear-gradient(180deg, #fff, #fff8f4) !important;
  box-shadow: 0 18px 44px rgba(228, 84, 5, 0.12) !important;
}

.watch-upsell {
  margin-top: 24px;
  border-radius: 28px;
  border: 1px solid rgba(228, 84, 5, 0.22);
  background: radial-gradient(circle at 100% 0%, rgba(228, 84, 5, 0.13), transparent 12rem), #fff8f4;
  padding: 22px;
}

.zone-block {
  border: 1px solid #e8ecf2;
  border-radius: 26px;
  padding: 22px;
  background: #fafbfc;
}

.zone-block + .zone-block {
  margin-top: 16px;
}

.zone-title {
  margin: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.country-pill {
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0.62rem 1rem;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s ease;
  font: inherit;
}

.country-pill:hover {
  border-color: rgba(228, 84, 5, 0.35);
  background: var(--orange-soft);
  color: var(--orange);
}

.watch-advice {
  border: 1px solid rgba(228, 84, 5, 0.2);
  background: var(--orange-soft);
  border-radius: 24px;
  padding: 18px;
}

.watch-collab-card {
  border: 1px solid rgba(228, 84, 5, 0.24);
  background: radial-gradient(circle at 100% 0%, rgba(228, 84, 5, 0.16), transparent 11rem), #fff8f4;
  border-radius: 28px;
  padding: 22px;
  margin-top: 24px;
}

.watch-owner-email {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  padding: 16px;
}

.watch-collab-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(216, 221, 230, 0.9);
  background: #fff;
  border-radius: 18px;
  padding: 10px;
}

.watch-collab-remove {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff0f0;
  color: #b42318;
  cursor: pointer;
  transition: 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.watch-collab-remove:hover {
  background: #ffdada;
}

.recap-box {
  margin-top: 22px;
  border-radius: 26px;
  border: 1px solid rgba(228, 84, 5, 0.22);
  background: radial-gradient(circle at 0% 0%, rgba(228, 84, 5, 0.12), transparent 12rem), linear-gradient(135deg, #fff8f4, #fff);
  padding: 22px;
}

.recap-lead {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1.65;
}

.recap-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.6;
}

.recap-box li {
  margin-bottom: 4px;
}

.recap-close {
  margin: 14px 0 0;
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 900;
}

.watch-toggle-card {
  display: flex;
  gap: 16px;
  border: 1px solid #e3e8ef;
  background: #fbfcfe;
  border-radius: 26px;
  padding: 20px;
  cursor: pointer;
  transition: 0.18s ease;
}

.watch-toggle-card:hover {
  border-color: rgba(228, 84, 5, 0.35);
  background: #fff8f4;
}

.watch-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

#config-success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(16, 21, 34, 0.58);
  backdrop-filter: blur(6px);
}

#config-success-modal.is-open {
  display: flex;
}

#config-success-modal .modal-panel {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(16, 21, 34, 0.16);
  padding: 30px 26px;
  text-align: center;
}

#config-success-modal .text-success {
  color: var(--success);
}

@media (max-width: 920px) {
  .watch-hero__inner,
  .watch-free-lock {
    grid-template-columns: 1fr;
  }

  .watch-hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .watch-page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 20px;
  }

  .watch-hero {
    border-radius: 26px;
  }

  .watch-hero__inner {
    padding: 26px;
  }

  .watch-hero__metrics,
  .watch-form-grid,
  .watch-benefit-grid {
    grid-template-columns: 1fr;
  }

  .watch-steps-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .watch-progress {
    width: 100%;
  }

  .step-line {
    flex: 1;
    width: auto;
  }

  .watch-actions {
    flex-direction: column-reverse;
  }

  .watch-actions > * {
    width: 100%;
  }
}
