/* ============ BASE ============ */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #f6f9fc;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #10243a;
  -webkit-font-smoothing: antialiased;
}

a { color: #1467d6; text-decoration: none; }
a:hover { color: #0b4ea8; }

html { scroll-behavior: smooth; }

.accent { color: #1467d6; }
.check { color: #21b573; font-weight: 700; }

@keyframes scanline {
  0% { top: 0%; }
  50% { top: calc(100% - 3px); }
  100% { top: 0%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2eaf3;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1467d6, #2f9be8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.brand-mark-img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: #3d5670; }
.nav-links a:hover { color: #0b4ea8; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: #3d5670;
  padding: 8px 14px;
}
.nav-signin:hover { color: #0b4ea8; }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1467d6;
  padding: 9px 18px;
  border-radius: 8px;
}
.nav-cta:hover { background: #0b4ea8; color: #fff; }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
}
.nav-burger:hover { background: #e8f2fc; }

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #10243a;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid #e2eaf3;
  background: rgba(246, 249, 252, 0.97);
  padding: 6px 20px 12px;
}

.nav-mobile a {
  display: block;
  padding: 13px 4px;
  font-size: 15px;
  font-weight: 500;
  color: #3d5670;
  border-bottom: 1px solid #e9eff7;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: #0b4ea8; }

/* User avatar menu */
.user-menu { position: relative; }

.user-menu-toggle {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dde8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.user-menu-toggle:hover .user-avatar,
.user-menu-toggle[aria-expanded="true"] .user-avatar { border-color: #1467d6; }

.user-avatar-initials {
  background: #1467d6;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  max-width: 300px;
  background: #fff;
  border: 1px solid #dde8f4;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16, 52, 94, 0.14);
  padding: 6px;
  z-index: 100;
}

.user-menu-info {
  padding: 10px 12px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid #e9eff7;
  cursor: default;
}

.user-menu-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #10243a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-menu-email {
  font-size: 13px;
  color: #6b8098;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-menu-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c4560;
}
.user-menu-dropdown a:hover { background: #f4f9fe; color: #1467d6; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, #eef5fc 0%, #f6f9fc 100%);
  border-bottom: 1px solid #e2eaf3;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  animation: fadeUp 0.6s ease both;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
}

.hero-copy h1 {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a627c;
  margin: 0 0 28px;
  max-width: 560px;
  text-wrap: pretty;
}

.hero-checks {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: #6b8098;
}
.hero-checks > div { display: flex; align-items: center; gap: 7px; }

/* ============ DETECTOR WIDGET ============ */
.detector-wrap {
  animation: fadeUp 0.6s ease 0.15s both;
  width: 100%;
  max-width: 860px;
}

.detector-card {
  background: #fff;
  border: 1px solid #dde8f4;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(16, 52, 94, 0.10);
  padding: 24px;
  position: relative;
}

.detector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.detector-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

/* Dropzone */
.dropzone {
  border: 2px dashed #b9d2ec;
  border-radius: 14px;
  background: #f4f9fe;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.dropzone:hover,
.dropzone.dragover {
  border-color: #1467d6;
  background: #ecf5fd;
}

.dropzone-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: #e0eefb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1467d6;
}

.dropzone-label { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.dropzone-hint { font-size: 13px; color: #6b8098; }

/* Scanning */
.scan-stage {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #0e1c2c;
}

.scan-viewport {
  height: 240px;
  background: repeating-linear-gradient(45deg, #16273c 0px, #16273c 14px, #1b2f47 14px, #1b2f47 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scan-image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
}

.scan-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #7fb2e8;
  animation: pulse 1.2s ease infinite;
  position: relative;
  text-shadow: 0 1px 8px #0e1c2c;
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4aa8f0, transparent);
  box-shadow: 0 0 16px #4aa8f0;
  animation: scanline 1.6s ease-in-out infinite;
}

.scan-progress {
  margin-top: 14px;
  height: 6px;
  border-radius: 3px;
  background: #e8f0f9;
  overflow: hidden;
}

.scan-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #1467d6, #2f9be8);
  width: 0%;
  transition: width 0.15s linear;
}

/* Result */
.result-card {
  border-radius: 14px;
  border: 1px solid #e2eaf3;
  overflow: hidden;
}

.result-grid {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: start;
}

.result-left { display: flex; flex-direction: column; gap: 10px; }

.result-preview {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.result-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.result-filename {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #8aa4c0;
}

.btn-retry {
  display: block;
  align-self: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1467d6;
  padding: 11px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}
.btn-retry:hover { background: #0b4ea8; color: #fff; }

.result-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.verdict-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.verdict-label {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.verdict-badge {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 26px;
  padding: 8px 18px;
  border-radius: 12px;
  flex-shrink: 0;
}

.top-signals { display: flex; flex-direction: column; gap: 10px; }

.top-signal { display: flex; align-items: center; gap: 12px; }
.top-signal .sig-name { font-size: 14px; color: #2c4560; width: 150px; flex-shrink: 0; }
.top-signal .sig-track {
  width: 120px;
  height: 8px;
  border-radius: 4px;
  background: #eef3f9;
  overflow: hidden;
  flex-shrink: 0;
}
.top-signal .sig-fill { height: 100%; border-radius: 4px; }
.top-signal .sig-pct { font-size: 13px; color: #10243a; font-weight: 600; }

.score-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.score-stack { display: flex; flex-direction: column; gap: 18px; }

.score-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2eaf3;
  margin-bottom: 10px;
}

.score-scroll {
  max-height: 190px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-right: 6px;
}

.score-row { display: flex; align-items: center; gap: 10px; }
.score-row .sig-name {
  font-size: 13px;
  color: #4a627c;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.score-row .sig-track {
  width: 86px;
  height: 7px;
  border-radius: 4px;
  background: #eef3f9;
  overflow: hidden;
  flex-shrink: 0;
}
.score-row .sig-fill { height: 100%; border-radius: 4px; }

/* Bar fill colors: hot = AI signal detected, ok = authentic, zero = no signal */
.sig-fill.hot { background: #e05252; }
.sig-fill.ok { background: #21b573; }
.sig-fill.zero { background: #c7d6e6; }
.score-row .sig-pct {
  font-size: 12px;
  color: #10243a;
  width: 34px;
  text-align: right;
  flex-shrink: 0;
}

/* ============ TRUST BAR ============ */
.trustbar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 32px;
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #1467d6;
  letter-spacing: -0.02em;
}

.stat-label { font-size: 14px; color: #6b8098; margin-top: 4px; }

/* ============ SECTION SCAFFOLDING ============ */
.band {
  background: #fff;
  border-top: 1px solid #e2eaf3;
  border-bottom: 1px solid #e2eaf3;
}

.band-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.section-head.no-p { max-width: none; margin-bottom: 48px; }
.section-head.wide { max-width: none; }

.section-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section-head.no-p h2 { margin-bottom: 0; }

.section-head p {
  font-size: 16px;
  color: #4a627c;
  line-height: 1.6;
  margin: 0;
}

/* ============ HOW IT WORKS / GENERATORS SECTIONS ============ */
.how, .generators {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}

/* Result differentiation screenshot */
.result-shot {
  display: block;
  width: 100%;
  max-width: 820px;
  height: auto;
  margin: 0 auto 28px;
  background: #fff;
  border: 1px solid #dde8f4;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(16, 52, 94, 0.10);
}

.attribution-note {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: #4a627c;
}

/* Generator pills */
.generator-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.generator-pill {
  font-size: 14px;
  font-weight: 500;
  color: #2c4560;
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 999px;
  padding: 9px 16px;
}

/* Guide bar */
.guide-bar-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
}

.guide-bar-inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.guide-bar-inner p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4a627c;
  margin: 0 0 18px;
}

.guide-link { font-weight: 600; font-size: 15px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: #f6f9fc;
  border: 1px solid #e2eaf3;
  border-radius: 16px;
  padding: 28px;
}

.step-img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e2eaf3;
  margin-bottom: 16px;
  background: #e8f2fc;
}

.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #1467d6;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
}

.step-desc { font-size: 14.5px; color: #4a627c; line-height: 1.6; }

/* ============ FEATURES ============ */
.features {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 16px;
  padding: 26px;
  transition: all 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 30px rgba(16, 52, 94, 0.08);
  border-color: #c4d8ee;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f2fc;
  color: #1467d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-desc { font-size: 14px; color: #4a627c; line-height: 1.6; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-text { font-size: 15px; line-height: 1.65; color: #2c4560; }

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 13px; color: #6b8098; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: #f6f9fc;
  border: 1px solid #e2eaf3;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  user-select: none;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(20, 103, 214, 0.12);
}

.plan-card.popular {
  background: #fff;
  border: 2px solid #1467d6;
  box-shadow: 0 16px 40px rgba(20, 103, 214, 0.14);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1467d6;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}

.plan-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.plan-tagline { font-size: 14px; color: #6b8098; margin-bottom: 20px; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.plan-price .price {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  user-select: none;
  cursor: default;
}

.plan-price .period { font-size: 14px; color: #6b8098; }

.plan-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-perks > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #2c4560;
}

.plan-cta {
  margin-top: auto;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
}
.plan-cta:hover { opacity: 0.9; }

.plan-cta.secondary {
  color: #1467d6;
  background: #fff;
  border: 1px solid #c4d8ee;
}
.plan-cta.secondary:hover { color: #1467d6; }

.plan-cta.primary {
  color: #fff;
  background: #1467d6;
  border: none;
}
.plan-cta.primary:hover { color: #fff; }

/* ============ PRICING PAGE ============ */
.pricing-hero {
  background: #fff;
}

.pricing-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 32px 0;
  text-align: center;
  animation: fadeUp 0.6s ease both;
}

.pricing-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.pricing-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a627c;
  margin: 0 0 32px;
}

.billing-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid #dde8f4;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(16, 52, 94, 0.06);
}

.billing-option {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3d5670;
  background: transparent;
  border: none;
  border-radius: 9px;
  padding: 9px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.billing-option:hover { color: #0b4ea8; }
.billing-option.active {
  background: #1467d6;
  color: #fff;
}

.save-badge {
  font-size: 11px;
  font-weight: 600;
  color: #177a4e;
  background: #d9f3e6;
  padding: 3px 8px;
  border-radius: 999px;
}
.billing-option.active .save-badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

/* Same treatment as the homepage pricing band: white background so the
   light-gray cards stand out (hero above already draws the top border) */
.pricing-plans {
  background: #fff;
  border-bottom: 1px solid #e2eaf3;
}

.pricing-plans-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

/* Monthly prices show by default; body.yearly flips to yearly prices */
.price-yearly, .billed-note-yearly { display: none; }
body.yearly .price-yearly, body.yearly .billed-note-yearly { display: inline-block; }
body.yearly .price-monthly, body.yearly .billed-note-monthly { display: none; }
/* Per-plan savings chip in the card's top-right corner, shown only in yearly mode */
.save-chip {
  display: none;
  position: absolute;
  top: 26px;
  right: 24px;
  font-size: 12px;
  font-weight: 600;
  color: #177a4e;
  background: #d9f3e6;
  padding: 3px 10px;
  border-radius: 999px;
}
body.yearly .save-chip { display: inline-block; }

.pricing-plans .plan-name { margin-bottom: 16px; }

.pricing-plans .plan-price { margin-bottom: 6px; }

.billed-note {
  font-size: 13px;
  color: #6b8098;
  margin-bottom: 24px;
}

.pricing-footnote {
  text-align: center;
  font-size: 14.5px;
  color: #4a627c;
  margin-top: 40px;
}

/* ============ ACCOUNT PAGE ============ */
.account-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.6s ease both;
}

.account-head { margin-bottom: 8px; }

.account-head h1 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.account-head p {
  font-size: 16px;
  color: #4a627c;
  margin: 0;
}

.account-card {
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 16px;
  padding: 28px;
}

.account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.account-card-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.btn-secondary {
  font-size: 14px;
  font-weight: 600;
  color: #1467d6;
  background: #fff;
  border: 1px solid #c4d8ee;
  padding: 8px 16px;
  border-radius: 9px;
  flex-shrink: 0;
}
.btn-secondary:hover { border-color: #1467d6; color: #0b4ea8; }

.btn-primary {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1467d6;
  border: 1px solid #1467d6;
  padding: 8px 16px;
  border-radius: 9px;
  flex-shrink: 0;
}
.btn-primary:hover { background: #0b4ea8; border-color: #0b4ea8; color: #fff; }

.btn-sm {
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 8px;
}

/* Profile */
.profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1467d6, #2f9be8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 19px;
  flex-shrink: 0;
}

.profile-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.profile-email { font-size: 14px; color: #6b8098; margin-top: 3px; }

/* Usage */
.usage-reset { font-size: 13px; color: #6b8098; }

.usage-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.usage-count { font-size: 14.5px; color: #4a627c; }
.usage-count strong {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  color: #10243a;
}

.usage-detail { font-size: 13.5px; color: #6b8098; }

.usage-track {
  height: 8px;
  border-radius: 4px;
  background: #eef3f9;
  overflow: hidden;
}

.usage-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #1467d6, #2f9be8);
}

/* Billing */
.billing-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f6f9fc;
  border: 1px solid #e2eaf3;
  border-radius: 12px;
  padding: 18px 20px;
}

.billing-plan-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-chip {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #1467d6;
  background: #e8f2fc;
  padding: 3px 10px;
  border-radius: 999px;
}

.billing-plan-desc { font-size: 13.5px; color: #6b8098; margin-top: 5px; }

.billing-plan-price {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.billing-plan-price span { font-size: 14px; font-weight: 600; color: #6b8098; }

/* Danger zone */
.account-card.danger { border-color: #f0cccc; }

.danger-text {
  font-size: 14.5px;
  color: #4a627c;
  line-height: 1.6;
  margin: 0 0 20px;
}

.btn-danger {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #c0392b;
  background: #fff;
  border: 1px solid #e8b4ae;
  padding: 10px 18px;
  border-radius: 9px;
}
.btn-danger:hover { background: #c0392b; border-color: #c0392b; color: #fff; }

/* ============ FAQ ============ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
}
.faq-item:hover { border-color: #c4d8ee; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q-text { font-weight: 600; font-size: 15.5px; margin: 0; font-family: 'IBM Plex Sans', sans-serif; }

.faq-mark {
  font-size: 18px;
  color: #1467d6;
  flex-shrink: 0;
  font-weight: 600;
}

.faq-a {
  font-size: 14.5px;
  color: #4a627c;
  line-height: 1.65;
  margin-top: 12px;
}
.faq-item:not(.open) .faq-a { display: none; }

/* ============ CTA ============ */
.cta {
  background: linear-gradient(180deg, #eef5fc, #dcebfa);
  border-top: 1px solid #e2eaf3;
}

.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 32px;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #10243a;
  margin: 0 0 14px;
}

.cta-inner p { font-size: 16px; color: #4a627c; margin: 0 0 30px; }

.cta-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #1467d6;
  padding: 14px 32px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(20, 103, 214, 0.25);
}
.cta-button:hover { background: #0b4ea8; color: #fff; }

/* ============ FOOTER ============ */
.footer {
  background: #0a1624;
  color: #94aecb;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #1467d6, #2f9be8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 13px;
}

.footer-mark-img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.footer-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.footer-name span { color: #4aa8f0; }

.footer-blurb {
  font-size: 13px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-cols { display: flex; gap: 64px; font-size: 14px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a { color: #94aecb; }
.footer-col a:hover { color: #fff; }

/* ============ LEGAL PAGES ============ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 88px;
}

.legal h1 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.legal-updated {
  font-size: 14px;
  color: #6b8098;
  margin: 0 0 32px;
}

.legal h2 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}

.legal p {
  font-size: 15px;
  line-height: 1.7;
  color: #2c4560;
  margin: 0 0 14px;
}

.legal ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal li {
  font-size: 15px;
  line-height: 1.7;
  color: #2c4560;
  margin-bottom: 8px;
}

.legal strong { color: #10243a; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile:not([hidden]) { display: block; }
  .hero-copy h1 { font-size: 42px; }
  .trustbar-grid,
  .steps-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .result-preview { height: 240px; }
}

@media (max-width: 640px) {
  /* Layout rhythm */
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 44px 20px 56px; gap: 32px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy p { font-size: 16px; }
  .hero-checks { flex-direction: column; gap: 10px; align-items: center; }
  .trustbar { padding: 44px 20px; }
  .band-inner, .features, .testimonials, .faq { padding: 56px 20px; }
  .how, .generators { padding: 56px 20px; }
  .legal { padding: 48px 20px 64px; }
  .legal h1 { font-size: 28px; }
  .cta-inner { padding: 56px 20px; }
  .cta-inner h2 { font-size: 28px; }
  .section-head h2 { font-size: 27px; }
  .footer-inner { padding: 40px 20px 32px; }
  .footer-cols { gap: 32px; flex-wrap: wrap; }
  .trustbar-grid,
  .steps-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 32px; }

  /* Detector widget */
  .detector-card { padding: 16px; border-radius: 16px; }
  .dropzone { padding: 32px 16px; }
  .scan-viewport { height: 190px; }
  .scan-status { font-size: 11px; padding: 0 12px; text-align: center; }

  /* Result view */
  .result-grid { padding: 16px; gap: 20px; }
  .result-preview { height: 220px; }
  .btn-retry { align-self: stretch; }

  .verdict-row { gap: 12px; }
  .verdict-label { font-size: 18px; }
  .verdict-badge { font-size: 18px; padding: 6px 12px; border-radius: 10px; }

  /* Top signal bars: fixed 150px+120px columns overflow small screens —
     switch to the same flexible layout as the score rows */
  .top-signal .sig-name {
    width: auto;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .top-signal .sig-track { width: 84px; }
  .top-signal .sig-pct { width: 38px; text-align: right; flex-shrink: 0; }

  .score-columns { grid-template-columns: 1fr; gap: 20px; }
  .score-scroll { max-height: 170px; }
}
