:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --soft-bg: #f8fafc;
  --soft-blue: #eef4ff;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --line: #dbe3ee;
  --primary: #1e3a8a;
  --primary-dark: #172554;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --warning: #f59e0b;
  --warning-bg: #fef3c7;
  --warning-line: #fde68a;
  --danger: #b42318;
  --success: #166534;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, .06);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, .12);
  --radius: 10px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  transition: top .18s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 850;
  white-space: nowrap;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-size: 15px;
  font-weight: 750;
}
.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.nav-links a.active {
  color: var(--primary);
  border-color: var(--accent);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-submit {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  box-shadow: 0 10px 18px rgba(30, 58, 138, .18);
  font-size: 13px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.lang-switch button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
}
.lang-switch button.active,
.lang-btn.active {
  background: var(--primary);
  color: #fff;
  font-weight: 850;
}
.lang-switch button:hover,
.lang-btn:hover {
  color: var(--primary);
}
.lang-switch button.active:hover,
.lang-btn.active:hover {
  color: #fff;
}
.lang-sep {
  color: #cbd5e1;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.alert-bar {
  border-left: 4px solid var(--warning);
  background: var(--warning-bg);
  color: #78350f;
}
.alert-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.alert-text {
  font-weight: 900;
}
.alert-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #d97706;
  border-radius: 999px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 48%, #f59e0b 100%);
  color: #111827;
  box-shadow: 0 10px 22px rgba(249, 115, 22, .24);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 48%, #f59e0b 100%);
}
.btn-ghost {
  border-color: #b8c3d2;
  background: transparent;
  color: var(--primary);
}
.text-link {
  color: var(--primary);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.notice-hero {
  padding: 24px 0 68px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, .16), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 74%);
}
.official-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--warning-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fffbeb;
  color: #92400e;
  font-size: 12px;
  font-weight: 900;
}
.official-copy h1 {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 40px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}
.official-quote {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--warning);
  border-radius: 8px;
  background: #fffbeb;
  color: #334155;
  font-size: 15px;
}
.official-copy .lead {
  max-width: 680px;
}
.official-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.notice-media {
  min-width: 0;
}
.notice-media picture,
.notice-media img {
  width: 100%;
}
.notice-media img {
  max-height: 430px;
  object-fit: cover;
  object-position: top;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.notice-media figcaption {
  margin-top: 8px;
  color: var(--soft);
  font-size: 12px;
  text-align: center;
}

.page-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 16% 18%, rgba(30, 58, 138, .08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.home-hero {
  padding: 86px 0 72px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background:
    radial-gradient(circle at 8% 14%, rgba(30, 58, 138, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  max-width: 720px;
  margin: 14px 0 18px;
  font-size: 56px;
  line-height: 1.02;
}
.hero-copy .eyebrow {
  justify-content: flex-start;
}
.hero-copy .hero-lead {
  max-width: 660px;
  margin-left: 0;
  margin-right: 0;
}
.hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-trust-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 850;
}
.hero-feed-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .14);
}
.hero-feed-panel::before {
  content: "";
  position: absolute;
  inset: 14px -12px -12px 14px;
  z-index: -1;
  border-radius: 18px;
  background: #dbeafe;
}
.feed-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 2px;
}
.feed-panel-head span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.feed-panel-head b {
  color: var(--primary-dark);
  font-size: 15px;
  line-height: 1.25;
  text-align: right;
}
.feed-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.feed-card.is-hot {
  border-color: #bfdbfe;
  background: #eff6ff;
}
.feed-card strong,
.feed-card span,
.feed-card small {
  display: block;
}
.feed-card strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}
.feed-card span {
  margin-top: 2px;
  color: #64748b;
  font-size: 13px;
}
.feed-card mark {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
}
.feed-card small {
  grid-column: 1 / -1;
  color: #475569;
  font-size: 12px;
  font-weight: 750;
}
.feed-panel-foot {
  padding: 12px 14px;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}
.network-strip {
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.network-strip-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #475569;
}
.network-strip-inner span {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.network-strip-inner b {
  color: #1e293b;
  font-size: 13px;
  font-weight: 900;
}
.hero-centered {
  max-width: 920px;
  text-align: center;
}
.hero-centered .eyebrow {
  justify-content: center;
}
.hero-centered h1 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: 52px;
  line-height: 1.05;
}
.hero-english {
  margin: -4px auto 18px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 850;
}
.hero-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero-countdown {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 32px auto 0;
}
.center-actions {
  justify-content: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 48px;
  align-items: center;
}
.hero-note {
  margin: 18px 0 0;
  color: #8491a3;
  font-size: 13px;
}
.countdown-card {
  padding: 22px;
  border: 1px solid rgba(30, 58, 138, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.countdown-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.countdown-head b {
  display: block;
  color: var(--primary-dark);
  font-size: 18px;
}
.countdown-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.time-box {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid rgba(249, 115, 22, .22);
  border-radius: 10px;
  background: #fff7ed;
  text-align: center;
}
.time-box [data-cd] {
  display: block;
  color: var(--accent-dark);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.time-box span:not([data-cd]) {
  display: block;
  margin-top: 7px;
  color: #7c2d12;
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: 96px 0;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
.section.alt { background: #fff; }
.editorial-section {
  background: #fff;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.problem-item {
  min-width: 0;
}
.problem-num {
  display: block;
  margin-bottom: 12px;
  color: #e2e8f0;
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}
.problem-item h3 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
}
.problem-item p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.notice-proof-section {
  background: #fff;
}
.notice-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 42px;
  align-items: center;
}
.notice-quote-block {
  position: relative;
  padding-top: 34px;
}
.notice-quote-block::before {
  content: "“";
  position: absolute;
  left: -4px;
  top: -18px;
  color: #e2e8f0;
  font-size: 86px;
  line-height: 1;
  font-family: Georgia, serif;
}
.notice-quote-block blockquote {
  margin: 0 0 18px;
  color: #334155;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
}
.notice-quote-block p {
  margin-bottom: 20px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}
.amazon-notice-mock {
  overflow: hidden;
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  color: #111827;
  font-family: "Amazon Ember", "Helvetica Neue", Arial, sans-serif;
}
.amazon-notice-mock .notice-header {
  padding: 14px 18px;
  border-bottom: 1px solid #f1e2aa;
  background: #fff8e1;
}
.amazon-notice-mock .notice-badge {
  display: inline;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #7c2d12;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.amazon-notice-mock .notice-body {
  padding: 22px 24px 24px;
}
.amazon-notice-mock .notice-quote {
  margin: 0;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.7;
}
.amazon-notice-mock .notice-quote strong {
  color: #111827;
  font-weight: 800;
}
.amazon-notice-mock .notice-quote a {
  color: #007185;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.amazon-notice-mock .notice-source {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.solution-english {
  margin: -4px 0 12px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 850;
}
.solution-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.solution-steps::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 24px;
  height: 2px;
  background: #e2e8f0;
}
.solution-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}
.step-ring {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 0 0 8px #fff;
}
.solution-step h3 {
  margin-bottom: 6px;
  font-size: 18px;
}
.solution-step b {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}
.solution-step p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.metrics-section {
  background: #fff;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: center;
}
.metric-item {
  position: relative;
  padding: 0 24px;
}
.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 1px;
  background: #e2e8f0;
}
.metric-item b {
  display: block;
  color: var(--primary);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}
.metric-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.choice-card {
  display: grid;
  gap: 16px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.choice-card:first-child {
  border-color: var(--primary);
}
.choice-card:nth-child(2) {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.choice-card:nth-child(2) h3,
.choice-card:nth-child(2) .lead,
.choice-card:nth-child(2) .text-link {
  color: #fff;
}
.choice-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.choice-icon,
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--primary);
}
.choice-icon svg,
.feature-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.proof-card,
.feature-card,
.chart-card,
.creator-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.proof-card { padding: 22px; }
.proof-card b {
  display: block;
  color: var(--primary-dark);
  font-size: 30px;
  line-height: 1.1;
}
.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card {
  padding: 24px;
}
.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.charts-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}
.chart-card {
  padding: 22px;
  min-width: 0;
}
.chart-wrap {
  position: relative;
  min-height: 310px;
}
.chart-wrap.doughnut {
  width: min(310px, 100%);
  margin: 0 auto;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chart-note {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}

.channel-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.filter-panel {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}
.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.filter-label {
  min-width: 72px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.filter-group {
  display: flex;
  gap: 8px;
}
.filter-btn {
  min-height: 36px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.result-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.creator-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.creator-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.creator-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.avatar-frame {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: block;
  border-radius: 999px;
  cursor: default;
}
.creator-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #d9e2ee;
  border-radius: 999px;
  overflow: visible;
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}
.creator-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  background: #fff;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}
.avatar-initials {
  position: relative;
  z-index: 0;
}
.avatar-initials.generated-initials,
.creator-avatar > .avatar-initials:only-child {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
}
.avatar-initials.platform-tiktok,
.creator-card[data-platform="tiktok"] .generated-initials { background: #000; color: #25f4ee; }
.avatar-initials.platform-instagram,
.creator-card[data-platform="instagram"] .generated-initials { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); color: #fff; }
.avatar-initials.platform-youtube,
.creator-card[data-platform="youtube"] .generated-initials { background: #ff0000; color: #fff; }
.avatar-initials.platform-fb_page,
.creator-card[data-platform="fb_page"] .generated-initials,
.avatar-initials.platform-fb_group,
.creator-card[data-platform="fb_group"] .generated-initials { background: #1877f2; color: #fff; }
.avatar-initials.platform-telegram,
.creator-card[data-platform="telegram"] .generated-initials { background: #0088cc; color: #fff; }
.avatar-initials.platform-x,
.creator-card[data-platform="x"] .generated-initials { background: #000; color: #fff; }
.avatar-initials.platform-reddit,
.creator-card[data-platform="reddit"] .generated-initials { background: #ff4500; color: #fff; }
.avatar-initials.platform-website,
.creator-card[data-platform="website"] .generated-initials { background: #64748b; color: #fff; }
.avatar-initials.platform-fb,
.creator-card[data-platform="fb"] .generated-initials { background: #1877f2; color: #fff; }
.platform-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #64748b;
}
.platform-badge svg,
.platform-badge img {
  width: 14px;
  height: 14px;
  display: block;
}
.platform-badge.platform-tiktok { background: #000; }
.platform-badge.platform-instagram { background: #e1306c; }
.platform-badge.platform-youtube { background: #ff0000; }
.platform-badge.platform-fb_page,
.platform-badge.platform-fb_group,
.platform-badge.platform-facebook { background: #1877f2; }
.platform-badge.platform-telegram { background: #0088cc; }
.platform-badge.platform-x { background: #000; }
.platform-badge.platform-reddit { background: #ff4500; }
.platform-badge.platform-website { background: #64748b; }
.platform-badge.platform-deal_website { background: #64748b; }
.platform-logo img {
  width: 28px;
  height: 28px;
  display: block;
}
.creator-id {
  min-width: 0;
  flex: 1;
}
.channel-name {
  display: -webkit-box;
  overflow: hidden;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.32;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.creator-username {
  margin-top: 2px;
  overflow: hidden;
  color: var(--soft);
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.creator-meta {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}
.fans {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}
.fans span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.fans.official-site {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--primary);
  background: #eff6ff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}
.more-card {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background-color .16s ease;
}
.more-card:hover {
  border-color: var(--primary);
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.more-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.more-inner {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 20px;
}
.more-plus {
  color: var(--primary);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.more-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.more-cta {
  margin-top: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.creator-proof-line {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.creator-proof-line.seller-proof {
  margin: -10px 0 18px;
  text-align: left;
}

.platform-wall {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}
.platform-logo {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-weight: 850;
}
.platform-logo svg {
  width: 28px;
  height: 28px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(30,58,138,.15), var(--primary), rgba(249,115,22,.65));
}
.timeline-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}
.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-shell {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(30, 58, 138, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  gap: 16px;
}
.field,
.fieldset {
  display: grid;
  gap: 7px;
}
.field label,
.fieldset legend {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 850;
}
.fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.option-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.option {
  position: relative;
}
.option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.option label {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid #b9c4ce;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}
.option input:checked + label {
  border-color: var(--primary);
  background: var(--soft-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, .10);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #b9c4ce;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea {
  min-height: 160px;
  resize: vertical;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.55;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.option input:focus-visible + label {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, .13);
}
.example-card {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
}
.example-card b {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
}
.field small {
  color: var(--muted);
  font-size: 12px;
}
.error {
  min-height: 18px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 800;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea,
.fieldset.invalid .option label {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .10);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  box-shadow: none;
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  border: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}
.faq-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--primary);
  flex: 0 0 auto;
  transition: transform .16s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 20px 18px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer p { margin-bottom: 0; }

.bottom-cta {
  padding: 42px 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.bottom-cta h2 { color: #fff; }
.bottom-cta p { color: rgba(255,255,255,.78); }
.bottom-cta .text-link { color: #fff; }

.site-footer {
  padding: 56px 0 38px;
  border-top: 0;
  background: #0f172a;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .9fr;
  gap: 28px;
}
.footer-title {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 850;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a,
.site-footer a {
  color: #fff;
  font-weight: 800;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 850;
}
.footer-brand img {
  width: 32px;
  height: 32px;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, .46);
}
.modal.show { display: grid; }
.modal-card {
  width: min(520px, 100%);
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .22);
}
.modal-card h2 {
  margin-bottom: 8px;
  font-size: 24px;
}
.modal-card p { color: var(--muted); }
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.wall-fields {
  display: none;
  gap: 12px;
  margin-top: 16px;
}
.wall-fields.show {
  display: grid;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-sticky.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-sticky .btn { width: 100%; }

.submit-header .nav {
  justify-content: space-between;
}
.submit-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.help-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}
.submit-alert {
  border-left: 4px solid var(--warning);
  background: var(--warning-bg);
  color: #78350f;
}
.submit-alert .container {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.submit-page {
  padding: 52px 0 80px;
  background:
    radial-gradient(circle at 8% 0%, rgba(30, 58, 138, .08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
  gap: 28px;
  align-items: start;
}
.submit-form-panel {
  min-width: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumb a {
  color: var(--primary);
}
.submit-intro {
  margin-bottom: 24px;
}
.submit-intro h1 {
  max-width: 780px;
}
.submit-intro .lead {
  max-width: 780px;
}
.submit-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.submit-stepper li {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.submit-stepper span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--primary);
  font-weight: 900;
}
.submit-stepper b {
  color: var(--primary-dark);
  font-size: 13px;
  line-height: 1.25;
}
.submit-form,
.side-card,
.success-card,
.share-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.submit-form {
  overflow: hidden;
}
.form-section {
  padding: 28px;
  border-top: 1px solid var(--line);
}
.form-section:first-child {
  border-top: 0;
}
.form-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.form-section-head span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary);
  font-weight: 900;
}
.form-section-head h2 {
  margin: 0;
  font-size: 22px;
}
.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.submit-fieldset {
  margin-top: 18px;
}
.pill-grid {
  display: grid;
  gap: 10px;
}
.pill-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pill-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pill-grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.pill-option {
  min-width: 0;
  cursor: pointer;
}
.pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pill-option span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  line-height: 1.25;
  transition: border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}
.pill-option input:checked + span {
  border-color: rgba(30, 58, 138, .35);
  background: #eff6ff;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(30, 58, 138, .12);
}
.pill-option input:focus-visible + span {
  outline: 3px solid rgba(249, 115, 22, .62);
  outline-offset: 3px;
}
.submit-example {
  margin-bottom: 10px;
}
.submit-form textarea {
  min-height: 240px;
}
.submit-form .small-textarea {
  min-height: 120px;
}
.dropzone {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 132px;
  place-items: center;
  padding: 22px;
  border: 1.5px dashed #bfcbda;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--muted);
  text-align: center;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.dropzone strong {
  color: var(--primary-dark);
  font-weight: 900;
}
.dropzone.dragging,
.dropzone:focus-within {
  border-color: var(--primary);
  background: #eff6ff;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, .08);
}
.file-list {
  max-width: 100%;
  color: var(--soft);
  font-size: 12px;
  word-break: break-word;
}
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}
.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}
.submit-main-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  box-shadow: 0 18px 32px rgba(30, 58, 138, .22);
}
.submit-main-btn:hover {
  background: linear-gradient(135deg, #172554, #2563eb);
}
.submit-main-btn.is-dimmed {
  opacity: .62;
}
.submit-main-btn.loading {
  pointer-events: none;
}
.submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin .8s linear infinite;
}
.submit-main-btn.loading .submit-spinner {
  display: inline-block;
}
.submit-response-note {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}
.field.invalid .pill-option span,
.fieldset.invalid .pill-option span,
.field.invalid .dropzone,
.fieldset.invalid .dropzone {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .10);
}
.shake {
  animation: shake .28s ease;
}
.sidebar-sticky {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
}
.side-card {
  padding: 20px;
}
.side-card h2 {
  margin-bottom: 12px;
  font-size: 18px;
}
.side-big {
  color: var(--primary-dark);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.proof-side p {
  margin: 6px 0 14px;
  color: var(--muted);
  font-weight: 800;
}
.proof-side ul,
.check-list,
.recent-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof-side li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}
.proof-side li b {
  color: var(--primary);
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}
.recent-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.recent-head span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
  animation: pulseDot 1.6s ease-out infinite;
}
.recent-head h2 {
  margin: 0;
}
.recent-card li {
  color: var(--muted);
  font-size: 13px;
}
.contact-side p {
  margin-bottom: 0;
  color: var(--muted);
}
.contact-side a {
  color: var(--primary);
  font-weight: 850;
}
.mobile-recent {
  display: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 220;
  max-width: min(520px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .22);
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast.error {
  background: #991b1b;
}
.toast.success {
  background: #166534;
}
.success-page {
  min-height: calc(100vh - 68px);
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, .12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.success-wrap {
  width: min(900px, calc(100% - 40px));
}
.success-card {
  padding: 34px;
  text-align: center;
}
.success-check {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
}
.success-check svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.success-check circle {
  fill: #dcfce7;
  stroke: #16a34a;
  stroke-width: 2;
}
.success-check path {
  fill: none;
  stroke: #15803d;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: drawCheck .7s ease forwards .2s;
}
.summary-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
  text-align: left;
}
.summary-table div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}
.summary-table span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
}
.summary-table b {
  display: block;
  margin-top: 3px;
  color: var(--primary-dark);
  word-break: break-word;
}
.next-steps {
  margin: 28px 0;
  text-align: left;
}
.next-steps h2 {
  text-align: center;
}
.next-steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.next-steps li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.next-steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary);
  font-weight: 900;
}
.next-steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.attachment-card {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #eff6ff;
  text-align: left;
}
.attachment-card h2 {
  font-size: 18px;
}
.attachment-card p {
  margin: 0;
  color: var(--muted);
}
.attachment-card a {
  color: var(--primary);
  font-weight: 850;
}
.success-actions,
.share-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.share-card {
  margin-top: 16px;
  padding: 22px;
  text-align: center;
}
.share-card h2 {
  font-size: 18px;
}
.submit-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}
.submit-footer p {
  margin: 4px 0;
}
.submit-footer a {
  color: var(--primary);
  font-weight: 850;
}

.simple-submit-header .nav {
  justify-content: space-between;
}
.simple-submit-alert .container {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.simple-submit-page {
  padding: 64px 0;
  background: #fff;
}
.simple-submit-shell {
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
}
.simple-submit-head {
  margin-bottom: 22px;
  text-align: center;
}
.simple-submit-head h1 {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 36px;
}
.simple-submit-head p {
  margin: 0;
  color: var(--soft);
  font-weight: 750;
}
.simple-submit-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.simple-submit-form textarea {
  min-height: 200px;
}
.simple-submit-form .simple-notes {
  min-height: 96px;
}
.simple-fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}
.simple-fieldset legend {
  margin-bottom: 0;
  color: var(--primary-dark);
  font-weight: 850;
}
.simple-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.simple-check-grid label {
  min-width: 0;
  cursor: pointer;
}
.simple-check-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.simple-check-grid span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-weight: 850;
}
.simple-check-grid input:checked + span {
  border-color: rgba(30, 58, 138, .4);
  background: #eff6ff;
  color: var(--primary);
}
.simple-check-grid input:focus-visible + span {
  outline: 3px solid rgba(30, 58, 138, .24);
  outline-offset: 2px;
}
.fieldset.invalid .simple-check-grid span {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .10);
}
.simple-submit-button,
.simple-submit-button:hover,
.simple-success-actions .btn-primary,
.simple-success-actions .btn-primary:hover {
  width: 100%;
  min-height: 52px;
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(30, 58, 138, .18);
}
.simple-submit-button:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.simple-mail-help {
  margin: -4px 0 0;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}
.simple-mail-help a {
  color: var(--primary);
  font-weight: 850;
}
.simple-submit-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}
.simple-submit-footer p {
  margin: 0;
}
.simple-success-page {
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
  padding: 64px 20px;
  background: #fff;
}
.simple-success-card {
  width: min(520px, 100%);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.simple-success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
}
.simple-success-check svg {
  width: 100%;
  height: 100%;
}
.simple-success-check circle {
  fill: #dcfce7;
  stroke: #16a34a;
  stroke-width: 2;
}
.simple-success-check path {
  fill: none;
  stroke: #15803d;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: drawCheck .7s ease forwards .2s;
}
.simple-success-card h1 {
  margin-bottom: 8px;
}
.simple-success-card p {
  margin-bottom: 22px;
  color: var(--muted);
}
.simple-success-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.simple-success-actions .btn {
  width: 100%;
}

.koupon-submit-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 4px 7px rgba(15, 23, 42, .04);
}
.koupon-submit-header .nav {
  min-height: 72px;
  justify-content: space-between;
}
.koupon-submit-page {
  background: #fff;
  color: #111611;
}
.koupon-submit-hero {
  background: linear-gradient(288deg, #ecf8dd -3.06%, #dff8dd 50.8%, #ebfff3 102.55%);
}
.koupon-hero-inner {
  min-height: 260px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
.koupon-hero-copy {
  min-width: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 54px 0;
}
.koupon-hero-copy h1 {
  margin: 0;
  color: #111611;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 750;
}
.koupon-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: #111611;
  font-size: 16px;
  line-height: 1.55;
}
.koupon-hero-visual {
  position: relative;
  width: 360px;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deal-preview-card {
  width: 300px;
  padding: 22px;
  border: 1px solid rgba(17, 22, 17, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 40px rgba(17, 22, 17, .10);
}
.deal-preview-top {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}
.deal-preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #77c46a;
}
.deal-preview-line {
  height: 12px;
  margin-top: 12px;
  border-radius: 6px;
  background: #dce7d5;
}
.deal-preview-line.strong {
  width: 72%;
  height: 18px;
  background: #111611;
}
.deal-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.deal-preview-grid i {
  display: block;
  height: 54px;
  border-radius: 8px;
  background: #f3f8ee;
}
.deal-preview-pill {
  position: absolute;
  right: 18px;
  bottom: 46px;
  min-width: 96px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: #111611;
  color: #dff8dd;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(17, 22, 17, .18);
}
.koupon-before {
  width: min(720px, calc(100% - 32px));
  margin: 40px auto;
}
.koupon-before h2 {
  margin: 0 0 24px;
  color: #111611;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.before-list {
  display: grid;
  gap: 12px;
}
.before-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: #f7f7f7;
  color: #111611;
}
.before-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #dff8dd;
  color: #111611;
  font-size: 12px;
  font-weight: 850;
}
.before-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.koupon-form-shell {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto 46px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}
.koupon-submit-form {
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.koupon-form-section {
  padding: 28px 40px;
  border-top: 1px solid #e5e7eb;
}
.koupon-form-section:first-child {
  border-top: 0;
}
.koupon-form-section h2 {
  margin: 0 0 18px;
  color: #111611;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 650;
}
.koupon-submit-form .field {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.koupon-submit-form .field:last-child {
  margin-bottom: 0;
}
.koupon-submit-form label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #111611;
  font-size: 16px;
  font-weight: 650;
}
.koupon-submit-form .required {
  color: #d93025;
}
.koupon-submit-form input[type="text"],
.koupon-submit-form input[type="email"],
.koupon-submit-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  background: #fff;
  color: #111611;
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.koupon-submit-form textarea {
  resize: vertical;
}
.koupon-submit-form input:focus,
.koupon-submit-form textarea:focus {
  border-color: #4caf50;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, .16);
}
.koupon-submit-form .field.invalid input,
.koupon-submit-form .field.invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .10);
}
.deal-section {
  padding-top: 30px;
}
.deal-instructions {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px;
  border-radius: 8px;
  background: #eaf1fc;
  color: #111611;
}
.deal-instructions h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}
.deal-instructions ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.deal-instructions li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.55;
}
.deal-instructions li::before {
  content: "•";
  position: absolute;
  left: 0;
}
.deal-instructions p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.deal-entry-list {
  display: grid;
  gap: 18px;
}
.deal-entry-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}
.deal-entry-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid #e5e7eb;
}
.deal-entry-head h3 {
  margin: 0;
  color: #111611;
  font-size: 15px;
  font-weight: 700;
}
.deal-remove-btn {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.deal-remove-btn:hover {
  border-color: #d93025;
  color: #d93025;
}
.deal-entry-card textarea {
  min-height: 250px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.deal-entry-card textarea:focus {
  box-shadow: inset 0 0 0 2px rgba(76, 175, 80, .25);
}
.add-deal-btn {
  min-height: 48px;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 22px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #111611;
  cursor: pointer;
  font-weight: 750;
}
.add-deal-btn span:first-child {
  font-size: 18px;
  line-height: 1;
}
.add-deal-btn:hover {
  border-color: #4caf50;
  background: #f7fff3;
}
.add-deal-btn:disabled {
  opacity: .48;
  cursor: not-allowed;
}
.koupon-submit-button {
  min-height: 48px;
  width: auto;
  margin-top: 8px;
  padding: 0 32px;
  border-color: #b8e986;
  border-radius: 8px;
  background: #b8e986;
  color: #111611;
  box-shadow: none;
}
.koupon-submit-button:hover {
  border-color: #a8dc73;
  background: #a8dc73;
  color: #111611;
}
.koupon-submit-button.is-dimmed {
  opacity: .55;
  cursor: not-allowed;
}
.koupon-submit-footer {
  background: #f7f7f7;
}

.submit-pro-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .04);
}
.submit-pro-header .nav {
  min-height: 68px;
  justify-content: space-between;
}
.submit-pro-alert {
  border-left: 0;
  border-bottom: 1px solid #fde68a;
}
.submit-pro-page {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.submit-pro-hero {
  background: linear-gradient(288deg, #ecf8dd -3.06%, #dff8dd 50.8%, #ebfff3 102.55%);
}
.submit-pro-hero-inner {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 42px;
}
.submit-pro-kicker {
  margin: 0 0 14px;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.submit-pro-hero h1 {
  margin: 0;
  color: #111611;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
}
.submit-pro-english {
  margin: 8px 0 0;
  color: #111611;
  font-size: 22px;
  font-weight: 750;
}
.submit-pro-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: #111611;
  font-size: 17px;
  line-height: 1.65;
}
.advisory-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 32px auto;
  padding: 0 24px;
}
.advisory-card {
  position: relative;
  min-height: 180px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}
.advisory-vip {
  border: 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
}
.advisory-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 20px;
}
.advisory-icon-blue { background: #eff6ff; color: #1e3a8a; }
.advisory-icon-orange { background: #fff7ed; color: #f97316; }
.advisory-icon-green { background: #ecfdf5; color: #047857; }
.advisory-vip .advisory-icon { background: rgba(255, 255, 255, .15); color: #fff; }
.advisory-card h2 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}
.advisory-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}
.advisory-vip h2 { color: #fff; }
.advisory-vip p { color: rgba(255, 255, 255, .86); }
.advisory-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.advisory-cta {
  min-height: 34px;
  margin-top: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #1e3a8a;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.submit-pro-shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 56px;
}
.submit-pro-form {
  padding: 36px 40px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
}
.seller-form-section {
  margin-bottom: 40px;
}
.seller-form-section:last-child {
  margin-bottom: 0;
}
.seller-form-section .form-section-head {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.seller-form-section .form-section-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #1e3a8a;
  color: #fff;
  font-weight: 900;
}
.seller-form-section .form-section-head h2 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}
.seller-form-section .form-section-head p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}
.seller-field,
.seller-fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}
.seller-field label,
.seller-fieldset legend {
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}
.seller-field input,
.seller-field textarea,
.deal-item-fields input,
.deal-item-fields textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 14px;
}
.seller-field textarea {
  min-height: 118px;
  resize: vertical;
}
.seller-field input:focus,
.seller-field textarea:focus,
.deal-item-fields input:focus,
.deal-item-fields textarea:focus {
  outline: 2px solid #1e3a8a;
  outline-offset: -1px;
}
.seller-error,
.deal-field-error {
  min-height: 18px;
  color: #ef4444;
  font-size: 12px;
}
.seller-field.invalid input,
.seller-field.invalid textarea,
.seller-fieldset.invalid .pill-option span,
.seller-agreement.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .10);
}
.format-example {
  margin-bottom: 22px;
  padding: 16px 20px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}
.format-example-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.format-example-badge {
  padding: 3px 10px;
  border-radius: 4px;
  background: #1e3a8a;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.format-example-hint {
  color: #94a3b8;
  font-size: 12px;
}
.fmt-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 12px;
  padding: 4px 0;
  font-size: 13px;
  line-height: 1.6;
}
.fmt-k { color: #64748b; }
.fmt-v { color: #0f172a; overflow-wrap: anywhere; }
.fmt-v code {
  padding: 1px 6px;
  border-radius: 4px;
  background: #eff6ff;
  color: #1e3a8a;
  font-family: "SF Mono", Menlo, monospace;
  font-size: 12px;
}
.deal-template-preview {
  margin: 0;
  padding: 14px;
  border-radius: 6px;
  background: #fff;
  color: #334155;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-x: auto;
}
.deals-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.deal-item {
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}
.deal-item.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .10);
}
.deal-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.deal-item-num {
  padding: 4px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 850;
}
.deal-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-template {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e3a8a;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}
.btn-template:hover {
  background: #1e3a8a;
  color: #fff;
}
.btn-remove-deal {
  border: 0;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}
.btn-remove-deal:hover { text-decoration: underline; }
.deal-item-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deal-item-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 650;
}
.deal-item-fields em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}
.deal-item-fields textarea {
  min-height: 260px;
  resize: vertical;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  line-height: 1.55;
}
.deal-info-field small {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
}
.promo-code-input {
  font-family: "SF Mono", Menlo, monospace !important;
  text-transform: uppercase;
}
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.deals-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.btn-add {
  min-height: 42px;
  padding: 0 16px;
  border: 1px dashed #1e3a8a;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  cursor: pointer;
  font-weight: 750;
}
.btn-add:hover {
  background: #1e3a8a;
  color: #fff;
}
.btn-add:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.deals-limit {
  color: #64748b;
  font-size: 13px;
}
.countries-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.field-help {
  margin: -2px 0 0;
  color: #64748b;
  font-size: 12px;
}
.seller-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 6px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  font-size: 13px;
  line-height: 1.5;
}
.seller-agreement input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}
.seller-submit-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
}
.vip-modal[hidden] { display: none; }
.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, .52);
}
.vip-modal-panel {
  position: relative;
  width: min(360px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
}
.vip-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: #f1f5f9;
  cursor: pointer;
  font-size: 22px;
}
.vip-modal-panel h2 {
  margin: 0 0 18px;
  font-size: 18px;
}
.vip-qr {
  width: 180px;
  height: 180px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.vip-modal-panel p {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}
.success-deal-copy {
  margin-top: -10px;
  color: #334155;
  font-size: 16px;
}
.success-deal-copy b {
  color: #1e3a8a;
}

@media (max-width: 900px) {
  .koupon-hero-inner {
    min-height: auto;
  }
  .koupon-hero-copy {
    padding: 40px 0;
  }
  .koupon-hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .advisory-cards {
    grid-template-columns: 1fr;
  }
  .submit-pro-form {
    padding: 26px 18px;
  }
  .form-grid.two,
  .two-col,
  .countries-grid {
    grid-template-columns: 1fr;
  }
  .pill-grid.four,
  .pill-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .koupon-submit-header .nav {
    min-height: 64px;
  }
  .koupon-submit-header .brand span {
    display: none;
  }
  .koupon-hero-copy {
    padding: 30px 0;
  }
  .koupon-hero-copy h1 {
    font-size: 26px;
  }
  .koupon-hero-copy p {
    font-size: 15px;
  }
  .koupon-before {
    margin: 28px auto;
  }
  .koupon-form-section {
    padding: 22px 18px;
  }
  .koupon-submit-form label {
    font-size: 15px;
  }
  .deal-instructions {
    padding: 14px;
  }
  .deal-entry-head {
    padding: 0 12px;
  }
  .deal-entry-card textarea {
    min-height: 230px;
  }
  .add-deal-btn,
  .koupon-submit-button {
    width: 100%;
  }
  .submit-pro-header .brand span {
    display: none;
  }
  .submit-pro-hero h1 {
    font-size: 30px;
  }
  .submit-pro-english {
    font-size: 18px;
  }
  .submit-pro-lead {
    font-size: 15px;
  }
  .submit-header-actions {
    gap: 8px;
  }
  .help-link {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .deals-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .btn-add {
    width: 100%;
  }
  .fmt-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
  80% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.loading,
.empty {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}
.load-error {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fff1f2;
  color: #7f1d1d;
  box-shadow: var(--shadow-sm);
}
.load-error p {
  margin: 0;
}
.load-error p + p {
  margin-top: 6px;
  color: #991b1b;
  font-size: 14px;
}
.load-error code {
  padding: 1px 5px;
  border-radius: 5px;
  background: #fff;
  color: #7f1d1d;
  font-weight: 800;
}
.image-missing {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  background: #f8fafc;
}
.image-missing::before {
  content: "官方通知截图暂未加载";
  color: var(--muted);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, .62);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 68px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    border: 0;
  }
  .menu-btn { display: inline-block; }
  .official-card,
  .home-hero-grid,
  .hero-grid,
  .charts-grid,
  .footer-grid,
  .notice-proof-grid,
  .submit-layout {
    grid-template-columns: 1fr;
  }
  .hero-centered h1 {
    font-size: 44px;
  }
  .hero-copy h1 {
    max-width: none;
    font-size: 44px;
  }
  .hero-feed-panel {
    max-width: 620px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .problem-item {
    padding-right: 0;
    padding-bottom: 0;
  }
  .solution-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .solution-steps::before {
    display: none;
  }
  .solution-step {
    min-height: 72px;
    display: block;
    padding-left: 72px;
    text-align: left;
  }
  .solution-step .step-ring {
    position: absolute;
    top: 0;
    left: 0;
  }
  .solution-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 54px;
    bottom: -28px;
    width: 2px;
    background: #e2e8f0;
  }
  .solution-step p {
    max-width: none;
  }
  .creator-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .submit-sidebar {
    order: -1;
  }
  .sidebar-sticky {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .desktop-recent { display: none; }
  .mobile-recent {
    display: block;
    order: 3;
  }
  .submit-form-panel {
    order: 1;
  }
  .platform-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 25px;
    right: auto;
    top: 36px;
    bottom: 36px;
    width: 2px;
    height: auto;
  }
  .timeline-step { padding-left: 82px; }
  .step-num {
    position: absolute;
    left: 24px;
    top: 24px;
  }
  .feature-grid,
  .feature-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .nav {
    height: 60px;
    gap: 8px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .brand span { font-size: 15px; }
  .nav-links { inset: 60px 14px auto 14px; }
  .lang-switch button { min-width: 34px; }
  .nav-submit {
    display: none;
  }
  .submit-header-actions {
    gap: 8px;
  }
  .help-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
  .alert-inner {
    min-height: 64px;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
  }
  .alert-text {
    font-size: 13px;
    line-height: 1.35;
  }
  .alert-button {
    min-width: 38px;
    width: 38px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
  }
  .alert-button::before {
    content: "→";
    color: #7c2d12;
  }
  .notice-hero { padding: 14px 0 48px; }
  .official-card { padding: 18px; }
  .official-copy h1,
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .page-hero,
  .home-hero,
  .section { padding: 48px 0; }
  .home-hero-grid {
    gap: 34px;
  }
  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.12;
  }
  .hero-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-trust-row {
    gap: 8px;
  }
  .hero-trust-row span {
    width: 100%;
    justify-content: center;
  }
  .hero-feed-panel {
    padding: 14px;
    border-radius: 14px;
  }
  .hero-feed-panel::before {
    display: none;
  }
  .feed-card {
    grid-template-columns: 1fr;
  }
  .feed-card mark {
    justify-self: start;
  }
  .feed-panel-head {
    display: grid;
    gap: 4px;
  }
  .feed-panel-head b {
    text-align: left;
  }
  .network-strip-inner {
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    justify-content: flex-start;
    gap: 10px 14px;
  }
  .network-strip-inner span {
    width: 100%;
  }
  .hero-centered h1 {
    font-size: 34px;
    line-height: 1.12;
  }
  .hero-english {
    font-size: 16px;
  }
  .hero-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }
  .hero-actions,
  .official-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn-primary,
  .btn-ghost { width: 100%; }
  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }
  .metric-item::after {
    display: none;
  }
  .metric-item b {
    font-size: 38px;
  }
  .problem-num {
    font-size: 40px;
  }
  .notice-quote-block blockquote {
    font-size: 19px;
  }
  .step-ring {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  .choice-grid,
  .feature-grid,
  .feature-grid.four,
  .option-grid,
  .option-grid.two {
    grid-template-columns: 1fr;
  }
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .channel-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .result-count { white-space: normal; }
  .filter-row {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .filter-panel {
    position: sticky;
    top: 60px;
    z-index: 20;
    margin-left: -14px;
    margin-right: -14px;
    padding: 12px 0;
    background: rgba(248, 250, 252, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .filter-label { min-width: 58px; }
  .creator-avatar {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  .avatar-frame {
    width: 56px;
    height: 56px;
  }
  .avatar-initials.generated-initials,
  .creator-avatar > .avatar-initials:only-child {
    width: 56px;
    height: 56px;
  }
  .channel-name {
    font-size: 14px;
  }
  .fans {
    font-size: 16px;
  }
  .form-shell { padding: 18px; }
  .chart-wrap { min-height: 280px; }
  .chart-wrap.doughnut { width: 240px; }
  .platform-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile-sticky { display: block; }
  .site-footer { padding-bottom: 104px; }
  .submit-alert .container {
    min-height: 68px;
    justify-content: flex-start;
    text-align: left;
  }
  .submit-page,
  .success-page {
    padding: 36px 0 56px;
  }
  .submit-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .submit-stepper li {
    min-height: 64px;
  }
  .form-section,
  .success-card {
    padding: 18px;
  }
  .form-grid.two,
  .pill-grid.three,
  .pill-grid.four,
  .pill-grid.five,
  .sidebar-sticky,
  .summary-table,
  .next-steps ol {
    grid-template-columns: 1fr;
  }
  .pill-grid.three,
  .pill-grid.four,
  .pill-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pill-option span {
    min-height: 44px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
  }
  .submit-form textarea {
    min-height: 220px;
  }
  .side-card {
    padding: 18px;
  }
  .success-actions,
  .share-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .success-wrap {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .simple-submit-alert .container {
    min-height: 58px;
    justify-content: flex-start;
    text-align: left;
  }
  .simple-submit-page {
    padding: 40px 0;
  }
  .simple-submit-shell {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .simple-submit-head h1 {
    font-size: 28px;
  }
  .simple-submit-form,
  .simple-success-card {
    padding: 20px;
  }
  .simple-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .simple-success-page {
    padding: 40px 14px;
  }
  .simple-success-actions {
    grid-template-columns: 1fr;
  }
}
