:root {
  --midnight: #34344a;
  --plum: #80475e;
  --rose: #cc5a71;
  --copper: #c89b7b;
  --volt: #f0f757;
  --indigo: #3b429f;
  --violet: #aa7dce;
  --blush: #f5d7e3;
  --petal: #f4a5ae;
  --berry: #a8577e;
  --paper: #fff9f5;
  --paper-strong: #f7edf0;
  --surface: #fffefc;
  --surface-tint: #fff5f7;
  --ink: #2f2e43;
  --muted: #756777;
  --line: rgba(52, 52, 74, 0.15);
  --line-strong: rgba(52, 52, 74, 0.24);
  --shadow: 0 18px 44px rgba(52, 52, 74, 0.11);
  --shadow-sharp: 8px 8px 0 rgba(52, 52, 74, 0.12);
  --graphite: var(--midnight);
  --teal: var(--rose);
  --amber: var(--copper);
  --coral: var(--rose);
  --blue: var(--indigo);
  --bs-body-bg: var(--paper);
  --bs-body-color: var(--ink);
  --bs-primary: var(--rose);
  --bs-primary-rgb: 204, 90, 113;
  --bs-secondary: var(--plum);
  --bs-secondary-rgb: 128, 71, 94;
  --bs-success: #4a8f74;
  --bs-warning: var(--volt);
  --bs-danger: var(--rose);
  --bs-light: var(--surface);
  --bs-dark: var(--midnight);
  --bs-link-color: var(--plum);
  --bs-link-hover-color: var(--rose);
  --bs-border-color: var(--line);
  --bs-border-radius: 8px;
  --bs-border-radius-sm: 6px;
  --bs-border-radius-lg: 8px;
  --bs-font-sans-serif: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  letter-spacing: 0;
}

body {
  min-width: 320px;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(52, 52, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 52, 74, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--rose);
}

img,
video {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 650;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 249, 245, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  color: var(--midnight);
  font-weight: 650;
}

.navbar-brand img {
  box-shadow: 4px 4px 0 rgba(204, 90, 113, 0.18);
}

.navbar-toggler {
  border-color: var(--line-strong);
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(204, 90, 113, 0.18);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  margin-left: 0.35rem;
  padding: 0.62rem 0.84rem !important;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--midnight);
  font-size: 0.94rem;
  font-weight: 600;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav-link::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.45;
}

.nav-link.active,
.nav-link:hover {
  border-color: rgba(52, 52, 74, 0.28);
  background: var(--volt);
  color: var(--midnight);
  box-shadow: 4px 4px 0 rgba(52, 52, 74, 0.13);
  transform: translateY(-1px);
}

.modal {
  z-index: 2110;
}

.site-notification-modal .modal-dialog,
.admin-confirm-modal-content {
  max-width: 540px;
}

.site-notification-modal .modal-content,
.admin-confirm-modal-content {
  border: 2px solid var(--midnight);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 10px 12px 0 rgba(52, 52, 74, 0.2), 0 18px 50px rgba(52, 52, 74, 0.24);
}

.admin-confirm-modal-content .modal-header {
  border-bottom: 1px solid rgba(52, 52, 74, 0.14);
  background: rgba(52, 52, 74, 0.04);
  color: var(--midnight);
}

.admin-confirm-modal-content .modal-footer {
  border-top: 1px solid rgba(52, 52, 74, 0.14);
}

.modal-backdrop {
  z-index: 2100;
}

.modal-backdrop.show {
  opacity: 0.62;
  backdrop-filter: blur(3px);
}

.site-notification-modal .modal-header {
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(52, 52, 74, 0.14);
  background: rgba(52, 52, 74, 0.04);
  color: var(--midnight);
}

.site-notification-modal .modal-title {
  flex: 1;
  font-weight: 700;
}

.site-notification-modal .modal-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  color: var(--midnight);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.site-notification-modal .modal-footer {
  padding: 0.85rem 1rem 1rem;
  border-top-color: rgba(52, 52, 74, 0.14);
}

.notification-symbol {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--midnight);
  color: #fff;
}

.site-notification-modal .notification-success {
  border-color: #47704f;
  box-shadow: 10px 12px 0 rgba(240, 247, 87, 0.5), 0 18px 50px rgba(52, 52, 74, 0.24);
}

.notification-success .notification-symbol {
  background: #47704f;
}

.site-notification-modal .notification-warning {
  border-color: #a86f19;
  box-shadow: 10px 12px 0 rgba(200, 155, 123, 0.5), 0 18px 50px rgba(52, 52, 74, 0.24);
}

.notification-warning .notification-symbol {
  background: #a86f19;
}

.site-notification-modal .notification-danger {
  border-color: var(--rose);
  box-shadow: 10px 12px 0 rgba(204, 90, 113, 0.35), 0 18px 50px rgba(52, 52, 74, 0.28);
}

.notification-danger .notification-symbol {
  background: var(--rose);
}

.site-notification-modal .notification-info {
  border-color: #3b6f9f;
  box-shadow: 10px 12px 0 rgba(59, 66, 159, 0.25), 0 18px 50px rgba(52, 52, 74, 0.24);
}

.notification-info .notification-symbol {
  background: #3b6f9f;
}

.site-notification-message + .site-notification-message {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(52, 52, 74, 0.14);
}

@media (max-width: 575.98px) {
  .site-notification-modal .modal-dialog {
    margin: 0.75rem;
  }

  .site-notification-modal .modal-content {
    box-shadow: 6px 7px 0 rgba(52, 52, 74, 0.18), 0 14px 36px rgba(52, 52, 74, 0.24);
  }
}

.btn {
  border-radius: 8px;
  font-weight: 650;
  white-space: normal;
}

.btn-brand {
  --bs-btn-color: var(--midnight);
  --bs-btn-bg: var(--volt);
  --bs-btn-border-color: var(--midnight);
  --bs-btn-hover-color: var(--midnight);
  --bs-btn-hover-bg: #f7ff70;
  --bs-btn-hover-border-color: var(--midnight);
  --bs-btn-active-color: var(--midnight);
  --bs-btn-active-bg: #e4ec3f;
  --bs-btn-active-border-color: var(--midnight);
  box-shadow: 5px 5px 0 rgba(52, 52, 74, 0.18);
}

.btn-brand:hover {
  transform: translate(-1px, -1px);
}

.btn-dark {
  --bs-btn-bg: var(--midnight);
  --bs-btn-border-color: var(--midnight);
  --bs-btn-hover-bg: var(--plum);
  --bs-btn-hover-border-color: var(--plum);
}

.btn-ghost-light {
  --bs-btn-color: var(--midnight);
  --bs-btn-bg: rgba(255, 254, 252, 0.68);
  --bs-btn-border-color: rgba(52, 52, 74, 0.34);
  --bs-btn-hover-color: var(--midnight);
  --bs-btn-hover-bg: var(--surface);
  --bs-btn-hover-border-color: var(--midnight);
}

.form-control,
.form-select {
  border-color: var(--line-strong);
  border-radius: 8px;
  background-color: var(--surface);
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 0.2rem rgba(204, 90, 113, 0.16);
}

.table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--ink);
  --bs-table-border-color: var(--line);
}

.table thead th {
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #fff7f2;
  background-image:
    radial-gradient(circle at 78% 42%, rgba(240, 247, 87, 0.36), transparent 16%),
    radial-gradient(circle at 88% 72%, rgba(204, 90, 113, 0.22), transparent 22%),
    linear-gradient(115deg, #fff7f2 0%, #fff7f2 48%, #f5d7e3 100%);
  color: var(--midnight);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--midnight) 0 28px, var(--rose) 28px 56px, var(--volt) 56px 84px, var(--copper) 84px 112px);
}

.hero-radar {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.radar-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 52, 74, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 52, 74, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 94%);
}

.radar-ring,
.radar-sweep,
.radar-axis,
.radar-node {
  position: absolute;
  display: block;
}

.radar-ring,
.radar-sweep {
  left: 70%;
  top: 52%;
  width: min(86vw, 940px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring {
  border: 1px solid rgba(52, 52, 74, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 254, 252, 0.32);
}

.radar-ring-one {
  width: min(34vw, 370px);
  background: rgba(255, 254, 252, 0.22);
}

.radar-ring-two {
  width: min(58vw, 640px);
}

.radar-ring-three {
  width: min(86vw, 940px);
}

.radar-sweep {
  background: conic-gradient(from 218deg, transparent 0 70%, rgba(240, 247, 87, 0.46) 76%, rgba(204, 90, 113, 0.22) 83%, transparent 91% 100%);
  opacity: 0.82;
  animation: radarRotate 11s linear infinite;
}

.radar-axis {
  left: 70%;
  top: 52%;
  width: min(86vw, 940px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 52, 74, 0.26), transparent);
  transform-origin: center;
}

.radar-axis-y {
  transform: translate(-50%, -50%) rotate(90deg);
}

.radar-axis-x {
  transform: translate(-50%, -50%);
}

.radar-node {
  width: 14px;
  height: 14px;
  border: 2px solid #fffefc;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 22px rgba(204, 90, 113, 0.62);
  animation: radarPulse 3.2s ease-in-out infinite;
}

.radar-node-a {
  left: 55%;
  top: 38%;
}

.radar-node-b {
  left: 78%;
  top: 31%;
  background: var(--volt);
  animation-delay: -0.7s;
}

.radar-node-c {
  left: 84%;
  top: 66%;
  background: var(--copper);
  animation-delay: -1.4s;
}

.radar-node-d {
  left: 62%;
  top: 72%;
  background: var(--violet);
  animation-delay: -2.1s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 1rem 6.2rem;
}

.hero-copy {
  max-width: 760px;
}

.hero-section h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  color: var(--midnight);
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.9;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 1.45rem;
  color: #5f5364;
  font-size: 1.14rem;
  line-height: 1.7;
}

.section-band {
  padding: 1rem 0 0;
}

.metric-row {
  margin-top: -3.1rem;
  position: relative;
  z-index: 4;
}

.metric,
.feature-card,
.report-summary-panel,
.versions-panel,
.post-card,
.admin-panel,
.note-card,
.checkout-panel,
.admin-login {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric {
  position: relative;
  min-height: 122px;
  padding: 1.15rem;
  overflow: hidden;
}

.metric::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rose), var(--copper), var(--volt));
}

.metric span,
.admin-metric span {
  display: block;
  color: var(--midnight);
  font-size: 2rem;
  line-height: 1;
  font-weight: 650;
}

.metric p,
.admin-metric p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-weight: 550;
}

.content-section {
  padding: 4.6rem 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.6rem;
}

.section-heading span,
.admin-head span,
.panel-kicker {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Product overlines are intentionally hidden throughout the application. */
.eyebrow,
.ai-filter-panel .panel-kicker {
  display: none !important;
}

.section-heading h2,
.admin-head h1 {
  margin: 0.25rem 0 0;
  color: var(--midnight);
  font-size: 2.25rem;
}

.section-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.report-intro {
  white-space: pre-line;
}

.report-lead {
  max-width: 940px;
}

.report-information {
  width: min(100%, 1080px);
  margin: 2.75rem auto 0;
  padding: 0 0.75rem;
}

.report-method-grid {
  margin-top: 1.45rem;
}

.report-method-panel {
  position: relative;
  padding: 1.35rem 1.4rem 1.45rem;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.82);
}

.report-method-grid .col-md-6:nth-child(2) .report-method-panel {
  background: rgba(245, 215, 227, 0.28);
}

.report-method-index {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--rose);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.report-method-panel h3 {
  margin: 0 0 0.55rem;
  color: var(--midnight);
  font-size: 1.3rem;
}

.report-method-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.report-audience-note {
  max-width: 920px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card {
  position: relative;
  min-height: 100%;
  padding: 1.65rem;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sharp), var(--shadow);
}

.feature-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(52, 52, 74, 0.1);
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 650;
}

.feature-card h3 {
  margin: 0.85rem 0 0.6rem;
  color: var(--midnight);
  font-size: 1.48rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.68;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 52, 74, 0.22);
  border-radius: 8px;
  color: var(--midnight);
  font-size: 1.08rem;
}

.report-accent {
  background:
    linear-gradient(135deg, rgba(245, 215, 227, 0.58), transparent 46%),
    var(--surface);
}

.ai-accent {
  background:
    linear-gradient(135deg, rgba(240, 247, 87, 0.22), transparent 46%),
    var(--surface);
}

.report-accent .feature-icon {
  background: var(--blush);
}

.ai-accent .feature-icon {
  background: var(--volt);
}

.mini-list,
.ranking-strip {
  display: grid;
  gap: 0.62rem;
  margin: 1.2rem 0;
}

.mini-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid var(--line);
}

.mini-list strong {
  color: var(--midnight);
  font-weight: 650;
}

.mini-list span {
  color: var(--plum);
  font-weight: 650;
}

.ranking-strip a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.68rem 0.76rem;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--midnight);
  font-weight: 650;
}

.ranking-strip a:hover {
  border-color: var(--midnight);
}

.ranking-strip span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--midnight);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.82rem;
}

.home-products {
  position: relative;
  overflow: hidden;
  padding: 5.4rem 0 5.8rem;
  background:
    linear-gradient(90deg, rgba(52, 52, 74, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(52, 52, 74, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 8% 18%, rgba(240, 247, 87, 0.24), transparent 18%),
    radial-gradient(circle at 92% 28%, rgba(204, 90, 113, 0.18), transparent 22%),
    #fffaf6;
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

.home-products::before {
  content: "";
  position: absolute;
  inset: 2rem -8vw auto auto;
  width: 42vw;
  height: 13rem;
  border: 1px solid rgba(52, 52, 74, 0.12);
  background: rgba(255, 254, 252, 0.35);
  clip-path: polygon(8% 0, 100% 0, 88% 100%, 0 100%);
  transform: rotate(-3deg);
}

.home-products-head {
  position: relative;
  z-index: 1;
  margin-bottom: 1.7rem;
}

.home-products-head .section-heading {
  margin-bottom: 0;
}

.home-product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  perspective: 1400px;
}

.home-product-card {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
  gap: 1.1rem;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(52, 52, 74, 0.2);
  border-radius: 8px;
  color: var(--midnight);
  box-shadow: var(--shadow), 12px 14px 0 rgba(52, 52, 74, 0.08);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  isolation: isolate;
}

.home-product-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: 46%;
  height: 42%;
  border: 1px solid rgba(52, 52, 74, 0.13);
  background: rgba(255, 254, 252, 0.16);
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  transform: translateZ(4px);
  pointer-events: none;
  z-index: -1;
}

.home-product-card:hover {
  border-color: rgba(52, 52, 74, 0.42);
  color: var(--midnight);
  box-shadow: var(--shadow), 18px 20px 0 rgba(52, 52, 74, 0.14);
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

.home-product-card:hover .product-open i {
  transform: translateX(4px);
}

.report-product {
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 247, 87, 0.5), transparent 20%),
    linear-gradient(145deg, rgba(245, 215, 227, 0.94), rgba(255, 254, 252, 0.92) 52%, rgba(200, 155, 123, 0.28));
}

.ai-product {
  background:
    radial-gradient(circle at 14% 10%, rgba(240, 247, 87, 0.32), transparent 22%),
    linear-gradient(145deg, rgba(255, 254, 252, 0.94), rgba(244, 165, 174, 0.36) 58%, rgba(128, 71, 94, 0.2));
}

.optimization-product {
  background:
    radial-gradient(circle at 72% 15%, rgba(240, 247, 87, 0.34), transparent 22%),
    linear-gradient(145deg, rgba(255, 254, 252, 0.94), rgba(170, 125, 206, 0.22) 58%, rgba(59, 66, 159, 0.16));
}

.analyzer-product {
  background:
    radial-gradient(circle at 12% 16%, rgba(240, 247, 87, 0.38), transparent 22%),
    linear-gradient(145deg, rgba(255, 254, 252, 0.96), rgba(200, 155, 123, 0.26) 52%, rgba(204, 90, 113, 0.18));
}

.product-glow {
  position: absolute;
  inset: -35% -25% auto auto;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 247, 87, 0.55), transparent 66%);
  transform: translateZ(1px);
  pointer-events: none;
}

.product-copy {
  position: relative;
  z-index: 2;
  transform: translateZ(36px);
}

.product-number {
  position: absolute;
  right: 0;
  top: -0.5rem;
  color: rgba(52, 52, 74, 0.11);
  font-size: clamp(4.2rem, 9vw, 7rem);
  font-weight: 650;
  line-height: 0.8;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-kicker i {
  color: var(--rose);
}

.home-product-card h3 {
  max-width: 580px;
  margin: 0 0 0.85rem;
  color: var(--midnight);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.home-product-card p {
  max-width: 590px;
  margin: 0;
  color: #625769;
  font-size: 1.02rem;
  line-height: 1.68;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.product-metrics span {
  min-height: 82px;
  display: grid;
  align-content: center;
  padding: 0.85rem;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.58);
}

.product-metrics strong {
  color: var(--midnight);
  font-size: 1.42rem;
  font-weight: 650;
  line-height: 1;
}

.product-metrics small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  padding: 0.46rem 0.62rem;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 252, 0.48);
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 650;
}

.product-visual {
  position: relative;
  z-index: 2;
  min-height: 236px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 52, 74, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(rgba(52, 52, 74, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 52, 74, 0.045) 1px, transparent 1px),
    rgba(255, 254, 252, 0.36);
  background-size: 28px 28px;
  transform: translateZ(26px);
  transform-style: preserve-3d;
}

.report-stack {
  position: relative;
  width: min(330px, 80%);
  height: 205px;
  transform: rotateX(56deg) rotateZ(-16deg);
  transform-style: preserve-3d;
}

.report-sheet {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(52, 52, 74, 0.24);
  border-radius: 8px;
  background: #fffefc;
  box-shadow: 14px 18px 0 rgba(52, 52, 74, 0.12);
}

.report-sheet-back {
  transform: translate3d(24px, 20px, -32px);
  background: rgba(128, 71, 94, 0.28);
}

.report-sheet-mid {
  transform: translate3d(12px, 10px, -16px);
  background: rgba(200, 155, 123, 0.42);
}

.report-sheet-front {
  padding: 1rem;
  transform: translateZ(18px);
  transition: transform 220ms ease;
}

.home-product-card:hover .report-sheet-front {
  transform: translate3d(10px, -12px, 58px);
}

.report-sheet-title {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.report-bar {
  display: block;
  height: 13px;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: var(--rose);
}

.report-bar-a {
  width: 76%;
}

.report-bar-b {
  width: 58%;
  background: var(--copper);
}

.report-bar-c {
  width: 86%;
  background: var(--volt);
}

.report-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.report-mini-grid i {
  height: 34px;
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-radius: 7px;
  background: rgba(245, 215, 227, 0.72);
}

.signal-route {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.44rem 0.58rem;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-radius: 999px;
  background: rgba(255, 254, 252, 0.72);
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-visual {
  grid-template-columns: minmax(130px, 0.85fr) minmax(180px, 1fr);
  gap: 0.9rem;
  padding: 1rem;
}

.ai-orbit-field {
  position: relative;
  width: min(210px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: rotateX(58deg) rotateZ(28deg);
  transform-style: preserve-3d;
}

.ai-orbit-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(52, 52, 74, 0.28);
  border-radius: 50%;
}

.ai-orbit-two {
  inset: 28%;
  border-color: rgba(204, 90, 113, 0.52);
  transform: translateZ(26px);
}

.ai-core {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 52, 74, 0.24);
  border-radius: 50%;
  background: var(--volt);
  color: var(--midnight);
  font-size: 1.35rem;
  transform: translateZ(54px);
  box-shadow: 10px 12px 0 rgba(52, 52, 74, 0.12);
}

.ai-rank-stack {
  display: grid;
  gap: 0.6rem;
  width: 100%;
  transform: translateZ(42px);
}

.ai-rank-pill {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-left: 7px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.72);
  color: var(--midnight);
  font-size: 0.9rem;
  font-weight: 650;
  box-shadow: 6px 7px 0 rgba(52, 52, 74, 0.08);
  transition: transform 220ms ease;
}

.ai-rank-pill b {
  color: var(--rose);
  font-weight: 700;
}

.home-product-card:hover .ai-rank-pill:nth-child(1) {
  transform: translate3d(8px, -7px, 38px);
}

.home-product-card:hover .ai-rank-pill:nth-child(2) {
  transform: translate3d(2px, -3px, 24px);
}

.home-product-card:hover .ai-core {
  box-shadow: 13px 15px 0 rgba(52, 52, 74, 0.16);
}

.optimization-visual,
.analyzer-visual {
  overflow: hidden;
}

.domain-card,
.url-input {
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  padding: 0.72rem 0.88rem;
  border: 1px solid rgba(52, 52, 74, 0.2);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.82);
  color: var(--midnight);
  font-weight: 700;
  box-shadow: 8px 9px 0 rgba(52, 52, 74, 0.09);
}

.score-orb {
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 52, 74, 0.2);
  border-radius: 50%;
  background: var(--volt);
  color: var(--midnight);
  font-size: 2.1rem;
  font-weight: 650;
  transform: translateZ(42px);
  box-shadow: 14px 16px 0 rgba(52, 52, 74, 0.12);
}

.check-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 252, 0.75);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.check-chip-a {
  right: 1.1rem;
  top: 1.4rem;
}

.check-chip-b {
  left: 1.5rem;
  bottom: 1.3rem;
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(240, 247, 87, 0.46), transparent);
  animation: scanLine 3.5s linear infinite;
}

.analysis-gauge {
  position: relative;
  width: 160px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-radius: 50%;
  background: conic-gradient(var(--rose) 0 72%, rgba(255, 254, 252, 0.62) 72% 100%);
  color: var(--midnight);
  font-size: 2rem;
  font-weight: 700;
  transform: translateZ(34px);
}

.analysis-gauge::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #fffefc;
}

.analysis-gauge b {
  position: relative;
  z-index: 1;
}

.product-open {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.68rem 1rem;
  border: 1px solid var(--midnight);
  border-radius: 6px;
  background: var(--midnight);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateZ(38px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

@keyframes scanLine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.product-open i {
  transition: transform 180ms ease;
}

.home-product-card:hover .product-open {
  border-color: var(--rose);
  background: var(--rose);
  color: #ffffff;
}

.home-product-card:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

.page-head,
.ai-profile-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2.35rem 0 2.7rem;
  border-bottom: 1px solid rgba(52, 52, 74, 0.14);
  background:
    radial-gradient(circle at 77% 17%, rgba(240, 247, 87, 0.62) 0 5px, transparent 6px),
    radial-gradient(circle at 77% 17%, transparent 0 92px, rgba(52, 52, 74, 0.1) 93px 94px, transparent 95px 145px, rgba(52, 52, 74, 0.07) 146px 147px, transparent 148px),
    linear-gradient(118deg, #fffaf4 0 58%, color-mix(in srgb, var(--accent) 27%, #f5d7e3) 58% 82%, #f0f757 82% 100%);
}

.ai-profile-hero::after {
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(52, 52, 74, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(52, 52, 74, 0.025), 0 0 0 124px rgba(52, 52, 74, 0.018);
  content: "";
}

.ai-profile-back {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--plum);
  font-size: 0.84rem;
  font-weight: 650;
}

.ai-profile-back:hover {
  color: var(--rose);
}

.ai-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.55fr);
  gap: 2.2rem;
  align-items: center;
}

.ai-profile-main {
  display: flex;
  min-width: 0;
  gap: 1.45rem;
  align-items: center;
}

.ai-profile-logo {
  position: relative;
  width: 116px;
  height: 116px;
  display: grid;
  flex: 0 0 116px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-radius: 8px;
  color: var(--midnight);
  background:
    radial-gradient(circle at 76% 23%, var(--volt) 0 5px, transparent 6px),
    color-mix(in srgb, var(--accent) 18%, white);
  box-shadow: 10px 10px 0 color-mix(in srgb, var(--accent) 36%, transparent);
}

.ai-profile-logo::before {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, var(--midnight));
  border-radius: 50%;
  content: "";
}

.ai-profile-logo.has-brand-logo {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 7px 7px 0 color-mix(in srgb, var(--accent) 30%, transparent);
}

.ai-profile-logo.has-brand-logo::before,
.ai-profile-logo.has-brand-logo span {
  display: none;
}

.ai-profile-logo span {
  position: relative;
  z-index: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.ai-profile-logo img {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.ai-profile-logo > i {
  position: relative;
  z-index: 2;
  color: var(--midnight);
  font-size: 3.4rem;
}

.ai-profile-rank {
  margin-bottom: 0.35rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-profile-copy h1 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.ai-profile-copy p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.ai-profile-scores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 8px;
  background: rgba(52, 52, 74, 0.94);
  box-shadow: 10px 10px 0 color-mix(in srgb, var(--accent) 44%, transparent);
}

.ai-profile-scores div {
  min-width: 0;
  padding: 1.15rem 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.ai-profile-scores div:first-child {
  border-left: 0;
}

.ai-profile-scores strong,
.ai-profile-scores span {
  display: block;
}

.ai-profile-scores strong {
  color: var(--volt);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
}

.ai-profile-scores span {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.3;
  text-transform: uppercase;
}

.ai-profile-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(52, 52, 74, 0.13);
}

.ai-profile-facts,
.ai-profile-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ai-profile-facts span {
  display: inline-flex;
  gap: 0.38rem;
  align-items: center;
  color: var(--midnight);
  font-size: 0.82rem;
  font-weight: 600;
}

.ai-profile-facts span + span::before {
  margin-right: 0.15rem;
  color: var(--rose);
  content: "/";
}

.ai-profile-official {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.45rem;
  align-items: center;
  padding: 0.68rem 0.85rem;
  border: 1px solid var(--midnight);
  border-radius: 7px;
  color: var(--midnight);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
}

.ai-profile-official:hover {
  color: var(--midnight);
  background: var(--volt);
}

.ai-profile-capabilities {
  margin-top: 0.9rem;
}

.ai-profile-capabilities span {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(52, 52, 74, 0.11);
  border-radius: 999px;
  color: var(--midnight);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 650;
}

.ai-profile-reviews {
  padding: 2.75rem 0 3.2rem;
  background:
    linear-gradient(rgba(52, 52, 74, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 52, 74, 0.028) 1px, transparent 1px),
    #fffefc;
  background-size: 34px 34px;
}

.ai-profile-section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.15rem;
}

.ai-profile-section-head h2 {
  margin: 0;
  color: var(--midnight);
  font-size: 1.75rem;
  letter-spacing: -0.035em;
}

.ai-profile-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.ai-reviews-empty {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(52, 52, 74, 0.2);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
}

.ai-reviews-empty i {
  color: var(--rose);
  font-size: 1.05rem;
}

.ai-reviews-empty p {
  margin: 0;
}

.ai-profile-posts {
  border-top: 1px solid var(--line);
}

.ai-profile-seo-copy {
  padding: 2.6rem 0 3rem;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-tint) 72%, white);
}

.ai-profile-seo-inner {
  max-width: 920px;
}

.ai-profile-seo-inner h2 {
  margin: 0 0 0.8rem;
  color: var(--midnight);
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.ai-profile-seo-text {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
  white-space: pre-line;
}

.ai-profile-seo-inner > a {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 700;
}

.ai-profile-seo-inner > a:hover {
  color: var(--rose);
}

.model-head {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 3.7rem;
  background:
    linear-gradient(135deg, rgba(52, 52, 74, 0.98), rgba(128, 71, 94, 0.92)),
    var(--midnight);
  color: #fffefc;
}

.page-head::after,
.model-head::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -3rem;
  width: 42vw;
  max-width: 640px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(240, 247, 87, 0.16);
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
}

.compact-head {
  padding-bottom: 4.2rem;
}

.page-head h1,
.model-head h1 {
  position: relative;
  z-index: 1;
  max-width: 930px;
  margin-bottom: 0.85rem;
  font-size: clamp(2.25rem, 5vw, 3.35rem);
}

.page-head p,
.model-head p {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 0;
  color: rgba(255, 254, 252, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}

.report-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.55rem;
}

.report-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.report-points i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-radius: 8px;
  background: var(--volt);
  color: var(--midnight);
}

.report-points h3 {
  margin: 0 0 0.25rem;
  color: var(--midnight);
  font-size: 1.05rem;
}

.report-points p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.report-summary-panel,
.versions-panel,
.current-report-panel {
  padding: 1.42rem;
}

.current-report-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  margin: 2rem 0;
  border-color: rgba(52, 52, 74, 0.22);
  background:
    linear-gradient(135deg, rgba(240, 247, 87, 0.5), rgba(245, 215, 227, 0.72) 54%, rgba(255, 254, 252, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-sharp), var(--shadow);
}

.current-report-panel h2 {
  margin: 0.85rem 0 0.45rem;
  color: var(--midnight);
  font-size: clamp(2rem, 5vw, 3.15rem);
}

.current-report-panel p {
  max-width: 760px;
  margin: 0;
  color: #5f5364;
  font-size: 1.05rem;
  line-height: 1.68;
}

.current-report-action {
  min-width: 210px;
  display: grid;
  gap: 0.8rem;
  justify-items: stretch;
}

.current-report-action strong {
  display: block;
  color: var(--midnight);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 650;
  text-align: right;
}

.report-summary-panel {
  background:
    linear-gradient(145deg, rgba(240, 247, 87, 0.24), transparent 52%),
    var(--surface);
}

.report-summary-panel h2 {
  margin: 1rem 0 0.45rem;
  color: var(--midnight);
  font-size: 2.2rem;
}

.report-summary-panel p {
  color: var(--muted);
}

.versions-panel {
  margin-top: 2.35rem;
}

.archive-panel {
  background: rgba(255, 254, 252, 0.72);
  box-shadow: none;
}

.versions-panel h2 {
  margin: 0.2rem 0 0;
  color: var(--midnight);
  font-size: 1.48rem;
}

.version-list {
  display: grid;
  gap: 0.58rem;
}

.version-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.82rem 0;
  border-top: 1px solid var(--line);
}

.version-row time {
  display: block;
  color: var(--midnight);
  font-weight: 650;
}

.version-row span {
  color: var(--muted);
  font-size: 0.93rem;
}

.version-row strong,
.price {
  color: var(--rose);
  font-size: 1.18rem;
  font-weight: 650;
}

.status-pill {
  display: inline-flex;
  padding: 0.3rem 0.62rem;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-radius: 999px;
  background: var(--volt);
  color: var(--midnight);
  font-size: 0.76rem;
  font-weight: 700;
}

.ready-pill {
  background: var(--blush);
  color: var(--plum);
}

.check-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.check-list.compact {
  margin-bottom: 0;
}

.check-list i {
  color: var(--rose);
}

.narrow-container {
  max-width: 720px;
}

.checkout-panel {
  padding: 1.6rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-total span {
  color: var(--muted);
  font-weight: 550;
}

.checkout-total strong {
  color: var(--rose);
  font-size: 1.8rem;
  font-weight: 650;
}

.promo-toggle {
  display: inline-flex;
  margin-top: 0.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-toggle:hover,
.promo-toggle:focus-visible {
  color: var(--rose);
}

.promo-code-panel {
  margin-top: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(128, 71, 94, 0.2);
  border-radius: 7px;
  background: rgba(245, 215, 227, 0.22);
}

.payment-success-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-color: rgba(128, 71, 94, 0.24);
  background:
    linear-gradient(135deg, rgba(240, 247, 87, 0.24), rgba(255, 255, 255, 0.96) 58%),
    var(--surface);
}

.payment-success-panel h2 {
  margin-bottom: 0.55rem;
}

.payment-success-panel p {
  max-width: 570px;
  color: var(--muted);
}

.payment-success-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--volt);
  color: var(--midnight);
  box-shadow: 0 0 0 7px rgba(240, 247, 87, 0.17);
}

.payment-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.checkout-account-note,
.account-notice,
.account-panel,
.analyzer-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.checkout-account-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(240, 247, 87, 0.15);
}

.checkout-account-note strong {
  color: var(--midnight);
}

.checkout-account-note span {
  color: var(--muted);
  line-height: 1.55;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 650;
}

.account-notice {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(240, 247, 87, 0.18);
  color: var(--midnight);
}

.account-notice i,
.account-success i {
  color: var(--rose);
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.account-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  color: var(--midnight);
  font-weight: 650;
}

.account-tabs a:hover {
  color: var(--midnight);
  background: rgba(240, 247, 87, 0.55);
}

.account-section {
  margin-bottom: 1.25rem;
  scroll-margin-top: 1rem;
}

.account-report-store {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.report-account-row {
  flex-wrap: wrap;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 1.1rem;
  align-items: start;
}

.account-panel {
  padding: 1.15rem;
}

.account-panel h2 {
  margin: 0.25rem 0 0.75rem;
  color: var(--midnight);
  font-size: 1.35rem;
}

.account-list,
.site-list,
.check-list {
  display: grid;
  gap: 0.65rem;
}

.account-list-row,
.site-row,
.check-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.72);
}

.site-row {
  color: var(--midnight);
  transition: transform 180ms ease, border-color 180ms ease;
}

.site-row:hover {
  border-color: rgba(204, 90, 113, 0.38);
  color: var(--midnight);
  transform: translateY(-2px);
}

.account-list-row strong,
.site-row strong,
.check-row strong {
  display: block;
  color: var(--midnight);
}

.account-list-row span,
.site-row span,
.check-row span,
.account-list-row time {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-score {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.site-score strong,
.score-panel h2 {
  color: var(--rose);
  font-size: 2rem;
  line-height: 1;
}

.score-panel h2 {
  font-size: 4rem;
}

.verification-code {
  padding: 1rem;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 8px;
  background: var(--midnight);
  color: var(--volt);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.account-success {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  color: var(--midnight);
  font-weight: 650;
}

.analyzer-result {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(240, 247, 87, 0.22), rgba(245, 215, 227, 0.42)),
    var(--surface);
}

.analyzer-result span {
  color: var(--muted);
  font-weight: 650;
}

.analyzer-result strong {
  color: var(--rose);
  font-size: 4rem;
  line-height: 1;
}

.analyzer-result p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.mail-toggles {
  display: flex;
  gap: 0.8rem;
  min-height: 38px;
  align-items: center;
}

.setup-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface-tint);
}

.setup-list span {
  color: var(--midnight);
  font-weight: 650;
}

.ai-list {
  display: grid;
  gap: 1rem;
}

.ai-systems-head {
  position: relative;
  overflow: hidden;
  padding: 2.8rem 0;
  background:
    radial-gradient(circle at 88% 22%, rgba(240, 247, 87, 0.46), transparent 22%),
    radial-gradient(circle at 72% 108%, rgba(204, 90, 113, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 254, 252, 0.96), rgba(245, 215, 227, 0.58));
}

.ai-systems-head::after {
  position: absolute;
  right: -90px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(52, 52, 74, 0.12);
  border-radius: 50%;
  clip-path: none;
  box-shadow:
    0 0 0 54px rgba(52, 52, 74, 0.035),
    0 0 0 108px rgba(52, 52, 74, 0.025);
  max-width: none;
  background: transparent;
  content: "";
  pointer-events: none;
}

.ai-systems-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.ai-systems-intro h1 {
  max-width: 720px;
  margin-bottom: 0.65rem;
  color: var(--midnight);
  font-size: clamp(2.2rem, 4vw, 3.05rem);
  line-height: 1.02;
}

.ai-systems-intro > div:first-child > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.ai-systems-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(105px, 1fr));
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 254, 252, 0.72);
  backdrop-filter: blur(12px);
}

.ai-systems-stats div {
  padding: 1rem;
  border-left: 1px solid rgba(52, 52, 74, 0.12);
}

.ai-systems-stats div:first-child {
  border-left: 0;
}

.ai-systems-stats strong,
.ai-systems-stats span {
  display: block;
}

.ai-systems-stats strong {
  color: var(--midnight);
  font-size: 1.6rem;
  line-height: 1;
}

.ai-systems-stats span {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.3;
  text-transform: uppercase;
}

.ai-systems-section {
  padding-top: 2.5rem;
}

.ai-systems-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.1rem;
}

.ai-systems-toolbar h2 {
  margin: 0.2rem 0 0;
  color: var(--midnight);
  font-size: 1.55rem;
}

.ai-systems-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.ai-systems-toolbar p i {
  margin-right: 0.3rem;
  color: var(--plum);
}

.ai-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.ai-system-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 9%, transparent), transparent 115px),
    var(--surface);
  box-shadow: 0 10px 28px rgba(52, 52, 74, 0.08);
  scroll-margin-top: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ai-system-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  content: "";
}

.ai-system-card:hover {
  border-color: rgba(52, 52, 74, 0.26);
  box-shadow: 0 16px 34px rgba(52, 52, 74, 0.12);
  transform: translateY(-2px);
}

.ai-system-card-head,
.ai-system-actions,
.member-rating-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ai-system-card-head {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.ai-model-identity {
  display: flex;
  min-width: 0;
  gap: 0.7rem;
  align-items: center;
}

.ai-model-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--midnight));
  border-radius: 8px;
  color: var(--midnight);
  background:
    radial-gradient(circle at 75% 25%, var(--volt) 0 2px, transparent 3px),
    color-mix(in srgb, var(--accent) 20%, white);
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--accent) 22%, transparent);
}

.ai-model-mark::before {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--accent) 52%, transparent);
  border-radius: 50%;
  content: "";
}

.ai-model-mark span {
  position: relative;
  z-index: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ai-model-company {
  display: block;
  max-width: 200px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ai-system-card h2 {
  margin: 0.12rem 0 0;
  color: var(--midnight);
  font-size: 1.12rem;
  line-height: 1.2;
}

.ai-system-card h2 a:hover {
  color: var(--rose);
}

.ai-system-card .rank-badge {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  padding: 0.28rem 0.46rem;
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-radius: 6px;
  color: var(--midnight);
  background: rgba(255, 254, 252, 0.76);
  font-size: 0.7rem;
}

.ai-system-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.ai-system-rating {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.68rem 0.75rem;
  border: 1px solid rgba(52, 52, 74, 0.1);
  border-radius: 7px;
  background: rgba(255, 249, 245, 0.72);
}

.ai-system-score {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  padding-right: 0.7rem;
  border-right: 1px solid var(--line);
}

.ai-system-score strong {
  color: var(--midnight);
  font-size: 1.55rem;
  line-height: 1;
}

.ai-system-score span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.star-meter {
  position: relative;
  display: inline-block;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.1rem;
}

.star-meter-base {
  color: rgba(52, 52, 74, 0.16);
}

.star-meter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating-width);
  overflow: hidden;
  color: #d98b22;
  white-space: nowrap;
}

.ai-rating-count {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 650;
}

.ai-system-description {
  display: -webkit-box;
  min-height: 4.55em;
  overflow: hidden;
  font-size: 0.83rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ai-system-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: center;
}

.ai-system-category {
  min-width: 0;
  overflow: hidden;
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-system-category i {
  margin-right: 0.24rem;
}

.ai-system-capabilities {
  display: flex;
  flex: 0 0 auto;
  gap: 0.22rem;
}

.ai-system-capabilities span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 52, 74, 0.12);
  border-radius: 5px;
  color: var(--midnight);
  background: rgba(255, 254, 252, 0.72);
  font-size: 0.65rem;
}

.ai-system-actions {
  min-height: 26px;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.ai-system-link,
.ai-system-official {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.73rem;
  font-weight: 700;
}

.ai-system-link {
  color: var(--plum);
}

.ai-system-official {
  margin-left: auto;
  color: var(--muted);
}

.member-rating-form {
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 7px;
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}

.star-rating-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating-fieldset legend {
  margin: 0 0 0.2rem;
  color: var(--midnight);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.star-rating-control {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.16rem;
}

.star-rating-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.star-rating-control label {
  padding: 0;
  color: rgba(52, 52, 74, 0.18);
  cursor: pointer;
  font-size: 1.08rem;
  line-height: 1;
  transition: color 120ms ease, transform 120ms ease;
}

.star-rating-control label:hover,
.star-rating-control label:hover ~ label,
.star-rating-control input:checked ~ label {
  color: #d98b22;
}

.star-rating-control label:hover {
  transform: translateY(-1px) scale(1.08);
}

.star-rating-control input:focus-visible + label {
  border-radius: 3px;
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.star-rating-status {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
}

.member-rating-submit {
  flex: 0 0 auto;
}

.member-rating-signin {
  display: inline-flex;
  justify-content: center;
  gap: 0.45rem;
  align-items: center;
  padding: 0.72rem;
  border: 1px dashed rgba(128, 71, 94, 0.28);
  border-radius: 7px;
  color: var(--plum);
  background: rgba(245, 215, 227, 0.2);
  font-size: 0.76rem;
  font-weight: 700;
}

.member-rating-signin:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.member-rating-saved {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.72rem;
  border: 1px solid rgba(74, 143, 116, 0.2);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(74, 143, 116, 0.06);
  font-size: 0.72rem;
  font-weight: 650;
}

.saved-rating-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: rgba(52, 52, 74, 0.14);
  font-size: 0.68rem;
}

.saved-rating-stars .is-filled {
  color: #d98b22;
}

.member-rating-saved > i {
  margin-left: auto;
  color: #4a8f74;
}

.review-panel .star-rating-fieldset {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.review-panel .star-rating-fieldset legend {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.review-panel .star-rating-control {
  gap: 0.3rem;
}

.review-panel .star-rating-control label {
  font-size: 1.65rem;
}

.review-panel .star-rating-status {
  margin-top: 0.45rem;
  font-size: 0.78rem;
}

.ai-filter-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 247, 87, 0.24), transparent 18%),
    var(--surface);
  box-shadow: var(--shadow);
}

.ai-filter-panel h2 {
  margin: 0.25rem 0 0;
  color: var(--midnight);
  font-size: 1.15rem;
}

.ai-filter-options,
.ai-admin-capabilities,
.ai-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ai-filter-option,
.ai-admin-capabilities .form-check {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(52, 52, 74, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 252, 0.78);
  color: var(--midnight);
  font-weight: 650;
}

.ai-filter-option input,
.ai-admin-capabilities input {
  margin: 0;
}

.ai-filter-option span,
.ai-admin-capabilities span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.ai-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-left: 7px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.92);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ai-row:hover {
  transform: translateY(-2px);
  color: var(--midnight);
  border-color: rgba(52, 52, 74, 0.28);
  box-shadow: var(--shadow-sharp), var(--shadow);
}

.rank-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--midnight);
  border-radius: 8px;
  color: var(--volt);
  font-size: 1.18rem;
  font-weight: 650;
}

.ai-row h2 {
  margin: 0 0 0.35rem;
  color: var(--midnight);
  font-size: 1.36rem;
}

.ai-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.score-box {
  min-width: 86px;
  height: 66px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
}

.score-box span {
  color: var(--plum);
  font-size: 1.34rem;
  line-height: 1;
  font-weight: 650;
}

.score-box small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.ai-tags,
.model-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.ai-capabilities {
  margin-top: 0.75rem;
}

.ai-capabilities span {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(52, 52, 74, 0.1);
  border-radius: 999px;
  background: rgba(240, 247, 87, 0.22);
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 700;
}

.ai-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.ai-row .member-rating-form,
.ai-row .member-rating-saved,
.ai-row .member-rating-signin {
  margin-top: 0.75rem;
}

.detail-capabilities {
  margin-top: 0.9rem;
}

.ai-tags span,
.model-facts span,
.model-facts a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.44rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--midnight);
  background: rgba(255, 254, 252, 0.84);
  font-size: 0.86rem;
  font-weight: 600;
}

.model-facts a {
  color: var(--rose);
}

.model-facts a:hover {
  color: var(--midnight);
  background: var(--volt);
}

.model-head {
  background:
    linear-gradient(125deg, rgba(52, 52, 74, 0.97), rgba(128, 71, 94, 0.9)),
    linear-gradient(120deg, var(--accent), transparent);
}

.ai-review-section {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 247, 87, 0.18), transparent 20%),
    rgba(255, 254, 252, 0.82);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.review-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  color: var(--rose);
  font-weight: 700;
}

.review-stars span {
  margin-left: 0.35rem;
  color: var(--midnight);
}

.review-stars.compact {
  white-space: nowrap;
}

.review-card p {
  margin: 0.75rem 0;
  color: var(--midnight);
  line-height: 1.62;
}

.review-card time {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 550;
}

.back-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  color: rgba(255, 254, 252, 0.76);
  font-weight: 600;
}

.back-link:hover {
  color: var(--volt);
}

.rank-line {
  color: var(--volt);
  font-weight: 700;
  text-transform: uppercase;
}

.model-facts {
  position: relative;
  z-index: 1;
}

.post-stack,
.note-stack {
  display: grid;
  gap: 1.2rem;
}

.post-card {
  padding: 1.35rem;
}

.post-card-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: start;
}

.post-card-main {
  min-width: 0;
}

.post-date {
  color: var(--rose);
  font-size: 0.83rem;
  font-weight: 700;
}

.post-card h2 {
  margin: 0.3rem 0 0.5rem;
  color: var(--midnight);
  font-size: 1.52rem;
}

.post-title-link:hover {
  color: var(--rose);
}

.post-excerpt {
  color: var(--muted);
  font-weight: 450;
}

.post-open-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 700;
}

.post-open-link:hover {
  color: var(--rose);
}

.post-content {
  line-height: 1.75;
}

.post-content h3 {
  margin-top: 1.2rem;
  color: var(--midnight);
  font-size: 1.08rem;
}

.post-content blockquote {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--volt);
  background: var(--surface-tint);
  color: var(--ink);
  font-weight: 500;
}

.post-content pre {
  padding: 1rem;
  overflow-x: auto;
  border-radius: 8px;
  background: var(--midnight);
  color: #fffefc;
}

.post-content code,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.media-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.media-thumbs.compact {
  max-width: 226px;
  justify-content: flex-end;
}

.media-thumbs.shot {
  margin-top: 1.2rem;
}

.media-thumb {
  position: relative;
  width: 106px;
  height: 72px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-tint);
  color: var(--midnight);
  cursor: pointer;
}

.media-thumb:hover {
  border-color: var(--midnight);
  box-shadow: 4px 4px 0 rgba(52, 52, 74, 0.12);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-thumb-badge {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 52, 74, 0.18);
  border-radius: 50%;
  background: var(--volt);
  color: var(--midnight);
  font-size: 0.74rem;
}

.media-thumb-audio {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.2rem;
}

.media-thumb-audio i {
  color: var(--rose);
  font-size: 1.25rem;
}

.media-thumb-audio small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(52, 52, 74, 0.78);
  backdrop-filter: blur(10px);
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  padding: 1rem;
  border: 1px solid rgba(255, 254, 252, 0.2);
  border-radius: 8px;
  background: var(--midnight);
  color: #fffefc;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.gallery-close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fffefc;
}

.gallery-frame {
  display: grid;
  min-height: 220px;
  place-items: center;
}

.gallery-frame img,
.gallery-frame video {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 8px;
  background: #18182c;
}

.gallery-audio {
  width: min(560px, 100%);
  display: grid;
  gap: 1rem;
  place-items: center;
  padding: 3rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-audio i {
  color: var(--volt);
  font-size: 2.4rem;
}

.gallery-audio audio {
  width: min(440px, 100%);
}

.gallery-caption {
  min-height: 1.4rem;
  margin-top: 0.75rem;
  color: rgba(255, 254, 252, 0.76);
  font-size: 0.92rem;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.gallery-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fffefc;
}

.post-shot-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 247, 87, 0.24), transparent 24%),
    linear-gradient(135deg, #fff9f5 0%, #f5d7e3 100%);
}

.post-shot-shell {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0;
}

.shot-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 700;
}

.post-shot-card {
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-left: 8px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.94);
  box-shadow: var(--shadow-sharp), var(--shadow);
}

.post-shot-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.post-shot-header h1 {
  margin: 0.75rem 0 0.65rem;
  color: var(--midnight);
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1;
}

.post-shot-header p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.post-shot-content {
  margin-top: 1.2rem;
  font-size: 1.02rem;
}

.post-shot-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.admin-shell {
  min-height: 70vh;
  padding: 3rem 0 4.5rem;
}

.admin-navigation {
  margin-bottom: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-primary-nav,
.admin-secondary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.admin-primary-nav {
  gap: 0.35rem;
  padding: 0.55rem;
  background:
    linear-gradient(90deg, rgba(52, 52, 74, 0.03), transparent 45%),
    var(--surface);
}

.admin-primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.62rem 0.82rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--midnight);
  font-weight: 600;
}

.admin-primary-nav a.active,
.admin-primary-nav a:hover {
  border-color: var(--midnight);
  background: var(--volt);
  color: var(--midnight);
}

.admin-nav-divider {
  width: 1px;
  height: 28px;
  margin: 0 0.25rem;
  background: var(--line);
}

.admin-secondary-nav {
  gap: 0.25rem;
  min-height: 48px;
  padding: 0.45rem 0.65rem;
  border-top: 1px solid var(--line);
  background: rgba(200, 155, 123, 0.1);
}

.admin-secondary-nav a,
.admin-secondary-label {
  padding: 0.43rem 0.66rem;
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.admin-secondary-label {
  color: var(--plum);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-secondary-nav a:hover,
.admin-secondary-nav a.active {
  background: var(--midnight);
  color: #fff;
}

.admin-secondary-nav .admin-sign-out {
  margin-left: auto;
}

.admin-head {
  margin-bottom: 1.4rem;
}

.server-time-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--midnight);
  border-radius: 8px;
  background: var(--midnight);
  color: #fff;
}

.server-time-panel > div > span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--volt);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.server-time-panel strong {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.server-time-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
}

@media (max-width: 680px) {
  .server-time-panel {
    align-items: start;
    flex-direction: column;
  }
}

.analytics-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.analytics-head p {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.period-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.period-tabs a {
  padding: 0.52rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--midnight);
  font-size: 0.86rem;
  font-weight: 650;
}

.period-tabs a.active,
.period-tabs a:hover {
  border-color: var(--midnight);
  background: var(--volt);
  color: var(--midnight);
}

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.analytics-metric {
  min-height: 132px;
  display: grid;
  align-content: start;
}

.analytics-metric p {
  margin-bottom: 0.5rem;
}

.delta {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  background: rgba(52, 52, 74, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.delta-positive {
  background: rgba(240, 247, 87, 0.34);
  color: var(--midnight);
}

.delta-negative {
  background: rgba(204, 90, 113, 0.14);
  color: var(--rose);
}

.analytics-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.analytics-panel-head h2 {
  margin: 0;
}

.analytics-panel-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.analytics-chart-panel {
  min-height: 100%;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.analytics-table-panel {
  min-width: 0;
}

.analytics-table-panel .table {
  margin-bottom: 0;
}

.analytics-label {
  max-width: 360px;
  overflow-wrap: anywhere;
}

.admin-analytics-log {
  min-width: 980px;
}

.analytics-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.analytics-flags span {
  display: inline-flex;
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  background: rgba(245, 215, 227, 0.62);
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-metric,
.admin-panel {
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-panel h2 {
  margin-bottom: 1rem;
  color: var(--midnight);
  font-size: 1.08rem;
}

.admin-create-disclosure-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--midnight);
  font-size: 1.08rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.admin-create-disclosure-summary::-webkit-details-marker {
  display: none;
}

.admin-create-disclosure-summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.admin-create-disclosure-summary span i {
  color: var(--rose);
}

.admin-create-disclosure-icon {
  color: var(--muted);
  font-size: 0.82rem;
  transition: transform 180ms ease;
}

.admin-create-disclosure[open] .admin-create-disclosure-icon {
  transform: rotate(180deg);
}

.admin-create-disclosure-body {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.admin-login {
  padding: 1.6rem;
  text-align: center;
}

.admin-login h1 {
  margin: 0.85rem 0 1.2rem;
  color: var(--midnight);
  font-size: 1.85rem;
}

.admin-login form {
  text-align: left;
}

.stripe-status {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
}

.stripe-status.ready {
  border-color: rgba(240, 247, 87, 0.62);
  background: rgba(240, 247, 87, 0.16);
}

.stripe-status i {
  color: #635bff;
  font-size: 2rem;
}

.stripe-status h2 {
  margin: 0 0 0.25rem;
}

.stripe-status p,
.admin-help {
  margin: 0;
  color: var(--muted);
}

.stripe-webhook-setup {
  padding: 1rem;
  border: 1px solid rgba(99, 91, 255, 0.24);
  border-radius: 8px;
  background: rgba(99, 91, 255, 0.055);
}

.stripe-webhook-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.stripe-webhook-heading h3 {
  margin: 0.15rem 0 0.55rem;
  color: var(--midnight);
  font-size: 1rem;
}

.stripe-endpoint-field .form-control {
  background: var(--surface);
}

.stripe-detail {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.stripe-detail span,
.stripe-setting-help {
  color: var(--muted);
  font-size: 0.78rem;
}

.stripe-setting-help {
  display: block;
  max-width: 30rem;
  margin-top: 0.2rem;
  font-weight: 400;
}

.stripe-config-state {
  color: var(--muted);
  white-space: nowrap;
}

.stripe-config-state.configured {
  color: #24714c;
}

.stripe-config-state.invalid,
.stripe-validation-error {
  color: #a33f52;
}

.stripe-validation-error {
  display: block;
  max-width: 28rem;
  margin-top: 0.25rem;
  font-size: 0.78rem;
}

.stripe-event-list {
  display: grid;
  gap: 0.2rem;
}

.stripe-setup-warning {
  color: #8a5915;
  font-size: 0.86rem;
}

.report-builder {
  display: grid;
  gap: 1.15rem;
}

.builder-section {
  position: relative;
  overflow: hidden;
}

.builder-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rose), var(--volt));
}

.builder-section-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.builder-step,
.ai-rank-chip,
.builder-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.builder-step {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--midnight);
  color: var(--volt);
}

.builder-subpanel {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.78);
}

.builder-subpanel h3 {
  margin: 0 0 0.35rem;
  color: var(--midnight);
  font-size: 1rem;
}

.builder-count {
  align-self: flex-start;
  padding: 0.34rem 0.7rem;
  border: 1px solid rgba(52, 52, 74, 0.14);
  background: rgba(240, 247, 87, 0.28);
  color: var(--midnight);
  font-size: 0.8rem;
}

.report-editor-textarea {
  min-height: 180px;
}

.report-builder-fields {
  min-width: 1180px;
}

.report-field-editor-list,
.generated-field-stack {
  display: grid;
  gap: 1rem;
}

.report-field-editor {
  background:
    linear-gradient(135deg, rgba(245, 215, 227, 0.2), transparent 38%),
    rgba(255, 254, 252, 0.92);
}

.report-field-editor h3 {
  margin-top: 0.22rem;
  font-size: 1.15rem;
}

.report-field-editor-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.report-field-editor-summary::-webkit-details-marker {
  display: none;
}

.report-field-editor-title {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.report-field-editor-title strong {
  color: var(--midnight);
  font-size: 1.15rem;
  font-weight: 650;
}

.report-field-editor-preview {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
}

.report-field-status {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.report-field-status i {
  color: rgba(52, 52, 74, 0.2);
}

.report-field-status.is-complete,
.report-field-status.is-complete i {
  color: #24714c;
}

.report-field-editor-icon {
  margin-left: 0.15rem;
  color: var(--muted);
  font-size: 0.8rem;
  transition: transform 180ms ease;
}

.report-field-editor[open] .report-field-editor-icon {
  transform: rotate(180deg);
}

.report-field-editor-body {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.report-field-description,
.report-field-prompt {
  min-height: 150px;
  resize: vertical;
}

.ai-value-stack {
  display: grid;
  gap: 0.85rem;
}

.ai-value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 215, 227, 0.38), transparent 42%),
    var(--surface);
  overflow: hidden;
}

.ai-value-card header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

.ai-value-card h4 {
  margin: 0.45rem 0 0.18rem;
  color: var(--midnight);
  font-size: 1.12rem;
}

.ai-value-card p {
  margin: 0;
  color: var(--muted);
}

.ai-value-card header strong {
  color: var(--rose);
  font-size: 1.35rem;
  line-height: 1;
}

.ai-rank-chip {
  padding: 0.22rem 0.56rem;
  background: var(--midnight);
  color: var(--volt);
  font-size: 0.76rem;
}

.field-value-list {
  display: grid;
}

.field-value-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(52, 52, 74, 0.08);
}

.field-value-row:first-child {
  border-top: 0;
}

.field-value-row label {
  margin: 0;
}

.field-value-row label span {
  display: block;
  color: var(--midnight);
  font-weight: 650;
}

.field-value-row label small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.5;
}

.field-prompt-note {
  display: block;
  margin-top: 0.45rem;
  color: #796f80;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.generated-report-editor {
  display: grid;
  gap: 1rem;
}

.generated-field-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.generated-field-summary {
  align-items: flex-start;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(245, 215, 227, 0.32), rgba(240, 247, 87, 0.12));
}

.generated-field-summary .report-field-editor-title {
  flex: 1 1 auto;
}

.generated-question-preview {
  display: grid;
  gap: 0.32rem;
  max-width: 820px;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.generated-question-preview span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.generated-question-preview b {
  color: var(--plum);
  font-weight: 700;
}

.generated-question-preview .is-verification b {
  color: #9a6745;
}

.generated-field-disclosure[open] .report-field-editor-icon {
  transform: rotate(180deg);
}

.generated-field-body {
  border-top: 1px solid var(--line);
}

.generated-field-body > header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 215, 227, 0.12);
}

.generated-field-card h3 {
  margin: 0.25rem 0;
  color: var(--midnight);
  font-size: 1.18rem;
}

.generated-field-body header p {
  max-width: 760px;
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.generated-field-body header p:last-child {
  margin-bottom: 0;
}

.report-match-chip {
  flex: 0 0 auto;
  max-width: 360px;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-radius: 6px;
  background: rgba(240, 247, 87, 0.38);
  color: var(--midnight);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.report-match-stack,
.generated-verification-result {
  display: grid;
  gap: 0.65rem;
}

.report-match-stack {
  flex: 0 0 auto;
  max-width: 360px;
}

.report-match-stack .report-match-chip {
  max-width: 100%;
}

.report-match-chip.is-verification {
  background: rgba(200, 155, 123, 0.2);
}

.generated-model-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
  align-items: start;
  padding: 1rem;
}

.generated-model-value {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(52, 52, 74, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(52, 52, 74, 0.06);
}

.generated-model-value .generated-include span,
.generated-model-value .generated-include small {
  display: block;
}

.generated-model-value .generated-include small {
  margin-top: 0.12rem;
  color: var(--muted);
}

.generated-short-value {
  min-height: 38px;
}

.generated-result-label {
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.generated-verification-result {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.generated-response-details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.generated-response-details summary {
  padding: 0.55rem 0.7rem;
  color: var(--plum);
  font-weight: 650;
  cursor: pointer;
}

.generated-response-meta {
  padding: 0 0.7rem 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.generated-response-details pre {
  max-height: 360px;
  margin: 0;
  padding: 0.8rem;
  overflow: auto;
  border-top: 1px solid var(--line);
  background: var(--midnight);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.generated-edit-card textarea {
  min-height: 160px;
}

.generated-include {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.generated-include input {
  margin-top: 0.22rem;
}

.generated-field-row small {
  display: block;
  color: var(--muted);
}

.final-report-launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(240, 247, 87, 0.3), rgba(245, 215, 227, 0.52) 54%, rgba(255, 254, 252, 0.95)),
    var(--surface);
}

.final-report-launch h2 {
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.report-generation-screen {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(240, 247, 87, 0.26), transparent 31%),
    linear-gradient(135deg, rgba(245, 215, 227, 0.4), rgba(255, 254, 252, 0.96));
}

.report-generation-radar {
  position: relative;
  width: min(260px, 65vw);
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid rgba(52, 52, 74, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(rgba(52, 52, 74, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 52, 74, 0.12) 1px, transparent 1px),
    radial-gradient(circle, transparent 29%, rgba(52, 52, 74, 0.16) 30%, transparent 31%, transparent 59%, rgba(52, 52, 74, 0.16) 60%, transparent 61%);
  background-size: 50% 50%, 50% 50%, auto;
}

.report-generation-radar::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(204, 90, 113, 0.08) 76%, rgba(240, 247, 87, 0.72) 100%);
  content: "";
  animation: report-radar-sweep 2.2s linear infinite;
}

.report-generation-radar span {
  position: absolute;
  inset: 50%;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: -55px -36px 0 -2px var(--plum), 62px -54px 0 -2px var(--copper), 70px 55px 0 -2px var(--rose);
}

.report-generation-radar i {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  color: var(--midnight);
  transform: translate(-50%, -50%);
}

.report-generation-copy {
  position: relative;
  z-index: 1;
}

.report-generation-copy h2 {
  margin: 0.3rem 0 0.55rem;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
}

.report-generation-progress {
  height: 12px;
  margin-top: 1.4rem;
  border-radius: 4px;
  background: rgba(52, 52, 74, 0.1);
}

.report-generation-progress .progress-bar {
  background: linear-gradient(90deg, var(--rose), var(--volt));
  transition: width 240ms ease;
}

.report-generation-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  align-items: baseline;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.report-generation-stats strong {
  color: var(--midnight);
  font-size: 1rem;
}

.report-generation-note {
  max-width: 680px;
  margin: 1.3rem 0;
  color: var(--plum);
  font-size: 0.86rem;
}

.report-generation-screen.is-complete .report-generation-radar::before {
  animation: none;
  background: radial-gradient(circle, rgba(240, 247, 87, 0.58), transparent 64%);
}

@keyframes report-radar-sweep {
  to { transform: rotate(360deg); }
}

.final-report-table {
  min-width: 1040px;
}

.final-report-table time {
  color: var(--midnight);
  font-weight: 600;
}

.agent-grid {
  display: grid;
  gap: 1rem;
}

.agent-card {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.agent-card h2 {
  margin: 0 0 0.2rem;
  color: var(--midnight);
  font-size: 1.18rem;
}

.agent-card p {
  margin: 0;
  color: var(--muted);
}

.agent-meta {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.agent-meta div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.8rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}

.agent-meta dt {
  color: var(--muted);
  font-weight: 600;
}

.agent-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.admin-blog-table {
  min-width: 720px;
}

.admin-blog-table th:nth-child(3),
.admin-blog-table th:nth-child(4),
.admin-blog-table td:nth-child(3),
.admin-blog-table td:nth-child(4) {
  text-align: center;
}

.blog-automation-settings {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 215, 227, 0.24);
}

.blog-automation-settings .form-switch {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0;
  color: var(--midnight);
  font-weight: 650;
}

.blog-automation-settings .form-switch .form-check-input {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 1.3rem;
  margin: 0;
}

.automation-run-state {
  display: grid;
  gap: 0.22rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.automation-run-state span,
.automation-run-state small {
  color: var(--muted);
}

.automation-run-state span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-model-posts-link {
  display: inline-grid;
  gap: 0.12rem;
  color: var(--midnight);
}

.admin-model-posts-link:hover {
  color: var(--rose);
}

.admin-model-posts-link small {
  color: var(--muted);
  font-size: 0.76rem;
}

.admin-post-list {
  display: grid;
  gap: 0.85rem;
}

.admin-post-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 215, 227, 0.24), transparent 45%),
    var(--surface);
}

.admin-post-preview time {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-post-preview h3 {
  margin: 0.3rem 0;
  color: var(--midnight);
  font-size: 1.12rem;
}

.admin-post-preview p {
  margin: 0 0 0.55rem;
  color: var(--ink);
}

.admin-post-content-preview {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.admin-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-content: flex-start;
  justify-content: flex-end;
}

.admin-post-content-editor {
  min-height: 440px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  line-height: 1.55;
  resize: vertical;
}

.ai-console-head p {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.ai-console-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: start;
}

.ai-console-compose {
  background:
    radial-gradient(circle at 100% 0, rgba(240, 247, 87, 0.24), transparent 26%),
    var(--surface);
}

.ai-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.ai-choice {
  display: grid;
  grid-template-columns: auto 8px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  min-height: 68px;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.ai-choice:hover {
  border-color: var(--plum);
}

.ai-choice:has(input:checked) {
  border-color: var(--midnight);
  box-shadow: inset 0 0 0 1px var(--midnight);
}

.ai-choice-mark {
  width: 8px;
  height: 34px;
  border-radius: 3px;
  background: var(--ai-accent, var(--rose));
}

.ai-choice strong,
.ai-choice small {
  display: block;
}

.ai-choice small {
  margin-top: 0.15rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.ai-console-prompt {
  resize: vertical;
}

.ai-console-history {
  position: sticky;
  top: 1rem;
}

.ai-console-history h2 {
  margin: 0.2rem 0 0.8rem;
}

.ai-history-list {
  display: grid;
  gap: 0.55rem;
  max-height: 720px;
  overflow-y: auto;
}

.ai-history-list a {
  display: grid;
  gap: 0.3rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--midnight);
}

.ai-history-list a:hover,
.ai-history-list a.active {
  border-color: var(--midnight);
  background: rgba(240, 247, 87, 0.25);
}

.ai-history-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.76rem;
}

.ai-history-meta time,
.ai-history-list small {
  color: var(--muted);
}

.ai-history-prompt {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ai-results-head {
  margin-bottom: 0.75rem;
}

.ai-run-prompt {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--copper);
  border-radius: 0 7px 7px 0;
  background: rgba(200, 155, 123, 0.12);
  color: var(--midnight);
  white-space: pre-wrap;
}

.ai-response-grid {
  display: grid;
  gap: 0.85rem;
}

.ai-response-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ai-response-card header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.ai-response-card header > div {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.ai-response-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.ai-response-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #31a36d;
  box-shadow: 0 0 0 4px rgba(49, 163, 109, 0.12);
}

.ai-response-card.has-error .ai-response-status {
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(204, 90, 113, 0.14);
}

.ai-log-summary,
.ai-log-entry header,
.ai-log-identity,
.ai-log-meta,
.ai-log-context,
.ai-log-pagination {
  display: flex;
  align-items: center;
}

.ai-log-summary {
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ai-log-summary span,
.ai-log-context span {
  padding: 0.28rem 0.5rem;
  border-radius: 5px;
  background: rgba(128, 71, 94, 0.08);
  color: var(--plum);
  font-size: 0.78rem;
}

.ai-log-list {
  display: grid;
  gap: 0.85rem;
}

.ai-log-entry {
  padding: 0;
  overflow: hidden;
}

.ai-log-entry header {
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.ai-log-identity {
  gap: 0.7rem;
}

.ai-log-identity h2,
.ai-log-identity p {
  margin: 0;
}

.ai-log-identity p,
.ai-log-meta time {
  color: var(--muted);
  font-size: 0.8rem;
}

.ai-log-meta {
  justify-content: flex-end;
  gap: 0.65rem;
  text-align: right;
}

.ai-log-entry.has-error .ai-response-status {
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(204, 90, 113, 0.14);
}

.ai-log-context {
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.65rem 1rem 0;
}

.ai-log-details {
  border-top: 1px solid var(--line);
  margin-top: 0.65rem;
}

.ai-log-details + .ai-log-details {
  margin-top: 0;
}

.ai-log-details summary {
  padding: 0.7rem 1rem;
  color: var(--midnight);
  font-size: 0.85rem;
  font-weight: 650;
  cursor: pointer;
}

.ai-log-details pre {
  max-height: 520px;
  margin: 0;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: rgba(52, 52, 74, 0.035);
  color: var(--midnight);
  font: 0.8rem/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
  overflow: auto;
}

.ai-log-details .ai-log-details {
  margin: 0;
  border-top: 1px dashed var(--line);
}

.ai-log-pagination {
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.error-log-head p {
  max-width: 820px;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.error-log-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
}

.platform-error-entry.severity-warning .ai-response-status {
  background: #d59a24;
  box-shadow: 0 0 0 4px rgba(213, 154, 36, 0.14);
}

.platform-error-entry.severity-error .ai-response-status,
.platform-error-entry.severity-critical .ai-response-status {
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(204, 90, 113, 0.14);
}

.error-level-warning {
  background: rgba(213, 154, 36, 0.14);
  color: #76510c;
}

.error-level-error,
.error-level-critical {
  background: rgba(204, 90, 113, 0.14);
  color: #9b2c43;
}

.platform-error-message {
  margin: 0.8rem 1rem 1rem;
  padding: 0.8rem;
  border-left: 3px solid var(--rose);
  border-radius: 0 5px 5px 0;
  background: rgba(204, 90, 113, 0.055);
  color: var(--midnight);
  font: 0.84rem/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.ai-response-content,
.ai-response-error {
  margin: 0;
  padding: 1rem;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.ai-response-error {
  color: #9b2c43;
}

.service-profile-summary {
  background:
    radial-gradient(circle at 95% 10%, rgba(240, 247, 87, 0.26), transparent 22%),
    linear-gradient(135deg, rgba(245, 215, 227, 0.46), rgba(255, 254, 252, 0.94));
}

.service-subdomain-row,
.service-profile-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.service-subdomain-row span,
.service-profile-head h2 {
  overflow-wrap: anywhere;
}

.service-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-field {
  min-width: 0;
}

.service-field textarea {
  min-height: 130px;
}

.service-field label span {
  color: var(--rose);
}

.service-category-picker {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 215, 227, 0.24);
}

.service-category-picker h3 {
  margin: 0 0 0.25rem;
  color: var(--midnight);
  font-size: 1.05rem;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.service-category-option {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.78);
}

.service-category-option input {
  margin-top: 0.2rem;
}

.service-category-option strong,
.service-category-option small {
  display: block;
}

.service-category-option strong {
  color: var(--midnight);
}

.service-category-option small {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.45;
}

.service-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.service-category-chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.68rem;
  border: 1px solid rgba(52, 52, 74, 0.12);
  border-radius: 999px;
  background: rgba(240, 247, 87, 0.34);
  color: var(--midnight);
  font-size: 0.8rem;
  font-weight: 750;
}

.admin-category-chips {
  margin: 0.85rem 0 0;
}

.client-service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 9rem) 0 4rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(240, 247, 87, 0.42), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(204, 90, 113, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(255, 254, 252, 0.98), rgba(245, 215, 227, 0.72));
}

.client-service-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 50%;
  width: 56vw;
  aspect-ratio: 1;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(52, 52, 74, 0.12) 0 1px, transparent 1px 42px);
  opacity: 0.7;
}

.client-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 2rem;
  align-items: end;
}

.client-service-hero h1 {
  max-width: 980px;
  margin: 1rem 0;
  color: var(--midnight);
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.9;
}

.client-service-tagline {
  max-width: 760px;
  margin: 0;
  color: var(--plum);
  font-size: clamp(1.08rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.client-service-meta {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.74);
  backdrop-filter: blur(12px);
}

.client-service-meta span,
.client-service-meta a {
  color: var(--midnight);
  overflow-wrap: anywhere;
  font-weight: 650;
  text-decoration: none;
}

.client-service-meta a {
  color: var(--rose);
}

.client-service-body {
  background: var(--surface);
}

.client-service-lead {
  max-width: 920px;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.client-service-lead p {
  margin: 0.45rem 0 0;
  color: var(--midnight);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.55;
}

.client-field-grid,
.service-moderation-list {
  display: grid;
  gap: 1rem;
}

.client-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-field-card,
.service-moderation-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.client-field-card span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.client-field-card p {
  margin: 0.55rem 0 0;
  color: var(--midnight);
  white-space: pre-line;
  line-height: 1.6;
}

.service-moderation-card header,
.service-moderation-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.service-moderation-card h3 {
  margin: 0.25rem 0;
  color: var(--midnight);
  font-size: 1.25rem;
}

.service-moderation-card p {
  margin: 0;
  color: var(--muted);
}

.service-values-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.service-values-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.26fr) minmax(0, 1fr);
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.service-values-list strong {
  color: var(--midnight);
}

.service-values-list span {
  color: var(--muted);
  white-space: pre-line;
}

.service-moderation-actions textarea {
  min-height: 74px;
}

.admin-edit-table {
  min-width: 760px;
}

.admin-sales-table,
.admin-clients-table {
  min-width: 980px;
}

.admin-ai-table {
  min-width: 2920px;
}

.admin-reviews-table {
  min-width: 1100px;
}

.admin-site-checks-table {
  min-width: 1420px;
}

.check-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem 0.7rem;
}

.admin-site-checks-table .check-type-list {
  display: grid;
  min-width: 180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-type-list .form-check {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-agent-history {
  padding: 0.78rem 0;
  border-top: 1px solid var(--line);
}

.site-agent-history summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: var(--midnight);
  font-weight: 650;
}

.site-agent-history > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(80px, 0.28fr);
  gap: 0.6rem;
  padding: 0.55rem 0 0.05rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-agent-history span {
  overflow-wrap: anywhere;
}

.site-workspace-tabs {
  display: flex;
  gap: 0.45rem;
  border-bottom: 1px solid var(--line);
}

.site-workspace-tabs a {
  padding: 0.65rem 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-workspace-tabs a.active {
  border-bottom: 2px solid var(--rose);
  color: var(--midnight);
}

.ai-scoring-table {
  min-width: 1240px;
}

.ai-score-fields-table {
  min-width: 1080px;
}

.service-fields-table {
  min-width: 1380px;
}

.service-categories-table {
  min-width: 1100px;
}

.admin-ai-table input:not([type="checkbox"]),
.admin-ai-table select,
.admin-ai-table textarea {
  min-width: 140px;
}

.admin-ai-table textarea[name="description"],
.admin-ai-table textarea[name="params_json"] {
  min-width: 260px;
}

.admin-ai-table input[name="api_endpoint"] {
  min-width: 320px;
}

.admin-ai-table .provider-auto-field {
  min-width: 190px;
}

.provider-auto-field[readonly] {
  border-color: color-mix(in srgb, var(--plum) 24%, var(--line));
  background: color-mix(in srgb, var(--plum) 7%, white);
  color: var(--midnight);
  font-weight: 650;
}

.admin-ai-table input[name="official_url"] {
  min-width: 260px;
}

.admin-ai-table .calculated-score-input {
  background: color-mix(in srgb, var(--volt) 24%, white);
  border-color: color-mix(in srgb, var(--rose) 26%, var(--line));
  font-weight: 650;
}

.model-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  align-items: center;
}

.table-model-picker {
  min-width: 300px;
}

.model-load-status {
  min-height: 1.15rem;
}

.admin-ai-table .table-capabilities {
  min-width: 260px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem;
}

.admin-ai-table .table-capabilities .form-check {
  min-width: 0;
  padding: 0.3rem 0.48rem;
  font-size: 0.78rem;
}

.admin-ai-table input.form-check-input,
.admin-ai-table .table-capabilities input.form-check-input {
  flex: 0 0 1rem;
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  margin: 0;
}

.admin-edit-table .field-id {
  width: 64px;
  color: var(--muted);
  font-weight: 650;
}

.admin-edit-table textarea {
  min-height: 92px;
}

.ai-scoring-table th,
.ai-scoring-table td {
  vertical-align: middle;
}

.ai-scoring-table th:not(:first-child):not(:nth-child(2)),
.ai-scoring-table td:not(:first-child):not(:nth-child(2)) {
  min-width: 150px;
  text-align: center;
}

.ai-scoring-table th small {
  display: block;
  max-width: 190px;
  margin: 0.22rem auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.25;
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 0.7rem;
  border: 1px solid color-mix(in srgb, var(--rose) 42%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--volt) 34%, white);
  color: var(--midnight);
  font-weight: 650;
}

.review-score-pill {
  border-color: color-mix(in srgb, var(--plum) 36%, var(--line));
  background: color-mix(in srgb, var(--rose) 16%, white);
}

.score-note {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 550;
  white-space: nowrap;
}

.ai-score-check {
  width: 1.12rem;
  height: 1.12rem;
  cursor: pointer;
}

.ai-score-check:checked {
  background-color: var(--rose);
  border-color: var(--rose);
}

.field-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.report-field-table td:first-child {
  width: 72px;
  color: var(--muted);
  font-weight: 650;
}

.table-muted {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 550;
}

.sale-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0.25rem 0.52rem;
  border-radius: 999px;
  background: rgba(52, 52, 74, 0.1);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: capitalize;
}

.sale-status.status-paid {
  background: rgba(240, 247, 87, 0.36);
  color: var(--midnight);
}

.sale-status.status-pending {
  background: rgba(200, 155, 123, 0.22);
  color: var(--plum);
}

.sale-status.status-failed,
.sale-status.status-expired {
  background: rgba(204, 90, 113, 0.16);
  color: var(--rose);
}

.payment-error-copy {
  display: block;
  min-width: 220px;
  color: var(--rose);
  font-size: 0.82rem;
  line-height: 1.4;
}

.sale-status.status-approved {
  background: rgba(240, 247, 87, 0.36);
  color: var(--midnight);
}

.sale-status.status-rejected {
  background: rgba(204, 90, 113, 0.16);
  color: var(--rose);
}

.sale-status.status-draft {
  background: rgba(52, 52, 74, 0.08);
  color: var(--muted);
}

.sale-status.status-generating {
  background: rgba(200, 155, 123, 0.24);
  color: var(--plum);
}

.sale-status.status-published,
.sale-status.status-available {
  background: rgba(240, 247, 87, 0.36);
  color: var(--midnight);
}

.note-card {
  padding: 1.05rem;
}

.note-card h2 {
  margin: 0;
  color: var(--midnight);
  font-size: 1.12rem;
}

.note-card time {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 550;
}

.note-card p {
  margin: 0.75rem 0 0;
  white-space: pre-wrap;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
  color: var(--rose);
}

.empty-state {
  padding: 1rem;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 550;
}

.legal-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(240, 247, 87, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 254, 252, 0.88), rgba(255, 249, 245, 0.94));
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.legal-aside,
.legal-card,
.legal-disclaimer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-aside {
  position: sticky;
  top: 92px;
  padding: 1.2rem;
}

.legal-aside span {
  display: block;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-aside strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--midnight);
  font-size: 1.15rem;
}

.legal-aside p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal-body {
  display: grid;
  gap: 0.9rem;
}

.legal-card {
  padding: 1.2rem;
}

.legal-card span {
  color: rgba(204, 90, 113, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-card h2 {
  margin: 0.2rem 0 0.45rem;
  color: var(--midnight);
  font-size: 1.22rem;
}

.legal-card p,
.legal-disclaimer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.legal-disclaimer {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(240, 247, 87, 0.18);
}

.legal-disclaimer i {
  color: var(--rose);
  margin-top: 0.25rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 1.15rem;
  border-top: 1px solid rgba(52, 52, 74, 0.18);
  background:
    linear-gradient(rgba(52, 52, 74, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 52, 74, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #fff9f5 0%, #f5d7e3 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -5rem;
  top: 1.2rem;
  width: min(440px, 42vw);
  height: 160px;
  border: 1px solid rgba(52, 52, 74, 0.16);
  background: rgba(240, 247, 87, 0.18);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.6rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--midnight);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-mark img {
  box-shadow: 5px 5px 0 rgba(204, 90, 113, 0.18);
}

.footer-brand p {
  max-width: 520px;
  margin: 1rem 0;
  color: #625769;
  line-height: 1.7;
}

.footer-status,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-status span,
.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 252, 0.5);
  color: var(--plum);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-status i {
  color: var(--rose);
  font-size: 0.56rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-column {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(52, 52, 74, 0.14);
  border-radius: 8px;
  background: rgba(255, 254, 252, 0.56);
}

.footer-column h2 {
  margin: 0 0 0.7rem;
  color: var(--midnight);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding: 0.35rem 0;
  color: var(--plum);
  font-weight: 650;
}

.footer-column a:hover {
  color: var(--rose);
}

.footer-column > span {
  display: block;
  padding-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0 !important;
  border: 1px solid rgba(52, 52, 74, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 252, 0.72);
}

.footer-social-link i {
  font-size: 1rem;
}

.footer-social-links {
  margin-top: 0.85rem;
}

.footer-social-link:hover {
  border-color: var(--rose);
  background: rgba(240, 247, 87, 0.35);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(52, 52, 74, 0.16);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom strong {
  color: var(--midnight);
}

@keyframes radarRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes radarPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 991.98px) {
  .ai-profile-grid {
    grid-template-columns: 1fr;
  }

  .ai-profile-scores {
    width: min(100%, 560px);
  }

  .ai-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-systems-intro {
    grid-template-columns: 1fr;
  }

  .ai-systems-stats {
    width: min(100%, 560px);
  }

  .hero-section {
    min-height: auto;
  }

  .radar-ring,
  .radar-sweep,
  .radar-axis {
    left: 78%;
    top: 54%;
  }

  .page-head h1,
  .model-head h1 {
    font-size: 2.25rem;
  }

  .section-heading h2,
  .admin-head h1 {
    font-size: 1.82rem;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-product-card {
    min-height: 520px;
  }

  .report-generation-screen {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .report-generation-radar {
    width: min(190px, 58vw);
  }

  .analytics-head {
    display: grid;
    align-items: start;
  }

  .analytics-metrics,
  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ai-console-history {
    position: static;
  }

  .legal-layout,
  .footer-main,
  .footer-grid,
  .account-grid,
  .review-grid,
  .service-field-grid,
  .service-category-grid,
  .client-service-grid,
  .client-field-grid {
    grid-template-columns: 1fr;
  }

  .service-subdomain-row,
  .service-profile-head,
  .service-moderation-card header,
  .service-moderation-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-values-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .legal-aside {
    position: static;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .ai-system-grid {
    grid-template-columns: 1fr;
  }

  .ai-systems-toolbar {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 575.98px) {
  .ai-profile-hero {
    padding: 1.6rem 0 2.1rem;
    background:
      radial-gradient(circle at 92% 8%, rgba(240, 247, 87, 0.62) 0 4px, transparent 5px),
      linear-gradient(145deg, #fffaf4 0 72%, color-mix(in srgb, var(--accent) 32%, #f5d7e3) 72% 100%);
  }

  .ai-profile-back {
    margin-bottom: 1.35rem;
  }

  .ai-profile-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-profile-logo {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .ai-profile-logo::before {
    width: 64px;
    height: 64px;
  }

  .ai-profile-logo img {
    width: 44px;
    height: 44px;
  }

  .ai-profile-logo > i {
    font-size: 2.6rem;
  }

  .ai-profile-copy h1 {
    font-size: 3.2rem;
  }

  .ai-profile-scores div {
    padding: 0.9rem 0.65rem;
  }

  .ai-profile-scores strong {
    font-size: 1.5rem;
  }

  .ai-profile-scores span {
    font-size: 0.6rem;
  }

  .ai-profile-meta,
  .ai-profile-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-profile-facts span + span::before {
    display: none;
  }

  .ai-profile-reviews {
    padding: 2.2rem 0 2.5rem;
  }

  .admin-primary-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-primary-nav a {
    justify-content: flex-start;
  }

  .admin-nav-divider {
    display: none;
  }

  .admin-secondary-nav {
    align-items: stretch;
  }

  .admin-secondary-label {
    width: 100%;
  }

  .admin-secondary-nav .admin-sign-out {
    width: 100%;
    margin: 0.25rem 0 0;
  }

  .ai-choice-grid {
    grid-template-columns: 1fr;
  }

  .ai-systems-head {
    padding: 2.7rem 0;
  }

  .ai-systems-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-systems-stats div {
    padding: 0.72rem 0.6rem;
  }

  .ai-systems-stats strong {
    font-size: 1.35rem;
  }

  .ai-systems-stats span {
    font-size: 0.62rem;
  }

  .ai-system-card {
    padding: 0.9rem;
  }

  .ai-system-capabilities span:nth-child(n + 5) {
    display: none;
  }

  .member-rating-form {
    align-items: flex-end;
  }

  .ai-response-card header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-link {
    margin-left: 0;
  }

  .hero-content {
    padding: 3.2rem 1rem 2.2rem;
  }

  .hero-section h1 {
    font-size: 2.9rem;
    line-height: 0.95;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .radar-grid {
    background-size: 40px 40px;
  }

  .radar-ring,
  .radar-sweep,
  .radar-axis {
    left: 96%;
    top: 52%;
    width: 560px;
  }

  .radar-ring-one {
    width: 230px;
  }

  .radar-ring-two {
    width: 390px;
  }

  .radar-ring-three {
    width: 560px;
  }

  .radar-node-a {
    left: 68%;
    top: 30%;
  }

  .radar-node-b {
    left: 88%;
    top: 24%;
  }

  .radar-node-c {
    left: 82%;
    top: 71%;
  }

  .radar-node-d {
    left: 58%;
    top: 64%;
  }

  .current-report-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .current-report-action {
    min-width: 0;
  }

  .current-report-action strong {
    text-align: left;
  }

  .metric-row {
    margin-top: -2.1rem;
  }

  .content-section {
    padding: 3.25rem 0;
  }

  .page-head,
  .model-head {
    padding: 3.1rem 0;
  }

  .page-head h1,
  .model-head h1 {
    font-size: 1.95rem;
  }

  .ai-row,
  .version-row,
  .post-card-list {
    grid-template-columns: 1fr;
  }

  .media-thumbs.compact {
    max-width: none;
    justify-content: flex-start;
  }

  .mini-list div {
    flex-direction: column;
    gap: 0.2rem;
  }

  .home-products {
    padding: 3.5rem 0;
  }

  .home-product-card {
    min-height: 0;
    padding: 1.1rem;
  }

  .home-product-card h3 {
    font-size: 2rem;
  }

  .product-number {
    font-size: 4rem;
  }

  .product-metrics,
  .ai-visual {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 220px;
  }

  .product-open {
    width: 100%;
    justify-content: center;
  }

  .report-stack {
    width: min(260px, 78%);
    height: 170px;
  }

  .signal-route {
    max-width: calc(100% - 2rem);
    flex-wrap: wrap;
    border-radius: 8px;
  }

  .ai-orbit-field {
    width: 170px;
  }

  .analytics-metrics,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .analytics-panel-head {
    display: grid;
    gap: 0.25rem;
  }

  .period-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .period-tabs a {
    text-align: center;
  }

  .site-footer {
    padding-top: 2.2rem;
  }

  .footer-column {
    padding: 0.9rem;
  }

  .footer-status span,
  .footer-meta span {
    border-radius: 8px;
  }

  .legal-disclaimer {
    display: grid;
  }

  .final-report-launch {
    display: grid;
    grid-template-columns: 1fr;
  }

  .builder-section-head,
  .ai-value-card header,
  .generated-field-body > header {
    flex-direction: column;
  }

  .report-field-editor-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-field-editor-preview {
    justify-content: flex-start;
  }

  .field-value-row,
  .generated-model-value {
    grid-template-columns: 1fr;
  }

  .report-match-chip {
    max-width: 100%;
  }

  .report-match-stack {
    max-width: 100%;
  }

  .admin-post-preview {
    grid-template-columns: 1fr;
  }

  .admin-post-actions {
    justify-content: flex-start;
  }
}

/* FAQ Section Styling */
.faq-section {
  padding: 3rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: var(--midnight);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item-row:hover {
  border-color: var(--plum);
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(52, 52, 74, 0.08);
  transform: translateY(-1px);
}

.faq-item-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose);
  background-color: var(--rose-soft);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.faq-item-title {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--midnight);
  line-height: 1.4;
  flex-grow: 1;
  transition: color 0.15s ease;
}

.faq-item-row:hover .faq-item-title {
  color: var(--plum);
}

.faq-item-arrow {
  font-size: 0.95rem;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item-row:hover .faq-item-arrow {
  color: var(--rose);
  transform: translateX(4px);
}

.faq-updated {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* FAQ Detail Layout & Report Promo Card */
.faq-detail-section {
  padding: 3rem 0;
}

.faq-detail-layout {
  max-width: 860px;
  margin: 0 auto;
}

.faq-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--midnight);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-detail-lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.faq-detail-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-section-block h2 {
  font-size: 1.35rem;
  font-weight: 650;
  color: var(--midnight);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--line-soft);
}

.faq-section-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1rem;
}

.faq-tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.faq-tags-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--midnight);
}

.faq-tag-pill {
  font-size: 0.8rem;
  padding: 0.2rem 0.55rem;
  background-color: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}

/* Report Callout Promo Card */
.faq-report-promo-card {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(135deg, #34344A 0%, #4A3B4E 100%);
  color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 8px 24px rgba(52, 52, 74, 0.16);
  position: relative;
  overflow: hidden;
}

.faq-report-promo-icon {
  font-size: 2.5rem;
  color: var(--volt);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.faq-report-promo-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.4rem;
  margin-bottom: 0.75rem;
}

.faq-report-promo-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.faq-report-promo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--volt);
  background-color: rgba(240, 247, 87, 0.15);
  border: 1px solid rgba(240, 247, 87, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.faq-back-nav {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .faq-report-promo-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}

