:root {
  color-scheme: dark;
  --ink: #f6efe2;
  --ink-soft: #c7bbab;
  --ink-muted: #9f9486;
  --page: #090d0c;
  --muted: #0f1513;
  --surface: #121917;
  --surface-soft: #18211e;
  --line: rgba(224, 207, 175, 0.18);
  --accent: #e85a2a;
  --accent-dark: #b94020;
  --accent-warm: #f2b53a;
  --accent-soft: #fff1dc;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--ink-soft);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--accent-warm);
  color: #111;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(7, 9, 8, 0.84), rgba(7, 9, 8, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 8, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  width: 178px;
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
}

.nav-links .nav-cta {
  background: var(--accent-warm);
  color: #111;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--accent-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #050606;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/media/voso-media-hero.png");
  background-size: cover;
  background-position: center right;
  filter: saturate(0.9) brightness(0.72);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(7, 9, 8, 0.7) 45%, rgba(7, 9, 8, 0.16) 78%),
    linear-gradient(0deg, rgba(7, 9, 8, 0.92), rgba(7, 9, 8, 0.08) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 158px 0 86px;
}

.hero-content h1 {
  max-width: 840px;
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 4.55rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--accent-warm);
  color: #111;
  box-shadow: 0 14px 34px rgba(242, 181, 58, 0.18);
}

.button-primary:hover {
  background: var(--accent-soft);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-light {
  background: var(--accent-warm);
  color: #111;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-warm);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 70px 0;
}

.muted {
  background: var(--muted);
}

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

.split h2,
.section-heading h2,
.value-grid h2,
.ecosystem h2,
.process h2,
.contact-aside h2,
.page-hero h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.intro-copy p {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 1.06rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading p {
  max-width: 680px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.price-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card {
  padding: 24px;
}

.card h3,
.benefits h3,
.ecosystem-items h3,
.steps h3,
.contact-points h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.card p,
.benefits p,
.ecosystem-items p,
.steps p,
.contact-points p {
  margin-bottom: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-list a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.service-list a:hover {
  border-color: rgba(232, 90, 42, 0.4);
  box-shadow: var(--shadow);
}

.visual-paths {
  padding-top: 0;
  background: var(--page);
}

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

.path-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050606;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.path-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.76);
  transition: transform 220ms ease, filter 220ms ease;
}

.path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.12) 58%),
    linear-gradient(90deg, rgba(5, 6, 6, 0.48), rgba(5, 6, 6, 0.04));
}

.path-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) brightness(0.86);
}

.path-card-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.path-card-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-warm);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.path-card-copy h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.08;
}

.path-card-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 56px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 36px;
}

.benefits > div {
  padding-top: 18px;
  border-top: 2px solid var(--accent-warm);
}

.ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 46px;
}

.ecosystem-main p:last-child {
  max-width: 590px;
}

.ecosystem-items {
  display: grid;
  gap: 18px;
}

.ecosystem-items > div {
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--accent);
}

.cta-band {
  background: linear-gradient(135deg, #171717 0%, #2b211c 45%, #5f2a16 100%);
  color: var(--white);
  padding: 58px 0;
}

.cta-band .eyebrow,
.cta-band p,
.cta-band h2 {
  color: var(--white);
}

.cta-inner {
  justify-content: space-between;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.site-footer {
  padding: 34px 0;
  background: #050606;
  color: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.page-hero {
  min-height: 54svh;
  display: grid;
  align-items: end;
  padding: 158px 0 76px;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(7, 9, 8, 0.72) 48%, rgba(7, 9, 8, 0.32) 82%),
    linear-gradient(0deg, rgba(7, 9, 8, 0.88), rgba(7, 9, 8, 0.08) 64%),
    url("/assets/media/voso-media-hero.png") center right / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 880px;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-detail-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.service-detail h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.number {
  margin-bottom: 8px;
  color: var(--accent-warm);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

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

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(232, 90, 42, 0.55);
  box-shadow: var(--shadow);
}

.price-card.wide {
  grid-column: span 2;
}

.package-label {
  margin-bottom: 12px;
  color: var(--accent-warm);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price-card h2 {
  margin-bottom: 14px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.price-card .check-list {
  margin: 12px 0 22px;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-link {
  margin-top: auto;
  color: var(--accent-warm);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
}

.steps {
  display: grid;
  gap: 18px;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #111;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 110px;
}

.contact-aside > p {
  max-width: 540px;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-points > div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-points a {
  color: var(--accent-warm);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(224, 207, 175, 0.22);
  border-radius: var(--radius);
  background: #0e1412;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(232, 90, 42, 0.18);
  border-color: var(--accent);
}

.form-button {
  width: fit-content;
}

@media (max-width: 980px) {
  .nav {
    align-items: center;
    flex-direction: row;
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 9, 8, 0.94), rgba(7, 9, 8, 0.68)),
      linear-gradient(0deg, rgba(7, 9, 8, 0.9), rgba(7, 9, 8, 0.14));
  }

  .hero-content {
    padding: 158px 0 68px;
  }

  .hero-content h1 {
    font-size: 3.35rem;
  }

  .split h2,
  .section-heading h2,
  .value-grid h2,
  .ecosystem h2,
  .process h2,
  .contact-aside h2,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .split,
  .value-grid,
  .ecosystem,
  .process,
  .contact-layout,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .card-grid.three,
  .service-list,
  .pricing-grid,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.wide {
    grid-column: span 2;
  }

  .contact-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    gap: 12px;
  }

  .brand {
    width: 150px;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 9, 8, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    text-align: center;
    white-space: normal;
  }

  .hero-media {
    background-position: center;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .split h2,
  .section-heading h2,
  .value-grid h2,
  .ecosystem h2,
  .process h2,
  .contact-aside h2,
  .page-hero h1,
  .cta-inner h2 {
    font-size: 2rem;
  }

  .service-detail h2,
  .price-card h2 {
    font-size: 1.75rem;
  }

  .section,
  .section-tight {
    padding: 62px 0;
  }

  .page-hero {
    min-height: 58svh;
    padding: 132px 0 54px;
  }

  .card-grid.four,
  .card-grid.three,
  .service-list,
  .pricing-grid,
  .path-grid,
  .benefits,
  .two-column,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .path-card img {
    min-height: 360px;
  }

  .price-card.wide {
    grid-column: span 1;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-button,
  .button {
    width: 100%;
  }
}
