:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #061211;
  color: #f3ebd2;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --bg: #061211;
  --panel: rgba(8, 24, 21, 0.24);
  --panel-strong: rgba(9, 31, 27, 0.36);
  --line: rgba(140, 236, 224, 0.2);
  --line-strong: rgba(140, 236, 224, 0.46);
  --cream: #f3ebd2;
  --muted: #c6beaa;
  --cyan: #6ee7d8;
  --gold: #d8b36a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(110, 231, 216, 0.08), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(216, 179, 106, 0.08), transparent 30rem),
    var(--bg);
}

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

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

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(216, 179, 106, 0.58);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff6d8;
  font-size: 20px;
  letter-spacing: 0.035em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  transition: color 0.18s ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--cyan);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero::after,
.image-band::after,
.process-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 18, 17, 0.62) 0%, rgba(6, 18, 17, 0.36) 46%, rgba(6, 18, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 18, 17, 0.04), rgba(6, 18, 17, 0.66));
}

.hero-bg,
.band-image,
.process-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  opacity: 0.92;
}

.hero-bg {
  background-image: url("/assets/hero-scene.webp");
}

.band-image {
  background-image: url("/assets/segments-scene.webp");
}

.process-bg {
  background-image: url("/assets/workflow-scene.webp");
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: 58px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.hero-copy {
  max-width: 730px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  max-width: 850px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.12;
}

p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.lead {
  max-width: 720px;
  color: #eee7d2;
  font-size: clamp(20px, 2vw, 27px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: #fff5d8;
  font-size: 15px;
  font-weight: 900;
}

.hero-proof span {
  position: relative;
  padding-left: 18px;
}

.hero-proof span::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--cyan);
}

.hero-note {
  align-self: end;
  padding: 28px 0 0 30px;
  border-left: 1px solid rgba(216, 179, 106, 0.34);
  background: linear-gradient(90deg, rgba(6, 18, 17, 0.18), transparent);
}

.hero-note .note-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.hero-note p {
  font-size: 17px;
}

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

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-line a,
.brief-contacts a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(216, 179, 106, 0.44);
  border-radius: 0;
  background: transparent;
  color: #f5ecd2;
  font-size: 14px;
  font-weight: 900;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.contact-line a:hover,
.contact-line a:focus-visible,
.brief-contacts a:hover,
.brief-contacts a:focus-visible {
  color: var(--cyan);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 4px 6px;
  border: 0;
  border-bottom: 1px solid rgba(243, 235, 210, 0.52);
  border-radius: 0;
  color: var(--cream);
  font-size: 16px;
  font-weight: 900;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.button.primary {
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: rgba(243, 235, 210, 0.88);
  color: #071211;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.button.ghost {
  background: transparent;
}

.hero-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(140, 236, 224, 0.28);
  border-radius: 30px;
  background: rgba(5, 18, 16, 0.36);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card img {
  border-radius: 22px;
}

.hero-card figcaption {
  padding: 16px 12px 4px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.face-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.face-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 420px;
  align-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 179, 106, 0.12), transparent 18rem),
    rgba(6, 18, 17, 0.5);
  box-shadow: var(--shadow);
}

.face-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 179, 106, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(6, 18, 17, 0.06), rgba(6, 18, 17, 0.28));
}

.face-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.face-copy {
  padding: 30px 0;
}

.story-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.story-points article {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(216, 179, 106, 0.2);
}

.story-points h3 {
  margin-bottom: 8px;
  color: #fff5d8;
}

.story-points p {
  margin: 0;
  max-width: 680px;
  font-size: 17px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.offer-outcomes {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid rgba(216, 179, 106, 0.24);
}

.offer-outcomes span {
  padding: 15px 0;
  border-bottom: 1px solid rgba(216, 179, 106, 0.16);
  color: #fff5d8;
  font-size: 16px;
  font-weight: 900;
}

.offer-section h2 {
  max-width: 780px;
}

.offer-grid article {
  min-height: 138px;
}

.feature-grid,
.segment-list,
.package-grid,
.case-grid,
.rules,
.timeline {
  display: grid;
  gap: 18px;
}

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

.feature-grid article,
.segment-list article,
.package,
.case-grid article,
.rules article,
.timeline article,
.brief-card {
  border: 1px solid rgba(140, 236, 224, 0.16);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.feature-grid article,
.segment-list article,
.case-grid article,
.rules article {
  padding: 28px;
}

.editorial-list article {
  position: relative;
  overflow: hidden;
  min-height: 124px;
  padding: 28px 32px;
  border-color: rgba(140, 236, 224, 0.14);
  background:
    linear-gradient(110deg, rgba(7, 22, 20, 0.26), rgba(7, 22, 20, 0.06)),
    rgba(7, 22, 20, 0.05);
}

.editorial-list article h3,
.editorial-list article p {
  max-width: 620px;
}

.editorial-list article::before {
  position: absolute;
  inset: 26px auto 26px 0;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(216, 179, 106, 0.58), rgba(140, 236, 224, 0.28));
}

.step-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid article:hover,
.segment-list article:hover,
.timeline article:hover,
.package:hover,
.case-grid article:hover,
.rules article:hover {
  border-color: var(--line-strong);
}

.image-band,
.process-section {
  width: 100%;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
}

.band-content,
.process-section > .section-heading,
.timeline,
.process-section .wide-proof {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.band-content {
  padding: 120px 0;
}

.segment-list {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-top: 36px;
}

.section-heading {
  margin-bottom: 40px;
}

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

.packages-heading {
  margin-bottom: 34px;
}

.packages-heading h2 {
  max-width: 920px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.package {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 30px 28px;
  border-color: rgba(140, 236, 224, 0.18);
  background:
    linear-gradient(155deg, rgba(8, 26, 23, 0.3), rgba(8, 26, 23, 0.08)),
    rgba(8, 26, 23, 0.06);
}

.package::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(216, 179, 106, 0.14), transparent 12rem);
}

.package.featured {
  border-color: rgba(216, 179, 106, 0.68);
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 179, 106, 0.18), transparent 12rem),
    linear-gradient(160deg, rgba(55, 42, 18, 0.36), rgba(9, 27, 24, 0.12)),
    rgba(9, 27, 24, 0.08);
}

.package-top {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.package-number {
  width: max-content;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.package-top span,
.package strong {
  color: var(--gold);
  font-weight: 900;
}

.package-top h3 {
  margin-bottom: 0;
  font-size: 27px;
}

.package-fit {
  min-height: 78px;
  margin-bottom: 24px;
  color: #eee7d2;
  font-size: 16px;
  line-height: 1.45;
}

.package strong {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 179, 106, 0.2);
  font-size: 16px;
}

.package ul,
.brief-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.package li,
.brief-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.package li::before,
.brief-card li::before {
  content: "✓";
  margin: 0;
  color: var(--cyan);
}

.wide-proof {
  width: 100%;
  margin-top: 28px;
  border: 1px solid rgba(216, 179, 106, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.process-section {
  padding: 110px 0;
}

.process-section > .section-heading {
  margin-bottom: 48px;
}

.timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 179, 106, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(7, 21, 19, 0.26), rgba(7, 21, 19, 0.04)),
    rgba(7, 21, 19, 0.04);
  backdrop-filter: blur(10px);
}

.timeline article {
  position: relative;
  display: flex;
  min-height: 166px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px 28px;
  border: 0;
  border-left: 1px solid rgba(216, 179, 106, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.timeline article:first-child {
  border-left: 0;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timeline article::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(216, 179, 106, 0.7), transparent);
}

.timeline p,
.case-grid p {
  font-size: 16px;
}

.proof-section {
  padding-top: 116px;
}

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

.showcase-grid article {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-color: rgba(216, 179, 106, 0.25);
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 179, 106, 0.12), transparent 10rem),
    linear-gradient(150deg, rgba(12, 31, 27, 0.32), rgba(8, 22, 20, 0.08));
}

.showcase-grid h3 {
  max-width: 240px;
  margin-bottom: 22px;
  color: #fff6d8;
  font-size: 26px;
}

.showcase-grid p {
  margin: auto 0 0;
  color: #d5cdb8;
  line-height: 1.5;
}

.showcase-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-flow {
  padding-top: 86px;
  padding-bottom: 130px;
}

.closing-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 52px;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(216, 179, 106, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(110deg, rgba(6, 18, 17, 0.74), rgba(6, 18, 17, 0.28)),
    rgba(6, 18, 17, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.closing-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("/assets/workflow-scene.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.48;
}

.closing-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 179, 106, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(6, 18, 17, 0.12), rgba(6, 18, 17, 0.5));
}

.closing-main h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.closing-main p {
  max-width: 680px;
}

.closing-aside {
  align-self: stretch;
  padding: 30px;
  border: 1px solid rgba(140, 236, 224, 0.18);
  border-radius: 24px;
  background: rgba(6, 18, 17, 0.28);
  backdrop-filter: blur(8px);
}

.closing-aside ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.closing-aside li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--cream);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.closing-aside li::before {
  content: "✓";
  margin: 0;
  color: var(--cyan);
}

.brief-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.agreement-strip article {
  padding: 24px;
  border: 1px solid rgba(216, 179, 106, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(8, 26, 23, 0.28), rgba(8, 26, 23, 0.06)),
    rgba(8, 26, 23, 0.06);
}

.agreement-strip h3 {
  margin-bottom: 12px;
  color: #fff6d8;
  font-size: 19px;
}

.agreement-strip p {
  margin: 0;
  font-size: 16px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 58px;
  border-top: 1px solid rgba(110, 231, 216, 0.24);
  color: var(--muted);
}

footer strong {
  color: var(--cream);
}

@media (max-width: 980px) {
  .site-header,
  .hero-content,
  .split-section,
  .face-section,
  .closing-panel {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero-content {
    align-items: start;
    padding-top: 46px;
  }

  .package-grid,
  .timeline,
  .case-grid,
  .agreement-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .face-visual img {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero-content,
  .section,
  .band-content,
  .process-section > .section-heading,
  .timeline,
  .process-section .wide-proof,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .feature-grid,
  .segment-list,
  .package-grid,
  .timeline,
  .case-grid,
  .agreement-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .image-band,
  .process-section {
    min-height: auto;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .face-visual img {
    min-height: 0;
  }

  .closing-panel {
    padding: 30px;
  }
}
