:root {
  color-scheme: dark;
  --bg: #050606;
  --bg-soft: #090b0c;
  --panel: rgba(18, 20, 22, 0.76);
  --panel-strong: rgba(22, 24, 26, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-red: rgba(255, 42, 47, 0.44);
  --text: #f4f4f5;
  --muted: #b7b9bd;
  --faint: #777b82;
  --red: #ff2329;
  --red-deep: #bd1419;
  --green: #54ce67;
  --amber: #ffad2e;
  --yellow: #f4d64b;
  --radius: 8px;
  --max: 1120px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 9% 24%, rgba(255, 35, 41, 0.12), transparent 25rem),
    radial-gradient(circle at 86% 47%, rgba(255, 35, 41, 0.1), transparent 22rem),
    #050606;
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  line-height: 1.5;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(255, 35, 41, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

body::before {
  top: 21rem;
  right: -20rem;
  box-shadow:
    0 0 0 2rem rgba(255, 35, 41, 0.035),
    0 0 0 5rem rgba(255, 35, 41, 0.025),
    0 0 0 8rem rgba(255, 35, 41, 0.018);
}

body::after {
  left: -24rem;
  bottom: 18rem;
  box-shadow:
    0 0 0 2rem rgba(255, 35, 41, 0.035),
    0 0 0 5rem rgba(255, 35, 41, 0.022),
    0 0 0 8rem rgba(255, 35, 41, 0.015);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 0.75rem max(1.25rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 6, 0.76);
  backdrop-filter: blur(16px);
}

.site-header > .button {
  justify-self: end;
}

.brand {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  width: max-content;
  font-size: 1.18rem;
  font-weight: 800;
}

.brand strong,
.brand-icon,
h1 span,
h2 span {
  color: var(--red);
}

.brand-icon {
  width: 1.9rem;
  height: 1.9rem;
  stroke-width: 1.7;
}

.header-nav {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  color: #d8d9dc;
  font-size: 0.9rem;
  font-weight: 600;
}

.header-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.header-nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.45rem;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #ef2027, #c7181f);
  box-shadow: 0 10px 30px rgba(255, 35, 41, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff2b31, #d61b22);
  box-shadow: 0 16px 36px rgba(255, 35, 41, 0.28);
}

.button-small {
  min-height: 44px;
  padding-inline: 1.25rem;
  font-size: 0.88rem;
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
  gap: clamp(2rem, 3vw, 3.25rem);
  align-items: start;
  padding: clamp(2.35rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.2rem);
}

.hero-copy {
  max-width: 34rem;
}

.badge {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  min-height: 31px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #e6e7e8;
  background: rgba(17, 19, 21, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 35, 41, 0.8);
}

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

h1 {
  max-width: 35rem;
  margin: 1.25rem 0 1rem;
  font-size: clamp(2.8rem, 4.5vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 33rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.waitlist-card {
  position: relative;
  width: min(100%, 30rem);
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(15, 17, 18, 0.86);
  box-shadow: var(--shadow);
}

.waitlist-card h2 {
  margin-bottom: 1rem;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.email-field {
  position: relative;
  display: block;
}

.email-field input,
.footer-email input {
  width: 100%;
  height: 54px;
  padding: 0 3.2rem 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  color: #fff;
  background: rgba(15, 18, 20, 0.92);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.email-field input::placeholder,
.footer-email input::placeholder {
  color: #a3a6ab;
}

.email-field input:focus,
.footer-email input:focus {
  border-color: rgba(255, 35, 41, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 35, 41, 0.16);
}

.email-field svg {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: #c8cbd1;
  transform: translateY(-50%);
}

.waitlist-card .button,
.cta-form .button {
  width: 100%;
  margin-top: 0.8rem;
}

.privacy-note {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0;
  color: #a9adb3;
  font-size: 0.76rem;
}

.privacy-note svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--red);
}

.turnstile-mount {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 4.5rem;
  margin: 0.65rem 0 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.turnstile-mount iframe {
  max-width: 100%;
  border-radius: var(--radius);
}

.footer-form .turnstile-mount {
  margin-top: 0.9rem;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.55rem 0 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #ff5156;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.75rem;
  color: #aeb2b8;
  font-size: 0.83rem;
}

.hero-perks span {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.hero-perks svg {
  width: 1rem;
  height: 1rem;
  color: var(--red);
}

.analysis-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  padding: clamp(0.85rem, 1.3vw, 1.05rem);
  border: 1px solid rgba(255, 35, 41, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 13, 0.92);
  box-shadow: var(--shadow);
}

.analysis-card::after {
  position: absolute;
  z-index: 0;
  inset: auto -8rem -9rem auto;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 35, 41, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.2rem rgba(255, 35, 41, 0.025),
    0 0 0 4.4rem rgba(255, 35, 41, 0.018);
  content: "";
  pointer-events: none;
}

.panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.panel-header p,
.panel-header span,
.tile-title h3,
.summary-tile h3,
.recommendation-tile h3,
.community-tile h3 {
  margin: 0;
}

.panel-header p,
.tile-title h3,
.summary-tile h3,
.recommendation-tile h3,
.community-tile h3 {
  color: #f2f3f5;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-header span {
  display: block;
  color: var(--faint);
  font-size: 0.72rem;
}

.ghost-icon-button,
.outline-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #d8dadf;
  background: rgba(8, 10, 11, 0.84);
}

.ghost-icon-button {
  min-height: 31px;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 800;
  gap: 0.4rem;
}

.ghost-icon-button svg {
  width: 0.85rem;
  height: 0.85rem;
}

.analysis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(13rem, 0.95fr);
  gap: 0.62rem;
}

.profile-tile,
.risk-tile,
.patterns-tile,
.summary-tile,
.recommendation-tile,
.community-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 14, 15, 0.74);
}

.profile-tile {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 0.78rem;
  min-height: 7.9rem;
  padding: 0.8rem;
}

.avatar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-shrink: 0;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: #111214;
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.profile-tile h3 {
  margin: 0;
  font-size: 1rem;
}

.profile-tile p {
  margin: 0.2rem 0;
  color: #c9ccd2;
  font-size: 0.7rem;
}

.profile-tile .handle,
.profile-tile .messages {
  display: flex;
  gap: 0.38rem;
  align-items: center;
}

.profile-tile svg {
  width: 0.88rem;
  height: 0.88rem;
}

.handle i {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.5rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(84, 206, 103, 0.65);
}

.messages {
  margin-top: 0.7rem !important;
  color: #f1f2f4 !important;
}

.risk-tile {
  padding: 0.8rem;
}

.tile-title {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.tile-title span {
  display: inline-grid;
  place-items: center;
  width: 0.88rem;
  height: 0.88rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8cbd0;
  font-size: 0.6rem;
  font-style: normal;
}

.risk-tile strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--red);
  font-size: clamp(2.3rem, 4.5vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.risk-tile strong span {
  font-size: 0.55em;
}

.risk-tile p {
  margin-bottom: 0;
  color: #9ea2a8;
  font-size: 0.62rem;
}

.risk-tile .danger {
  margin: 0.15rem 0 0.6rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-meter,
.pattern-list i {
  overflow: hidden;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.risk-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff272c, #ff4247);
}

.patterns-tile {
  display: flex;
  flex-direction: column;
  grid-row: span 3;
  min-height: 18.25rem;
  padding: 0.8rem;
}

.pattern-list {
  display: grid;
  gap: 0.54rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.pattern-list li {
  display: grid;
  grid-template-columns: 1.45rem minmax(6.9rem, 1fr) 2.15rem minmax(3.4rem, 4.5rem);
  gap: 0.48rem;
  align-items: center;
  color: #e8e9ec;
  font-size: 0.64rem;
  font-weight: 700;
}

.pattern-list b {
  display: inline-grid;
  place-items: center;
  width: 1.22rem;
  height: 1.22rem;
  border-radius: 50%;
  color: #050606;
  background: var(--accent);
  font-size: 0.76rem;
  font-style: normal;
}

.pattern-list em {
  color: #c2c5cc;
  font-size: 0.72rem;
  font-style: normal;
  text-align: right;
}

.pattern-list i::before {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  content: "";
}

.outline-link {
  width: 100%;
  min-height: 34px;
  margin-top: auto;
  border: 1px solid rgba(255, 35, 41, 0.34);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
}

.outline-link svg {
  width: 0.9rem;
  height: 0.9rem;
  margin-left: auto;
}

.side-stack {
  display: grid;
  gap: 0.56rem;
}

.summary-tile,
.recommendation-tile,
.community-tile {
  padding: 0.62rem;
}

.summary-tile dl {
  display: grid;
  gap: 0.24rem;
  margin: 0.55rem 0 0;
}

.summary-tile div {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.summary-tile dt,
.summary-tile dd,
.recommendation-tile p,
.community-tile p {
  margin: 0;
  color: #aeb2b8;
  font-size: 0.58rem;
}

.summary-tile dd {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.summary-tile dd.low {
  color: #ff5156;
}

.recommendation-tile p {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.recommendation-tile svg {
  color: var(--red);
}

.recommendation-tile strong {
  display: block;
  margin-top: 0.48rem;
  color: var(--red);
  font-size: 0.64rem;
}

.community-tile strong {
  display: block;
  margin: 0.18rem 0 0.18rem;
  color: var(--red);
  font-size: 1.3rem;
  line-height: 1;
}

.people-row {
  display: flex;
  gap: 0.22rem;
  margin-top: 0.6rem;
}

.people-row span {
  position: relative;
  width: 0.35rem;
  height: 0.85rem;
  border-radius: 999px 999px 0.1rem 0.1rem;
  background: var(--red);
}

.people-row span::before {
  position: absolute;
  top: -0.32rem;
  left: 50%;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--red);
  content: "";
  transform: translateX(-50%);
}

.benefits {
  padding: 2.2rem 0 1.9rem;
  text-align: center;
}

.section-eyebrow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  color: #81858b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-eyebrow::before,
.section-eyebrow::after {
  width: 0.28rem;
  height: 1px;
  background: #777b82;
  content: "";
}

.benefits h2,
.faq h2 {
  margin: 0 0 1.55rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
  text-align: left;
}

.benefit-grid article {
  min-height: 15rem;
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(15, 17, 18, 0.82);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.45rem;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: rgba(255, 35, 41, 0.08);
}

.benefit-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.benefit-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.benefit-grid p {
  margin: 0;
  color: #b5b8bf;
  font-size: 0.94rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  margin-top: 1.55rem;
  padding: 1.55rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(11, 13, 14, 0.82);
  text-align: left;
}

.stats-strip article {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  gap: 1rem;
  align-items: center;
}

.stats-strip article + article {
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}

.stats-strip svg {
  width: 3rem;
  height: 3rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d8d9dd;
}

.stats-strip strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 0.45rem;
  color: #aeb2b9;
  font-size: 0.75rem;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(1.5rem, 6vw, 4rem);
  align-items: center;
  overflow: hidden;
  margin-top: 2rem;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.4rem, 6vw, 6.4rem);
  border: 1px solid rgba(255, 35, 41, 0.5);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 100%, rgba(255, 35, 41, 0.16), transparent 17rem),
    radial-gradient(circle at 100% 100%, rgba(255, 35, 41, 0.18), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(13, 14, 15, 0.9);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  bottom: -9rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 35, 41, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 1.7rem rgba(255, 35, 41, 0.026),
    0 0 0 3.4rem rgba(255, 35, 41, 0.018),
    0 0 0 5.1rem rgba(255, 35, 41, 0.013);
  content: "";
  pointer-events: none;
}

.cta-band::before {
  left: -12rem;
}

.cta-band::after {
  right: -12rem;
}

.cta-content,
.cta-form {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.cta-content p {
  max-width: 23rem;
  margin: 0;
  color: #bec1c7;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin-top: 1rem;
}

.mini-avatar {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: -0.35rem;
  border: 2px solid #1d1f21;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #f0c0a2 0 28%, transparent 29%),
    linear-gradient(135deg, #243142, #c35d4b);
}

.mini-avatar:first-child {
  margin-left: 0;
}

.mini-avatar:nth-child(2) {
  background:
    radial-gradient(circle at 50% 35%, #d99f75 0 28%, transparent 29%),
    linear-gradient(135deg, #1f242a, #8c2b33);
}

.mini-avatar:nth-child(3) {
  background:
    radial-gradient(circle at 50% 35%, #b97752 0 28%, transparent 29%),
    linear-gradient(135deg, #131415, #475e6f);
}

.mini-avatar:nth-child(4) {
  background:
    radial-gradient(circle at 50% 35%, #f0cfb1 0 28%, transparent 29%),
    linear-gradient(135deg, #25201d, #d8972f);
}

.social-proof p {
  margin: 0 0 0 0.8rem;
  color: #aeb2b9;
  font-size: 0.78rem;
}

.social-proof strong {
  color: #fff;
}

.faq {
  padding: 3.2rem 0 1.7rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.2rem;
  width: min(100%, 1020px);
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 20, 22, 0.78);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 0 1.15rem;
  border: 0;
  color: #d8dade;
  background: transparent;
  font-size: 0.83rem;
  font-weight: 600;
  text-align: left;
}

.faq-item button svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.15rem;
  color: #aeb2b9;
  font-size: 0.82rem;
  transition:
    grid-template-rows 180ms ease,
    padding-bottom 180ms ease;
}

.faq-answer::before {
  overflow: hidden;
  content: attr(data-copy);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 5, 5, 0.82);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1.35fr;
  gap: clamp(1.5rem, 6vw, 4rem);
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.6rem 0 1.2rem;
}

.footer-brand p,
.footer-form p {
  color: #9ea2a9;
  font-size: 0.84rem;
}

.social-links {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.2rem;
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #a9adb3;
}

.site-footer nav,
.footer-form {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.site-footer h2 {
  margin: 0 0 0.25rem;
  color: #f0f1f3;
  font-size: 0.82rem;
}

.site-footer nav a {
  color: #9da1a8;
  font-size: 0.83rem;
}

.footer-email {
  position: relative;
  display: block;
}

.footer-email input {
  height: 42px;
  padding-right: 3rem;
}

.footer-email button {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: var(--radius);
  color: var(--red);
  background: transparent;
  transform: translateY(-50%);
}

.footer-email svg {
  width: 1rem;
  height: 1rem;
}

.copyright {
  margin: 0;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #888d94;
  font-size: 0.78rem;
  text-align: center;
}

[dir="rtl"] .email-field svg {
  right: auto;
  left: 1rem;
}

[dir="rtl"] .footer-email button {
  right: auto;
  left: 0.35rem;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .analysis-card {
    max-width: 47rem;
  }

  .benefit-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip article + article {
    border-left: 0;
    padding-left: 0;
  }

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

@media (max-width: 760px) {
  body::before,
  body::after {
    opacity: 0.6;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 0.8rem;
    font-size: 0;
  }

  .button-small svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .waitlist-card {
    padding: 1.1rem;
  }

  .hero-perks {
    margin-top: 1.7rem;
  }

  .panel-header {
    align-items: flex-start;
  }

  .ghost-icon-button {
    width: 2rem;
    min-width: 2rem;
    padding: 0;
    font-size: 0;
  }

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

  .profile-tile {
    grid-template-columns: 4.4rem 1fr;
    min-height: auto;
  }

  .avatar {
    width: 4.4rem;
    height: 4.4rem;
  }

  .patterns-tile {
    grid-row: auto;
    min-height: auto;
  }

  .pattern-list li {
    grid-template-columns: 1.35rem minmax(0, 1fr) 2.25rem;
  }

  .pattern-list i {
    grid-column: 2 / 4;
  }

  .outline-link {
    margin-top: 1.5rem;
  }

  .benefit-grid,
  .stats-strip,
  .cta-band,
  .faq-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .stats-strip {
    padding: 1.2rem;
  }

  .cta-band {
    padding: 1.25rem;
  }
}

@media (max-width: 430px) {
  .section-shell {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .site-header {
    gap: 0.75rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .button {
    padding-inline: 1rem;
  }

  .profile-tile {
    grid-template-columns: 1fr;
  }

  .panel-header {
    gap: 0.5rem;
  }

  .risk-tile strong {
    font-size: 3.1rem;
  }

  .summary-tile div {
    gap: 0.6rem;
  }

  .footer-shell {
    padding-top: 1.4rem;
  }
}
