@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --color-bg: #0e131b;
  --color-bg-alt: #0b1017;
  --color-surface: #161d29;
  --color-primary: #e6462e;
  --color-primary-soft: #ff6a3d;
  --color-primary-strong: #bf2a1b;
  --color-text: #e6edf5;
  --color-text-muted: #91a0b5;
  --color-border: #243043;
  --color-shadow-soft: rgba(0, 0, 0, 0.28);
}

body,
button,
input,
textarea {
  font-family: "Outfit", sans-serif;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover {
  color: var(--color-primary-soft);
  text-decoration: underline;
}

.venturist-space-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
}
.venturist-space-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}
.venturist-space-header__brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.venturist-space-header__brand-text {
  font-weight: 600;
}
.venturist-space-header__nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.venturist-space-header__nav-link {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--color-text-muted);
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}
.venturist-space-header__nav-link:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

.venturist-space-main > section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.venturist-space-hero {
  text-align: center;
}
.venturist-space-hero__tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.venturist-space-hero__tag {
  padding: 4px 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.venturist-space-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 8px auto 12px;
}
.venturist-space-hero__lead {
  max-width: 860px;
  margin: 0 auto 20px;
  color: var(--color-text-muted);
}
.venturist-space-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.venturist-space-hero__cta {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px var(--color-shadow-soft);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    opacity 0.18s ease;
}
.venturist-space-hero__cta:hover {
  background: var(--color-primary-strong);
  transform: translateY(-1px);
  text-decoration: none;
}

.venturist-space-steps__title,
.venturist-space-levels__title,
.venturist-space-mechanics__title,
.venturist-space-description__title,
.venturist-space-features__title,
.venturist-space-gallery__title,
.venturist-space-faq__title,
.venturist-space-testimonials__title,
.venturist-space-cta-final__title {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 16px;
}
.venturist-space-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.venturist-space-steps__item {
  background: var(--color-surface);
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 3px solid var(--color-primary);
}
.venturist-space-steps__step-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.venturist-space-steps__step-text {
  color: var(--color-text-muted);
}

.venturist-space-levels__intro {
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.venturist-space-levels__bullets {
  margin: 0 0 12px 18px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.venturist-space-levels__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.venturist-space-levels__tag {
  padding: 4px 10px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.venturist-space-mechanics--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}
.venturist-space-mechanics__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px var(--color-shadow-soft);
}
.venturist-space-mechanics__list {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
}
.venturist-space-mechanics__text-col {
  background: var(--color-surface);
  padding: 16px;
  border-radius: 12px;
}

.venturist-space-description p {
  color: var(--color-text-muted);
  margin: 0 0 12px;
}

.venturist-space-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.venturist-space-features__item {
  background: var(--color-surface);
  padding: 14px;
  border-radius: 12px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}
.venturist-space-features__item:hover {
  transform: translateY(-2px);
}
.venturist-space-features__item-title {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.venturist-space-features__item-text {
  color: var(--color-text-muted);
}

.venturist-space-gallery__subtitle {
  color: var(--color-text-muted);
  margin: 0 0 14px;
}
.venturist-space-gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.venturist-space-gallery__item {
  background: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
}
.venturist-space-gallery__img {
  width: 100%;
  height: auto;
  display: block;
}
.venturist-space-gallery__caption {
  display: block;
  padding: 8px 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.venturist-space-faq__accordion {
  display: grid;
  gap: 10px;
}
.venturist-space-faq__item {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 8px 10px;
}
.venturist-space-faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    opacity 0.18s ease;
}
.venturist-space-faq__question:hover {
  background: var(--color-bg-alt);
}
.venturist-space-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.2s ease,
    opacity 0.18s ease,
    padding 0.18s ease;
}
.venturist-space-faq__question[aria-expanded="true"]
  + .venturist-space-faq__answer {
  max-height: 320px;
  opacity: 1;
  padding: 6px 10px 12px;
  color: var(--color-text-muted);
}

.venturist-space-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.venturist-space-testimonials__card {
  background: var(--color-surface);
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--color-shadow-soft);
  transition: transform 0.18s ease;
}
.venturist-space-testimonials__card:hover {
  transform: translateY(-2px);
}
.venturist-space-testimonials__quote {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.venturist-space-testimonials__persona {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.venturist-space-cta-final {
  text-align: center;
}
.venturist-space-cta-final__subtitle {
  color: var(--color-text-muted);
  margin: 0 0 14px;
}
.venturist-space-cta-final__cta {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-soft)
  );
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}
.venturist-space-cta-final__cta:hover {
  transform: translateY(-1px);
  text-decoration: none;
  opacity: 0.95;
}

.venturist-space-footer {
  border-top: 1px solid var(--color-border);
  padding: 20px;
  background: var(--color-bg-alt);
}
.venturist-space-footer__nav-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.venturist-space-footer__nav-link {
  color: var(--color-text-muted);
  padding: 6px 8px;
  border-radius: 8px;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}
.venturist-space-footer__nav-link:hover {
  color: var(--color-text);
  background: var(--color-surface);
}
.venturist-space-footer__copy {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.venturist-space-legal {
  padding: 64px 20px;
}
.venturist-space-legal__inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.venturist-space-legal__title {
  margin: 0 0 6px;
}
.venturist-space-legal__subtitle {
  margin: 0 0 6px;
  font-weight: 600;
}
.venturist-space-legal__text {
  color: var(--color-text-muted);
  margin: 0 0 10px;
}
.venturist-space-legal__list {
  margin: 0 0 10px 18px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.venturist-space-legal__link {
  color: var(--color-primary);
}
.venturist-space-legal__link:hover {
  color: var(--color-primary-soft);
}

.venturist-space-reach__inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.venturist-space-reach__intro-heading {
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 0;
}
.venturist-space-reach__intro-text {
  color: var(--color-text-muted);
  margin: 0;
}
.venturist-space-reach__group {
  background: var(--color-surface);
  padding: 16px;
  border-radius: 12px;
}
.venturist-space-reach__group-heading {
  margin: 0 0 6px;
}
.venturist-space-reach__group-text {
  color: var(--color-text-muted);
  margin: 0 0 10px;
}
.venturist-space-reach__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.venturist-space-reach__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  align-items: center;
}
.venturist-space-reach__label {
  color: var(--color-text-muted);
}
.venturist-space-reach__value a {
  word-break: break-all;
}

.privacy-pane {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  max-width: 760px;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 40px var(--color-shadow-soft);
  padding: 14px;
  border-radius: 12px;
  z-index: 999;
  display: grid;
  gap: 12px;
}
.privacy-pane--hidden {
  display: none;
}
.privacy-pane__header h2,
.privacy-pane__title {
  margin: 4px 0 6px;
  font-size: 20px;
}
.privacy-pane__badge {
  display: inline-block;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
}
.privacy-pane__body {
  display: grid;
  gap: 10px;
}
.privacy-pane__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.privacy-pane__category {
  background: var(--color-bg-alt);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}
.privacy-pane__category--necessary {
  border-color: var(--color-primary);
}
.privacy-pane__category-title {
  margin: 0 0 6px;
  font-size: 1rem;
}
.privacy-pane__switch {
  display: flex;
  gap: 8px;
  align-items: center;
}
.privacy-pane__switch input {
  accent-color: var(--color-primary);
}
.privacy-pane__privacy-link a {
  color: var(--color-primary);
}
.privacy-pane__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.privacy-pane__actions button {
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  color: var(--color-text);
  padding: 10px 14px;
  border-radius: 10px;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}
.privacy-pane__actions button:hover {
  background: var(--color-surface);
  transform: translateY(-1px);
}
.privacy-pane__actions button:last-child {
  background: var(--color-primary);
  border-color: transparent;
  color: #fff;
}
.privacy-pane__actions button:last-child:hover {
  background: var(--color-primary-strong);
}

@media (max-width: 1199px) {
  .venturist-space-features__grid,
  .venturist-space-gallery__row,
  .venturist-space-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .venturist-space-mechanics--split {
    grid-template-columns: 1fr 1fr;
  }
  .venturist-space-header {
    flex-wrap: wrap;
  }
  .privacy-pane {
    right: 12px;
    left: 12px;
    max-width: none;
  }
  .privacy-pane__categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .venturist-space-main > section,
  .venturist-space-legal {
    padding: 44px 16px;
  }
  .venturist-space-hero__actions .venturist-space-hero__cta,
  .venturist-space-cta-final__cta {
    width: 100%;
  }
  .venturist-space-gallery__row,
  .venturist-space-features__grid,
  .venturist-space-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .venturist-space-mechanics--split {
    grid-template-columns: 1fr;
  }
  .venturist-space-reach__row {
    grid-template-columns: 1fr;
  }
  .venturist-space-header__nav-list {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}
