:root {
  --bg-top: #4a1d8f;
  --bg-mid: #2e1065;
  --bg-bottom: #1a0840;
  --primary: #ff52b4;
  --primary-dark: #e6198c;
  --secondary: #f7941d;
  --foreground: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --border-soft: rgba(255, 255, 255, 0.07);
  --card-bg: #230e44;
  --font-body: "DM Sans", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: linear-gradient(
    160deg,
    var(--bg-top) 0%,
    var(--bg-mid) 45%,
    var(--bg-bottom) 100%
  );
  background-attachment: fixed;
  line-height: 1.5;
}

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

/*Reduced motion*/
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/*Header*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 12px 5%;
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 16px;
  background: #3e177b;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 5%;
  background: #1a0840;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-signature {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.signature-img {
  height: clamp(40px, 5.5vw, 60px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.logo-signature:hover .signature-img {
  opacity: 1;
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
}
.nav-links a:hover {
  color: var(--foreground);
}

/*Buttons*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 24px rgba(230, 25, 140, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(230, 25, 140, 0.45);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 12px;
}
.btn-full {
  width: 100%;
}
.btn-lg {
  padding: 16px 48px;
  font-size: 16px;
}

.btn-disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: not-allowed;
}

.btn-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 24px rgba(230, 25, 140, 0.35);
  cursor: pointer;
}
.btn-active:hover {
  transform: translateY(-2px);
}

/*Badge*/
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}
.badge-orange {
  background: rgba(247, 148, 29, 0.15);
  border: 1px solid rgba(247, 148, 29, 0.3);
  color: var(--secondary);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/*Hero*/
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 100px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*Hero Title Design*/
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.title-row-top {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.title-row {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--foreground);
  display: block;
}
.title-row-how,
.title-row-get,
.title-gpa-text {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
  transform: scaleY(1.15);
  transform-origin: left center;
}
.title-badge {
  width: clamp(32px, 4.5vw, 46px);
  height: clamp(32px, 4.5vw, 46px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border: 3px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", "Georgia", serif;
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  text-transform: lowercase;
  z-index: 2;
  margin: 0 -8px;
  flex-shrink: 0;
}
.title-row-bottom {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}
.title-gpa-box {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: 2px dashed rgba(255, 255, 255, 0.9);
  padding: 4px 18px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 48px);
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(230, 25, 140, 0.35);
  transform: rotate(-1deg);
}


.subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.lead {
  color: var(--muted);
  max-width: 460px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lock {
  font-size: 15px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatars {
  display: flex;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 2px solid var(--bg-mid);
  margin-left: -8px;
}
.avatars .avatar:first-child {
  margin-left: 0;
}
#waitlistCount {
  font-size: 14px;
  color: var(--muted);
}

.hero-book {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.2;
}
.book-cover {
  position: relative;
  width: 320px;
  height: 440px;
  box-shadow:
    8px 12px 40px rgba(0, 0, 0, 0.5),
    -2px -2px 10px rgba(230, 25, 140, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  animation: floatBook 3.5s ease-in-out infinite alternate;
}

@keyframes floatBook {
  0% {
    transform: translateY(0);
    box-shadow:
      8px 12px 40px rgba(0, 0, 0, 0.5),
      -2px -2px 10px rgba(230, 25, 140, 0.2);
  }
  100% {
    transform: translateY(-8px);
    box-shadow:
      8px 20px 45px rgba(0, 0, 0, 0.4),
      -2px -2px 12px rgba(230, 25, 140, 0.25);
  }
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #f7711d;
}
.book-kicker {
  position: absolute;
  top: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.8;
}
.book-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.book-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
}
.book-rule {
  width: 32px;
  height: 2px;
  background-color:  #f7711d;
}
.book-subtitle {
  font-size: 12px;
  opacity: 0.7;
}
.book-author {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 12px;
  text-align: center;
  font-size: 16px;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/*Dividers*/
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

/*Section shared*/
section {
  padding: 70px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.countdown-section,
.waitlist-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
}
.section-lead {
  color: var(--muted);
  max-width: 480px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.eyebrow-center {
  justify-content: center;
}
.eyebrow .rule {
  width: 16px;
  height: 2px;
  background: var(--primary);
}

/*Countdown*/
.eyebrow-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}
.countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(4px, 2vw, 16px);
  margin: 8px 0;
  flex-wrap: nowrap;
  justify-content: center;
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.time-block span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 4.5vw, 44px);
  background: #250d4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: clamp(45px, 11vw, 84px);
  height: clamp(45px, 11vw, 84px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
}
.time-block label {
  font-size: clamp(8px, 1.5vw, 11px);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.25vw, 2px);
  color: rgba(255, 255, 255, 0.5);
}
.colon {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 4.5vw, 44px);
  color: var(--primary);
  line-height: clamp(45px, 11vw, 84px);
}
.launch-date {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}
.hint {
  font-size: 12px;
  color: var(--muted);
}

/*About the book*/
.about-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  text-align: left;
  flex-wrap: wrap;
}
.about-text {
  flex: 1.4;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.7;
}
.about-list {
  flex: 1.1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.list-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--foreground);
  margin-bottom: 8px;
}
.chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 82, 180, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 82, 180, 0.08);
}
.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 82, 180, 0.15);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(255, 82, 180, 0.1);
}
.chip-text {
  font-family: var(--font-body);
  color: var(--foreground);
  opacity: 0.9;
  line-height: 1.4;
}

/*Author*/
.author-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  text-align: left;
  flex-wrap: wrap;
}
.author-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.author-photo {
  width: 220px;
  height: 220px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background-image: url('Assets/Author%20image.jpg');
  background-size: cover;
  background-position: center top;
}
.author-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
}
.author-role {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}
.author-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.fact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
  text-align: left;
}

.author-text {
  flex: 1.6;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.author-text p {
  color: var(--muted);
  line-height: 1.7;
}
.quote-card {
  background: #250d4f;
  border: 1px solid rgba(255, 82, 180, 0.18);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.quote-head {
  font-family: var(--font-heading);
  font-weight: 700;
}
.quote-body {
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}
.quote-attr {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

/*Buy section*/
.buy-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}

.platform-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 340px;
  max-width: 90vw;
  background: #1a0840;
  border: 2px solid var(--primary);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
}
.platform-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.platform-modal.hidden {
  display: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 4, 30, 0.88);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  padding: 10px 12px 4px;
}
.platform-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #250d4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.platform-row:hover {
  background: #2e1065;
  border-color: rgba(255, 255, 255, 0.15);
}
.platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.platform-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.platform-info strong {
  font-size: 14px;
}
.platform-info small {
  font-size: 12px;
  color: var(--muted);
}

/*Waitlist form*/
.waitlist-form {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
  text-align: left;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.field {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
}
.field input {
  background: #1d093a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--foreground);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.field input:focus {
  background: #250d4f;
  border-color: var(--primary);
  outline: none;
}
.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 90, 90, 0.6);
}

/* Phone country code selector */
.phone-input-group {
  position: relative;
  display: flex;
  background: #1d093a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.phone-input-group:focus-within {
  background: #250d4f;
  border-color: var(--primary);
}
.country-select-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 14px;
  cursor: pointer;
  color: var(--foreground);
  font-family: inherit;
  font-size: 14px;
  transition: background-color 0.2s ease;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}
.country-select-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}
.selected-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
}
.flag-img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  display: block;
}
.selected-code {
  font-weight: 500;
  opacity: 0.9;
}
.dropdown-chevron {
  font-size: 8px;
  opacity: 0.5;
  margin-left: 2px;
}
.phone-input-group input[type="tel"] {
  flex: 1;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 14px 16px !important;
  color: var(--foreground) !important;
  font-size: 14px !important;
  font-family: inherit !important;
  width: 100%;
}
.phone-input-group input[type="tel"]:focus {
  outline: none !important;
  box-shadow: none !important;
}
.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #1d093a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  flex-direction: column;
  max-height: 250px;
  display: none;
}
.country-dropdown.show {
  display: flex;
}
.country-search-wrap {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  background: #1d093a;
}
.country-search-input {
  width: 100%;
  background: #13052a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--foreground);
  font-size: 13px;
  font-family: inherit;
}
.country-search-input:focus {
  outline: none;
  border-color: var(--primary);
}
.country-list {
  overflow-y: auto;
  flex: 1;
  padding: 6px 0;
}
.country-list::-webkit-scrollbar {
  width: 6px;
}
.country-list::-webkit-scrollbar-track {
  background: transparent;
}
.country-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.country-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: var(--foreground);
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.country-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.country-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.country-item .flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
}
.country-item .name {
  opacity: 0.9;
}
.country-item .code {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  pointer-events: none;
}
.no-countries {
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.success-card {
  width: 100%;
  max-width: 560px;
  margin: 24px auto 0;
  background: #1a0840;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.success-card div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.success-card.hidden {
  display: none;
}
.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(230, 25, 140, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.success-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
}
.success-body {
  color: var(--muted);
  font-size: 14px;
}

/*Footer*/
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 5%;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 16px;
}
.copyright {
  font-size: 12px;
  color: var(--muted);
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icons a:hover {
  color: var(--primary);
  background: rgba(255, 82, 180, 0.12);
  border-color: rgba(255, 82, 180, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 82, 180, 0.15);
}

/*Confirmation Modal*/
.confirm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 400px;
  max-width: 90vw;
  background: #1a0840;
  border: 2px solid var(--primary);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1002;
}
.confirm-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.confirm-modal.hidden {
  display: none;
}
.confirm-icon {
  font-size: 40px;
  margin-bottom: 8px;
}
.confirm-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}
.confirm-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
}
.confirm-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
  background: #250d4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  border-radius: 14px;
  width: 100%;
  max-width: 320px;
}
.mini-time {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.mini-time span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}
.mini-time label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}
.mini-colon {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
}
.confirm-suffix {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/*Responsive*/
@media (max-width: 992px) {
  html {
    scroll-padding-top: 65px;
  }
  .site-header {
    justify-content: space-between;
    padding: 12px 6%;
    gap: 12px;
  }
  .site-header.scrolled {
    padding: 8px 6%;
  }
  .nav-links {
    display: none;
  }
  .logo-signature {
    margin-right: auto;
  }
  .site-header .btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 10px;
  }
  section {
    padding: 45px 6%;
  }
  h2 {
    font-size: clamp(22px, 5vw, 32px);
  }
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
    padding-top: 95px;
    padding-bottom: 45px;
    padding-left: 6%;
    padding-right: 6%;
  }
  .hero-text {
    display: contents;
  }
  .hero .badge {
    order: 1;
    font-size: 11px;
    padding: 4px 10px;
  }
  .hero-book {
    order: 2;
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 320 / 440;
    margin-bottom: 12px;
  }
  .book-cover {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .hero-title {
    order: 3;
    align-items: center;
    gap: 8px;
  }
  .title-row-top,
  .title-row-bottom {
    justify-content: center;
  }
  .title-row-how,
  .title-row-get {
    transform-origin: center center;
    letter-spacing: -0.04em;
  }
  .hero .subtitle {
    order: 4;
    font-size: 15px;
    margin-top: 8px;
  }
  .hero .lead {
    order: 5;
    font-size: 14px;
    line-height: 1.5;
  }
  .hero-ctas {
    order: 6;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 28px;
  }
  .hero-ctas .btn {
    flex: 1;
    max-width: 180px;
    padding: 10px 10px;
    font-size: clamp(11px, 3.2vw, 13px);
    border-radius: 8px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero .social-proof {
    order: 7;
  }
  .about-section,
  .author-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .about-text,
  .author-text {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  .author-card {
    flex: none;
    width: 100%;
    max-width: 260px;
  }
  .about-section .eyebrow,
  .author-section .eyebrow {
    justify-content: center;
  }
  .about-list {
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: 0;
  }
  .about-list .chip {
    width: 100%;
    max-width: 400px;
  }
  .quote-card {
    text-align: left;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .about-section .eyebrow::after,
  .author-section .eyebrow::after {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--primary);
  }
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
