:root {
  --ink: #152033;
  --ink-soft: #455167;
  --muted: #697486;
  --line: #dfe4eb;
  --surface: #ffffff;
  --surface-subtle: #f5f7f9;
  --surface-blue: #edf4ff;
  --blue: #1769e0;
  --blue-dark: #0f55bd;
  --orange: #c86d18;
  --orange-soft: #fff2e2;
  --green: #1d8553;
  --green-soft: #e8f7ef;
  --danger: #b42318;
  --danger-soft: #fff0ef;
  --success: #126b43;
  --success-soft: #e8f7ef;
  --shadow-small: 0 8px 24px rgba(22, 32, 51, 0.08);
  --shadow-medium: 0 20px 54px rgba(22, 32, 51, 0.13);
  --content: 1180px;
  --gutter: 24px;
  --header-height: 76px;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
summary {
  font: inherit;
}

button,
summary,
a {
  touch-action: manipulation;
}

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3,
.brand,
.button,
.eyebrow {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
}

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

:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(223, 228, 235, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell,
.section-shell,
.proof-shell,
.footer-shell,
.hero-shell {
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.brand img,
.footer-brand img,
.product-mark img {
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(22, 32, 51, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a,
.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

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

.language-menu {
  position: relative;
}

.language-menu summary {
  min-width: 112px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu[open] summary,
.language-menu summary:hover {
  border-color: #aeb8c8;
  color: var(--ink);
}

.language-popover {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 168px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.language-popover a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.language-popover a:hover,
.language-popover a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--surface-blue);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 17px;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(23, 105, 224, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 26px rgba(23, 105, 224, 0.28);
}

.app-store-button {
  min-height: 56px;
  justify-content: flex-start;
  color: #fff;
  background: #111722;
  box-shadow: 0 8px 20px rgba(17, 23, 34, 0.18);
}

.app-store-button:hover {
  background: #293244;
  box-shadow: 0 10px 26px rgba(17, 23, 34, 0.24);
}

.app-store-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  flex: 1;
}

.app-store-copy small,
.app-store-copy strong {
  display: block;
}

.app-store-copy small {
  color: #cdd5df;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.app-store-copy strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.button-secondary {
  min-height: 56px;
  border: 1px solid #9dbbe7;
  color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 8px 20px rgba(23, 105, 224, 0.08);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--surface-blue);
}

.button-discord {
  min-height: 48px;
  color: #fff;
  background: #5865f2;
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.2);
}

.button-discord:hover {
  background: #4752c4;
  box-shadow: 0 10px 24px rgba(88, 101, 242, 0.25);
}

.button-dark {
  color: #fff;
  background: #111722;
}

.button-dark:hover {
  background: #293244;
}

.button-kicker {
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-store-button {
  min-height: 44px;
  padding-block: 6px;
}

.nav-store-button .app-store-copy strong {
  display: none;
}

.nav-store-button .app-store-copy small {
  color: #fff;
  font-size: 11px;
  text-transform: none;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100dvh - 110px));
  overflow: hidden;
  background: #f4f6f9;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  background: #e8edf4;
  content: "";
}

.hero-shell {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 64px 70px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(640px, 58%);
}

.product-mark {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 54px;
  line-height: 1.05;
  font-weight: 820;
}

.hero-body {
  max-width: 610px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  width: min(610px, 100%);
  display: grid;
  grid-template-columns: minmax(230px, 1.08fr) minmax(220px, 0.92fr);
  align-items: center;
  gap: 12px;
}

.hero-actions .button-discord {
  width: fit-content;
  grid-column: 1 / -1;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue-dark);
}

.hero-proof {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-art {
  position: absolute;
  z-index: 2;
  top: 36px;
  right: max(calc((100vw - var(--content)) / 2 - 12px), -20px);
  width: min(570px, 47vw);
  height: calc(100% - 58px);
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-medium);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-shot-back {
  top: 9%;
  right: 1%;
  width: 48%;
  height: 78%;
  transform: rotate(2deg);
}

.hero-shot-front {
  bottom: -6%;
  left: 7%;
  width: 50%;
  height: 86%;
  transform: rotate(-2deg);
}

.hero-signal,
.insight-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(217, 224, 233, 0.95);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-small);
  font-size: 11px;
  font-weight: 760;
}

.hero-signal-timer {
  top: 14%;
  left: 1%;
}

.hero-signal-tasks {
  right: 8%;
  bottom: 10%;
}

.signal-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.signal-orange {
  background: var(--orange);
}

.signal-green {
  background: var(--green);
}

.proof-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-shell {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-shell > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.proof-shell > div:last-child {
  border-right: 0;
}

.proof-shell strong {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.proof-shell span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.section {
  padding-block: 104px;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 44px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.eyebrow-green {
  color: #66dca0;
}

.eyebrow-orange {
  color: var(--orange);
}

.section h2,
.privacy-band h2,
.final-cta-band h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
}

.section-heading > p:last-child,
.method-copy > p,
.insight-copy > p,
.email-copy > p,
.privacy-layout p,
.final-cta-layout p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-journey {
  background: var(--surface);
}

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

.journey-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.journey-card-blue {
  border-top: 4px solid var(--blue);
}

.journey-card-orange {
  border-top: 4px solid var(--orange);
}

.journey-card-green {
  border-top: 4px solid var(--green);
}

.journey-card-copy {
  min-height: 290px;
  padding: 28px 26px 24px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.journey-card-blue .step-number {
  background: var(--blue);
}

.journey-card-orange .step-number {
  background: var(--orange);
}

.journey-card-green .step-number {
  background: var(--green);
}

.journey-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.journey-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.journey-image-frame {
  height: 330px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--surface-subtle);
}

.journey-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.method-band {
  overflow: hidden;
  color: #fff;
  background: #142238;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 72px;
}

.method-copy h2 {
  color: #fff;
}

.method-copy > p {
  color: #c4cedb;
}

.method-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
}

.method-check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #112238;
  background: #66dca0;
}

.method-list strong,
.method-list small {
  display: block;
}

.method-list strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
}

.method-list small {
  color: #abb7c7;
  font-size: 13px;
  line-height: 1.55;
}

.method-media {
  position: relative;
  min-height: 610px;
}

.report-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.report-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.report-shot-primary {
  z-index: 2;
  top: 30px;
  left: 0;
  width: 52%;
  height: 560px;
  transform: rotate(-2deg);
}

.report-shot-secondary {
  top: 0;
  right: 0;
  width: 55%;
  height: 530px;
  transform: rotate(2deg);
}

.insight-band {
  background: #f6f8fa;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.insight-media {
  position: relative;
  min-height: 590px;
}

.insight-phone {
  position: absolute;
  top: 0;
  left: 10%;
  width: 62%;
  height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-medium);
  transform: rotate(-1deg);
}

.insight-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.insight-note {
  right: 3%;
  bottom: 14%;
  max-width: 210px;
}

.insight-copy {
  max-width: 600px;
}

.insight-list {
  display: grid;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
}

.insight-list span {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
}

.email-band {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.email-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.email-copy {
  max-width: 570px;
}

.offer-note {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.offer-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 25px;
  font-weight: 850;
}

.signup-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: var(--shadow-small);
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.field input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #c8d0dc;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  outline: 0;
}

.field input:hover {
  border-color: #9aa7b9;
}

.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.15);
}

.field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent-row a {
  color: var(--blue-dark);
}

.form-submit {
  width: 100%;
  min-height: 52px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.signup-form[data-loading="true"] .button-spinner {
  display: block;
}

.form-message {
  min-height: 24px;
  margin: 13px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-message[data-state="error"] {
  padding: 10px 12px;
  border: 1px solid #f1c0bc;
  border-radius: 6px;
  color: var(--danger);
  background: var(--danger-soft);
}

.form-message[data-state="success"] {
  padding: 10px 12px;
  border: 1px solid #b8dec9;
  border-radius: 6px;
  color: var(--success);
  background: var(--success-soft);
}

.privacy-band {
  padding-block: 54px;
  border-top: 1px solid var(--line);
  background: var(--surface-subtle);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
}

.privacy-band h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.privacy-layout p {
  margin-bottom: 10px;
  font-size: 14px;
}

.privacy-layout a {
  color: var(--blue-dark);
}

.final-cta-band {
  padding-block: 54px;
  color: #fff;
  background: var(--blue);
}

.final-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta-band h2 {
  max-width: 690px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 30px;
}

.final-cta-layout p {
  margin-bottom: 4px;
  color: #e4efff;
  font-size: 15px;
}

.final-cta-layout small {
  color: #c8dcfb;
  font-size: 12px;
}

.site-footer {
  padding-block: 36px;
  color: #bfc8d4;
  background: #111722;
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
}

.footer-shell p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #d7dee7;
  font-size: 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  :root {
    --gutter: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    width: 60%;
  }

  .hero-art {
    right: -30px;
    width: 48vw;
  }

  .journey-card-copy {
    min-height: 330px;
  }

  .method-layout,
  .email-layout {
    gap: 48px;
  }

  .insight-layout {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .nav-store-button {
    display: none;
  }

  .language-menu summary {
    min-width: 104px;
  }

  .hero {
    min-height: min(700px, calc(100dvh - 92px));
  }

  .hero::after {
    width: 35%;
  }

  .hero-shell {
    align-items: flex-start;
    padding-block: 44px 48px;
  }

  .hero-copy {
    width: min(600px, 84%);
  }

  .product-mark {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: 42px;
  }

  .hero-body {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .hero-proof {
    max-width: 75%;
    margin-top: 18px;
  }

  .hero-art {
    top: auto;
    right: -88px;
    bottom: -110px;
    width: 360px;
    height: 430px;
    opacity: 0.5;
  }

  .hero-signal {
    display: none;
  }

  .proof-shell {
    min-height: 86px;
  }

  .proof-shell > div {
    padding: 16px;
  }

  .proof-shell strong {
    font-size: 20px;
  }

  .proof-shell span {
    font-size: 11px;
  }

  .section {
    padding-block: 76px;
  }

  .section h2 {
    font-size: 34px;
  }

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

  .journey-card {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
  }

  .journey-card-copy {
    min-height: 0;
  }

  .journey-image-frame {
    height: 310px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .method-layout,
  .insight-layout,
  .email-layout {
    grid-template-columns: 1fr;
  }

  .method-media {
    min-height: 520px;
  }

  .report-shot-primary {
    height: 480px;
  }

  .report-shot-secondary {
    height: 450px;
  }

  .insight-layout {
    gap: 36px;
  }

  .insight-media {
    min-height: 520px;
    order: 2;
  }

  .insight-phone {
    height: 500px;
  }

  .email-layout {
    gap: 36px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 12px;
  }

  .language-menu summary {
    min-width: 48px;
    padding-inline: 11px;
  }

  .language-menu summary span {
    display: none;
  }

  .language-popover {
    position: fixed;
    top: 62px;
    right: 12px;
  }

  .hero {
    min-height: min(690px, calc(100svh - 82px));
  }

  .hero-shell {
    padding-block: 24px 28px;
  }

  .hero-copy {
    width: 100%;
  }

  .product-mark img {
    width: 40px;
    height: 40px;
  }

  .product-mark {
    margin-bottom: 14px;
  }

  .product-mark span {
    max-width: 210px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-body {
    max-width: 355px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.48;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 48px;
    width: 100%;
    max-width: none;
  }

  .hero-actions .button-discord {
    width: 100%;
    grid-column: auto;
  }

  .hero-actions .text-link {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .hero-art {
    right: -108px;
    bottom: -142px;
    width: 315px;
    height: 360px;
    opacity: 0.26;
  }

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

  .proof-shell > div {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-shell > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section h2,
  .privacy-band h2 {
    font-size: 29px;
    line-height: 1.18;
  }

  .section-heading > p:last-child,
  .method-copy > p,
  .insight-copy > p,
  .email-copy > p {
    font-size: 15px;
  }

  .journey-card {
    display: block;
  }

  .journey-card-copy {
    padding: 24px 22px;
  }

  .journey-image-frame {
    height: 300px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .method-layout {
    gap: 34px;
  }

  .method-media {
    min-height: 430px;
  }

  .report-shot-primary {
    width: 57%;
    height: 410px;
  }

  .report-shot-secondary {
    width: 59%;
    height: 385px;
  }

  .insight-media {
    min-height: 450px;
  }

  .insight-phone {
    left: 4%;
    width: 72%;
    height: 435px;
  }

  .insight-note {
    right: 0;
    bottom: 12%;
    max-width: 180px;
  }

  .signup-form {
    padding: 22px 18px;
  }

  .offer-note {
    grid-template-columns: 46px 1fr;
  }

  .offer-number {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .privacy-band {
    padding-block: 42px;
  }

  .final-cta-band {
    padding-block: 44px;
  }

  .final-cta-band h2 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
