:root {
  color-scheme: light;
  --ink: #171717;
  --ink-soft: #343434;
  --muted: #666b73;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dfded8;
  --mint: #7ed6bc;
  --mint-dark: #166a54;
  --coral: #ff6b4a;
  --sun: #ffd166;
  --blue: #4b77ff;
  --violet: #8d67ff;
  --shadow: 0 18px 44px rgb(23 23 23 / 10%);
  --container: min(1120px, calc(100% - 40px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgb(23 23 23 / 4%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(23 23 23 / 4%) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 48%, rgb(126 214 188 / 18%) 48% 58%, transparent 58%),
    linear-gradient(35deg, transparent 0 64%, rgb(255 107 74 / 13%) 64% 72%, transparent 72%);
  content: "";
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgb(23 23 23 / 10%);
  background: rgb(251 250 247 / 88%);
  backdrop-filter: blur(18px);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 840;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, var(--mint), var(--sun) 52%, var(--coral));
  color: var(--ink);
  font-weight: 900;
}

.brand-word {
  display: inline-grid;
  line-height: 1;
}

.brand-word small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--coral);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 820;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--sun);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button.soft {
  border-color: rgb(23 23 23 / 18%);
  background: rgb(255 255 255 / 72%);
  color: var(--ink);
}

.button.small {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 74px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--mint-dark);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 4px;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 11ch;
  font-size: 4.8rem;
  font-weight: 920;
}

h2 {
  max-width: 15ch;
  font-size: 3.2rem;
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
  font-weight: 860;
}

.lead {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.22rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgb(23 23 23 / 13%);
  background: rgb(255 255 255 / 70%);
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 720;
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.site-board {
  position: absolute;
  inset: 30px 0 auto auto;
  width: min(440px, 100%);
  aspect-ratio: 0.78;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(2deg);
}

.site-board::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--coral) 0 9%, transparent 9%),
    linear-gradient(90deg, var(--mint) 0 33%, var(--sun) 33% 66%, var(--blue) 66% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 21%, 0 28%);
  content: "";
}

.board-inner {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 118px 30px 30px;
}

.mock-headline {
  width: 78%;
  height: 44px;
  background: var(--ink);
}

.mock-copy {
  display: grid;
  gap: 8px;
}

.mock-copy span {
  height: 8px;
  background: var(--line);
}

.mock-copy span:nth-child(1) {
  width: 92%;
}

.mock-copy span:nth-child(2) {
  width: 68%;
}

.mock-copy span:nth-child(3) {
  width: 76%;
}

.mock-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.mock-tile {
  min-height: 96px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(23 23 23 / 9%) 0 23px, transparent 23px),
    var(--paper);
}

.mock-footer {
  height: 70px;
  margin-top: 10px;
  background:
    linear-gradient(90deg, var(--mint) 0 46%, var(--sun) 46% 68%, var(--coral) 68%);
}

.price-ticket {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: 210px;
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: 2px solid var(--ink);
  background: var(--sun);
  box-shadow: 10px 10px 0 var(--coral);
  transform: rotate(-6deg);
  padding: 20px;
}

.price-ticket strong {
  font-size: 3.1rem;
  line-height: 0.92;
}

.price-ticket span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 780;
}

.flow-note {
  position: absolute;
  right: 14px;
  bottom: 0;
  width: 250px;
  border: 2px solid var(--ink);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
  padding: 16px;
  font-weight: 800;
}

.marquee {
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  padding: 13px 18px;
  color: var(--white);
  font-weight: 850;
  white-space: nowrap;
}

.marquee-track span:nth-child(3n + 1) {
  color: var(--mint);
}

.marquee-track span:nth-child(3n + 2) {
  color: var(--sun);
}

.marquee-track span:nth-child(3n + 3) {
  color: var(--coral);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 92px 0;
}

.section.white {
  background: var(--white);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.dark .muted,
.section.dark .section-text {
  color: #c7c7c7;
}

.section.dark a {
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

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

.card,
.offer-panel,
.faq details,
.legal-block {
  border: 1px solid rgb(23 23 23 / 12%);
  border-radius: 8px;
  background: var(--white);
}

.card {
  min-height: 100%;
  padding: 24px;
  box-shadow: 0 1px 0 rgb(23 23 23 / 6%);
}

.card.accent-mint {
  border-top: 6px solid var(--mint);
}

.card.accent-coral {
  border-top: 6px solid var(--coral);
}

.card.accent-blue {
  border-top: 6px solid var(--blue);
}

.card p,
.offer-panel p,
.legal-block p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card ul,
.offer-list,
.plain-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.offer-price {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgb(255 209 102 / 90%) 0 48%, rgb(126 214 188 / 90%) 48% 100%);
  box-shadow: 12px 12px 0 var(--ink);
  padding: 32px;
}

.price-line {
  display: grid;
  gap: 6px;
}

.price-line strong {
  font-size: 5.2rem;
  line-height: 0.88;
}

.price-line span {
  font-weight: 850;
}

.offer-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.offer-panel {
  padding: 30px;
}

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

.mini-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.process {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 2px solid var(--ink);
}

.process-step {
  counter-increment: steps;
  min-height: 260px;
  padding: 28px 22px;
  border-right: 2px solid var(--ink);
  background: var(--white);
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border: 2px solid var(--ink);
  background: var(--sun);
  color: var(--ink);
  content: counter(steps, decimal-leading-zero);
  font-weight: 900;
}

.process-step:nth-child(2)::before {
  background: var(--mint);
}

.process-step:nth-child(3)::before {
  background: var(--coral);
}

.process-step:nth-child(4)::before {
  background: var(--blue);
  color: var(--white);
}

.proof {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 46px;
  align-items: center;
}

.profile-panel {
  position: relative;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  padding: 32px;
  box-shadow: 12px 12px 0 var(--mint);
}

.profile-panel p {
  color: #f3f4ff;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgb(255 255 255 / 42%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 760;
}

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

.concept {
  min-height: 310px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.concept-visual {
  height: 180px;
  border-bottom: 2px solid var(--ink);
}

.concept:nth-child(1) .concept-visual {
  background:
    linear-gradient(90deg, rgb(23 23 23 / 84%) 0 32%, transparent 32%),
    linear-gradient(180deg, var(--mint) 0 44%, var(--paper) 44%);
}

.concept:nth-child(2) .concept-visual {
  background:
    linear-gradient(135deg, transparent 0 34%, var(--sun) 34% 58%, transparent 58%),
    linear-gradient(180deg, var(--coral) 0 34%, var(--paper) 34%);
}

.concept:nth-child(3) .concept-visual {
  background:
    linear-gradient(90deg, var(--blue) 0 18%, transparent 18%),
    linear-gradient(180deg, var(--ink) 0 42%, var(--paper) 42%);
}

.concept-body {
  padding: 20px;
}

.concept-body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 19px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 840;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.52fr);
  gap: 28px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--sun);
  box-shadow: 12px 12px 0 var(--coral);
  padding: 34px;
}

.contact-band h2 {
  max-width: 13ch;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: block;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 14px;
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  background: #111111;
  color: var(--white);
}

.site-footer .container {
  padding: 58px 0 34px;
}

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

.legal-block {
  background: #191919;
  border-color: rgb(255 255 255 / 14%);
  padding: 24px;
}

.legal-block p,
.legal-block li {
  color: #c9c9c9;
}

.legal-block a {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: #c9c9c9;
  font-size: 0.92rem;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-grid,
  .offer,
  .proof,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

  .site-board {
    left: 86px;
    right: auto;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 2px solid var(--ink);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .nav > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    max-width: 10.5ch;
    font-size: 3.2rem;
  }

  h2 {
    max-width: 12ch;
    font-size: 2.3rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-header,
  .grid.three,
  .grid.two,
  .scope-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .price-line strong {
    font-size: 4.2rem;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 56px);
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    max-width: 32ch;
  }

  .section-text,
  .offer-note,
  .card p,
  .faq p,
  .concept-body p,
  .legal-block p {
    max-width: 30ch;
  }

  .offer-list,
  .plain-list {
    max-width: 28ch;
  }

  .hero-stage {
    min-height: 440px;
    overflow: hidden;
  }

  .site-board {
    left: 50%;
    width: min(330px, calc(100% - 44px));
    box-shadow: 10px 10px 0 var(--ink);
    transform: translateX(-50%) rotate(2deg);
  }

  .price-ticket {
    left: 10px;
    bottom: 46px;
    width: 170px;
    min-height: 126px;
    padding: 16px;
  }

  .price-ticket strong {
    font-size: 2.3rem;
  }

  .flow-note {
    display: none;
  }

  .process,
  .concepts {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .offer-price,
  .contact-band,
  .profile-panel {
    box-shadow: 8px 8px 0 var(--ink);
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
