:root {
  --accent: #ff00b8;
  --accent-2: #ff4bd3;
  --hero-1: #120016;
  --hero-2: #2b0135;
  --hero-3: #5b0070;
  --text: #121212;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: #ffffff;
  color: var(--text);
}

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

main {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  background: radial-gradient(1200px 720px at 18% 28%, var(--hero-3), transparent 68%),
    radial-gradient(980px 560px at 62% 42%, var(--hero-2), transparent 64%),
    linear-gradient(90deg, var(--hero-1), var(--hero-2));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(620px 460px at 18% 38%, rgba(255, 0, 184, 0.28), transparent 72%),
    radial-gradient(760px 620px at 56% 44%, rgba(255, 75, 211, 0.22), transparent 74%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.18) 45%,
      transparent 74%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background: radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(2px 2px at 30% 60%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(2px 2px at 55% 30%, rgba(255, 255, 255, 0.45), transparent 60%),
    radial-gradient(2px 2px at 80% 55%, rgba(255, 255, 255, 0.5), transparent 60%),
    repeating-radial-gradient(
      circle at 86% 45%,
      rgba(255, 255, 255, 0.25) 0,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 12px,
      transparent 20px
    );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 56px 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  min-height: 520px;
}

.hero__content {
  max-width: 640px;
}

.hero__kicker {
  margin: 0 0 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
}

.hero__kickerAccent {
  color: var(--accent);
}

.hero__kickerRest {
  margin-left: 8px;
}

.hero__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.hero__subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.hero__bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.hero__bulletIcon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.hero__bulletIcon svg {
  width: 18px;
  height: 18px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(620px, 100%);
  height: 54px;
  padding-inline: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 18px 48px rgba(255, 0, 184, 0.24);
  transition: transform 0.12s ease, filter 0.12s ease;
  user-select: none;
}

.hero__cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.15);
}

.hero__cta:focus-visible {
  outline: 4px solid rgba(255, 0, 184, 0.25);
  outline-offset: 2px;
}

.hero__media {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 0, 18, 0.85),
    rgba(13, 0, 18, 0.35) 40%,
    transparent 70%
  );
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}

.section2 {
  background: #efeff2;
}

.section2__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 64px 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.section2__content {
  max-width: 620px;
}

.section2__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111;
}

.section2__titleAccent {
  color: var(--accent);
}

.section2__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.78);
}

.section2__text:last-child {
  margin-bottom: 0;
}

.section2__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section2__img {
  width: min(560px, 100%);
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.section3 {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  background: radial-gradient(1100px 720px at 50% 0%, rgba(255, 0, 184, 0.18), transparent 70%),
    radial-gradient(900px 640px at 15% 55%, rgba(255, 75, 211, 0.16), transparent 68%),
    linear-gradient(180deg, #100013, #1b001f 40%, #0b000d);
}

.section3::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background: repeating-radial-gradient(
      circle at 92% 28%,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 12px,
      transparent 20px
    ),
    radial-gradient(2px 2px at 15% 25%, rgba(255, 255, 255, 0.5), transparent 60%),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.45), transparent 60%),
    radial-gradient(2px 2px at 65% 35%, rgba(255, 255, 255, 0.4), transparent 60%);
}

.section3__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 72px 18px 64px;
  display: grid;
  justify-items: center;
  text-align: left;
}

.section3__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.02em;
}

.benefits {
  width: min(820px, 100%);
  display: grid;
  gap: 18px;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.benefit__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffe600;
  color: #0b0b0b;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 18px 46px rgba(255, 230, 0, 0.18);
}

.benefit__title {
  margin: 2px 0 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.benefit__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 14px;
}

.section3__cta {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  height: 54px;
  padding-inline: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 18px 48px rgba(255, 0, 184, 0.24);
  transition: transform 0.12s ease, filter 0.12s ease;
  user-select: none;
}

.section3__cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.15);
}

.section3__cta:focus-visible {
  outline: 4px solid rgba(255, 0, 184, 0.25);
  outline-offset: 2px;
}

.section3__bottom {
  margin: 48px 0 0;
  text-align: center;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.15;
  width: min(900px, 100%);
}

.section4 {
  background: #ffffff;
}

.section4__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 72px 18px 78px;
}

.section4__title {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 3.6vw, 54px);
  letter-spacing: -0.02em;
  color: #0b0b0b;
}

.deliverables {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.deliverable {
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.deliverable__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.deliverable__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.deliverable__title {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.deliverable__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(11, 11, 11, 0.78);
}

.mockup {
  position: relative;
  height: 360px;
  width: 100%;
}

.mockup__laptop {
  position: absolute;
  left: 12px;
  top: 26px;
  width: 420px;
  max-width: 86%;
  height: 250px;
  border-radius: 14px;
  background: #101116;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.mockup__laptopScreen {
  position: absolute;
  inset: 10px 10px 30px;
  border-radius: 10px;
  background: radial-gradient(
      420px 240px at 20% 30%,
      rgba(255, 0, 184, 0.35),
      transparent 62%
    ),
    radial-gradient(
      420px 260px at 70% 40%,
      rgba(255, 75, 211, 0.25),
      transparent 66%
    ),
    linear-gradient(90deg, var(--hero-1), var(--hero-2));
  overflow: hidden;
}

.mockup__laptopBase {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 92%;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #1a1b20, #0b0c10);
}

.mockup__phone {
  position: absolute;
  left: 270px;
  top: 38px;
  width: 168px;
  height: 320px;
  border-radius: 28px;
  background: #0c0d12;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.mockup__phoneScreen {
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: radial-gradient(
      320px 220px at 30% 28%,
      rgba(255, 0, 184, 0.36),
      transparent 64%
    ),
    radial-gradient(
      320px 260px at 65% 55%,
      rgba(255, 75, 211, 0.22),
      transparent 66%
    ),
    linear-gradient(90deg, var(--hero-1), var(--hero-2));
}

.mockup__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.mockup__photoImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.mockup__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.08) 55%,
    rgba(0, 0, 0, 0.12)
  );
  opacity: 0.55;
}

.blank {
  min-height: 640px;
  background: #ffffff;
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 36px 18px;
  }

  .hero__media {
    min-height: 260px;
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .section2__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 44px 18px;
  }

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

  .mockup {
    height: 320px;
  }

  .mockup__phone {
    left: auto;
    right: 14px;
    top: 10px;
  }

  .mockup__photo {
    display: none;
  }
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg__glow {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.16;
}

.bg__glow--1 {
  left: -220px;
  top: -160px;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%);
}

.bg__glow--2 {
  right: -240px;
  top: 160px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--accent-2),
    transparent 60%
  );
}

.bg__glow--3 {
  left: 10%;
  bottom: -340px;
  background: radial-gradient(circle at 40% 40%, #a855f7, transparent 60%);
}

.page {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 28px 18px 40px;
}

.header {
  display: grid;
  gap: 18px;
  margin-bottom: 16px;
}

.profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  border-radius: var(--radius);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.avatar svg {
  display: block;
}

.profile__kicker {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.profile__title {
  margin: 4px 0 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.profile__subtitle {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.35;
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.badge {
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.badge__top {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 14px;
}

.badge__bottom {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted-2);
}

.card {
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card__header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.card__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

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

.btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
  outline: none;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.btn:focus-visible {
  box-shadow: 0 0 0 4px var(--focus);
}

.btn--primary {
  background: linear-gradient(
      135deg,
      rgba(34, 197, 94, 0.35),
      rgba(6, 182, 212, 0.25)
    ),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(34, 197, 94, 0.45);
}

.btn__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn__icon svg {
  width: 20px;
  height: 20px;
}

.btn__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.btn__label {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn__hint {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn__chev {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.about {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

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

.quote {
  margin: 0;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

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

.footer {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer__link {
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 0.12s ease, color 0.12s ease;
}

.footer__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.footer__dot {
  opacity: 0.55;
}

@media (max-width: 520px) {
  .hero__content {
    text-align: center;
    margin-inline: auto;
  }

  .hero__title,
  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__bullets {
    width: min(420px, 100%);
    margin-inline: auto;
    text-align: left;
  }

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

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

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

  .avatar {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
