:root {
  --green: #aadb18;
  --black: #060606;
  --graphite: #2c373d;
  --white: #dfdfdf;
  --muted: #aeb6b9;
  --line: rgba(223, 223, 223, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(170, 219, 24, 0.16), transparent 24rem),
    linear-gradient(135deg, #060606 0%, #111719 48%, #060606 100%);
  color: var(--white);
  font-family: iBrand, Nexa, Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.promo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  background: var(--green);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-bar span {
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(6, 6, 6, 0.35);
  border-radius: 999px;
  font-size: 0.68rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  min-width: 172px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.app-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 900;
  overflow: hidden;
}

.app-icon img {
  width: 120px;
  max-width: none;
  transform: translateX(28px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta {
  padding: 0 1rem;
  background: rgba(223, 223, 223, 0.08);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 4rem;
  max-width: 1180px;
  min-height: calc(100vh - 116px);
  margin: 0 auto;
  padding: 4.2rem 1.25rem 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  font-weight: 900;
}

.hero-text {
  max-width: 660px;
  color: #c7ced1;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 2rem;
}

.hero-points span {
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(170, 219, 24, 0.28);
  border-radius: 8px;
  background: rgba(170, 219, 24, 0.08);
  color: #f0f6d4;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.primary-button {
  padding: 0 1.25rem;
  background: var(--green);
  color: var(--black);
  box-shadow: 0 16px 38px rgba(170, 219, 24, 0.2);
}

.secondary-button {
  margin-top: 2rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(170, 219, 24, 0.45);
  color: var(--green);
}

.hero-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.site-preview {
  position: absolute;
  top: 22px;
  right: 20px;
  width: min(100%, 500px);
  padding: 1rem;
}

.preview-top {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.preview-top span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(223, 223, 223, 0.35);
}

.preview-hero {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 1.3rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.34), rgba(44, 55, 61, 0.78)),
    #111;
}

.preview-hero img {
  display: block;
  width: 160px;
  margin-bottom: 3.5rem;
}

.preview-hero p {
  margin-bottom: 0.7rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.preview-hero strong {
  display: block;
  max-width: 320px;
  font-size: 2.1rem;
  line-height: 1.03;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.preview-grid div {
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  height: 86px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(170, 219, 24, 0.15), transparent),
    rgba(223, 223, 223, 0.1);
}

.preview-grid span {
  color: #f7f7f7;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-preview {
  position: absolute;
  left: 0;
  bottom: 54px;
  z-index: 2;
  width: 210px;
  min-height: 280px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(170, 219, 24, 0.95), rgba(170, 219, 24, 0.1) 58%),
    #111;
}

.poster-preview span,
.poster-preview p {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-preview span {
  color: var(--black);
}

.poster-preview strong {
  display: block;
  margin-top: 5.8rem;
  color: #fff;
  font-size: 1.95rem;
  line-height: 1;
}

.poster-preview p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.phone-preview {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 170px;
  height: 330px;
  padding: 0.75rem;
  border-radius: 28px;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #1e272b, #090b0c);
}

.phone-screen strong {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.phone-screen p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.identity-chip {
  position: absolute;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(170, 219, 24, 0.35);
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.74);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chip-one {
  top: 90px;
  left: 10px;
}

.chip-two {
  left: 45px;
  bottom: 130px;
}

.chip-three {
  right: 122px;
  bottom: 0;
}

.kit-section,
.kit-preview,
.services-strip,
.portfolio-teaser,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.kit-preview {
  padding-top: 2rem;
}

.preview-wall {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 1rem;
  margin-top: 2rem;
}

.preview-item {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.preview-item > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.72);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  background:
    linear-gradient(135deg, rgba(44, 55, 61, 0.86), rgba(6, 6, 6, 0.95)),
    var(--graphite);
}

.logo-item span {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.logo-item img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.brand-item {
  grid-row: span 2;
  padding: 0;
  background: #fff;
}

.brand-item span {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.brand-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 438px;
  object-fit: cover;
  object-position: top center;
}

.social-item {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(150deg, rgba(170, 219, 24, 0.92), rgba(44, 55, 61, 0.18) 62%),
    #121819;
}

.social-item > span {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.social-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.social-item strong,
.video-item strong,
.web-item strong {
  display: block;
  margin-top: auto;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.05;
}

.social-item p,
.mascot-item p,
.web-item p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.mascot-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mascot-face {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin: 1.2rem auto 0.4rem;
  border: 8px solid rgba(170, 219, 24, 0.92);
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.video-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(44, 55, 61, 0.9), rgba(6, 6, 6, 0.9)),
    var(--graphite);
}

.play-mark {
  width: 72px;
  height: 72px;
  margin: 1.2rem auto;
  border-radius: 50%;
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scaleX(0.86);
}

.stickers-item div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 3rem;
}

.stickers-item em {
  display: inline-flex;
  padding: 0.65rem 0.78rem;
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  font-style: normal;
  font-weight: 900;
}

.web-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.18), transparent 50%),
    rgba(223, 223, 223, 0.07);
}

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

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
}

.section-heading p,
.portfolio-teaser > p,
.contact-section > p {
  color: #c7ced1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.kit-grid article {
  min-height: 235px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.kit-grid span {
  color: var(--green);
  font-weight: 900;
}

.kit-grid h3 {
  margin: 2.6rem 0 0.8rem;
  font-size: 1.35rem;
}

.kit-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.services-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-strip p {
  color: var(--muted);
  font-weight: 800;
}

.services-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.services-strip span {
  padding: 0.75rem 0.95rem;
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.07);
  color: #f4f4f4;
  font-weight: 800;
}

.portfolio-teaser {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 3rem;
  align-items: start;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  align-items: center;
  max-width: 980px;
}

.sales-hero,
.problem-section,
.included-section,
.process-section,
.rules-section,
.addons-section,
.form-section,
.payment-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.start-hero,
.compact-terms,
.final-cta-section,
.mockup-showcase,
.converter-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.start-hero {
  max-width: 900px;
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.start-hero p {
  max-width: 760px;
  color: #c7ced1;
  font-size: 1.14rem;
  line-height: 1.65;
}

.start-project-main {
  position: relative;
}

.start-project-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(170, 219, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 219, 24, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 46% 18%, #000, transparent 58%);
}

.start-page-hero,
.start-kit-preview,
.how-it-works,
.start-main-cta,
.support-actions {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.start-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 3rem;
  align-items: center;
  min-height: 560px;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.start-page-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #c7ced1;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.start-mascot-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(170, 219, 24, 0.38);
  border-radius: 8px;
  background: #aadb18;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.start-mascot-card::before {
  content: none;
}

.start-mascot-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.start-kit-preview {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.start-kit-preview img {
  display: block;
  width: 100%;
  border: 1px solid rgba(170, 219, 24, 0.24);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.05);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.38);
}

.how-it-works {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.how-it-works h2 {
  margin-bottom: 1.4rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 4rem);
}

.steps-list {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(170, 219, 24, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(170, 219, 24, 0.08), rgba(223, 223, 223, 0.045)),
    rgba(6, 6, 6, 0.58);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.steps-list article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 92px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.steps-list span {
  display: grid;
  gap: 0.2rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.steps-list strong {
  color: #fff;
  font-size: 2.7rem;
  line-height: 0.92;
}

.steps-list p {
  margin: 0;
  color: #d7dddd;
  font-size: 1.03rem;
  line-height: 1.55;
}

.start-main-cta {
  display: grid;
  place-items: center;
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.giant-start-button {
  width: min(100%, 620px);
  min-height: 64px;
  font-size: clamp(1rem, 2vw, 1.34rem);
  text-transform: uppercase;
}

.support-actions {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 760px;
  padding-top: 1rem;
  padding-bottom: 6rem;
  text-align: center;
}

.support-actions p {
  margin: 1rem 0 0;
  color: #c7ced1;
  line-height: 1.55;
}

.support-actions .secondary-button,
.support-actions .primary-button {
  margin-top: 0;
  min-width: min(100%, 280px);
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 116px);
}

.sales-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.board-logo,
.board-card {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.06);
}

.board-logo {
  grid-column: span 2;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--graphite);
}

.board-logo img {
  width: min(360px, 86%);
}

.board-card {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
}

.board-green {
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.92), rgba(170, 219, 24, 0.1)),
    #111;
  color: var(--black);
}

.board-phone {
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.18), transparent),
    var(--graphite);
}

.problem-section,
.rules-section,
.payment-section,
.converter-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.problem-section > p,
.payment-section p,
.converter-section p {
  color: #c7ced1;
  font-size: 1.05rem;
  line-height: 1.65;
}

.included-grid,
.addons-grid,
.payment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.mockup-showcase {
  padding-top: 2rem;
}

.realistic-mockup-frame {
  margin-top: 2.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.realistic-mockup-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.home-mockup {
  margin-bottom: 1.2rem;
}

.mockup-stage {
  position: relative;
  min-height: 620px;
  margin-top: 2.2rem;
}

.mockup-desktop,
.mockup-phone-device,
.mockup-social-post,
.mockup-stickers {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.mockup-desktop {
  left: 0;
  top: 0;
  width: min(760px, 72%);
  padding: 1rem;
}

.mockup-desktop-hero {
  min-height: 330px;
  padding: 1.3rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.26), rgba(44, 55, 61, 0.84)),
    #101415;
}

.mockup-desktop-hero img {
  width: 180px;
  margin-bottom: 5rem;
}

.mockup-desktop-hero strong {
  display: block;
  max-width: 420px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.mockup-desktop-hero p {
  margin: 0.8rem 0 0;
  color: #c7ced1;
  font-weight: 800;
}

.mockup-desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.mockup-desktop-grid span {
  display: flex;
  align-items: flex-end;
  min-height: 90px;
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.08);
  color: var(--green);
  font-weight: 900;
}

.mockup-phone-device {
  right: 4%;
  top: 54px;
  z-index: 3;
  width: 210px;
  height: 420px;
  padding: 0.9rem;
  border-radius: 30px;
  background: #050505;
}

.phone-camera {
  width: 70px;
  height: 16px;
  margin: 0 auto 0.8rem;
  border-radius: 99px;
  background: #151515;
}

.phone-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100% - 26px);
  padding: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(44, 55, 61, 0.92), rgba(6, 6, 6, 0.96)),
    #111;
}

.phone-content strong {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.3rem;
}

.phone-content p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.mockup-social-post {
  right: 17%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 245px;
  min-height: 325px;
  padding: 1rem;
  background:
    linear-gradient(150deg, rgba(170, 219, 24, 0.96), rgba(170, 219, 24, 0.12) 62%),
    #121819;
}

.mockup-social-post span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
}

.mockup-social-post strong {
  color: #fff;
  font-size: 2.15rem;
  line-height: 1;
}

.mockup-social-post p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.mockup-stickers {
  left: 7%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 340px;
  padding: 1rem;
  background: rgba(6, 6, 6, 0.78);
}

.mockup-stickers em {
  padding: 0.7rem 0.82rem;
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  font-style: normal;
  font-weight: 900;
}

.benefit-stack article {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: center;
  min-height: 360px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.benefit-stack article:nth-child(even) {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.95fr);
}

.benefit-stack article:nth-child(even) > div:first-child {
  order: 2;
}

.benefit-stack article:nth-child(even) > div:last-child {
  order: 1;
}

.benefit-stack span {
  color: var(--green);
  font-weight: 900;
}

.benefit-stack h3 {
  margin: 1.6rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.benefit-stack p {
  color: #c7ced1;
  font-size: 1.05rem;
  line-height: 1.65;
}

.benefit-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 310px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.12), transparent 58%),
    rgba(6, 6, 6, 0.38);
}

.image-benefit {
  padding: 0;
}

.image-benefit img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.logo-benefit {
  background: var(--graphite);
}

.logo-benefit img {
  width: min(78%, 360px);
}

.post-benefit {
  align-content: end;
  justify-items: start;
  padding: 1.2rem;
  background:
    linear-gradient(150deg, rgba(170, 219, 24, 0.95), rgba(170, 219, 24, 0.1) 62%),
    #121819;
}

.post-benefit strong {
  max-width: 260px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
}

.post-benefit em {
  margin-top: 0.8rem;
  color: var(--black);
  font-style: normal;
  font-weight: 900;
}

.video-benefit {
  gap: 1rem;
  background: var(--graphite);
}

.video-benefit strong,
.app-benefit strong {
  color: #fff;
  font-size: 1.4rem;
}

.mascot-benefit .mascot-face {
  width: 150px;
  height: 150px;
  font-size: 2.5rem;
}

.sticker-benefit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: center;
  justify-content: center;
}

.sticker-benefit em {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  font-style: normal;
  font-weight: 900;
}

.site-benefit {
  padding: 1rem;
}

.mini-browser {
  width: min(100%, 430px);
  min-height: 235px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.24), transparent),
    #0d1112;
}

.mini-browser img {
  width: 150px;
  margin-bottom: 4rem;
}

.mini-browser strong {
  display: block;
  max-width: 260px;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.05;
}

.app-benefit {
  gap: 1rem;
}

.app-tile {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--green);
}

.app-tile img {
  width: 290px;
  max-width: none;
  transform: translateX(64px);
}

.included-grid article,
.addons-grid article,
.payment-cards article {
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.included-grid span {
  color: var(--green);
  font-weight: 900;
}

.included-grid h3,
.addons-grid h3,
.payment-cards h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.3rem;
}

.included-grid p,
.addons-grid p,
.payment-cards p,
.rules-list p {
  color: var(--muted);
  line-height: 1.55;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
}

.timeline span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 0.8rem;
  border: 1px solid rgba(170, 219, 24, 0.3);
  border-radius: 8px;
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.rules-list {
  display: grid;
  gap: 0.75rem;
}

.compact-terms {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.rules-list p {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.05);
}

.kit-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.final-cta-section {
  max-width: 860px;
  text-align: center;
}

.final-cta-section p {
  color: #c7ced1;
  font-size: 1.08rem;
  line-height: 1.6;
}

.faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
  border-top: 1px solid var(--line);
}

.artestec-proof-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
  border-top: 1px solid var(--line);
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.proof-gallery article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.proof-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.proof-gallery span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.78);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-focus-page {
  background:
    radial-gradient(circle at 72% 12%, rgba(170, 219, 24, 0.12), transparent 28rem),
    linear-gradient(135deg, #060606 0%, #101516 52%, #060606 100%);
}

.kit-header {
  max-width: 1220px;
}

.kit-launch-hero,
.kit-overview,
.kit-impact-section,
.kit-item-story {
  max-width: 1220px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.kit-launch-hero {
  padding-top: 5.5rem;
}

.launch-frame {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  min-height: 560px;
  padding: 2rem;
  border: 2px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 223, 223, 0.035), rgba(170, 219, 24, 0.03)),
    rgba(6, 6, 6, 0.66);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
}

.launch-copy h1 {
  margin-bottom: 1.2rem;
  color: var(--green);
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.launch-copy h1 span {
  display: block;
  color: #fff;
  font-size: 0.52em;
}

.launch-copy p {
  max-width: 520px;
  color: #c7ced1;
  font-size: 1.08rem;
  line-height: 1.6;
}

.launch-mockup {
  overflow: hidden;
  border-radius: 8px;
}

.launch-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.kit-overview {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 3.2rem;
  align-items: start;
}

.overview-copy {
  position: sticky;
  top: 96px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(170, 219, 24, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.08), transparent 38%),
    radial-gradient(circle at 14% 24%, rgba(170, 219, 24, 0.16), transparent 12rem),
    rgba(6, 6, 6, 0.58);
}

.overview-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(170, 219, 24, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(170, 219, 24, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.overview-copy > * {
  position: relative;
  z-index: 1;
}

.overview-copy h2 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.overview-copy p {
  color: #c7ced1;
  font-size: 1.05rem;
  line-height: 1.65;
}

.overview-copy strong {
  display: block;
  margin: 1.4rem 0 0;
  color: var(--green);
  font-size: 1.3rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.tech-cta-panel {
  margin-top: 1.6rem;
  padding: 1.1rem;
  border: 1px solid rgba(170, 219, 24, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(44, 55, 61, 0.82), rgba(6, 6, 6, 0.64)),
    rgba(223, 223, 223, 0.04);
}

.tech-cta-panel span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-cta-panel h3 {
  margin: 0.8rem 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.tech-cta-panel p {
  font-size: 0.95rem;
}

.tech-cta-panel .primary-button {
  width: 100%;
  margin-top: 0.4rem;
  text-align: center;
}

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

.overview-grid article {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 2px solid rgba(170, 219, 24, 0.75);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.overview-grid article:first-child {
  grid-column: span 2;
  aspect-ratio: 2.06 / 1;
}

.overview-grid span {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  max-width: calc(100% - 1.6rem);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.overview-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-preview-button img {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.video-preview-button:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.video-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(170, 219, 24, 0.72);
  border-radius: 50%;
  background: rgba(6, 6, 6, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.video-play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.3rem;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--green);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(6, 6, 6, 0.86);
  backdrop-filter: blur(16px);
}

.video-modal.active {
  display: grid;
}

.video-modal-frame {
  position: relative;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(170, 219, 24, 0.45);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
  aspect-ratio: 16 / 9;
}

.video-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-youtube-fallback {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.video-modal-close {
  position: fixed;
  right: clamp(1rem, 4vw, 3rem);
  top: clamp(1rem, 4vw, 3rem);
  z-index: 101;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(170, 219, 24, 0.45);
  border-radius: 50%;
  background: rgba(6, 6, 6, 0.82);
  color: #fff;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.kit-impact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.kit-impact-section p {
  color: #c7ced1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.kit-item-story {
  display: grid;
  gap: 1rem;
}

.kit-item-story article {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 370px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.05);
}

.kit-item-story article:nth-child(even) {
  grid-template-columns: 1fr 0.72fr;
}

.kit-item-story article:nth-child(even) div {
  order: 2;
}

.kit-item-story article:nth-child(even) img {
  order: 1;
}

.kit-item-story span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-item-story h3 {
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.kit-item-story p {
  color: #c7ced1;
  font-size: 1.05rem;
  line-height: 1.65;
}

.kit-item-story img {
  display: block;
  width: 100%;
  min-height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0;
}

.faq-tabs button {
  min-height: 44px;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.06);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-tabs button.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.faq-panel {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.faq-panel.active {
  display: grid;
}

.faq-panel details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.faq-panel summary {
  padding: 1rem;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.faq-panel p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.kit-form fieldset {
  margin: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.kit-form legend {
  padding: 0 0.4rem;
  color: var(--green);
  font-weight: 900;
}

.kit-form label {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #f2f2f2;
  font-size: 0.9rem;
  font-weight: 800;
}

.kit-form input,
.kit-form textarea,
.kit-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(223, 223, 223, 0.18);
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.42);
  color: var(--white);
  font: inherit;
}

.kit-form textarea {
  min-height: 90px;
}

.tally-embed {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(170, 219, 24, 0.35);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.96);
}

.tally-embed iframe {
  display: block;
  min-height: 820px;
}

.form-cta-box {
  max-width: 820px;
  padding: 2rem;
  border: 1px solid rgba(170, 219, 24, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(170, 219, 24, 0.1), transparent 44%),
    rgba(223, 223, 223, 0.055);
}

.form-cta-box .primary-button {
  margin-top: 0.8rem;
}

.converter-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.055);
}

.converter-card label {
  display: grid;
  gap: 0.45rem;
  color: #f2f2f2;
  font-size: 0.9rem;
  font-weight: 800;
}

.converter-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(223, 223, 223, 0.18);
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.42);
  color: var(--white);
  font: inherit;
}

.converter-card output {
  display: block;
  padding: 1rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--black);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.contact-copy {
  text-align: left;
}

.qr-card {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(223, 223, 223, 0.06);
}

.qr-card img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .site-preview {
    left: 0;
    right: auto;
  }

  .preview-wall,
  .kit-grid,
  .sales-hero,
  .problem-section,
  .rules-section,
  .payment-section,
  .converter-section,
  .benefit-stack article,
  .benefit-stack article:nth-child(even),
  .compact-terms,
  .faq-panel.active,
  .proof-gallery,
  .included-grid,
  .addons-grid,
  .payment-cards,
  .kit-form,
  .portfolio-teaser,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .benefit-stack article:nth-child(even) > div:first-child,
  .benefit-stack article:nth-child(even) > div:last-child {
    order: initial;
  }

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

  .mockup-stage {
    display: grid;
    gap: 1rem;
    min-height: auto;
  }

  .mockup-desktop,
  .mockup-phone-device,
  .mockup-social-post,
  .mockup-stickers {
    position: static;
    width: 100%;
  }

  .mockup-phone-device {
    width: min(230px, 100%);
    justify-self: center;
  }

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

  .overview-grid article:first-child {
    grid-column: auto;
  }

  .launch-frame,
  .kit-overview,
  .kit-impact-section,
  .kit-item-story article,
  .kit-item-story article:nth-child(even),
  .start-page-hero {
    grid-template-columns: 1fr;
  }

  .overview-copy {
    position: static;
  }

  .kit-item-story article:nth-child(even) div,
  .kit-item-story article:nth-child(even) img {
    order: initial;
  }

  .start-page-hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .start-mascot-card {
    min-height: 360px;
  }

  .brand-item {
    grid-row: auto;
  }

  .qr-card {
    max-width: 260px;
  }
}

@media (max-width: 620px) {
  .promo-bar {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  .header {
    padding: 0.9rem 1rem;
  }

  .brand {
    width: 145px;
    min-width: 145px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .sales-hero,
  .problem-section,
  .included-section,
  .process-section,
  .rules-section,
  .addons-section,
  .form-section,
  .payment-section,
  .converter-section,
  .start-hero,
  .compact-terms,
  .final-cta-section,
  .faq-section,
  .artestec-proof-section,
  .mockup-showcase,
  .kit-launch-hero,
  .kit-overview,
  .kit-impact-section,
  .kit-item-story,
  .kit-section,
  .start-page-hero,
  .start-kit-preview,
  .how-it-works,
  .start-main-cta,
  .support-actions,
  .services-strip,
  .portfolio-teaser,
  .contact-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 3.2rem;
  }

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

  .steps-list {
    padding: 0.7rem;
  }

  .steps-list article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .steps-list strong {
    font-size: 2.2rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .preview-hero {
    min-height: 210px;
  }

  .preview-hero strong {
    font-size: 1.55rem;
  }

  .phone-preview {
    width: 132px;
    height: 260px;
  }

  .poster-preview {
    width: 168px;
    min-height: 225px;
    bottom: 42px;
  }

  .poster-preview strong {
    margin-top: 4rem;
    font-size: 1.45rem;
  }

  .identity-chip {
    font-size: 0.68rem;
  }

  .chip-one {
    top: 55px;
  }

  .chip-two {
    left: 5px;
    bottom: 95px;
  }

  .chip-three {
    right: 88px;
  }
}
