@charset "UTF-8";

:root {
  --service-accent: #f28a2e;
  --service-accent-dark: #d96f16;
  --service-ink: #20242c;
  --service-muted: #667085;
  --service-line: #dfe3e8;
  --service-soft: #f5f7f9;
  --service-white: #ffffff;
  --service-danger: #c93838;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--service-soft);
  color: var(--service-ink);
}

button,
input {
  font-family: "Microsoft YaHei", Arial, sans-serif;
}

button {
  border: 0;
}

.service-header {
  position: relative;
  height: 64px;
  background: #20242c;
  z-index: 10;
}

.service-header-inner {
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.service-logo {
  display: block;
  width: 270px;
  height: 30px;
  object-fit: contain;
}

.service-header-contact {
  min-width: 0;
  max-width: 610px;
  margin: 0 auto 0 0;
  color: #cfd3d8;
  font-size: 12px;
  line-height: 1.55;
}

.service-header-contact a {
  color: #fff;
  white-space: nowrap;
}

.service-header-contact a:hover,
.service-header-contact a:focus-visible {
  color: #ffd4ad;
}

.service-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.service-nav a {
  color: #e8eaed;
  font-size: 15px;
  line-height: 64px;
}

.service-nav a:hover,
.service-nav a:focus-visible,
.service-nav a.checked {
  color: var(--service-accent);
}

.service-main {
  min-height: calc(100vh - 64px);
}

.service-button {
  height: 46px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--service-accent);
  color: var(--service-white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-button:hover {
  background: var(--service-accent-dark);
}

.service-button:active {
  transform: translateY(1px);
}

.service-button:focus-visible,
.service-secondary-button:focus-visible,
.modal-close:focus-visible,
.plan-option:focus-visible,
.payment-option:focus-visible {
  outline: 3px solid rgba(242, 138, 46, 0.35);
  outline-offset: 2px;
}

.service-secondary-button {
  height: 46px;
  padding: 0 24px;
  border: 1px solid #cbd1d8;
  border-radius: 5px;
  background: var(--service-white);
  color: #394150;
  font-size: 16px;
  cursor: pointer;
}

/* Login */
.login-main {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  background: var(--service-white);
}
.login-basic { display: flex; align-items: center; justify-content: center; background: var(--service-soft); }
.login-basic .login-panel { width: min(460px, calc(100% - 32px)); padding: 56px 40px; background: #fff; border: 1px solid var(--service-line); border-radius: 8px; box-shadow: 0 12px 36px rgba(32,36,44,.08); }

.login-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #11161e;
}

.login-visual picture,
.login-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.login-visual img {
  object-fit: cover;
}

.login-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(7, 12, 18, 0.43); */
}

.login-visual-copy {
  position: absolute;
  top: 14%;
  left: 8%;
  right: 8%;
  z-index: 1;
  color: #000;
}

.login-visual-copy h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 600;
}

.login-visual-copy p {
  /* max-width: 560px; */
  color: #000;
  font-size: 15px;
  line-height: 1.65;
  word-break: break-all;
}

.mobile-prompt-break {
  display: none;
}

.login-visual-copy .login-contact {
  max-width: 680px;
  margin-top: 18px;
  color: #1a2029;
  font-size: 14px;
  line-height: 1.8;
}

.login-contact a {
  color: #141414;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-contact a:hover,
.login-contact a:focus-visible {
  color: #ffd4ad;
}

.login-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px clamp(30px, 6vw, 96px);
}

.login-form {
  width: min(420px, 100%);
}

.login-eyebrow {
  margin-bottom: 12px;
  color: var(--service-accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.login-title {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 600;
}

.login-subtitle {
  margin-bottom: 36px;
  color: var(--service-muted);
  font-size: 15px;
  line-height: 1.7;
}

.form-field {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  margin-bottom: 9px;
  color: #353b46;
  font-size: 15px;
  font-weight: 600;
}

.form-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cbd1d8;
  border-radius: 5px;
  background: #fff;
  color: #20242c;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--service-accent);
  box-shadow: 0 0 0 3px rgba(242, 138, 46, 0.14);
}

.form-input[aria-invalid="true"] {
  border-color: var(--service-danger);
}

.login-submit {
  width: 100%;
  margin-top: 8px;
}

.form-error {
  min-height: 22px;
  margin-top: 14px;
  color: var(--service-danger);
  font-size: 14px;
  line-height: 22px;
}

.login-support {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--service-line);
  color: var(--service-muted);
  font-size: 13px;
  line-height: 1.7;
}

.login-support a {
  color: var(--service-muted);
}

/* Video */
.video-page {
  min-height: calc(100vh - 64px);
  background: #10141a;
  color: #fff;
}

.trial-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-width: 146px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(10, 14, 20, 0.78);
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.trial-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ef5b50;
  box-shadow: 0 0 0 3px rgba(239, 91, 80, 0.2);
  vertical-align: 1px;
}

.trial-badge.vip {
  border-color: rgba(74, 201, 121, 0.45);
  color: #e9fff0;
}

.trial-badge.vip .trial-status-dot {
  background: #42c878;
  box-shadow: 0 0 0 3px rgba(66, 200, 120, 0.2);
}

.video-stage {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 48px;
}

.video-shell {
  position: relative;
}

.showcase-video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 208px);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid #303740;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  pointer-events: none;
}

.showcase-video::-webkit-media-controls {
  display: none !important;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  padding: 0 0 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(16, 20, 26, 0.78);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-play-button:hover {
  background: rgba(26, 32, 41, 0.94);
}

.video-play-button:focus-visible {
  outline: 3px solid var(--service-accent);
  outline-offset: 3px;
}

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

.video-control-bar {
  min-height: 74px;
  border: 1px solid #303740;
  border-radius: 0 0 6px 6px;
  background: #1a2029;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.video-tool {
  min-width: 0;
  padding: 10px 8px;
  border-right: 1px solid #303740;
  background: transparent;
  color: #c9ced6;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.2;
}

.video-tool:last-child {
  border-right: 0;
}

.video-tool:hover,
.video-tool:focus-visible {
  background: #252d38;
  color: #fff;
}

.video-tool:focus-visible {
  outline: 2px solid var(--service-accent);
  outline-offset: -2px;
}

.video-tool-icon {
  width: 24px;
  height: 22px;
  color: #f4a45e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.video-tool-icon-text {
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}

.video-tool-record::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #1a2029;
  background: currentColor;
}

.feature-prompt {
  z-index: 1001;
}

.paywall {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 12, 17, 0.78);
}

.paywall.open {
  display: flex;
}

.paywall-dialog {
  position: relative;
  width: min(440px, 100%);
  padding: 38px 34px 32px;
  border-radius: 7px;
  background: #fff;
  color: var(--service-ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: transparent;
  color: #667085;
  font-size: 25px;
  line-height: 32px;
  cursor: pointer;
}

.modal-close:hover {
  background: #f1f3f5;
  color: #20242c;
}

.paywall-mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff2e5;
  color: var(--service-accent-dark);
  font-size: 28px;
  font-weight: 600;
  line-height: 52px;
}

.paywall-dialog h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.paywall-dialog p {
  color: var(--service-muted);
  font-size: 15px;
  line-height: 1.8;
}

.paywall-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

/* Purchase */
.purchase-page {
  padding: 54px 24px 70px;
}

.purchase-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.purchase-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.purchase-heading h1 {
  margin-bottom: 9px;
  font-size: 30px;
  font-weight: 600;
}

.purchase-heading-copy > p {
  color: var(--service-muted);
  font-size: 15px;
}

.purchase-contact {
  width: min(520px, 52%);
  padding-top: 5px;
  color: var(--service-muted);
  font-size: 13px;
  line-height: 1.8;
  text-align: right;
}

.purchase-contact a {
  color: #394150;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.purchase-contact a:hover,
.purchase-contact a:focus-visible {
  color: var(--service-accent-dark);
}

.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.purchase-section,
.order-summary {
  border: 1px solid var(--service-line);
  border-radius: 7px;
  background: #fff;
}

.purchase-section {
  padding: 30px;
}

.purchase-section + .purchase-section {
  margin-top: 20px;
}

.section-title {
  margin-bottom: 22px;
  font-size: 19px;
  font-weight: 600;
}

.plan-list {
  border-top: 1px solid #e6e8eb;
}

.plan-option {
  width: 100%;
  min-height: 76px;
  padding: 0 20px;
  border-bottom: 1px solid #e6e8eb;
  background: #fff;
  color: var(--service-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  transition: background-color 0.2s ease;
}

.plan-option:hover,
.plan-option.selected {
  background: #fff7f4;
}

.plan-option.selected {
  box-shadow: inset 3px 0 0 #ff7567;
}

.plan-name {
  font-size: 19px;
  font-weight: 600;
}

.plan-price-group {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 16px;
}

.plan-original-price {
  color: #b9bec5;
  font-size: 16px;
}

.plan-price {
  color: #ff6758;
  font-size: 26px;
  font-weight: 400;
}

.payment-list {
  display: flex;
  gap: 12px;
}

.payment-option {
  flex: 1;
  height: 54px;
  border: 1px solid #d6dbe1;
  border-radius: 5px;
  background: #fff;
  color: #394150;
  font-size: 15px;
  cursor: pointer;
}

.payment-option.selected {
  border-color: var(--service-accent);
  background: #fff9f3;
  color: #b65b0f;
  font-weight: 600;
}

.order-summary {
  position: sticky;
  top: 24px;
  padding: 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--service-muted);
  font-size: 14px;
}

.summary-row strong {
  color: var(--service-ink);
  font-weight: 600;
  text-align: right;
}

.summary-total {
  align-items: baseline;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--service-line);
}

.summary-total strong {
  color: var(--service-accent-dark);
  font-size: 28px;
}

.purchase-submit {
  width: 100%;
  margin-top: 8px;
}

.summary-caption {
  margin-top: 14px;
  color: #8a929d;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 900px) {
  .login-main {
    grid-template-columns: 1fr;
  }

  .login-visual {
    min-height: 310px;
  }

  .login-visual-copy {
    top: auto;
    bottom: 20px;
    text-align: center;
  }

  .mobile-prompt-break {
    display: inline;
  }

  .login-visual-copy h1 {
    font-size: 30px;
  }

  .login-visual-copy p {
    font-size: 15px;
  }

  .login-panel {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .purchase-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .service-header-inner,
  .video-stage {
    width: calc(100% - 32px);
  }

  .service-logo {
    width: 190px;
    height: auto;
  }

  .service-nav {
    gap: 16px;
  }

  .service-nav a {
    font-size: 13px;
  }

  .service-header-with-contact {
    height: auto;
  }

  .service-header-with-contact .service-header-inner {
    min-height: 64px;
    padding: 9px 0;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .service-header-with-contact .service-header-contact {
    order: 3;
    flex-basis: 100%;
    max-width: none;
    font-size: 11px;
    line-height: 1.6;
  }

  .login-visual {
    min-height: 260px;
  }

  .login-visual-copy {
    left: 8%;
    right: 8%;
    top: auto;
    bottom: 16px;
  }

  .login-visual-copy p {
    font-size: 13px;
    line-height: 1.6;
  }

  .login-panel {
    padding: 40px 24px 52px;
  }

  .login-title {
    font-size: 27px;
  }

  .trial-badge {
    top: 10px;
    left: 10px;
    min-width: 132px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .video-stage {
    padding-top: 16px;
  }

  .showcase-video {
    max-height: none;
  }

  .video-control-bar {
    min-height: 66px;
  }

  .video-tool {
    padding: 8px 2px;
    gap: 5px;
    font-size: 11px;
  }

  .video-tool-icon {
    width: 22px;
    height: 20px;
    font-size: 18px;
  }

  .paywall-dialog {
    padding: 36px 22px 24px;
  }

  .paywall-actions {
    grid-template-columns: 1fr;
  }

  .purchase-page {
    padding: 36px 16px 54px;
  }

  .purchase-heading h1 {
    font-size: 26px;
  }

  .purchase-heading {
    flex-direction: column;
    gap: 18px;
  }

  .purchase-contact {
    width: 100%;
    padding-top: 0;
    text-align: left;
  }

  .purchase-section,
  .order-summary {
    padding: 22px 18px;
  }

  .plan-option {
    min-height: 68px;
    padding: 0 12px;
  }

  .plan-price-group {
    gap: 10px;
  }

  .plan-name {
    font-size: 17px;
  }

  .plan-original-price {
    font-size: 14px;
  }

  .plan-price {
    font-size: 23px;
  }

  .payment-list {
    flex-direction: column;
  }
}
