* {
  box-sizing: border-box;
}

:root {
  --navy: #07101d;
  --navy-2: #0a1422;
  --navy-3: #0d192a;
  --panel-dark: #0d1726;
  --line-dark: #243248;
  --text-dark: #f7f9fc;
  --muted-dark: #a9b5c6;

  --blue: #1478ff;
  --purple: #a600f5;
  --violet: #6e3cff;

  --green: #31b84a;
  --red: #ff3948;
  --orange: #ff9800;

  --light-bg: #f4f6fa;
  --light-panel: #ffffff;
  --light-panel-soft: #f7f8fb;
  --light-line: #dfe4ec;
  --light-text: #101827;
  --light-muted: #697586;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--text-dark);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
video {
  max-width: 100%;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* =========================================================
   BETA
   ========================================================= */

.beta-banner {
  padding: 7px 16px;
  background: linear-gradient(90deg, #342fc8, #8c16ee);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .35px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #17273b;
  background: rgba(7, 16, 29, .97);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  color: #fff;
  text-decoration: none;
}

.brand-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-shield {
  position: relative;
  width: 42px;
  height: 48px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 92% 15%, 84% 78%, 50% 100%, 16% 78%, 8% 15%);
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.brand-shield::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 2px;
  bottom: 3px;
  border-radius: 50%;
  background: var(--red);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: .2px;
}

.brand-copy small {
  color: #9aa7b8;
  font-size: 9px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #c5cfdd;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.main-nav a:hover {
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.upload-button:focus-visible,
textarea:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid #ffcf40;
  outline-offset: 3px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  list-style: none;
  padding: 9px 13px;
  border: 1px solid #34445d;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: " +";
  color: #c45cff;
}

.mobile-nav[open] summary::after {
  content: " −";
}

.mobile-nav nav {
  position: absolute;
  z-index: 110;
  top: calc(100% + 8px);
  right: 0;
  width: min(260px, calc(100vw - 26px));
  padding: 8px;
  border: 1px solid #34445d;
  border-radius: 10px;
  background: #0b1727;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .38);
}

.mobile-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 7px;
  color: #d6deea;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: #172640;
  color: #fff;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.beta-pill {
  padding: 8px 13px;
  border: 1px solid #5d31dc;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 93, 255, .85), rgba(161, 0, 245, .85));
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
  white-space: nowrap;
}

/* =========================================================
   REGION
   ========================================================= */

.nav-region-wrap {
  position: relative;
  min-width: 205px;
}

.nav-region {
  appearance: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid #34445d;
  border-radius: 999px;
  background: #0b1727;
  color: #c6d0dd;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.nav-region:hover {
  border-color: #526683;
}

.nav-region strong {
  color: #fff;
}

.nav-region-chevron {
  margin-left: auto;
  color: #c45cff;
}

.region-flag-img {
  width: 22px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.nav-region-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid #34445d;
  border-radius: 10px;
  background: #0b1727;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .38);
}

.nav-region-menu[hidden] {
  display: none;
}

.nav-region-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.nav-region-option:hover,
.nav-region-option.is-selected {
  background: #172640;
}

.nav-region-option span:nth-child(2) {
  font-size: 13px;
  font-weight: 700;
}

.nav-region-option strong {
  color: #a9b5c6;
  font-size: 12px;
}

/* =========================================================
   SHARED
   ========================================================= */

.eyebrow {
  margin: 0;
  color: #8d3cff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.primary {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(82, 37, 255, .18);
}

.primary:hover {
  filter: brightness(1.07);
}

.ghost {
  appearance: none;
  border: 1px solid #34445d;
  border-radius: 6px;
  background: transparent;
  color: #f4f7fb;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.ghost:hover {
  border-color: #586b87;
  background: #101e30;
}

.small-button {
  padding: 8px 10px;
  font-size: 12px;
}

.text-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 0;
  background: none;
  color: #95a7bd;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.text-button:hover {
  color: #fff;
}

/* =========================================================
   HERO
   ========================================================= */

.home-hero {
  min-height: 720px;
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 83% 22%, rgba(88, 20, 199, .28), transparent 34%),
    radial-gradient(circle at 52% -10%, rgba(19, 111, 255, .18), transparent 30%),
    linear-gradient(180deg, #07101d 0%, #08111f 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  gap: 58px;
  align-items: start;
}

.hero-copy {
  max-width: 635px;
}

.hero-copy h1 {
  margin: 17px 0 18px;
  font-size: clamp(52px, 6vw, 78px);
  line-height: .99;
  letter-spacing: -3.2px;
}

.gradient-word {
  background: linear-gradient(90deg, #1d84ff, #9c00ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 620px;
  color: #d5dce7;
  font-size: 17px;
  line-height: 1.58;
}

/* =========================================================
   CHECKER
   ========================================================= */

.checker-new {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid #263850;
  border-radius: 10px;
  background: rgba(8, 18, 32, .95);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .19);
}

.checker-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.checker-tabs button {
  appearance: none;
  border: 1px solid #35465f;
  border-radius: 5px;
  background: transparent;
  color: #c0cada;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.checker-tabs button:hover {
  color: #fff;
  border-color: #687b99;
}

.checker-tabs button.active {
  border-color: #7735ff;
  background: linear-gradient(180deg, rgba(103, 54, 255, .22), rgba(78, 27, 148, .18));
  color: #fff;
}

textarea {
  width: 100%;
  min-height: 175px;
  padding: 16px;
  resize: vertical;
  border: 1px solid #35445b;
  border-radius: 7px;
  outline: none;
  background: #07111f;
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}

textarea:focus {
  border-color: #7656db;
}

textarea::placeholder {
  color: #65758b;
}

.checker-meta-row {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #718198;
  font-size: 11px;
}

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.document-upload {
  grid-column: 1 / -1;
}

.compact-upload {
  min-width: 0;
}

.image-upload,
.video-upload,
.document-upload {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px dashed #42536c;
  border-radius: 7px;
  background: #091321;
}

.image-upload-copy,
.video-upload-copy,
.document-upload-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.image-upload-copy strong,
.video-upload-copy strong,
.document-upload-copy strong {
  font-size: 12px;
}

.image-upload-copy span,
.video-upload-copy span,
.document-upload-copy span {
  color: #7f8da2;
  font-size: 10px;
  line-height: 1.4;
}

.upload-button {
  flex-shrink: 0;
  padding: 9px 11px;
  border: 1px solid #53627a;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.upload-button:hover {
  border-color: #7a5fff;
}

.upload-button:focus-visible {
  border-color: #ffcf40;
}

#imageInput,
#videoInput,
#documentInput {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.image-preview,
.video-preview,
.document-preview {
  margin-top: 12px;
  display: grid;
  gap: 15px;
  align-items: start;
  padding: 13px;
  border: 1px solid #293950;
  border-radius: 7px;
  background: #091321;
}

.image-preview {
  grid-template-columns: 130px minmax(0, 1fr);
}

.image-preview img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  background: #000;
}

.image-meta,
.video-meta,
.document-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.image-meta span,
.video-meta span,
.document-meta span {
  color: #8391a5;
  font-size: 11px;
}

.video-preview {
  grid-template-columns: minmax(170px, 270px) minmax(0, 1fr);
}

.video-preview video {
  width: 100%;
  max-height: 250px;
  border-radius: 5px;
  background: #000;
}

.video-meta progress {
  width: 100%;
  max-width: 360px;
}

.video-processing-note,
.image-note {
  color: #7d8da3;
  font-size: 10px;
  line-height: 1.5;
}

.video-processing-note {
  margin: 12px 0 0;
  padding-left: 11px;
  border-left: 3px solid #5d48a7;
}

.image-note {
  margin: 10px 0 0;
}

.hero-check-button {
  width: 100%;
  min-height: 52px;
  margin-top: 17px;
  font-size: 16px;
}

.privacy-line {
  margin: 10px 0 0;
  color: #a2aebe;
  font-size: 10px;
  text-align: center;
}

.error {
  min-height: 18px;
  margin-bottom: 0;
  color: #ff8d97;
  font-size: 12px;
}

/* =========================================================
   RESULT PREVIEW + FREE RESULT
   ========================================================= */

.hero-right {
  position: sticky;
  top: 96px;
}

.result-preview-card {
  padding: 20px;
  border: 1px solid #26384f;
  border-radius: 10px;
  background: rgba(15, 25, 41, .96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .24);
}

.result-preview-head,
.report-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.result-preview-head strong {
  font-size: 15px;
}

.result-preview-head span,
.free-pill {
  padding: 5px 9px;
  border-radius: 5px;
  background: #245f31;
  color: #c9ffd2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .5px;
}

.preview-score {
  margin-top: 10px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 7px;
  background: rgba(5, 13, 24, .7);
}

.preview-score div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.preview-score strong {
  font-size: 13px;
}

.preview-score small {
  color: #8e9bae;
  font-size: 9px;
}

.preview-score b {
  color: #65748a;
  font-size: 27px;
}

/* The live free result intentionally becomes a light evidence card,
   visually bridging the dark free checker and the paid light report. */

.report-new {
  padding: 0;
  overflow: hidden;
  border: 1px solid #dce2eb;
  border-radius: 12px;
  background: #fff;
  color: var(--light-text);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .24);
}

.report-new .report-kicker-row {
  padding: 18px 20px 0;
}

.report-new .report-kicker-row .eyebrow {
  color: #6e3cff;
}

.report-title {
  margin: 13px 20px 0;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border: 1px solid #e1e5ec;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(112, 61, 255, .08), transparent 55%),
    #f8f9fc;
}

.report-title h2 {
  margin: 0 0 7px;
  color: #101827;
  font-size: 26px;
  letter-spacing: -.7px;
}

.report-title p {
  margin: 0;
  color: #687487;
  font-size: 11px;
  line-height: 1.55;
}

.score {
  min-width: 108px;
  text-align: center;
}

.score b {
  display: block;
  color: #111827;
  font-size: clamp(16px, 2vw, 22px);
  white-space: nowrap;
}

.nav-check-link {
  padding: 8px 12px;
  border: 1px solid #7650ff;
  border-radius: 6px;
  color: #fff !important;
}

.hero-promise {
  max-width: 590px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-outcomes {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: #d9e3f1;
}

.hero-outcomes li {
  position: relative;
  padding-left: 23px;
}

.hero-outcomes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #75e4b3;
  font-weight: 900;
}

.precheck-message {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid #26384f;
  border-radius: 8px;
  background: rgba(5, 13, 24, .7);
}

.precheck-message strong {
  font-size: 18px;
}

.precheck-message p {
  margin: 8px 0 16px;
  color: #aeb9c8;
  font-size: 12px;
  line-height: 1.6;
}

.precheck-card .preview-metrics-wrap,
.precheck-card .preview-metrics {
  display: none;
}

.precheck-card.has-result .precheck-message {
  display: none;
}

.precheck-card.has-result .preview-metrics-wrap {
  display: block;
}

.precheck-card.has-result p.preview-metrics {
  display: block;
}

.result-limit-note {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #26384f;
  color: #93a0b2;
  font-size: 10px;
  line-height: 1.5;
}

.document-preview {
  grid-template-columns: 58px minmax(0, 1fr);
}

.document-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #435775;
  border-radius: 7px;
  background: #101d30;
  color: #c7d5e8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
}

.score small {
  display: block;
  margin-top: 5px;
  color: #8b96a6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.result-reading-order {
  margin: 11px 20px 0;
  padding: 9px 12px;
  border-left: 3px solid #7650ff;
  background: #f7f5ff;
  color: #596579;
  font-size: 10px;
  line-height: 1.5;
}

.channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 20px 0;
}

.channels article {
  padding: 15px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fff;
}

.channels .claim-channel {
  border-top: 2px solid #ff9a25;
}

.channels .source-channel,
.channels .provenance-channel {
  border-top: 2px solid #7650ff;
}

.channels article:nth-child(4) {
  border-top: 2px solid #ff5360;
}

.quick-uncertainty-finding {
  margin-bottom: 10px;
  padding: 10px 11px;
  border: 1px solid #e1e5eb;
  border-radius: 7px;
  background: #f8fafc;
}

.quick-uncertainty-finding strong {
  display: block;
  margin-bottom: 5px;
  color: #172033;
  font-size: 10px;
}

.quick-uncertainty-finding ul {
  margin: 0;
  padding-left: 18px;
}

.quick-uncertainty-finding li {
  margin: 3px 0;
}

.quick-overall-limit {
  padding-top: 9px;
  border-top: 1px solid #e4e8ef;
  color: #667085;
  font-size: 9px;
}

.channels .wide {
  grid-column: 1 / -1;
}

.channel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.channel-head h3 {
  margin: 0;
  color: #111827;
  font-size: 12px;
}

.channel-head span {
  color: #7145e8;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.channels p {
  margin: 10px 0 0;
  color: #687487;
  font-size: 10px;
  line-height: 1.55;
}

.next {
  margin: 12px 20px 0;
  padding: 16px;
  border: 1px solid #dfe4eb;
  border-top: 2px solid #31b84a;
  border-radius: 8px;
  background: #fbfefb;
}

.next h3 {
  margin: 0 0 9px;
  color: #111827;
  font-size: 13px;
}

.next ol {
  margin: 0;
  padding-left: 20px;
}

.next li {
  margin: 6px 0;
  color: #687487;
  font-size: 10px;
  line-height: 1.48;
}

.upgrade-new {
  margin: 12px 20px 0;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #d6c7ff;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(20, 120, 255, .06), rgba(166, 0, 245, .10)),
    #faf8ff;
}

.upgrade-new .eyebrow {
  color: #6e3cff;
}

.upgrade-new h3 {
  margin: 5px 0 7px;
  color: #111827;
  font-size: 17px;
}

.upgrade-new h3 span {
  color: #753dff;
}

.upgrade-new p:not(.eyebrow) {
  margin: 0;
  color: #687487;
  font-size: 10px;
  line-height: 1.5;
}

.checkout-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.checkout-action .primary {
  padding: 12px 14px;
  font-size: 10px;
  white-space: nowrap;
}

.checkout-status {
  max-width: 210px;
  color: #7e899a;
  font-size: 9px;
  text-align: right;
}

.report-new .reset {
  margin: 12px 20px 20px;
  border-color: #d6dce5;
  color: #243044;
}

.report-new .reset:hover {
  background: #f4f6f9;
}

.unlock-preview {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid #5431a4;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(52, 28, 117, .84), rgba(33, 16, 82, .94));
}

.unlock-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(145, 80, 255, .17);
  color: #c777ff;
}

.unlock-preview div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.unlock-preview strong {
  font-size: 12px;
}

.unlock-preview span {
  color: #c1b7dc;
  font-size: 9px;
}

.unlock-price {
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 900;
}

/* =========================================================
   ADS
   ========================================================= */

.ad-strip {
  border-top: 1px solid #d8dce4;
  border-bottom: 1px solid #d8dce4;
  background: #fff;
  color: #111827;
}

.ad-inner {
  min-height: 95px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.ad-inner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ad-inner > div:first-child strong {
  color: #7754e8;
  font-size: 9px;
  letter-spacing: 1.3px;
}

.ad-inner > div:first-child span,
.ad-inner > span {
  color: #6d7685;
  font-size: 9px;
}

.ad-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.ad-message strong {
  color: #6e3cff;
  font-size: 12px;
}

.ad-message span {
  color: #70798a;
  font-size: 10px;
}

.inline-ad {
  margin-top: 55px;
  border: 1px dashed #9b70ff;
  border-radius: 8px;
  background: #fff;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.benefit-strip {
  background: #fff;
  color: #161d2a;
  border-bottom: 1px solid #dfe4eb;
}

.benefit-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid #e2e6ed;
  font-size: 11px;
  text-align: center;
}

.benefit-row > div:last-child {
  border-right: 0;
}

.benefit-row span {
  color: #161d2a;
  font-size: 17px;
}

/* =========================================================
   LIGHT CONTENT
   ========================================================= */

.light-section {
  padding: 78px 0;
  background: var(--light-bg);
  color: var(--light-text);
}

.light-section h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.06;
  letter-spacing: -1.7px;
}

.light-section h2 span {
  background: linear-gradient(90deg, #1478ff, #a600f5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.more-than-ai > .wrap > p {
  margin: 0 auto 8px;
  color: #596579;
  font-size: 15px;
  line-height: 1.6;
}

.feature-cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-cards article {
  padding: 26px;
  border: 1px solid #dfe4eb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(22, 35, 54, .04);
}

.feature-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #f1edff;
  color: #6f3cff;
  font-size: 16px;
  font-weight: 900;
}

.feature-cards article:nth-child(1) .feature-icon {
  background: #ecf9ef;
  color: #26a845;
}

.feature-cards article:nth-child(3) .feature-icon {
  background: #fff5e9;
  color: #ff9100;
}

.feature-cards h3 {
  margin: 19px 0 9px;
  font-size: 19px;
}

.feature-cards p {
  margin: 0;
  color: #596579;
  font-size: 12px;
  line-height: 1.55;
}

.feature-cards small {
  display: block;
  margin-top: 14px;
  color: #8993a2;
  font-size: 10px;
  line-height: 1.45;
}

.how-section {
  background: #fff;
}

.steps {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.steps article {
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -8px;
  left: calc(50% + 28px);
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #31b84a;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.step-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid #dce2ea;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  font-size: 25px;
}

.steps h3 {
  margin: 0 0 9px;
  font-size: 17px;
}

.steps p {
  max-width: 280px;
  margin: 0 auto;
  color: #667085;
  font-size: 11px;
  line-height: 1.58;
}

.common-uses {
  background: #fff;
}

.uses-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.uses-grid article {
  min-height: 128px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1px solid #dfe4eb;
  border-radius: 9px;
  background: #fff;
}

.uses-grid article > span {
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.uses-grid strong {
  font-size: 13px;
}

.uses-grid small {
  color: #737f90;
  font-size: 10px;
  line-height: 1.45;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  max-width: 900px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  overflow: hidden;
}

.faq-grid details {
  border-bottom: 1px solid #e3e7ed;
}

.faq-grid details:nth-child(odd) {
  border-right: 1px solid #e3e7ed;
}

.faq-grid summary {
  padding: 15px 17px;
  color: #151d2a;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.faq-grid details p {
  margin: -3px 17px 16px;
  color: #697586;
  font-size: 11px;
  line-height: 1.55;
}

/* =========================================================
   CTA + FOOTER
   ========================================================= */

.bottom-cta {
  padding: 34px 0;
  border-top: 1px solid #1c2d44;
  background:
    linear-gradient(90deg, #07101d 0%, #0b1730 55%, #27104b 100%);
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.bottom-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bottom-brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bottom-brand strong {
  font-size: 18px;
}

.bottom-brand span {
  color: #9da9b9;
  font-size: 11px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid #1a293d;
  background: #07101d;
  color: #7d8ba0;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px;
  color: #c6cfdd;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social .social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2f4057;
  border-radius: 50%;
  background: #0b1523;
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer-social .social-icon:hover {
  transform: translateY(-1px);
  border-color: #7c3cff;
  background: rgba(124, 60, 255, .12);
}

.footer-social .social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* =========================================================
   TOAST / DEBUG
   ========================================================= */

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: none;
  padding: 14px 18px;
  border-radius: 7px;
  background: #fff;
  color: #111827;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
  font-size: 12px;
}

.toast.show {
  display: block;
}

.debug-frame-panel {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #34445d;
  border-radius: 8px;
  background: #0a1524;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .site-header-inner {
    justify-content: space-between;
  }

  .header-tools {
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    position: static;
  }

  .hero-copy {
    max-width: 780px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .uses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-row > div {
    min-height: 66px;
    border-bottom: 1px solid #e3e7ed;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 26px, 1180px);
  }

  .beta-banner {
    padding: 7px 10px;
    font-size: 9px;
    line-height: 1.4;
  }

  .site-header-inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .mobile-nav {
    order: 2;
  }

  .brand-copy small {
    display: none;
  }

  .header-tools {
    order: 3;
    width: 100%;
  }

  .nav-region-wrap {
    width: 100%;
  }

  .nav-region {
    justify-content: center;
  }

  .nav-region-menu {
    left: 0;
    right: auto;
    width: 100%;
  }

  .beta-pill {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding: 44px 0 52px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 14vw, 61px);
    letter-spacing: -2.5px;
  }

  .lead {
    font-size: 15px;
  }

  .checker-new {
    margin-top: 27px;
    padding: 15px;
  }

  .checker-tabs {
    gap: 5px;
  }

  .checker-tabs button {
    padding: 7px 8px;
    font-size: 9px;
  }

  textarea {
    min-height: 150px;
  }

  .upload-grid,
  .image-preview,
  .video-preview,
  .channels {
    grid-template-columns: 1fr;
  }

  .channels .wide {
    grid-column: auto;
  }

  .image-upload,
  .video-upload {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-preview img {
    width: 100%;
    height: auto;
    max-height: 280px;
  }

  .report-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .score {
    min-width: 0;
    text-align: left;
  }

  .upgrade-new {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-action {
    width: 100%;
    align-items: stretch;
  }

  .checkout-action .primary {
    width: 100%;
  }

  .checkout-status {
    max-width: none;
    text-align: left;
  }

  .unlock-preview {
    grid-template-columns: auto 1fr;
  }

  .unlock-price {
    grid-column: 2;
  }

  .ad-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
  }

  .ad-message {
    flex-direction: column;
    gap: 5px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .benefit-row > div {
    min-height: 56px;
    border-right: 0;
  }

  .light-section {
    padding: 58px 0;
  }

  .light-section h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }

  .feature-cards {
    margin-top: 30px;
  }

  .steps {
    margin-top: 32px;
  }

  .uses-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid details:nth-child(odd) {
    border-right: 0;
  }

  .bottom-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .bottom-cta-inner .primary {
    width: 100%;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    font-size: 13px;
  }

  .brand-shield {
    width: 36px;
    height: 41px;
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .checker-meta-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 7px 0;
  }

  .report-new {
    border-radius: 9px;
  }

  .report-new .report-kicker-row {
    padding: 15px 15px 0;
  }

  .report-title,
  .channels,
  .next,
  .upgrade-new {
    margin-left: 15px;
    margin-right: 15px;
  }

  .report-title,
  .channels article,
  .next,
  .upgrade-new {
    padding: 14px;
  }

  .report-new .reset {
    margin-left: 15px;
    margin-right: 15px;
  }

  .feature-cards article {
    padding: 20px;
  }
}
.result-preview-card {
  margin-bottom: 12px;
}

.report-title,
.channels article,
.evidence-source-list,
.evidence-source-list a,
.evidence-detail,
.next {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.retry-evidence {
  margin-top: 12px;
  border-color: #6f56c8;
  color: #34216f;
}

.retry-evidence[hidden] {
  display: none;
}
