:root {
  --ink: #101828;
  --muted: #667085;
  --blue: #2563ff;
  --blue-2: #6ba7ff;
  --cyan: #22c7d8;
  --green: #12a150;
  --navy: #08111f;
  --navy-2: #101b31;
  --line: #dbe4f2;
  --soft: #f6f8fc;
  --panel: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(219, 228, 242, .82);
  backdrop-filter: blur(18px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 136px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344054;
  font-size: 14px;
  font-weight: 620;
}

.menu a {
  opacity: .88;
  transition: color .2s ease, opacity .2s ease;
}

.menu a:hover {
  color: var(--blue);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 255, .22);
  color: var(--blue);
  background: #fff;
  font-weight: 720;
  box-shadow: 0 12px 28px rgba(37, 99, 255, .08);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 99, 255, .18);
}

.btn.primary {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.btn.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.btn.glass {
  color: #e8f0ff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
  box-shadow: none;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-dark {
  color: #fff;
  background: var(--navy);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #afc7ff;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
.copy-block,
.value-cards,
.section-head,
.stage,
.partner-card,
.founder-copy,
.contact-panel {
  min-width: 0;
}

h1 {
  font-size: clamp(76px, 9vw, 132px);
  line-height: .86;
  letter-spacing: -0.05em;
  font-weight: 820;
}

h2 {
  max-width: 840px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -0.04em;
  font-weight: 820;
  overflow-wrap: break-word;
}

h3 {
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 760;
}

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

.section-dark p {
  color: #c8d4e6;
}

.hero {
  min-height: min(760px, calc(100svh - 74px));
  padding: 82px 0 74px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, .98) 0%, rgba(8, 17, 31, .82) 46%, rgba(8, 17, 31, .52) 100%),
    url("assets/pitch/hero-cover.jpg") center/cover no-repeat;
  opacity: .96;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -30% 48%;
  height: 500px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 255, .38), rgba(34, 199, 216, .12) 38%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 32px;
  background: rgba(8, 17, 31, .58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.hero-lead {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 760;
}

.hero-copy > p:last-of-type {
  max-width: 640px;
  margin-top: 28px;
  font-size: 22px;
}

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

.hero-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.hero-card img {
  width: 220px;
  margin-bottom: 72px;
}

.hero-card strong {
  display: block;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.split,
.value-grid,
.founder-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 74px;
  align-items: center;
}

.copy-block p {
  max-width: 690px;
  margin-top: 28px;
  font-size: 21px;
}

.platform {
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff 0%, #fff 52%, #eef5ff 100%);
}

.platform-visual {
  position: relative;
  min-height: 520px;
}

.visual-main,
.visual-brands,
.laptop {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.visual-main {
  left: 0;
  top: 30px;
  width: 72%;
  border: 8px solid #fff;
}

.visual-brands {
  right: 0;
  bottom: 18px;
  width: 76%;
  border: 8px solid #fff;
}

.laptop {
  left: 20%;
  top: 168px;
  width: 72%;
  padding: 10px;
  background: #fff;
}

.laptop img {
  width: 100%;
}

.value {
  background: var(--soft);
}

.value-cards {
  display: grid;
  gap: 18px;
}

.value-cards article {
  min-height: 116px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .07);
}

.value-cards span,
.step-list small {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-weight: 820;
}

.value-cards h3 {
  max-width: 360px;
  font-size: 22px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head p {
  max-width: 720px;
  margin-top: 22px;
}

.section-head.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered h2,
.section-head.centered p {
  margin-inline: auto;
}

.launch {
  background: #fff;
}

.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stage {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  box-shadow: var(--shadow);
}

.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.stage-top span,
.stage-top b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 13px;
  font-weight: 820;
}

.stage-top b {
  color: var(--green);
  background: #eaf9ef;
}

.stage > h3 {
  margin-bottom: 28px;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step-list div {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 18px;
}

.step-list h4 {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.step-list p {
  grid-column: 2;
  margin-top: 8px;
  font-size: 15px;
}

.formats {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbff 0%, #fff 48%, #f2f7ff 100%);
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(128px, 1fr));
  gap: 22px;
  align-items: end;
}

.phone-row figure {
  margin: 0;
  text-align: center;
}

.phone-row img {
  width: 100%;
  aspect-ratio: 341 / 738;
  object-fit: cover;
  border: 8px solid #101828;
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(16, 24, 40, .18);
}

.phone-row figcaption {
  margin-top: 14px;
  color: #344054;
  font-size: 14px;
  font-weight: 720;
}

.founder {
  overflow: hidden;
}

.founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(37, 99, 255, .28), transparent 34%),
    linear-gradient(120deg, #08111f 0%, #0f1b30 100%);
}

.founder-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 440px minmax(0, 1fr);
}

.founder-photo {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  overflow: hidden;
}

.founder-photo img {
  width: 112%;
  max-width: none;
  margin-bottom: -10px;
}

.founder-copy h2 {
  color: #fff;
}

.founder-copy > p {
  max-width: 660px;
  margin-top: 24px;
  font-size: 21px;
}

.career {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.career article {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.career h3 {
  color: #fff;
  font-size: 20px;
}

.career p {
  margin-top: 8px;
  font-size: 15px;
}

blockquote {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--blue-2);
  border-radius: 0 18px 18px 0;
  color: #e8f0ff;
  background: rgba(37, 99, 255, .14);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 620;
}

.partners {
  background: #fff;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.partner-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.partner-brand {
  min-height: 72px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  font-family: Manrope, Inter, sans-serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: -0.07em;
}

.partner-brand.ekran {
  color: #9cff00;
  text-shadow: 0 0 1px #9cff00;
}

.partner-brand.logic {
  color: #111827;
  font-style: italic;
}

.partner-card p {
  margin-top: 14px;
  font-size: 17px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.metrics div {
  min-height: 106px;
  padding: 18px;
  border-radius: 18px;
  background: #f3f7ff;
}

.metrics b {
  display: block;
  color: var(--blue);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.partner-card h4 {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 16px;
}

.logo-strip,
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.logo-cloud {
  grid-template-columns: repeat(6, 1fr);
}

.logo-strip img,
.logo-cloud img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  padding: 9px;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  background: #fff;
}

.contacts {
  padding: 96px 0;
}

.contacts-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.contacts h2 {
  color: #fff;
}

.contacts p {
  max-width: 720px;
  margin-top: 24px;
  font-size: 21px;
}

.contact-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
}

.contact-panel b,
.contact-panel span {
  display: block;
}

.contact-panel b {
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.contact-panel span {
  margin: 8px 0 30px;
  color: #c8d4e6;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer .wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer img {
  width: 124px;
}

.footer span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

  .reveal,
  .btn,
  .menu a {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .split,
  .value-grid,
  .founder-grid,
  .contacts-grid,
  .stage-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 460px;
  }

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

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

  .founder-photo {
    min-height: 520px;
    max-width: 500px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(1160px, calc(100% - 32px));
  }

  .nav {
    height: 66px;
  }

  .brand img {
    width: 118px;
  }

  .nav .btn {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 72px;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(64px, 20vw, 88px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  p,
  .copy-block p,
  .contacts p,
  .hero-copy > p:last-of-type {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card img {
    margin-bottom: 48px;
  }

  .platform-visual {
    min-height: 360px;
  }

  .visual-main {
    width: 82%;
  }

  .visual-brands {
    width: 84%;
  }

  .laptop {
    left: 10%;
    width: 84%;
  }

  .value-cards article {
    grid-template-columns: 1fr;
  }

  .stage,
  .partner-card,
  .contact-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .stage-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .step-list div {
    grid-template-columns: 1fr;
  }

  .step-list p {
    grid-column: 1;
  }

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

  .phone-row img {
    border-width: 6px;
    border-radius: 22px;
  }

  .founder-photo {
    min-height: 420px;
  }

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

  .logo-strip,
  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer .wrap {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }
}

@media (max-width: 430px) {
  .phone-row {
    grid-template-columns: 1fr;
  }

  .phone-row figure {
    max-width: 230px;
    margin-inline: auto;
  }

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