/* Pinmerce — tightened commercial layout */

:root {
  --pin-red: #e60023;
  --pin-red-dark: #ad081b;
  --pin-red-light: #ffeaea;
  --ink: #1a1a2e;
  --ink-soft: #4a4a6a;
  --ink-muted: #8a8aa0;
  --bg: #ffffff;
  --bg-soft: #f7f7fc;
  --bg-card: #ffffff;
  --border: #e8e8f0;
  --green: #0f9d58;
  --green-light: #e6f4ea;
  --amber: #f9ab00;
  --amber-light: #fef7e0;
  --blue: #1a73e8;
  --blue-light: #e8f0fe;
  --font-head: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.4rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 34px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.hero {
  background-color: #fffafa;
  background-image:
    radial-gradient(ellipse 30% 78% at -8% 28%, rgba(230, 0, 35, 0.075) 0%, rgba(255, 240, 240, 0.48) 42%, transparent 74%),
    radial-gradient(ellipse 28% 72% at 108% 72%, rgba(120, 132, 150, 0.09) 0%, rgba(244, 245, 247, 0.52) 44%, transparent 76%),
    linear-gradient(135deg, #fff 0%, #fff7f7 100%);
  padding: 2.7rem 1rem 2.3rem;
  text-align: center;
}

.hero-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  background: var(--pin-red-light);
  color: var(--pin-red-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.pinterest-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--pin-red);
}

.pinterest-logo {
  display: inline-grid;
  place-items: center;
  width: 1.42em;
  height: 1.42em;
  border-radius: 50%;
  background: var(--pin-red);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 0.88em;
  font-weight: 800;
  line-height: 1;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 0.75rem;
}

.highlight { color: var(--pin-red); }

.subtitle {
  font-size: 1.32rem;
  color: var(--ink-soft);
  max-width: 840px;
  margin: 0 auto 1.05rem;
}

.hero-free-note {
  display: inline-block;
  color: var(--pin-red-dark);
  font-weight: 800;
  white-space: nowrap;
}

.hero-check-flow {
  max-width: 940px;
  margin: 0 auto 0.85rem;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(230, 0, 35, 0.12);
  border-radius: 22px;
  padding: 0.78rem;
  box-shadow: var(--shadow-lg);
}

.hero-form {
  margin: 0;
}

.hero-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.form-group { margin-bottom: var(--space-md); }
.hero-url-group,
.capture-email-group { margin-bottom: 0; }

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

input[type="url"],
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--pin-red);
}

.hero-url-group input {
  min-height: 64px;
  border-radius: 16px;
  font-size: 1.14rem;
}

.platform-logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.52rem;
  margin-top: 0.7rem;
}

.platform-logo {
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  padding: 0.45rem 0.48rem;
  border: 1px solid #e4e4ec;
  border-radius: 11px;
  background: #fff;
  color: #31313d;
  box-shadow: 0 3px 10px rgba(26, 26, 46, 0.055);
  font-size: 0.72rem;
  white-space: nowrap;
}

.platform-logo svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.platform-etsy b { color: #f1641e; font-family: Georgia, serif; font-size: 1.12rem; font-weight: 500; }
.platform-shopify { color: #5e8e3e; }
.platform-shopify svg { fill: #95bf47; stroke: none; }
.platform-shopify .logo-cut { fill: #fff; }
.platform-woo b { color: #fff; background: #96588a; border-radius: 7px; padding: 0.18rem 0.42rem; font-size: 0.88rem; }
.platform-wix b { color: #111; font-size: 0.92rem; letter-spacing: -0.07em; }
.platform-squarespace { color: #111; }
.platform-squarespace b { font-size: 0.65rem; }
.platform-other { color: #66677a; }

.hero-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.045);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.hero-ai-line {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  color: #9a7b4f;
  background: linear-gradient(135deg, #f7efde 0%, #fdf8ef 50%, #f3e8d0 100%);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 106, 0.22);
  box-shadow: 0 1px 4px rgba(197, 160, 106, 0.1);
  max-width: 100%;
}

.hero-inner {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--pin-red); color: #fff; }
.btn-primary:hover { background: var(--pin-red-dark); }

.btn-secondary {
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-lg {
  min-height: 62px;
  padding: 1rem 1.5rem;
  font-size: 1.12rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hero-submit { min-width: 285px; }

section { padding: 2.35rem 0; }

section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.45rem;
}

.section-kicker {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pin-red-dark);
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 1.6rem;
}

.sample-section,
.premium-section,
.audience-section {
  background: var(--bg-soft);
}

.capture-section {
  background-color: #fff;
  background-image:
    radial-gradient(ellipse 28% 85% at -7% 55%, rgba(120, 132, 150, 0.075) 0%, transparent 76%),
    radial-gradient(ellipse 28% 85% at 107% 42%, rgba(230, 0, 35, 0.055) 0%, transparent 76%);
}

.sample-preview {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.sample-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.sample-card-score {
  background: linear-gradient(180deg, #fff 0%, #fff4f5 100%);
  border-color: rgba(230, 0, 35, 0.18);
}

.sample-score {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: var(--pin-red);
  margin-bottom: 0.6rem;
}

.sample-score span {
  font-size: 1rem;
  color: var(--ink-muted);
}

.sample-label {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.sample-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.75rem;
}

.sample-card p,
.sample-list li,
.premium-card p,
.premium-card li,
.audience-card p,
.precheck-sub,
.finding-text,
.action-text {
  color: var(--ink-soft);
}

.precheck-gate {
  margin-top: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: left;
}

.diagnostic-progress {
  margin-top: 1rem;
  padding: 1.25rem 1.3rem 1.15rem;
  border: 1px solid rgba(230, 0, 35, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(230, 0, 35, 0.07), transparent 34%),
    linear-gradient(145deg, #fff 0%, #fffafa 100%);
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.09);
  text-align: left;
}

.diagnostic-progress-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.diagnostic-progress-kicker {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--pin-red-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.diagnostic-progress h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}

.diagnostic-progress-time {
  flex: 0 0 auto;
  padding: 0.34rem 0.62rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.diagnostic-progress-copy {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.diagnostic-progress-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(230, 0, 35, 0.09);
  border-radius: 999px;
  background: #f0edf1;
  box-shadow: inset 0 1px 3px rgba(26, 26, 46, 0.08);
}

.diagnostic-progress-fill {
  display: block;
  width: 8%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pin-red-dark), var(--pin-red), #ff4661);
  box-shadow: 0 0 12px rgba(230, 0, 35, 0.26);
  transition: width 0.85s ease;
}

.diagnostic-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.54), transparent);
  animation: diagnostic-progress-shimmer 1.8s linear infinite;
}

.diagnostic-progress-foot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 1.45rem;
  margin-top: 0.72rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.diagnostic-progress-pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(15, 157, 88, 0.3);
  animation: diagnostic-progress-pulse 1.8s ease-out infinite;
}

.diagnostic-progress-saved {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}

@keyframes diagnostic-progress-shimmer {
  from { transform: translateX(-120%); }
  to { transform: translateX(320%); }
}

@keyframes diagnostic-progress-pulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 157, 88, 0.32); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(15, 157, 88, 0); }
}

@media (max-width: 600px) {
  .diagnostic-progress { padding: 1.05rem; }
  .diagnostic-progress-head { align-items: center; }
  .diagnostic-progress h3 { font-size: 1.08rem; }
  .diagnostic-progress-time { font-size: 0.75rem; }
  .diagnostic-progress-copy { font-size: 0.86rem; }
  .diagnostic-progress-foot { grid-template-columns: auto minmax(0, 1fr); }
  .diagnostic-progress-saved { grid-column: 2; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .diagnostic-progress-fill { transition: none; }
  .diagnostic-progress-fill::after,
  .diagnostic-progress-pulse { animation: none; }
}

.precheck-card {
  padding: 0.35rem 0.35rem 0.1rem;
}

.precheck-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.precheck-sub {
  margin-bottom: 1rem;
}

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

.precheck-email-group {
  max-width: 520px;
}

.precheck-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.precheck-offer-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(26, 26, 46, 0.06);
}

.precheck-offer-price {
  color: var(--pin-red);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.precheck-offer-card h4 {
  min-height: 2.7em;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.3;
}

.precheck-offer-card .precheck-feature-list {
  flex: 1;
}

.precheck-offer-card .precheck-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.precheck-offer-card .choice-pill,
.precheck-offer-card .choice-pill span {
  width: 100%;
}

.precheck-interest {
  margin-bottom: 1rem;
}

.precheck-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.precheck-feature-list {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
}

.precheck-feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.precheck-feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.precheck-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.choice-pill input:checked + span {
  border-color: var(--pin-red);
  background: var(--pin-red-light);
  color: var(--pin-red-dark);
}

.precheck-actions {
  display: flex;
  justify-content: center;
}

.free-check-usage {
  width: fit-content;
  margin: 0.7rem auto 0;
  padding: 0.42rem 0.78rem;
  text-align: center;
  color: #6f2434;
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.96), rgba(255, 241, 232, 0.92));
  border: 1px solid rgba(180, 83, 95, 0.2);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(94, 39, 50, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.free-check-usage.is-exhausted {
  color: #8b2033;
  border-color: rgba(180, 45, 66, 0.28);
  background: linear-gradient(135deg, #fff7f2, #ffebe6);
}

.free-check-usage a {
  color: var(--pin-red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.free-check-usage a:hover {
  color: var(--pin-red);
}

.no-card-needed {
  margin: 0.1rem 0 0.8rem;
  text-align: center;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sample-list,
.premium-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.sample-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
}

.sample-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--pin-red);
}

.diagnostic-results {
  max-width: 860px;
  margin: 1.6rem auto 0;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.result-header { text-align: center; margin-bottom: 1.5rem; }

.result-score {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.result-score.high { color: var(--green); }
.result-score.medium { color: var(--amber); }
.result-score.low { color: var(--pin-red); }

.result-label {
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 0.45rem;
}

.result-platform {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}

.result-section-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  margin-top: 1.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.finding,
.action {
  display: flex;
  gap: 0.9rem;
  padding: 0.45rem 0;
}

.finding-icon,
.action-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.finding-icon.good { background: var(--green-light); color: var(--green); }
.finding-icon.warning { background: var(--amber-light); color: var(--amber); }
.finding-icon.critical { background: var(--pin-red-light); color: var(--pin-red); }
.finding-icon.info { background: var(--blue-light); color: var(--blue); }

.action-num { background: var(--pin-red); color: #fff; }

.result-premium {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-top: 1.4rem;
}

.result-premium h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.result-premium ul {
  list-style: none;
  padding: 0;
}

.result-premium li {
  padding: 0.2rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.result-premium li::before {
  content: "→ ";
  color: var(--pin-red);
  font-weight: 700;
}

.result-premium-pricing {
  display: flex;
  gap: 1rem;
  margin-top: 0.9rem;
}

.result-premium-price {
  flex: 1;
  text-align: center;
  padding: 0.9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
}

.result-premium-price strong {
  font-size: 1.45rem;
  display: block;
}

.result-premium-price span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* Shared editorial diagnostic brief: homepage sample + generated result */
.diagnostic-results {
  max-width: 960px;
}

.diagnostic-brief {
  --status-color: #e3a008;
  --status-text: #805b00;
  --status-tint: #fff8df;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 960px;
  margin: 1.35rem auto 0;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e7ec;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(23, 24, 43, 0.08);
  text-align: left;
}

.diagnostic-brief::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--status-color);
}

.diagnostic-brief.status-critical {
  --status-color: #c83e52;
  --status-text: #a52a3a;
  --status-tint: #fff1f3;
}

.diagnostic-brief.status-work {
  --status-color: #d97724;
  --status-text: #9a4a12;
  --status-tint: #fff5eb;
}

.diagnostic-brief.status-promising {
  --status-color: #e3a008;
  --status-text: #805b00;
  --status-tint: #fff8df;
}

.diagnostic-brief.status-strong {
  --status-color: #27956b;
  --status-text: #176b4d;
  --status-tint: #ecf9f3;
}

.brief-context,
.brief-premium-eyebrow {
  color: var(--ink-muted);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brief-header {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
  margin-top: 0.85rem;
}

.brief-score {
  color: var(--status-text);
  font-size: 3.65rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brief-score span {
  margin-left: 0.2rem;
  color: #667085;
  font-size: 0.9rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brief-band {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--status-tint);
  color: var(--status-text);
  font-size: 0.76rem;
  font-weight: 800;
}

.brief-interpretation h3 {
  color: #17182b;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.brief-interpretation p {
  max-width: 660px;
  color: #667085;
  font-size: 1rem;
  line-height: 1.55;
}

.score-scale { margin-top: 1.2rem; }

.score-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eceef3;
}

.score-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--status-color);
}

.score-thresholds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.45rem;
  color: #98a2b3;
  font-size: 0.72rem;
  font-weight: 650;
}

.score-thresholds span:nth-child(2),
.score-thresholds span:nth-child(3) { text-align: center; }
.score-thresholds span:last-child { text-align: right; }
.score-thresholds .active { color: var(--status-text); font-weight: 850; }

.brief-meta {
  margin-top: 1rem;
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.2rem;
  font-weight: 600;
}

.brief-body {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(280px, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: start;
}

.brief-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  color: #17182b;
  font-size: 0.95rem;
  font-weight: 800;
}

.brief-section-heading small {
  color: #98a2b3;
  font-size: 0.72rem;
  font-weight: 700;
}

.brief-finding {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid #eaecf0;
}

.severity {
  position: relative;
  align-self: start;
  padding-left: 0.75rem;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.severity::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.37rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #98a2b3;
}

.severity-critical::before,
.severity-high::before { background: #c83e52; }
.severity-warning::before,
.severity-medium::before { background: #d97724; }
.severity-info::before,
.severity-low::before { background: #7b8798; }
.severity-good::before { background: #27956b; }

.brief-finding strong {
  display: block;
  color: #17182b;
  font-size: 0.92rem;
  line-height: 1.35;
}

.brief-finding p {
  margin-top: 0.25rem;
  color: #667085;
  font-size: 0.83rem;
  line-height: 1.5;
}

.finding-impact { color: #475467 !important; font-weight: 650; }

.brief-actions {
  padding: 1.25rem;
  border-radius: 12px;
  background: #f7f7fa;
}

.brief-action {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid #e4e7ec;
}

.brief-action > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pin-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.brief-action p {
  color: #344054;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 650;
}

.brief-action-summary {
  grid-template-columns: 12px minmax(0, 1fr);
}

.brief-action-summary span {
  width: 7px;
  height: 7px;
  margin-top: 0.42rem;
  background: #ed1742;
}

.brief-example {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 3px 0 0 #e3a008;
}

.brief-example strong,
.brief-example p,
.brief-example small { display: block; }

.brief-example strong {
  margin-bottom: 0.25rem;
  color: #17182b;
  font-size: 0.78rem;
}

.brief-example p {
  color: #475467;
  font-size: 0.79rem;
  line-height: 1.45;
}

.brief-example small {
  margin-top: 0.35rem;
  color: #805b00;
  font-size: 0.73rem;
  line-height: 1.4;
  font-weight: 700;
}

.brief-premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #f1dfe4;
  border-radius: 12px;
  background: #fff5f7;
}

.score-offer-route {
  margin: 1.25rem 1.35rem 0;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(240px, 1.3fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  border: 1px solid rgba(15, 157, 88, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, #eefaf3, #fff 72%);
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.08);
  color: var(--ink-soft);
}

.score-offer-route > div { display: grid; gap: 0.18rem; }

.score-offer-route span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.score-offer-route strong { color: var(--ink); font-size: 1.05rem; }
.score-offer-route p { margin: 0; font-size: 0.86rem; line-height: 1.45; }
.score-offer-route p small { display: block; margin-top: 0.15rem; color: #667085; }
.score-offer-route .btn { min-height: 44px; padding: 0.72rem 0.95rem; white-space: nowrap; }

.result-offer-carousel {
  margin-top: 1.1rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 46, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, #17182b 0%, #24243d 62%, #2e2533 100%);
  box-shadow: 0 18px 42px rgba(23, 24, 43, 0.17);
  color: #fff;
}

.result-offer-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-offer-carousel-head span {
  color: #f3cf7a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-offer-carousel-head h4 { margin: 0.2rem 0 0; color: #fff; font-size: 1.1rem; }
.result-offer-carousel-head small { color: rgba(255,255,255,0.62); font-size: 0.74rem; }

.result-offer-stage {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 0.75rem;
  align-items: center;
}

.result-offer-viewport { min-width: 0; overflow: hidden; border-radius: 14px; touch-action: pan-y; }
.result-offer-track { display: flex; transition: transform 320ms cubic-bezier(.22,.72,.18,1); }

.result-offer-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  opacity: 0.72;
  transform: scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

.result-offer-slide.is-active { opacity: 1; transform: scale(1); }
.result-offer-slide.is-recommended { box-shadow: inset 0 0 0 2px rgba(243, 207, 122, 0.7); }
.result-offer-topline { display: flex; justify-content: space-between; gap: 0.8rem; color: #735700; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.result-offer-topline b { padding: 0.24rem 0.5rem; border-radius: 999px; background: #f8e8b8; color: #5e4600; font-size: 0.65rem; }
.result-offer-heading { display: flex; justify-content: space-between; align-items: start; gap: 1rem; margin-top: 0.65rem; }
.result-offer-heading strong { display: block; color: #17182b; font-size: 1.25rem; }
.result-offer-heading p { max-width: 600px; margin: 0.2rem 0 0; color: #5f6474; font-size: 0.84rem; line-height: 1.45; }
.result-offer-heading em { color: var(--pin-red); font-size: 2rem; line-height: 1; font-style: normal; font-weight: 950; }
.result-offer-slide ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem 1rem; margin: 1rem 0; padding: 0; list-style: none; }
.result-offer-slide li { position: relative; padding-left: 1.2rem; color: #3d4351; font-size: 0.8rem; }
.result-offer-slide li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 950; }
.result-offer-slide .btn { width: 100%; min-height: 44px; }

.result-offer-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.result-offer-arrow:hover { background: rgba(255,255,255,0.17); }
.result-offer-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 0.9rem; }
.result-offer-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,0.28); cursor: pointer; }
.result-offer-dots button.is-active { width: 24px; border-radius: 999px; background: #f3cf7a; }

.brief-premium h4 {
  margin: 0.35rem 0 0.75rem;
  color: #17182b;
  font-size: 1.08rem;
  line-height: 1.4;
}

.asset-preview {
  max-width: 590px;
  overflow: hidden;
  border: 1px solid rgba(165, 42, 58, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
}

.asset-preview-row {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  align-items: center;
}

.asset-preview-row + .asset-preview-row {
  border-top: 1px solid rgba(165, 42, 58, 0.1);
}

.asset-preview-row span {
  color: #667085;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asset-preview-row p {
  color: #475467;
  font-size: 0.84rem;
  line-height: 1.45;
}

.asset-preview-after {
  background: linear-gradient(90deg, rgba(165, 42, 58, 0.055), rgba(255,255,255,0.3));
}

.asset-preview-after span { color: #a52a3a; }
.asset-preview-after p { color: #17182b; font-weight: 700; }

.locked-pack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(165, 42, 58, 0.1);
  background: linear-gradient(90deg, rgba(165, 42, 58, 0.055), rgba(255,255,255,0.3));
}

.locked-pack-item {
  min-width: 0;
  padding: 0.75rem 0.85rem 0.85rem;
}

.locked-pack-item + .locked-pack-item {
  border-left: 1px solid rgba(165, 42, 58, 0.1);
}

.locked-pack-item > span {
  display: block;
  min-height: 2.1em;
  margin-bottom: 0.45rem;
  color: #a52a3a;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.pack-contents {
  padding: 0.8rem;
  border-top: 1px solid rgba(165, 42, 58, 0.12);
  background: #f8f8fa;
}

.pack-contents > strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #475467;
  font-size: 0.68rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.pack-contents-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e5e7ec;
  border-radius: 8px;
  background: #fff;
}

.pack-content-item {
  display: flex;
  min-width: 0;
  gap: 0.45rem;
  align-items: flex-start;
  padding: 0.65rem 0.55rem;
}

.pack-content-item + .pack-content-item {
  border-left: 1px solid #e5e7ec;
}

.pack-content-item svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #a52a3a;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pack-content-item span {
  color: #344054;
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 750;
}

.locked-output {
  display: grid;
  width: 100%;
  min-height: 24px;
  align-items: center;
  outline: none;
}

.locked-lines {
  display: grid;
  gap: 0.36rem;
  transition: filter 180ms ease, transform 180ms ease;
  filter: blur(3.5px);
}

.locked-lines i {
  display: block;
  width: 88%;
  height: 7px;
  border-radius: 999px;
  background: #c9a9af;
  opacity: 0.72;
}

.locked-lines i:nth-child(2) { width: 62%; }

.locked-output:hover .locked-lines,
.locked-output:focus-visible .locked-lines {
  filter: blur(2px);
  transform: scaleX(1.015);
}

.locked-output:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(165, 42, 58, 0.18);
}

.brief-premium ul {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding: 0;
  list-style: none;
}

.brief-premium li {
  position: relative;
  color: #667085;
  font-size: 0.8rem;
}

.brief-premium li::before {
  position: absolute;
  left: -0.8rem;
  content: "•";
  color: #a52a3a;
  font-weight: 800;
}

.brief-premium-cta {
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.brief-premium-cta strong { color: #17182b; }

.brief-premium-cta .btn {
  min-height: 48px;
  padding: 0.8rem 1rem;
}

.brief-compare {
  color: #667085;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.result-card {
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(23, 24, 43, 0.08);
}

@media (max-width: 700px) {
  .diagnostic-brief,
  .result-card {
    padding: 1.25rem;
  }

  .brief-header,
  .brief-body,
  .brief-premium {
    grid-template-columns: 1fr;
  }

  .brief-header { gap: 0.75rem; }
  .brief-score { font-size: 2.8rem; }
  .brief-interpretation h3 { font-size: 1.3rem; }
  .brief-body { gap: 1.25rem; }
  .brief-finding { grid-template-columns: 62px minmax(0, 1fr); }
  .brief-premium { margin-top: 2rem; padding: 1.15rem; }
  .score-offer-route {
    margin: 1rem 0.8rem 0;
    grid-template-columns: 1fr;
  }
  .score-offer-route .btn { width: 100%; }
  .result-offer-carousel { padding: 1rem 0.75rem; }
  .result-offer-carousel-head { align-items: start; flex-direction: column; }
  .result-offer-stage { grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 0.35rem; }
  .result-offer-arrow { width: 34px; height: 34px; }
  .result-offer-slide { padding: 1rem; }
  .result-offer-heading strong { font-size: 1.08rem; }
  .result-offer-heading em { font-size: 1.65rem; }
  .result-offer-slide ul { grid-template-columns: 1fr; }
  .brief-premium-cta .btn { width: 100%; }
  .asset-preview-row { grid-template-columns: 88px minmax(0, 1fr); padding: 0.7rem 0.8rem; }
  .locked-pack { grid-template-columns: 1fr; }
  .locked-pack-item + .locked-pack-item { border-left: 0; border-top: 1px solid rgba(165, 42, 58, 0.1); }
  .locked-pack-item > span { min-height: auto; }
  .pack-contents-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pack-content-item + .pack-content-item { border-left: 0; }
  .pack-content-item:nth-child(even) { border-left: 1px solid #e5e7ec; }
  .pack-content-item:nth-child(n+3) { border-top: 1px solid #e5e7ec; }
}

@media (max-width: 359px) {
  .score-thresholds span:not(.active) { visibility: hidden; }
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1040px;
  margin: 1.2rem auto 0;
}

.premium-card {
  background: var(--bg-card);
  border: 1px solid rgba(20, 30, 65, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  position: relative;
  box-shadow:
    0 0 0 4px rgba(229, 0, 35, 0.13),
    0 0 16px 7px rgba(20, 30, 65, 0.2);
}

.premium-card-featured {
  border-color: rgba(20, 30, 65, 0.14);
  box-shadow:
    0 0 0 4px rgba(229, 0, 35, 0.23),
    0 0 18px 8px rgba(20, 30, 65, 0.23);
}

.premium-badge {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  background: var(--pin-red);
  color: #fff;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.premium-price {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--pin-red);
  line-height: 1;
}

.premium-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0.5rem 0 0.55rem;
}

.premium-summary {
  min-height: 5.2rem;
  margin: 0.8rem 0 1rem;
  padding: 0.8rem 0.9rem;
  border-left: 3px solid rgba(230, 0, 35, 0.42);
  border-radius: 0 10px 10px 0;
  background: var(--bg-soft);
  line-height: 1.5;
}

.premium-card ul {
  margin-top: 0.15rem;
}

.premium-card li {
  font-size: 0.95rem;
}

.premium-card li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

.premium-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 1rem;
}

.premium-interest-panel {
  max-width: 1040px;
  margin: 1rem auto 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(20, 30, 65, 0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  box-shadow:
    0 0 0 4px rgba(229, 0, 35, 0.1),
    0 0 16px 7px rgba(20, 30, 65, 0.17);
}

.premium-interest-panel .feedback-inline {
  justify-content: center;
  text-align: center;
}

.premium-interest-panel .feedback-buttons {
  justify-content: center;
}

.premium-launch-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 800;
}

.premium-launch-status strong {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--pin-red-light);
  color: var(--pin-red-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.capture-shell {
  max-width: 1020px;
  margin: 1.15rem auto 0;
  display: grid;
  gap: 0.85rem;
}

.capture-intro {
  text-align: center;
}

.capture-intro h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.capture-intro p { color: var(--ink-soft); }

.capture-main-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.capture-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.capture-submit { min-width: 220px; }

.email-form input[type="email"] {
  min-height: 58px;
  border-radius: 14px;
}

.consent-group {
  margin: 0.95rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.checkbox-label input { width: auto; }

.feedback-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.feedback-inline-label {
  font-weight: 800;
  color: var(--ink);
}

.feedback-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-feedback {
  min-width: 160px;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-interested:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.btn-not-interested:hover {
  border-color: var(--ink-muted);
  background: var(--bg-soft);
}

.feedback-reason { margin-top: 1rem; }
.feedback-reason textarea { margin: 0.55rem 0; }

.form-success {
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.form-error {
  color: var(--pin-red);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 1.2rem auto 0;
}

.audience-card {
  text-align: center;
  padding: 1.35rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(20, 30, 65, 0.14);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 3px rgba(190, 0, 20, 0.06),
    0 0 18px 3px rgba(24, 34, 72, 0.18),
    0 10px 22px -6px rgba(24, 34, 72, 0.22);
}

.audience-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}

.audience-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.84;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.64;
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.46;
  max-width: 680px;
  margin: 0 auto;
}

.diagnostic-error {
  max-width: 760px;
  margin: 1.5rem auto 0;
  text-align: center;
  padding: 1rem 1.2rem;
  background: var(--pin-red-light);
  border-radius: var(--radius);
  color: var(--pin-red-dark);
}

.diagnostic-error p {
  margin: 0;
}

.diagnostic-error-cta {
  display: inline-flex;
  margin-top: 0.85rem;
  min-height: 44px;
}

.diagnostic-error-cta[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .premium-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  html { font-size: 110%; }

  .premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero {
    background-image:
      radial-gradient(circle at 50% -16%, rgba(230, 0, 35, 0.07) 0%, transparent 44%),
      linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  }

  .capture-section {
    background-image: radial-gradient(circle at 50% 0%, rgba(120, 132, 150, 0.055) 0%, transparent 42%);
  }

  .hero-form-shell,
  .capture-form-row,
  .feedback-inline,
  .sample-preview {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .platform-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-url-group,
  .capture-email-group,
  .precheck-email-group,
  .hero-url-group input,
  .capture-email-group input,
  .precheck-email-group input {
    width: 100%;
    max-width: none;
  }

  .hero-submit,
  .capture-submit,
  .btn-feedback {
    width: 100%;
    min-width: 0;
  }

  .feedback-buttons {
    width: 100%;
    flex-direction: column;
  }

  .premium-summary {
    min-height: 0;
  }

  .premium-launch-status {
    flex-wrap: wrap;
  }

  .precheck-grid {
    grid-template-columns: 1fr;
  }

  .precheck-offer-grid {
    grid-template-columns: 1fr;
  }

  .precheck-offer-card h4 {
    min-height: 0;
  }

  .precheck-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.9rem 0.9rem 1.7rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  section {
    padding: 1.9rem 0;
  }

  .sample-card,
  .premium-card,
  .audience-card,
  .capture-main-card,
  .result-card {
    padding: 1rem;
  }

  .hero-platforms {
    gap: 0.45rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 0.35rem;
    font-size: clamp(0.62rem, 2.6vw, 0.7rem);
  }

  .trust-item {
    display: flex;
    min-width: 0;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.2rem;
    border: 1px solid rgba(232, 232, 240, 0.9);
    border-radius: 10px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 3px 10px rgba(26, 26, 46, 0.055);
    line-height: 1.15;
    text-align: center;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .platform-pill {
    box-shadow: 0 5px 14px rgba(26, 26, 46, 0.1), 0 1px 3px rgba(26, 26, 46, 0.06);
  }

  .trust-item {
    box-shadow: 0 6px 16px rgba(26, 26, 46, 0.11), 0 1px 3px rgba(230, 0, 35, 0.05);
  }

  .precheck-offer-card,
  .capture-main-card,
  .brief-actions,
  .brief-example,
  .pack-contents-grid {
    box-shadow:
      0 0 0 1px rgba(26, 26, 46, 0.025),
      0 10px 24px rgba(26, 26, 46, 0.1),
      0 0 18px rgba(230, 0, 35, 0.055);
  }

  .consent-group {
    display: grid;
    gap: 0.65rem;
  }
}

@media (max-width: 390px) {
  .hero-ai-line {
    font-size: 0.74rem;
    padding: 0.25rem 0.7rem;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.25rem;
  }

  .trust-item {
    min-height: 34px;
    padding: 0.28rem 0.15rem;
    font-size: 0.62rem;
    line-height: 1.1;
  }
}
