:root {
  color-scheme: dark;
  --header-height: 76px;
  --section-frame-gap: 0px;
  --footer-height: 112px;
  --black: #0a0a0a;
  --black-2: #101010;
  --ink: #f5f5f5;
  --muted: #b9b9b9;
  --muted-2: #858585;
  --red: #ef2020;
  --red-dark: #9e1016;
  --line: rgba(255, 255, 255, 0.14);
  --line-red: rgba(239, 32, 32, 0.55);
  --radius: 8px;
  --shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--section-frame-gap));
  scroll-snap-type: y proximity;
}

html.is-programmatic-scroll {
  scroll-snap-type: none;
}

html.is-modal-open {
  overflow: hidden;
  scroll-snap-type: none;
}

html.is-modal-open body {
  overflow: hidden;
  overscroll-behavior: none;
  padding-right: var(--scrollbar-compensation, 0px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  padding-top: calc(var(--header-height) + var(--section-frame-gap));
  background:
    radial-gradient(circle at 78% 18%, rgba(239, 32, 32, 0.12), transparent 30rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--black);
  background-size: auto, 88px 88px, 88px 88px;
  color: var(--ink);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  line-height: 1.5;
}

body::selection {
  background: var(--red);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
button,
label,
span,
strong {
  overflow-wrap: anywhere;
}

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

.container {
  width: min(1296px, calc(100% - 44px));
  min-width: 0;
  margin: 0 auto;
}

main,
section,
.hero-copy,
.hero-art,
.about-grid,
.services-grid,
.method-grid,
.steps,
.proof-grid,
.contact-grid {
  min-width: 0;
}

section {
  min-height: calc(100svh - var(--header-height) - var(--section-frame-gap));
  scroll-margin-top: calc(var(--header-height) + var(--section-frame-gap));
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 70px;
  border-bottom: 1px solid rgba(239, 32, 32, 0.08);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(239, 32, 32, 0.18);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(239, 32, 32, 0.42));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 950;
}

.brand small {
  margin-top: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.nav a {
  position: relative;
  color: #e9e9e9;
  font-size: 14px;
  font-weight: 800;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--red);
  outline: none;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line-red);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - var(--section-frame-gap));
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 44%, rgba(239, 32, 32, 0.2), transparent 25rem),
    linear-gradient(115deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.86) 54%, rgba(239, 32, 32, 0.13)),
    var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.035) 45px, transparent 46px),
    linear-gradient(transparent 0 44px, rgba(255, 255, 255, 0.035) 45px, transparent 46px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 92%, transparent);
  opacity: 0.8;
  pointer-events: none;
}

.hero-bg-word {
  position: absolute;
  right: -5vw;
  bottom: 2vh;
  color: transparent;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(110px, 18vw, 280px);
  font-weight: 950;
  line-height: 0.78;
  -webkit-text-stroke: 1px rgba(239, 32, 32, 0.38);
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header-height) - var(--section-frame-gap));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  gap: 42px;
  align-items: center;
  padding: 28px 0;
}

.kicker {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(46px, 5.25vw, 76px);
  font-weight: 950;
}

h1 span,
h2 span {
  color: var(--red);
}

h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 950;
}

h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 950;
}

.lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: #d9d9d9;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
}

.button.primary {
  background: var(--red);
  box-shadow: 0 18px 40px rgba(239, 32, 32, 0.24);
}

.button.outline {
  background: transparent;
}

.button.compact {
  min-height: 52px;
  margin-top: 28px;
  padding-inline: 28px;
}

.button:hover,
.button:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
  outline: none;
}

.button.full {
  width: 100%;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.dragon-halo {
  position: absolute;
  width: min(64vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotate(-8deg);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: auto;
  min-height: 0;
  max-width: min(100%, 610px);
  max-height: calc(100svh - 168px);
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 58px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 34px rgba(239, 32, 32, 0.32));
}

.about-section,
.services-section,
.content-section,
.academy-section,
.method-section,
.proof-section,
.contact-section {
  position: relative;
  padding: 106px 0;
  background: var(--black);
}

.about-section {
  overflow: hidden;
}

.services-section {
  padding: 82px 0 94px;
}

.method-section {
  padding: 72px 0;
}

.proof-section {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about-mark {
  position: relative;
  min-height: 470px;
}

.about-mark img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, 88vw);
  transform: translate(-50%, -50%);
  opacity: 0.92;
  filter: drop-shadow(0 0 28px rgba(239, 32, 32, 0.24));
}

.about-mark span {
  position: absolute;
  left: -32px;
  bottom: 10px;
  color: transparent;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(84px, 11vw, 168px);
  font-weight: 950;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(239, 32, 32, 0.62);
  writing-mode: vertical-rl;
  pointer-events: none;
}

.about-copy p:not(.kicker),
.section-heading p,
.content-card p,
.proof-list span,
.contact-grid p {
  color: #d0d0d0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
}

.about-copy p:not(.kicker) {
  margin: 28px 0 0;
  max-width: 800px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.profile-photo-wrap {
  position: relative;
  width: min(100%, 360px);
}

.profile-photo-wrap::before {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 0;
  border: 1px solid var(--line-red);
  content: "";
}

.profile-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line-red);
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.08);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.75fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p {
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services-grid article {
  min-height: 270px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.services-grid article:hover {
  background: rgba(239, 32, 32, 0.12);
}

.services-grid span {
  color: var(--red);
  font-weight: 950;
}

.services-grid h3 {
  margin-top: 58px;
}

.services-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.services-section .section-heading {
  margin-bottom: 34px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border: 1px solid var(--line);
  background-color: rgba(255, 255, 255, 0.015);
}

.price-card:hover {
  border-color: var(--line-red);
  background-color: rgba(239, 32, 32, 0.06);
}

.price-card.is-featured {
  border-color: var(--red);
  background:
    linear-gradient(180deg, rgba(239, 32, 32, 0.16), rgba(239, 32, 32, 0.02)),
    #0d0809;
  box-shadow: 0 24px 60px rgba(239, 32, 32, 0.18);
}

.price-head {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-card.is-featured .price-head {
  border-bottom-color: var(--line-red);
}

.price-index {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.price-badge {
  width: fit-content;
  padding: 4px 11px;
  border: 1px solid var(--line-red);
  background: rgba(239, 32, 32, 0.12);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card.is-featured .price-badge {
  border-color: var(--red);
  background: var(--red);
}

.price-card h3 {
  font-size: 20px;
  line-height: 1.12;
}

.price-for {
  margin: 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.price-value {
  margin: 20px 0 4px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.price-currency {
  margin-right: 5px;
  color: var(--red);
  font-size: 20px;
  font-weight: 950;
  vertical-align: 7px;
}

.price-term {
  margin: 0 0 20px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 24px;
  color: #d4d4d4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.35;
}

.price-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  font-weight: 950;
  content: "+";
}

.price-card .price-cta {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding-inline: 16px;
}

.pricing-note {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--muted-2) !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px !important;
}

.pricing-note a {
  color: var(--red);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-section {
  background:
    linear-gradient(180deg, #0a0a0a, #070707),
    var(--black);
}

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

.content-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.content-card > img,
.content-preview > img,
.content-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.content-preview {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.content-preview img {
  transition: transform 220ms ease, filter 220ms ease;
}

.content-preview:hover img,
.content-preview:focus-visible img {
  transform: scale(1.035);
  filter: brightness(0.82);
}

.content-preview:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.book-preview {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 7.4;
  background:
    radial-gradient(circle at 50% 20%, rgba(77, 212, 146, 0.15), transparent 18rem),
    #061318;
}

.book-preview img {
  width: auto;
  height: 82%;
  aspect-ratio: 348 / 522;
  border: 1px solid rgba(125, 255, 184, 0.26);
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.open-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(239, 32, 32, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.open-badge::before,
.open-badge::after {
  position: absolute;
  content: "";
}

.open-badge::before {
  width: 24px;
  height: 24px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: translate(-3px, 3px);
}

.open-badge::after {
  width: 32px;
  height: 4px;
  background: #fff;
  transform: rotate(-45deg);
}

.content-card > div:not(.content-media) {
  display: grid;
  align-content: start;
  padding: 22px;
}

.content-type {
  margin: 0 0 10px;
  color: var(--red) !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
  font-size: 12px !important;
  font-weight: 950;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
}

.content-card p:not(.content-type) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.content-card a,
.content-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.content-card a:hover,
.content-card a:focus-visible,
.content-action:hover,
.content-action:focus-visible {
  color: var(--red);
  outline: none;
}

.shodan-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(239, 32, 32, 0.24), rgba(10, 10, 10, 0.6)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #101010;
  background-size: auto, 36px 36px, 36px 36px;
}

.shodan-media span {
  display: block;
  width: 100%;
  color: transparent;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(38px, 5.2vw, 78px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  -webkit-text-stroke: 1px rgba(239, 32, 32, 0.8);
}

.modal {
  width: min(1100px, calc(100% - 34px));
  max-height: min(86vh, 900px);
  padding: 0;
  overflow: visible;
  overscroll-behavior: contain;
  border: 1px solid var(--line-red);
  background: transparent;
  color: var(--ink);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  max-height: min(86vh, 900px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(239, 32, 32, 0.14), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #090909;
  background-size: auto, 56px 56px, 56px 56px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.62);
}

.modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0 16px;
  border: 1px solid var(--line-red);
  background: #0b0b0b;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--red);
  outline: none;
}

.modal-grid,
.book-modal-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.modal-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
}

.book-modal-grid {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}

.book-modal-grid > img {
  width: min(100%, 330px);
  border: 1px solid rgba(125, 255, 184, 0.28);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.48);
}

.modal-copy p:not(.content-type),
.modal-aside p,
.modal-list {
  color: #d7d7d7;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
}

.modal-copy p:not(.content-type) {
  margin: 22px 0 0;
}

.modal-article {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.modal-article h3 {
  margin-top: 14px;
  color: #fff;
  font-size: 22px;
}

.modal-article p {
  margin: 0;
  color: #d7d7d7;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}

.modal-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.modal-list li {
  position: relative;
  padding-left: 24px;
}

.modal-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
}

.modal-aside {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(239, 32, 32, 0.24), rgba(10, 10, 10, 0.82)),
    #101010;
}

.modal-aside span {
  display: block;
  color: transparent;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 950;
  line-height: 0.9;
  text-align: center;
  -webkit-text-stroke: 1px rgba(239, 32, 32, 0.82);
}

.modal.modal-reading-dialog {
  width: min(880px, calc(100% - 34px));
}

.modal-reading {
  max-width: 760px;
  margin: 0 auto;
}

.modal-reading > .content-type {
  margin-top: 4px;
}

.modal-reading h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.4vw, 40px);
}

.article-meta {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.article-lead {
  margin: 20px 0 0;
  color: #e8e8e8;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.55;
}

.modal-article ul {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.modal-article ul li {
  position: relative;
  padding-left: 24px;
  color: #d7d7d7;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.modal-article ul li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
}

.modal-article code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #ffc9c9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.86em;
}

.code-block {
  margin: 6px 0 2px;
  padding: 14px 16px;
  overflow-x: auto;
  border: 1px solid var(--line-red);
  background: #060606;
}

.code-block code {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ededed;
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.defs {
  display: grid;
  gap: 10px;
  margin: 6px 0 2px;
}

.defs > div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-left: 2px solid var(--line-red);
  background: rgba(255, 255, 255, 0.022);
}

.defs dt {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.defs dd {
  margin: 0;
  color: #cfcfcf;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.modal-reading .button {
  margin-top: 30px;
}

.method-section {
  background:
    linear-gradient(90deg, rgba(239, 32, 32, 0.12), transparent 46%),
    var(--black-2);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-red);
  border-left: 1px solid var(--line-red);
  list-style: none;
}

.steps li {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line-red);
  border-bottom: 1px solid var(--line-red);
}

.steps span {
  color: var(--red);
  font-weight: 950;
}

.steps strong {
  display: block;
  margin-top: 56px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 950;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
}

.proof-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 70px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.proof-list p {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) 1fr;
  gap: 24px;
  margin: 0;
  padding: 26px;
  background: #0c0c0c;
}

.proof-list strong {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 950;
}

.proof-list span {
  font-size: 16px;
}

.contact-section {
  min-height: calc(100svh - var(--header-height) - var(--section-frame-gap) - var(--footer-height));
  padding: 44px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(239, 32, 32, 0.16), transparent 24rem),
    #080808;
}

.contact-grid p {
  max-width: 620px;
  margin: 24px 0 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line-red);
  background: rgba(10, 10, 10, 0.88);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #050505;
  color: #fff;
}

.contact-form input {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f6f6f;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  outline: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.form-status a {
  color: var(--red);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #050505;
}

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

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.academy-section {
  display: grid;
  align-items: center;
  padding: 96px 0;
  border-block: 1px solid rgba(239, 32, 32, 0.18);
  background: linear-gradient(115deg, rgba(239, 32, 32, 0.13), transparent 42%), radial-gradient(circle at 82% 50%, rgba(239, 32, 32, 0.11), transparent 26rem), #080808;
}

.academy-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: clamp(44px, 7vw, 100px); }
.academy-kicker { margin: 0 0 18px; color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.academy-copy > p:not(.academy-kicker) { max-width: 760px; color: var(--muted); font-size: 17px; }
.academy-features { display: grid; gap: 1px; margin: 34px 0; padding: 1px; list-style: none; background: rgba(239, 32, 32, 0.2); }
.academy-features li { display: grid; grid-template-columns: minmax(150px, 0.38fr) 1fr; gap: 18px; padding: 16px 18px; background: #0c0c0c; }
.academy-features strong { color: #fff; }
.academy-features span { color: var(--muted); font-size: 13px; }
.academy-console { position: relative; min-height: 540px; overflow: hidden; border: 1px solid var(--line-red); border-radius: var(--radius); background: linear-gradient(145deg, #111, #070707 68%); box-shadow: var(--shadow); }
.academy-console::after { content: "AUTHORIZED LAB"; position: absolute; right: 22px; bottom: 18px; color: rgba(255, 255, 255, 0.08); font-size: clamp(22px, 3vw, 42px); font-weight: 900; }
.academy-console-head { display: flex; align-items: center; gap: 7px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.academy-console-head span { width: 8px; height: 8px; border-radius: 50%; background: var(--red-dark); }
.academy-console-head strong { margin-left: auto; color: var(--muted-2); font-size: 11px; letter-spacing: 0.14em; }
.academy-console ol { position: relative; z-index: 2; display: grid; gap: 1px; margin: 0; padding: 34px; list-style: none; }
.academy-console li { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.academy-console li > span { color: var(--red); font-weight: 900; }
.academy-console li div { display: grid; gap: 5px; }
.academy-console li small { color: var(--muted-2); }
.academy-console > img { position: absolute; right: -70px; bottom: -90px; width: 310px; opacity: 0.13; filter: drop-shadow(0 0 28px rgba(239, 32, 32, 0.5)); }

@media (prefers-reduced-motion: no-preference) {
  .button,
  .services-grid article,
  .price-card,
  .site-header {
    transition:
      background 180ms ease,
      color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }
}

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

@media (max-width: 1240px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 32px;
  }

  .profile-photo-wrap {
    justify-self: center;
  }

  .hero-grid,
  .about-grid,
  .section-heading,
  .method-grid,
  .proof-grid,
  .academy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
    padding-top: 52px;
  }

  .hero-art {
    min-height: 620px;
  }

  .section-heading {
    gap: 18px;
  }

  .services-grid,
  .content-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 70px;
    --section-frame-gap: 0px;
  }

  html {
    scroll-snap-type: none;
  }

  .site-header {
    padding-inline: 16px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line-red);
    background: #070707;
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    gap: 34px;
    padding: 44px 0 62px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: auto;
  }

  .hero-art img {
    width: min(88%, 330px);
    min-height: auto;
    max-height: none;
  }

  .dragon-halo {
    width: min(100%, 390px);
  }

  .about-section,
  .services-section,
  .content-section,
  .academy-section,
  .method-section,
  .proof-section,
  .contact-section {
    padding: 72px 0;
  }

  .about-mark {
    display: none;
  }

  .services-grid,
  .content-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .academy-features li { grid-template-columns: 1fr; gap: 5px; }
  .academy-console { min-height: 470px; }

  .modal {
    width: calc(100% - 24px);
    max-height: 88vh;
  }

  .modal-panel {
    max-height: 88vh;
    padding: 20px;
  }

  .modal-grid,
  .book-modal-grid {
    grid-template-columns: 1fr;
  }

  .book-modal-grid > img {
    width: min(100%, 240px);
  }

  .profile-photo-wrap {
    width: min(100%, 280px);
  }

  .services-grid article,
  .steps li {
    min-height: 190px;
  }

  .services-grid h3,
  .steps strong {
    margin-top: 34px;
  }

  .proof-list p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (max-width: 460px) {
  .container {
    width: calc(100% - 30px);
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .kicker {
    font-size: 12px;
  }

  .hero-art {
    min-height: auto;
  }

  .hero-art img {
    width: min(82%, 280px);
  }

  .open-badge {
    width: 58px;
    height: 58px;
  }

  .book-preview img {
    height: 86%;
  }

  .contact-form {
    padding: 20px;
  }
}

/* ==========================================================================
   Dracul AI Conversational Widget Styles
   ========================================================================== */

.dracul-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: inherit;
}

.chat-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f0f13;
  color: #fff;
  border: 1px solid rgba(229, 9, 20, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(229, 9, 20, 0.25);
  border-radius: 50px;
  padding: 10px 18px 10px 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.chat-launcher:hover {
  background: #181820;
  border-color: #e50914;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8), 0 0 25px rgba(229, 9, 20, 0.45);
  transform: translateY(-2px);
}

.launcher-pulse {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.launcher-pulse::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: pulse-ring 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.launcher-icon {
  display: flex;
  align-items: center;
  color: #e50914;
}

.launcher-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Chat Window */
.chat-window {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: min(390px, calc(100vw - 32px));
  height: 540px;
  max-height: calc(100vh - 100px);
  background: rgba(13, 13, 17, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 9, 20, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.2);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-window.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #16161d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  background: #000;
  border: 1px solid rgba(229, 9, 20, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.chat-avatar img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid #16161d;
  border-radius: 50%;
}

.chat-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.chat-status-text {
  font-size: 11px;
  color: #a1a1aa;
}

.chat-close {
  background: transparent;
  border: none;
  color: #a1a1aa;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}

.chat-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Chat Body / Messages */
.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.chat-message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: msg-appear 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes msg-appear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
}

.message-content {
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
}

.chat-message.bot .message-content {
  background: #181820;
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px 14px 14px 2px;
}

.chat-message.bot .message-content p {
  margin: 0 0 8px;
}

.chat-message.bot .message-content p:last-child {
  margin-bottom: 0;
}

.chat-message.user .message-content {
  background: rgba(229, 9, 20, 0.2);
  color: #fff;
  border: 1px solid rgba(229, 9, 20, 0.4);
  border-radius: 14px 14px 2px 14px;
}

/* Suggestions */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  animation: msg-appear 0.3s ease forwards;
}

.suggestion-chip {
  background: #121217;
  border: 1px solid rgba(229, 9, 20, 0.3);
  color: #d4d4d8;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.suggestion-chip:hover {
  background: rgba(229, 9, 20, 0.15);
  border-color: #e50914;
  color: #fff;
  transform: translateY(-1px);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #e50914;
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Input Area */
.chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #121216;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input-area input {
  flex: 1;
  background: #1c1c24;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 10px 14px;
  border-radius: 24px;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input-area input:focus {
  border-color: #e50914;
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.chat-input-area button {
  background: #e50914;
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.chat-input-area button:hover {
  background: #b80710;
  transform: scale(1.05);
}

.chat-input-area button:disabled {
  background: #3f3f46;
  cursor: not-allowed;
  transform: none;
}

/* Form Status Enhancement */
.form-status.is-success {
  color: #4ade80 !important;
  background: rgba(74, 222, 128, 0.1) !important;
  border: 1px solid rgba(74, 222, 128, 0.3) !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  margin-top: 14px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.form-status.is-error {
  color: #f87171 !important;
  background: rgba(248, 113, 113, 0.1) !important;
  border: 1px solid rgba(248, 113, 113, 0.3) !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  margin-top: 14px !important;
  font-size: 13px !important;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .dracul-chat-widget {
    bottom: 16px;
    right: 16px;
  }
  .launcher-label {
    display: none;
  }
  .chat-launcher {
    padding: 12px;
    border-radius: 50%;
  }
  .chat-window {
    width: calc(100vw - 32px);
    height: 480px;
    bottom: 64px;
    right: 0;
  }
}
