@font-face {
  font-family: Outfit;
  src: url("/assets/fonts/outfit-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: DMSans;
  src: url("/assets/fonts/dmsans-latin.woff2") format("woff2");
  font-weight: 100 1000;
  font-display: swap;
}
@font-face {
  font-family: DMSerif;
  src: url("/assets/fonts/dm-serif-display-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --forest: #102d24;
  --forest-2: #174437;
  --ink: #17221d;
  --muted: #677269;
  --ivory: #f5f0e5;
  --paper: #fffdf8;
  --bronze: #a8742a;
  --line: rgba(23, 34, 29, 0.16);
  --shadow: 0 30px 80px rgba(16, 45, 36, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  --operations-chrome-header: rgba(11, 35, 28, 0.92);
  --operations-chrome-footer: #081b15;
  --operations-chrome-accent: #d7ba88;
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: DMSans, system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 20;
}
.analytics-consent {
  position: fixed;
  z-index: 100;
  left: 20px;
  right: 20px;
  bottom: 20px;
  margin: auto;
  width: min(760px, calc(100% - 40px));
  padding: 18px 20px;
  border-radius: 18px;
  background: #fffdf8;
  color: #17221d;
  box-shadow: 0 20px 70px rgba(16, 45, 36, 0.3);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.analytics-consent p { margin: 0; font-size: .9rem; }
.analytics-consent div { display: flex; gap: 8px; flex: 0 0 auto; }
.analytics-consent button {
  border: 1px solid rgba(23, 34, 29, .25);
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.analytics-consent button:last-child { background: var(--forest); color: #fff; }
@media (max-width: 660px) {
  .analytics-consent { align-items: stretch; flex-direction: column; }
  .analytics-consent div { justify-content: flex-end; flex-wrap: wrap; }
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.skip {
  position: absolute;
  top: -60px;
  left: 20px;
  background: #fff;
  padding: 10px 14px;
  z-index: 99;
}
.skip:focus {
  top: 12px;
}
.hero {
  min-height: calc(760px - var(--nur-header-height));
  background:
    radial-gradient(
      circle at 70% 15%,
      rgba(188, 137, 65, 0.2),
      transparent 34%
    ),
    linear-gradient(135deg, #0b231c, #153d31);
  color: #fff;
  padding: 76px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -12vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(28deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.72fr);
  gap: 9vw;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #d7ba88;
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
h1,
h2,
h3 {
  font-family: DMSerif, Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
}
h1 {
  font-size: clamp(3.7rem, 7.3vw, 7.3rem);
  letter-spacing: -0.045em;
  margin: 22px 0 28px;
  max-width: 9.5ch;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.035em;
  margin: 0;
}
h3 {
  font-size: 1.65rem;
  margin: 0;
}
.hero-copy {
  font-size: 1.15rem;
  max-width: 570px;
  color: rgba(255, 255, 255, 0.75);
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  flex-wrap: wrap;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: #fff;
  color: var(--forest);
  font: 700 0.82rem DMSans;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}
.button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.button.dark {
  background: var(--forest);
  color: #fff;
}
.button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.book-stage:before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background: rgba(213, 175, 103, 0.18);
  filter: blur(60px);
}
.book {
  width: min(350px, 85%);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 38px 42px rgba(0, 0, 0, 0.38));
  transform: rotate(3deg);
  border-radius: 2px;
}
.book-shadow {
  position: absolute;
  width: 58%;
  height: 18px;
  background: #020a07;
  filter: blur(18px);
  bottom: 28px;
  transform: rotate(3deg);
}
.trustline {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.trustline span:before {
  content: "•";
  color: #d7ba88;
  margin-right: 9px;
}
section {
  padding: 110px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 62px;
}
.section-head p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}
.deliverables {
  background: var(--paper);
}
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.deliver {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}
.deliver:last-child {
  border: 0;
}
.deliver b {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bronze);
  margin-bottom: 10px;
}
.deliver p {
  margin: 0;
  color: var(--muted);
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.workflow {
  background: var(--ivory);
  padding: 26px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
}
.workflow span {
  font: 400 2rem DMSerif;
  color: var(--bronze);
}
.workflow p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.preview {
  background: var(--forest);
  color: #fff;
}
.preview-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  align-items: center;
}
.page-frame {
  padding: 22px;
  background: #e8e0d1;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.28);
  transform: rotate(-1.3deg);
}
.page-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.preview-copy p {
  color: rgba(255, 255, 255, 0.67);
}
.proof-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  gap: 15px;
}
.proof-list li {
  padding-left: 30px;
  position: relative;
}
.proof-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d7ba88;
}
.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.boundary-card {
  background: var(--paper);
  padding: 38px;
  border: 1px solid var(--line);
}
.boundary-card.dark {
  background: var(--forest);
  color: #fff;
  border: 0;
}
.boundary-card p {
  color: var(--muted);
}
.boundary-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}
.boundary-card ul {
  padding-left: 20px;
}
.ai-note {
  border-left: 3px solid var(--bronze);
  padding: 8px 0 8px 24px;
  color: var(--muted);
}
.starter {
  background: #dcd0bc;
}
.starter-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.starter-copy {
  padding: clamp(34px, 6vw, 80px);
}
.starter-buy {
  padding: clamp(34px, 5vw, 66px);
  background: var(--forest);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price {
  font: 400 clamp(4rem, 7vw, 7rem) DMSerif;
  letter-spacing: -0.05em;
}
.price small {
  font: 500 0.9rem DMSans;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.starter-buy .button {
  margin-top: 26px;
}
.checkout-message {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  min-height: 1.4em;
}
.fine {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
}
.faq p {
  max-width: 780px;
  color: var(--muted);
}
.hub-hero h1 {
  max-width: 12ch;
}
.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-tile {
  background: var(--paper);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 28px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-tile img {
  width: 100%;
  box-shadow: 0 18px 38px rgba(16, 45, 36, 0.18);
}
.product-tile p {
  color: var(--muted);
}
.knowledge {
  background: var(--paper);
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.knowledge-card {
  min-height: 210px;
  padding: 30px;
  background: var(--ivory);
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease;
}
.knowledge-card:hover {
  position: relative;
  transform: translateY(-4px);
  background: #fff;
}
.knowledge-card b {
  display: block;
  margin-bottom: 13px;
  color: var(--bronze);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.knowledge-card h3 {
  font-size: 1.5rem;
}
.knowledge-card p {
  color: var(--muted);
  font-size: .9rem;
}
@media (max-width: 800px) {
  .hero {
    padding-top: 76px;
    min-height: auto;
  }
  .hero-grid,
  .section-head,
  .preview-grid,
  .starter-card,
  .boundary-grid,
  .product-pair {
    grid-template-columns: 1fr;
  }
  .book-stage {
    min-height: 430px;
    order: -1;
  }
  .book {
    width: 250px;
  }
  h1 {
    font-size: clamp(2.8rem, 12vw, 5rem);
    max-width: 100%;
  }
  section {
    padding: 76px 0;
  }
  .deliver-grid {
    grid-template-columns: 1fr 1fr;
  }
  .deliver:nth-child(2) {
    border-right: 0;
  }
  .deliver:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .starter-buy {
    min-height: 360px;
  }
  .product-tile {
    grid-template-columns: 1fr 120px;
  }
  .knowledge-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  .deliver-grid {
    grid-template-columns: 1fr;
  }
  .deliver {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }
  .deliver:last-child {
    border-bottom: 0 !important;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .book-stage {
    min-height: 360px;
  }
  .book {
    width: 210px;
  }
  .product-tile {
    grid-template-columns: 1fr;
  }
  .knowledge-grid {
    grid-template-columns: 1fr;
  }
  .product-tile img {
    width: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .product-tile {
    transition: none;
  }
}
