:root {
  --bg: rgb(26, 28, 29);
  --section: #1a1d22;
  --surface: #20242b;
  --text: #ffffff;
  --muted: #b5bfcc;
  --line: #2a2f37;
  --accent: #ff6a00;
  --accent-600: #e55f00;
  --radius: 14px;
  --container: 1120px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.2;
  margin: 0 0 12px;
}
p {
  margin: 0 0 12px;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section {
  padding: 72px 0;
}
.hero-section {
  padding: 48px 0;
}
@media (max-width: 1360px) {
  .hero-section {
    padding: 32px 0 0;
  }
}
.section--alt {
  background: var(--section);
}
.section--tight {
  padding: 48px 0;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.promo-top {
  color: #d60000;
  font-weight: 500;
  font-size: 24px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}
.promo-top a {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .promo-top {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .promo-top {
    font-size: 16px;
  }
}
.notice {
  background: #ffffff;
  color: #111;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 24px;
  font-weight: 600;
}

.hero {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.hero h1 {
  font-size: clamp(28px, 4.4vw, 54px);
}
.hero-section .hero h1 {
  font-size: 48px;
}
@media (max-width: 1024px) {
  .hero-section .hero h1 {
    font-size: 42px;
    text-align: center;
  }
}

.lead {
  color: #ffffff;
  max-width: 60ch;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .lead {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
}
.lead-desc {
  color: rgb(255, 97, 34);
  font-size: 16px;
}

@media (max-width: 1024px) {
  .lead-desc {
    text-align: center;
  }
}

.lead-info {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}
.leadform {
  padding: 25px;
  border-radius: var(--radius);
  background: rgb(51, 51, 51);
  border: 1px solid var(--line);
  width: min(550px, 100%);
}
.leadform header {
  font-weight: 800;
  margin-bottom: 10px;
}
.inputs {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .inputs {
    grid-template-columns: 1fr 1fr;
  }
  .inputs .full {
    grid-column: 1 / -1;
  }
}
.input--email {
  grid-column: 1 / -1;
}
.inputs .full .btn {
  width: 100%;
}
.input {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #111827;
  padding: 14px 16px;
  min-height: 52px;
  border-radius: 10px;
}
.input::placeholder {
  color: #6b7280;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.15s;
  box-shadow: var(--shadow);
}
.btn:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-mockup {
  width: clamp(340px, 40vw, 620px);
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}
.phone-cluster {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.phone {
  width: min(320px, 90%);
  aspect-ratio: 10/20;
  border-radius: 28px;
  background: #0c0f14;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.phone .screen {
  height: 100%;
  background: #111 url("assets/phone-screenshot.png") center/cover no-repeat;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 25px;
}
.star {
  width: 26px;
  height: 26px;
  fill: #ffb400;
}
.testimonials {
  display: grid;
  gap: 22px;
  margin-top: 26px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .testimonials {
    gap: 36px;
  }
}

.testimonials-text {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}
@media (min-width: 960px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.t-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.t-wrapper {
  display: flex;
  flex-direction: column;
}

.t-image {
  display: block;
  max-width: 100%;
  object-fit: contain;
  width: 74px;
  border-radius: 42px;
}

.t-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--section);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.t-card p {
  flex: 1;
}
.t-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mutesd);
  font-weight: 700;
}

.t-description {
  font-size: 20px;
  margin-top: 50px;
}
.cta-banner {
  background: #fff;
  color: #111;
}
.cta-banner .container {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 960px) {
  .cta-banner .container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.cta-heading {
  font-size: 46px;
  font-weight: 800;
}

.cta-text {
  font-size: 22px;
  font-weight: bold;
  margin: 30px 0;
}

.underline {
  text-decoration: underline;
}
.cta-banner .leadform {
  border-color: #e5e7eb;
  box-shadow: none;
}
.cta-banner .input {
  background: #fff;
  border-color: #e5e7eb;
  color: #111;
}
.features {
  display: grid;
  gap: 28px;
}
@media (min-width: 1000px) {
  .features {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.checklist {
  list-style: none;
  display: grid;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.alt-wrapper {
  max-width: 540px;
}

.alt-text {
  font-size: 20px;
}
.check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: rgb(255, 97, 34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  border: 2px solid rgb(255, 97, 34);
  padding: 4px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
}
.author {
  display: grid;
}
.author .portrait {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.author .bio {
  padding: 30px 35px;
  background: #fff;
  color: #111;
  border-radius: 0;
}

.bio-text {
  font-size: 20px;
}

.section-cta {
  background-color: var(--section);
}

.cta-new-wrapper {
  margin-top: 90px;
}

.cta-new-heading {
  font-size: 46px;
  font-weight: 800;
}

.cta-new-text {
  font-size: 18px;
  color: rgb(255, 97, 34);
}

.tight-heading {
  font-size: px;
  font-weight: 800;
  margin: 80px 0 15px 0;
}

.tight-text {
  font-size: 20px;
  font-family: "Source Sans Pro", "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 24px;
}

.disclaimer-heading {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.disclaimer-text {
  font-size: 20px;
  margin-top: 20px;
}

.cols {
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) {
  .cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.disclaimer {
  background: #fff;
  color: #111;
}
footer {
  padding: 36px 0;
  color: #8e9aab;
  border-top: 1px solid var(--line);
}

/* Thank you page */
.thankyou-body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 20%, #1f2530, #121417 60%);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}
.thankyou {
  width: min(680px, 90%);
  text-align: center;
}
.thankyou__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.thankyou__text {
  font-size: 20px;
  margin-bottom: 28px;
  color: #d7dde7;
}
.thankyou__btn {
  display: inline-flex;
  padding-inline: 20px;
  text-decoration: none;
}
.center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.mt-2 {
  margin-top: 10px;
}
.mt-3 {
  margin-top: 16px;
}
.mt-5 {
  margin-top: 28px;
}
.grid {
  display: grid;
  gap: 22px;
}

@media (max-width: 1024px) {
  .mobile-hidden {
    display: none !important;
  }
}
