:root {
  --yellow: #ffd600;
  --yellow-light: #ffe866;
  --black: #050505;
  --ink: #111111;
  --paper: #f4f1e8;
  --white: #f8f8f4;
  --muted: #b9b9b4;
  --line: rgba(255, 255, 255, 0.18);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.lp-container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 214, 0, 0.28);
  backdrop-filter: blur(14px);
}

.lp-navbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-logo { width: 210px; }
.lp-logo img { width: 100%; height: auto; }

.lp-header-link {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 214, 0, 0.5);
  padding-bottom: 4px;
}

.lp-hero {
  background: var(--paper);
  color: var(--ink);
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: center;
  padding: 72px 0 88px;
  overflow: hidden;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.lp-kicker,
.lp-section-index {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lp-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.lp-kicker span {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.lp-hero h1 {
  max-width: 730px;
  font-size: clamp(2.85rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.lp-hero h1 em {
  position: relative;
  display: inline;
  z-index: 1;
  font-style: normal;
}

.lp-hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.02em;
  right: -0.04em;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--yellow);
  transform: rotate(-0.7deg);
}

.lp-hero-text {
  max-width: 650px;
  margin-top: 28px;
  color: #393939;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.lp-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.lp-button:hover {
  background: var(--yellow-light);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.lp-text-link {
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}

.lp-microcopy {
  margin-top: 20px;
  color: #696969;
  font-size: 0.78rem;
}

.lp-document-wrap {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
}

.lp-document {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 12px 14px 0 var(--yellow), 14px 16px 0 var(--ink);
  transform: rotate(1deg);
}

.lp-document a {
  display: block;
  overflow: hidden;
}

.lp-document img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.lp-document a:hover img {
  filter: brightness(1.06);
  transform: scale(1.012);
}

.lp-document figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-document figcaption strong { color: var(--yellow); }
.lp-document figcaption span { color: #bdbdb8; }

.lp-document a:focus-visible {
  position: relative;
  z-index: 2;
  outline-offset: -5px;
}

.lp-question {
  position: absolute;
  z-index: 3;
  right: -35px;
  top: 45%;
  color: var(--yellow);
  font-family: var(--font-serif);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(9deg);
  -webkit-text-stroke: 2px var(--ink);
}

.lp-note {
  position: absolute;
  z-index: 4;
  color: var(--ink);
  font-family: "Comic Sans MS", cursive;
  font-size: 0.82rem;
  font-weight: 700;
}

.lp-note-top { top: -38px; right: 8px; transform: rotate(3deg); }
.lp-note-bottom { left: -30px; bottom: -42px; transform: rotate(-3deg); }

.lp-signal {
  padding: 22px 0;
  background: var(--yellow);
  color: var(--ink);
  border-block: 2px solid var(--ink);
}

.lp-signal p {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

.lp-inside,
.lp-fit,
.lp-download { padding: clamp(80px, 9vw, 120px) 0; }

.lp-inside { background: var(--black); }

.lp-section-index {
  color: var(--yellow);
  margin-bottom: 17px;
}

.lp-section-head { max-width: 820px; }

.lp-section-head h2,
.lp-fit h2,
.lp-download h2 {
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.lp-section-head h2 span,
.lp-fit h2 span,
.lp-download h2 span { color: var(--yellow); }

.lp-section-head > p:last-child {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.lp-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lp-content-grid article {
  min-height: 250px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-content-grid article > span {
  display: block;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 42px;
}

.lp-content-grid h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 14px;
}

.lp-content-grid p { color: var(--muted); font-size: 0.9rem; }

.lp-fit {
  background: var(--paper);
  color: var(--ink);
}

.lp-fit-grid,
.lp-download-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(56px, 9vw, 120px);
  align-items: start;
}

.lp-fit .lp-section-index { color: #5c5200; }

.lp-check-list {
  list-style: none;
  border-top: 2px solid var(--ink);
}

.lp-check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  font-weight: 600;
}

.lp-check-list span { color: #6c6100; font-weight: 800; }

.lp-download { background: #111111; }

.lp-download-copy > p:not(.lp-section-index) {
  max-width: 510px;
  margin-top: 24px;
  color: var(--muted);
}

.lp-privacy-note {
  max-width: 520px;
  margin-top: 40px;
  padding: 22px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.04);
}

.lp-privacy-note strong { color: var(--yellow); }
.lp-privacy-note p { color: var(--muted); margin-top: 4px; font-size: 0.9rem; }

.lp-form-card {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 10px 10px 0 var(--yellow);
}

.lp-form-tag {
  display: inline-block;
  padding: 5px 9px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-form-card h3 {
  margin-top: 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.lp-form-intro { color: #5d5d5d; margin-top: 6px; }
.lp-form-card form { margin-top: 26px; }

.lp-field { margin-top: 17px; }
.lp-field:first-of-type { margin-top: 0; }
.lp-field-hidden { position: absolute; left: -9999px; }

.lp-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-field label span { color: #696969; font-weight: 500; }

.lp-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #9f9d96;
  border-radius: 5px;
  background: #fffef8;
  color: var(--ink);
  padding: 11px 13px;
}

.lp-field input:focus { border-color: var(--ink); outline: 2px solid rgba(255, 214, 0, 0.75); }

.lp-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 20px;
  color: #555;
  font-size: 0.72rem;
  line-height: 1.45;
  cursor: pointer;
}

.lp-consent input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--ink); }
.lp-submit { width: 100%; margin-top: 22px; }
.lp-submit:disabled { cursor: wait; opacity: 0.7; transform: none; box-shadow: 5px 5px 0 var(--ink); }

.lp-feedback { min-height: 24px; margin-top: 16px; font-size: 0.82rem; font-weight: 700; }
.lp-feedback.is-success { color: #176b30; }
.lp-feedback.is-error { color: #a31515; }

.lp-form-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  color: #555;
  font-size: 0.78rem;
}

.lp-form-footer a { color: var(--ink); font-weight: 800; border-bottom: 1px solid var(--ink); }

.lp-footer {
  padding: 54px 0 26px;
  border-top: 1px solid rgba(255, 214, 0, 0.3);
  background: var(--black);
}

.lp-footer-row,
.lp-footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.lp-footer-row img { width: 190px; height: auto; }
.lp-footer-row p { margin-top: 10px; color: var(--muted); font-size: 0.82rem; }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 24px; font-size: 0.82rem; font-weight: 700; }
.lp-footer-links a:hover { color: var(--yellow); }

.lp-footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #8f8f8b;
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .lp-hero { min-height: auto; }
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-copy { max-width: 720px; }
  .lp-document-wrap { justify-self: center; width: min(86vw, 500px); margin: 32px auto 20px; }
  .lp-content-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-fit-grid,
  .lp-download-grid { grid-template-columns: 1fr; }
  .lp-fit-grid { gap: 48px; }
  .lp-download-grid { gap: 54px; }
  .lp-form-card { max-width: 620px; }
}

@media (max-width: 600px) {
  .lp-navbar { min-height: 70px; }
  .lp-logo { width: 155px; }
  .lp-header-link { font-size: 0.68rem; }
  .lp-hero { padding: 54px 0 70px; }
  .lp-hero h1 { font-size: clamp(2.45rem, 12.3vw, 3.45rem); }
  .lp-hero-actions { align-items: stretch; flex-direction: column; }
  .lp-button { width: 100%; }
  .lp-text-link { align-self: flex-start; }
  .lp-document-wrap { width: min(88vw, 480px); }
  .lp-question { right: -18px; font-size: 5rem; }
  .lp-note-top { right: 0; }
  .lp-note-bottom { left: 0; }
  .lp-inside,
  .lp-fit,
  .lp-download { padding: 72px 0; }
  .lp-content-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .lp-content-grid article { min-height: 0; }
  .lp-content-grid article > span { margin-bottom: 26px; }
  .lp-form-card { padding: 24px 19px 27px; box-shadow: 6px 6px 0 var(--yellow); }
  .lp-footer-row { align-items: flex-start; flex-direction: column; }
  .lp-footer-links { gap: 16px 22px; }
  .lp-footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
