:root {
  --black: #070707;
  --black-2: #0f0f12;
  --black-3: #17171b;
  --white: #ffffff;
  --soft-white: #eeeeee;
  --muted: #b7b7bd;
  --grey: #e8e8eb;
  --grey-2: #d5d5da;
  --ink: #111114;
  --neon-green: #57ffbf;
  --neon-violet: #8b5cff;
  --neon-pink: #ff4fd8;
  --line: rgba(255,255,255,0.14);
  --dark-line: rgba(0,0,0,0.14);
  --shadow: 0 22px 80px rgba(0,0,0,0.45);
  --max: 1800px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(139,92,255,0.14), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(87,255,191,0.10), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(255,79,216,0.08), transparent 22%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 50;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,7,7,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.brand span {
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  text-decoration: none;
  color: var(--soft-white);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.88rem;
  padding: 10px 13px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.site-nav a:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.site-nav .nav-cta {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.site-nav .nav-cta:hover { background: var(--neon-green); border-color: var(--neon-green); color: var(--black); }
.menu-toggle { display: none; }

.section-pad { padding: clamp(72px, 8vw, 150px) 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--neon-green);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.17em;
  font-size: 0.85rem;
}

h1, h2, h3 {
  font-family: "Oswald", "Roboto Condensed", Impact, sans-serif;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(4.2rem, 9.4vw, 11.8rem);
  max-width: 1050px;
}
h2 {
  font-size: clamp(2.8rem, 6.2vw, 7.4rem);
  max-width: 1200px;
}
h3 { font-size: clamp(1.6rem, 2vw, 2.35rem); }
p { margin: 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 86px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.98), rgba(7,7,7,0.88) 55%, rgba(7,7,7,0.72)),
    radial-gradient(circle at 78% 34%, rgba(139,92,255,0.18), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(87,255,191,0.10), transparent 24%),
    var(--black);
}
.hero::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 2px;
  right: -250px;
  top: 33%;
  background: linear-gradient(90deg, transparent, rgba(87,255,191,0.45), transparent);
  transform: rotate(-31deg);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(420px, 0.7fr);
  gap: clamp(40px, 5vw, 110px);
  align-items: center;
}
.hero-subtitle {
  max-width: 820px;
  color: var(--soft-white);
  font-size: clamp(1.2rem, 1.7vw, 2.05rem);
  line-height: 1.45;
  margin: 28px 0 34px;
}
.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-points { margin-top: 28px; color: var(--muted); }
.hero-points span {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,0.04);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.24); }
.btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-primary:hover { background: var(--neon-green); border-color: var(--neon-green); color: var(--black); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.36); }
.btn-secondary:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.hero-visual {
  position: relative;
  min-height: 640px;
}
.book-card {
  position: absolute;
  inset: 0 10% auto auto;
  width: min(88%, 430px);
  background: rgba(255,255,255,0.06);
  padding: 14px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.2);
  transform: rotate(2deg);
}
.book-card img { border-radius: 16px; }
.pressure-card {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: min(88%, 440px);
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(16,16,18,0.92);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow);
}
.pressure-card strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.pressure-card span { color: var(--soft-white); }

.ticker {
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  border-block: 1px solid rgba(255,255,255,0.2);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker span {
  display: inline-block;
  padding: 13px 28px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}
.ticker span:nth-child(odd) { color: #4d4d55; }
@keyframes ticker { to { transform: translateX(-50%); } }

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: start;
}
.intro-copy {
  color: var(--soft-white);
  font-size: clamp(1.05rem, 1.15vw, 1.32rem);
  max-width: 900px;
}
.intro-copy p + p { margin-top: 22px; }

.method-panel {
  background:
    radial-gradient(circle at 15% 15%, rgba(87,255,191,0.08), transparent 22%),
    linear-gradient(180deg, #0a0a0c, #101014);
  position: relative;
  overflow: hidden;
}
.method-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, transparent 0 58%, rgba(139,92,255,0.08) 58.2%, transparent 58.7% 100%);
}
.method-header { position: relative; z-index: 1; margin-bottom: 46px; }
.method-header h2 { max-width: 1320px; }
.method-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.method-step {
  min-height: 340px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--grey);
  color: var(--ink);
  border: 1px solid var(--dark-line);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}
.method-step span {
  font-family: "Oswald", sans-serif;
  display: block;
  color: var(--black);
  font-size: 5rem;
  line-height: .8;
  font-weight: 700;
  margin-bottom: 34px;
}
.method-step h3 { margin-bottom: 15px; }
.method-step p { color: #29292e; }

.black-panel {
  background:
    radial-gradient(circle at 80% 20%, rgba(139,92,255,0.08), transparent 22%),
    linear-gradient(180deg, var(--black), #0d0d10);
}
.section-title-center {
  text-align: center;
  margin-bottom: 46px;
  display: grid;
  place-items: center;
}
.section-title-center p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.15rem;
  margin-top: 20px;
}
.pricing-line {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.work-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: var(--grey);
  color: var(--ink);
}
.work-label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 24px;
  color: #44444c;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.work-card h3 { margin-bottom: 18px; }
.work-card p:not(.work-label) { color: #303036; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.book-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(87,255,191,0.08), transparent 24%),
    #111;
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 54%;
  background: #e7e7ea;
  opacity: 1;
}
.book-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.book-copy { max-width: 720px; }
.book-copy h2 { margin-bottom: 26px; }
.large-copy {
  font-size: clamp(1.25rem, 1.4vw, 1.8rem);
  line-height: 1.38;
  color: var(--soft-white);
  margin-bottom: 24px;
}
.book-copy p:not(.eyebrow):not(.large-copy) { color: var(--muted); margin-bottom: 24px; }
.check-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--soft-white);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
}
.spread-frame {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}
.spread-frame img { border-radius: 18px; }

.author-section {
  background:
    radial-gradient(circle at 30% 30%, rgba(139,92,255,0.10), transparent 26%),
    linear-gradient(90deg, rgba(7,7,7,0.98), rgba(7,7,7,0.9));
}
.author-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.author-badge {
  min-height: 420px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 44px;
  background: var(--grey);
  color: var(--black);
  box-shadow: var(--shadow);
  outline: 1px solid rgba(255,255,255,0.12);
}
.author-badge span {
  font-family: "Oswald", sans-serif;
  font-size: 7rem;
  line-height: .8;
  font-weight: 700;
}
.author-badge strong {
  margin-top: 24px;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
}
.author-badge em { color: #333; font-style: normal; font-weight: 800; }
.author-copy p:not(.eyebrow) {
  max-width: 980px;
  font-size: clamp(1.05rem, 1.18vw, 1.35rem);
  color: var(--soft-white);
}
.author-copy p + p { margin-top: 22px; }
.author-copy h2 { margin-bottom: 28px; }

.contact-section {
  background: var(--grey);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.contact-section::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -220px;
  top: -280px;
  border-radius: 50%;
  border: 12px solid rgba(0,0,0,0.05);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-copy .eyebrow { color: #333; }
.contact-copy h2 { margin-bottom: 28px; }
.contact-copy p:not(.eyebrow) { font-size: 1.15rem; max-width: 720px; }
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.contact-lines a {
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
}
.contact-lines a:hover { text-decoration: underline; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 18px 60px rgba(0,0,0,0.14);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(0,0,0,0.16);
  background: #fff;
  color: var(--black);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #444; }
.contact-form .btn-primary { width: fit-content; border: none; background: var(--black); color: var(--white); }
.contact-form .btn-primary:hover { background: #333; color: var(--white); }
.form-note { color: #333; font-size: 0.9rem; }

.site-footer {
  background: var(--black);
  color: var(--soft-white);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  flex-wrap: wrap;
}
.footer-inner a { text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

@media (max-width: 1260px) {
  .hero-grid,
  .book-grid,
  .contact-grid,
  .split-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 710px; max-width: 640px; }
  .method-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-grid .work-card:last-child { grid-column: 1 / -1; }
  .book-section::before { inset: auto 0 0 0; height: 42%; }
  .author-grid { grid-template-columns: 1fr; }
  .author-badge { min-height: 260px; }
}

@media (max-width: 960px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { min-height: 74px; }
  .brand img { width: 54px; height: 54px; }
  .brand span { font-size: 1.25rem; }
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
  }
  .menu-toggle span:not(.sr-only) {
    height: 2px;
    background: var(--black);
    border-radius: 999px;
  }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 6px;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.28);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(.96) translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateY(0);
  }
  .site-nav a { padding: 12px 14px; }
  h1 { font-size: clamp(3.55rem, 18vw, 7.4rem); }
  h2 { font-size: clamp(2.4rem, 13vw, 5.8rem); }
  .section-pad { padding: 72px 0; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 650px; }
}

@media (max-width: 720px) {
  .method-steps,
  .work-grid { grid-template-columns: 1fr; }
  .work-grid .work-card:last-child { grid-column: auto; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .hero-visual { min-height: 560px; }
  .book-card { width: 78%; right: 2%; }
  .pressure-card { width: 86%; bottom: 12px; padding: 18px; }
  .pressure-card strong { font-size: 1.45rem; }
  .work-card, .method-step { min-height: auto; }
  .book-section::before { display: none; }
  .spread-frame { transform: none; }
  .author-badge span { font-size: 5rem; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .hero-points span { width: 100%; text-align: center; }
}

@media (max-width: 460px) {
  .hero-visual { min-height: 500px; }
  .book-card { width: 86%; }
  .pressure-card { position: relative; width: 100%; bottom: auto; margin-top: 390px; }
}

/* Surgical update: clearer violet card separation for Method and Work sections */
.method-step:nth-child(1) {
  background: #f1eeff;
  border-color: rgba(139,92,255,0.30);
}
.method-step:nth-child(2) {
  background: #e9e2ff;
  border-color: rgba(139,92,255,0.34);
}
.method-step:nth-child(3) {
  background: #e0d5ff;
  border-color: rgba(139,92,255,0.38);
}
.method-step:nth-child(4) {
  background: #d7c8ff;
  border-color: rgba(139,92,255,0.42);
}
.method-step {
  box-shadow: 0 20px 58px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.55);
}

.work-card:nth-child(1) {
  background: #f0ecff;
  border-color: rgba(139,92,255,0.30);
}
.work-card:nth-child(2) {
  background: #e6ddff;
  border-color: rgba(139,92,255,0.36);
}
.work-card:nth-child(3) {
  background: #dccfff;
  border-color: rgba(139,92,255,0.42);
}
.work-card {
  box-shadow: 0 20px 58px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.55);
}


/* Author image */
.author-photo {
  margin: 0;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.16);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1260px) {
  .author-photo { min-height: 620px; max-width: 560px; }
}

@media (max-width: 720px) {
  .author-photo { min-height: 520px; }
}
