:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: #101012;
  --panel-strong: #151517;
  --line: rgba(242, 242, 242, 0.12);
  --line-strong: rgba(232, 197, 71, 0.32);
  --text: #f4f1ea;
  --muted: #a9a29a;
  --muted-2: #736d66;
  --gold: #d4a017;
  --gold-light: #e8c547;
  --silver: #dfe2e8;
  --cyan: #72d7ff;
  --red: #ff6767;
  --green: #6ee7a8;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --container: 1180px;
  --eyebrow-size: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(232, 197, 71, 0.05), transparent 32%),
    linear-gradient(180deg, #050505 0%, #080808 42%, #050505 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 84%);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #080808;
  background: var(--gold-light);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.btn svg,
.eyebrow svg,
.mini-proof svg,
.check-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 720px;
  padding: 84px 0 130px;
  background:
    radial-gradient(circle at 50% 22%, rgba(232, 197, 71, 0.045), transparent 26%),
    radial-gradient(circle at 12% 54%, rgba(212, 160, 23, 0.055), transparent 30%),
    radial-gradient(circle at 90% 48%, rgba(223, 226, 232, 0.08), transparent 32%),
    linear-gradient(180deg, #050505 0%, #080808 58%, #050505 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 190px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.74) 56%, #050505 100%);
}

.hero::before {
  position: absolute;
  right: 8%;
  bottom: 68px;
  left: 8%;
  z-index: 2;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 197, 71, 0.72), transparent);
  box-shadow: 0 0 18px rgba(232, 197, 71, 0.42);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: auto -10% -26% -10%;
  height: 68%;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(232, 197, 71, 0.13), rgba(212, 160, 23, 0.035) 44%, transparent 74%),
    linear-gradient(to top, rgba(223, 226, 232, 0.06), transparent);
  filter: blur(34px);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, transparent 72%);
  opacity: 0.38;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 920px);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: var(--eyebrow-size);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(38px, 4.15vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

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

.hero-lead {
  max-width: 640px;
  margin: 0 auto 30px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.hero-actions,
.hero-proof,
.mini-proof,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 46px rgba(212, 160, 23, 0.24);
}

.hero-pill {
  min-height: 46px;
  padding: 0 12px 0 22px;
  color: #080808;
  font-size: 14px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 40px rgba(212, 160, 23, 0.18);
}

.hero-pill svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  color: #111111;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(232, 197, 71, 0.08);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.risk-actions {
  justify-content: center;
  margin-top: 34px;
}

.center-actions {
  justify-content: center;
  margin-top: 36px;
}

.authority-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 340px;
}

.authority-actions .btn {
  min-width: 0;
  width: 100%;
  padding: 0 14px;
  font-size: 13px;
  line-height: 1.12;
  white-space: normal;
}

.instagram-btn {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.instagram-btn:hover {
  border-color: var(--line-strong);
  background: rgba(232, 197, 71, 0.08);
}

.hero-proof {
  margin: 34px 0 0;
}

.hero-proof div {
  min-width: 150px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.hero-proof dt {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.rx-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 14, 0.92);
  box-shadow: var(--shadow);
}

.rx-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
}

.rx-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(114, 215, 255, 0.11) 48%, transparent 66%);
  transform: translateX(-80%);
  animation: panelSweep 5s ease-in-out infinite;
}

.panel-topbar,
.board-header,
.form-header {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.panel-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3c3c3e;
}

.panel-topbar span:first-child {
  background: var(--red);
}

.panel-topbar span:nth-child(2) {
  background: var(--gold-light);
}

.panel-topbar span:nth-child(3) {
  background: var(--green);
}

.panel-topbar strong {
  margin-left: auto;
  color: var(--silver);
  font-size: 12px;
}

.scan-stage {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  padding: 18px 0;
}

.scan-target {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(114, 215, 255, 0.08), transparent 58%),
    #070708;
}

.scan-rings {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(232, 197, 71, 0.22);
  border-radius: 50%;
  opacity: 0.8;
}

.scan-rings::before,
.scan-rings::after {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(223, 226, 232, 0.16);
  border-radius: 50%;
}

.scan-rings::after {
  inset: 54px;
}

.bar-chart {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  height: 190px;
}

.bar-chart span {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--silver), #24272e);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
}

.scan-beam {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 45%;
  width: 3px;
  background: rgba(232, 197, 71, 0.92);
  box-shadow: 0 0 28px rgba(232, 197, 71, 0.9), 0 0 100px rgba(114, 215, 255, 0.28);
  transform: rotate(18deg);
  animation: scanMove 4s ease-in-out infinite;
}

.status-board {
  display: grid;
  gap: 12px;
}

.status-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.status-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.status-item.danger span {
  color: var(--red);
}

.status-item.warning span {
  color: var(--gold-light);
}

.status-item.success span {
  color: var(--green);
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.dimension-grid article {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.dimension-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-weight: 900;
}

.dimension-grid strong {
  display: block;
  min-height: 34px;
  font-size: 12px;
  line-height: 1.25;
}

.dimension-grid span {
  display: block;
  height: 5px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dimension-grid span::after {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.problem-section {
  position: relative;
  z-index: 1;
  margin-top: -70px;
  padding-top: 142px;
}

.problem-section::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 170px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.problem-section .section-copy {
  align-self: center;
}

.section {
  padding: 92px 0;
}

.section.problem-section {
  padding-top: 142px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-copy p:not(.eyebrow) {
  font-size: 16px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.center .eyebrow,
.rx5d-intro-content .eyebrow {
  display: inline-flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  font-size: var(--eyebrow-size);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.section-heading.center > p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
}

.rx5d-intro-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232, 197, 71, 0.16);
  background:
    linear-gradient(180deg, rgba(232, 197, 71, 0.035), rgba(255, 255, 255, 0.01) 54%, transparent),
    #050505;
}

.rx5d-intro-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 197, 71, 0.5), transparent);
}

.rx5d-intro-content {
  max-width: 900px;
  text-align: center;
}

.rx5d-intro-content .section-copy h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.rx5d-intro-content .section-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.risk-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.risk-cards article,
.method-steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.risk-cards article {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(232, 197, 71, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0c0c0d;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  transition: opacity 520ms ease, transform 520ms ease, border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.risk-cards article.reveal-ready {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
}

.risk-cards article.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.risk-cards article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 197, 71, 0.48), transparent);
}

.risk-cards svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-bottom: 36px;
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.risk-cards h3 {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.12;
}

.risk-cards p,
.method-steps p {
  margin-bottom: 0;
  font-size: 14px;
}

.method-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(212, 160, 23, 0.04));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  min-height: 280px;
  padding: 20px;
  overflow: hidden;
}

.method-steps li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--silver));
}

.method-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.08);
}

.deliverables-section {
  overflow: hidden;
}

.deliverables-content {
  max-width: 820px;
  text-align: center;
}

.deliverables-copy {
  max-width: 760px;
  margin: 0 auto;
}

.form-header strong {
  color: var(--text);
  font-size: 16px;
}

.form-header span {
  color: var(--muted);
  font-size: 12px;
}

.deliverables-copy .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.deliverables-copy h2,
.deliverables-copy p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.deliverables-copy p:not(.eyebrow) {
  max-width: 720px;
}

.deliverables-copy .check-list {
  justify-content: center;
}

.deliverables-copy .section-actions {
  justify-content: center;
}

.check-list {
  align-items: stretch;
  margin-top: 26px;
}

.check-list span,
.mini-proof span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #d8d1c8;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.check-list svg {
  color: var(--green);
}

.authority-section {
  padding-top: 18px;
}

.authority-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(232, 197, 71, 0.16);
  border-bottom: 1px solid rgba(232, 197, 71, 0.08);
  background: transparent;
  box-shadow: none;
}

.authority-card h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.authority-card p {
  margin-bottom: 0;
}

.form-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(232, 197, 71, 0.1), transparent 34%),
    #090909;
}

.form-section::before {
  position: absolute;
  top: 14%;
  left: -12%;
  width: 680px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  box-shadow: 0 0 46px rgba(255, 255, 255, 0.24);
  transform: rotate(28deg);
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.mini-proof {
  align-items: stretch;
  margin-top: 28px;
}

.mini-proof svg {
  color: var(--gold-light);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: none;
  background: rgba(0, 0, 0, 0.28);
}

.lead-form input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.14);
}

.lead-form input.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 103, 103, 0.12);
}

.lead-form input::placeholder {
  color: rgba(169, 162, 154, 0.48);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  column-gap: 54px;
  row-gap: 18px;
}

.faq-section h2 {
  max-width: 360px;
  font-family: Inter, Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

summary::after {
  content: "+";
  color: var(--gold-light);
  font-size: 22px;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 18px 18px;
  margin-bottom: 0;
  font-size: 14px;
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
}

.footer-grid {
  display: block;
  font-size: 13px;
  text-align: center;
}

@keyframes panelSweep {
  0%,
  38% {
    transform: translateX(-90%);
  }
  68%,
  100% {
    transform: translateX(90%);
  }
}

@keyframes scanMove {
  0%,
  100% {
    left: 18%;
  }
  50% {
    left: 76%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .section-grid,
  .section-grid.reverse,
  .form-grid,
  .faq-grid,
  .authority-card {
    grid-template-columns: 1fr;
  }

  .authority-card {
    gap: 20px;
  }

  .authority-actions {
    grid-column: auto;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    min-height: 600px;
    padding: 74px 0 104px;
  }

  .hero-content {
    width: min(calc(100% - 28px), 920px);
  }

  h1 {
    max-width: 360px;
    font-size: 34px;
  }

  h2 {
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
    font-size: 34px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .section,
  .section-copy,
  .section-heading,
  .rx5d-intro-content,
  .deliverables-content,
  .deliverables-copy,
  .form-copy,
  .authority-card,
  .faq-grid {
    text-align: center;
  }

  .section-copy .eyebrow,
  .form-copy .eyebrow,
  .faq-grid .eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .section-copy p:not(.eyebrow),
  .form-copy p,
  .authority-card p,
  .faq-section h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .faq-list,
  .lead-form {
    text-align: left;
  }

  .form-section .mini-proof {
    display: none;
  }

  .eyebrow {
    display: inline-flex;
    max-width: 100%;
    flex-wrap: wrap;
    font-size: var(--eyebrow-size);
  }

  .btn {
    width: 100%;
  }

  .section-actions,
  .authority-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .authority-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
  }

  .authority-actions .btn {
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1.12;
    white-space: normal;
  }

  .authority-actions .btn svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
  }

  .hero-pill {
    width: auto;
    min-height: 44px;
    padding-left: 18px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rx-panel {
    padding: 12px;
  }

  .panel-topbar strong {
    max-width: 170px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .scan-stage {
    grid-template-columns: 1fr;
  }

  .scan-target {
    min-height: 230px;
  }

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

  .dimension-grid strong {
    min-height: 0;
  }

  .risk-cards,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .risk-cards {
    gap: 10px;
    padding: 0;
    text-align: left;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .section {
    padding: 64px 0;
  }

  .section.problem-section {
    margin-top: -58px;
    padding-top: 104px;
  }

  .risk-cards article,
  .method-steps li {
    min-height: 0;
  }

  .risk-cards article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 14px;
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.02)),
      #0c0c0d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  }

  .risk-cards svg {
    width: 38px;
    height: 38px;
    padding: 9px;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .risk-cards h3 {
    max-width: none;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.08;
  }

  .method-steps {
    gap: 10px;
    text-align: left;
  }

  .method-steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px 12px;
    padding: 14px;
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.02)),
      #0c0c0d;
  }

  .method-steps li::before {
    display: none;
  }

  .method-steps span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .method-steps h3 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .method-steps p {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.45;
  }

  .deliverables-copy .check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

  .deliverables-copy .check-list span {
    min-height: 0;
    justify-content: center;
    padding: 9px 10px;
    font-size: 12px;
    background: transparent;
  }

  .authority-section {
    padding-top: 0;
  }

  .authority-card {
    padding: 18px 0;
    border-top-color: rgba(232, 197, 71, 0.12);
    border-bottom-color: rgba(232, 197, 71, 0.06);
  }

  .authority-card h2 {
    font-size: 28px;
  }

  .instagram-btn {
    min-height: 46px;
    background: rgba(232, 197, 71, 0.035);
  }

  .lead-form {
    padding: 18px;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    max-width: 330px;
    font-size: 31px;
  }

  h2 {
    max-width: 350px;
    font-size: 32px;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: var(--panel-strong);
  border-top: 1px solid var(--line-strong);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-close {
  flex-shrink: 0;
  height: 36px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: #080808;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.cookie-close:hover {
  opacity: 0.88;
}
