:root {
  --bg: #fbf6f8;
  --bg-soft: #fffafc;
  --paper: rgba(255, 255, 255, 0.44);
  --paper-strong: rgba(255, 255, 255, 0.74);
  --ink: #463848;
  --ink-soft: #6f5f73;
  --ink-muted: #9c8ea0;
  --accent: #d4a3b6;
  --accent-soft: #f4dde6;
  --mist: #dfefff;
  --mist-soft: rgba(223, 241, 255, 0.5);
  --line: rgba(126, 107, 133, 0.14);
  --shadow-sm: 0 20px 46px rgba(166, 132, 162, 0.12);
  --shadow-lg: 0 42px 120px rgba(139, 110, 143, 0.24);
  --shadow-device: 0 40px 120px rgba(71, 56, 76, 0.22);
  --radius-lg: 40px;
  --radius-xl: 56px;
  --radius-pill: 999px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

main#top {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  position: relative;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background:
    radial-gradient(circle at 16% 14%, rgba(250, 224, 235, 0.54), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(223, 241, 255, 0.4), transparent 28%),
    radial-gradient(circle at 72% 88%, rgba(236, 221, 247, 0.3), transparent 25%),
    linear-gradient(180deg, #fbf6f8 0%, #fbf6f8 26%, #fcf8fb 58%, #fbfcff 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.glow-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.88) 0.7px, transparent 0.7px);
  background-size: 16px 16px;
  opacity: 0.11;
}

.liquid-glass-filter {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(calc(100vw - 32px), 820px);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 48px rgba(148, 120, 153, 0.16);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  isolation: isolate;
  transform: translateX(-50%);
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.45s var(--ease),
    background 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
}

.topbar.is-hidden {
  transform: translate(-50%, calc(-100% - 32px));
  box-shadow: 0 10px 28px rgba(148, 120, 153, 0.08);
}

.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.04) 54%, rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 26% 50%, rgba(247, 219, 230, 0.18), transparent 22%),
    radial-gradient(circle at 74% 45%, rgba(220, 236, 255, 0.18), transparent 24%);
  opacity: 0.45;
}

.topbar::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  top: 8px;
  z-index: -1;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56) 24%, rgba(255, 255, 255, 0.12) 62%, transparent);
  filter: blur(8px);
  opacity: 0.42;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: rgba(70, 56, 72, 0.78);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    background 0.45s var(--ease);
}

.nav-toggle {
  display: none;
}

.nav-cta {
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  background: linear-gradient(120deg, #f4d8e3, #e7e8ff);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(208, 179, 209, 0.28);
}

.nav-cta-icon {
  min-width: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 36px rgba(164, 137, 165, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.nav-cta-telegram {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  fill: #141116;
}

.hero,
.benefits-section,
.showcase-section,
.founder-section,
.pricing-section {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
  overflow-x: clip;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(380px, 0.85fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding-top: 132px;
  padding-bottom: 88px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(251, 246, 248, 0) 0%,
    rgba(251, 246, 248, 0) 78%,
    rgba(251, 246, 248, 0.36) 89%,
    rgba(251, 246, 248, 0.78) 96%,
    #fbf6f8 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 246, 248, 0.94) 0%, rgba(251, 246, 248, 0.9) 34%, rgba(251, 246, 248, 0.68) 62%, rgba(251, 246, 248, 0.48) 100%),
    radial-gradient(circle at 24% 48%, rgba(255, 255, 255, 0.65), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06) 44%, rgba(251, 246, 248, 0.18) 74%, rgba(251, 246, 248, 0.56) 90%, #fbf6f8 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  content: '';
  inset: 0;
  z-index: 0;
  background: #f4f4f2 url('./assets/hero-glow-bg.jpg') center 22% / cover no-repeat;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 82%,
    rgba(0, 0, 0, 0.92) 88%,
    rgba(0, 0, 0, 0.56) 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 82%,
    rgba(0, 0, 0, 0.92) 88%,
    rgba(0, 0, 0, 0.56) 95%,
    transparent 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.pricing-value,
.mini-profile h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.9;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(2.15rem, 4.6vw, 3.55rem);
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 480px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

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

.button {
  min-height: 54px;
  padding: 0 26px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(120deg, #f5d9e3 0%, #ebe8ff 54%, #dfeeff 100%);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(172, 141, 176, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.benefit-card,
.showcase-card,
.founder-card,
.mini-ui,
.pricing-card,
.floating-note {
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -14px 24px rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 620px;
  perspective: 1800px;
}

.hero-orbit {
  position: absolute;
  inset: 82px 64px 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.9), transparent 30%),
    radial-gradient(circle at 42% 52%, rgba(237, 208, 220, 0.62), transparent 42%),
    radial-gradient(circle at 62% 46%, rgba(208, 225, 248, 0.66), transparent 60%);
  filter: blur(2px);
  opacity: 0.72;
}

.phone-preview {
  position: relative;
  width: min(286px, 100%);
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(9deg) rotateZ(-8deg) translateY(0);
  transition: transform 0.5s var(--ease);
}

.phone-preview__device {
  position: relative;
  padding: 6px;
  border-radius: 48px;
  background:
    linear-gradient(145deg, #f7f4f6 0%, #9f98a1 16%, #413741 44%, #bdb7bc 76%, #fff9fc 100%);
  box-shadow: var(--shadow-device);
}

.phone-preview__device::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 47px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.phone-preview__button {
  position: absolute;
  z-index: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9d3d8, #625763 60%, #b9b3b7);
}

.phone-preview__button--action {
  left: -3px;
  top: 92px;
  height: 30px;
}

.phone-preview__button--volume-top {
  left: -3px;
  top: 148px;
  height: 48px;
}

.phone-preview__button--volume-bottom {
  left: -3px;
  top: 212px;
  height: 48px;
}

.phone-preview__bezel {
  overflow: hidden;
  padding: 8px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, #140f16 0%, #241d26 50%, #161018 100%);
}

.phone-preview__screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1206 / 2622;
  border-radius: 32px;
  background: #fff7fb;
}

.phone-preview__screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 28%, transparent 74%, rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 24%);
  pointer-events: none;
}

.phone-preview__island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 80px;
  height: 24px;
  border-radius: 999px;
  background: #100c12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.phone-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.floating-note {
  position: absolute;
  width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}

.floating-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.floating-note--top {
  top: 72px;
  left: -108px;
}

.floating-note--bottom {
  right: -76px;
  bottom: 52px;
}

.benefits-section,
.showcase-section,
.founder-section,
.pricing-section {
  padding-bottom: 92px;
}

.benefits-section {
  position: relative;
  padding-top: 28px;
  background:
    linear-gradient(180deg, #fbf6f8 0%, #fbf6f8 18%, rgba(252, 248, 251, 0.96) 46%, rgba(251, 252, 255, 0.92) 100%);
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 12px;
  right: clamp(20px, 8vw, 120px);
  width: min(380px, 48vw);
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 217, 228, 0.5), transparent 68%),
    radial-gradient(circle at 60% 50%, rgba(218, 233, 255, 0.4), transparent 64%);
  filter: blur(8px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.benefits-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.section-heading h2,
.showcase-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.benefits-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.benefits-meta__item {
  min-width: 148px;
  padding: 14px 18px;
  border-radius: 24px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.35;
}

.benefits-meta__item span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  transition:
    transform 0.5s var(--ease),
    background 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(245, 217, 227, 0.86), rgba(228, 235, 255, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(192, 162, 196, 0.18);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(70, 56, 72, 0.78);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-number {
  margin-top: 26px;
  color: #c4b6c9;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.benefit-card h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.benefit-card p:last-child,
.showcase-copy p:last-of-type,
.pricing-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.65;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.68fr);
  gap: 42px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 26px;
  background:
    radial-gradient(circle at 28% 26%, rgba(244, 221, 230, 0.48), transparent 38%),
    radial-gradient(circle at 86% 24%, rgba(223, 241, 255, 0.5), transparent 34%),
    rgba(255, 255, 255, 0.4);
}

.showcase-copy {
  padding-left: 12px;
}

.showcase-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-soft);
  font-size: 11px;
}

.showcase-item span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, #efbace, #dae8ff);
  box-shadow: 0 0 0 8px rgba(239, 218, 229, 0.5);
}

.mini-ui {
  padding: 26px 22px 24px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.44);
}

.mini-ui__header {
  color: #a99baa;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-align: center;
}

.mini-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.mini-avatar {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 30%, #ffe9f4 0 18%, transparent 19%),
    radial-gradient(circle at 36% 42%, #f4c9d7 0 14%, transparent 15%),
    linear-gradient(160deg, #f7d8e3 0%, #f9eef3 45%, #d7def4 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.mini-profile h3 {
  font-size: 26px;
  letter-spacing: -0.06em;
}

.mini-profile p {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 11px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-stats div {
  padding: 14px 8px 12px;
  text-align: center;
}

.mini-stats div + div {
  border-left: 1px solid var(--line);
}

.mini-stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}

.mini-stats span {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 10px;
}

.mini-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 14px 14px 14px 20px;
  border-radius: 24px;
  background: linear-gradient(120deg, #f8deea 0%, #ebe8ff 52%, #dfefff 100%);
}

.mini-action span {
  max-width: 154px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.25;
  text-transform: uppercase;
}

.mini-action button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  cursor: pointer;
}

.mini-action button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mini-shot {
  height: 140px;
  border-radius: 24px;
}

.mini-shot--dark {
  background:
    radial-gradient(circle at 40% 36%, rgba(255, 239, 235, 0.8) 0 16%, transparent 17%),
    linear-gradient(180deg, #d8d0d5 0 30%, #1e1820 30% 100%);
}

.mini-shot--blue {
  background:
    radial-gradient(circle at 38% 40%, rgba(255, 235, 226, 0.84) 0 17%, transparent 18%),
    linear-gradient(145deg, #9bb5dd 0 28%, #f2c9b8 28% 50%, #8faed7 50% 100%);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-xl);
}

.founder-portrait {
  position: relative;
  overflow: hidden;
  width: min(440px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 44px;
  background: #1b1b1f;
}

.founder-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(16, 14, 18, 0.54) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.16), transparent 34%);
  pointer-events: none;
}

.founder-portrait__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.14);
}

.founder-portrait__label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 14px 18px;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.35;
}

.founder-portrait__label span {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.founder-copy {
  padding: 12px 22px 12px 0;
}

.founder-copy h2 {
  max-width: 560px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.founder-dialogue {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.founder-dialogue__item {
  padding-top: 18px;
  border-top: 1px solid rgba(126, 107, 133, 0.16);
}

.founder-question {
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-answer {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.founder-quote {
  position: relative;
  margin-top: 42px;
  padding: 28px 30px 28px 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(248, 222, 234, 0.72), rgba(232, 238, 255, 0.62)),
    rgba(255, 255, 255, 0.34);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.founder-quote::before {
  content: '“';
  position: absolute;
  top: 16px;
  right: 24px;
  color: rgba(140, 120, 146, 0.2);
  font-size: 4rem;
  line-height: 1;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 42px auto 0;
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 221, 230, 0.68), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(223, 241, 255, 0.7), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.24);
}

.pricing-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-badge,
.pricing-tag {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-tag {
  color: var(--ink);
  background: linear-gradient(120deg, rgba(245, 217, 227, 0.72), rgba(226, 234, 255, 0.74));
}

.pricing-main {
  padding: 24px 18px 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.pricing-name {
  margin-top: 42px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.pricing-value {
  margin-top: 14px;
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  letter-spacing: -0.08em;
}

.pricing-value span {
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pricing-note {
  max-width: 400px;
}

.pricing-minirow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.pricing-minirow div {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
}

.pricing-minirow strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.pricing-minirow span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.pricing-side {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 36px rgba(167, 138, 170, 0.08);
  isolation: isolate;
}

.pricing-side::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.68) 46%, rgba(255, 255, 255, 0.6) 100%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.52), transparent 42%);
  pointer-events: none;
}

.pricing-side__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pricing-side__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.38;
  filter: saturate(0.8) contrast(1.08) brightness(1.08);
  transform: scale(1.08);
}

.pricing-side__title {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.pricing-includes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.pricing-feature {
  padding: 18px 20px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.pricing-feature__name {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.pricing-feature__text {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.pricing-cta {
  width: 100%;
  margin-top: 26px;
}

.footer-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 36px;
  color: var(--ink-muted);
  font-size: 11px;
}

.liquid-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@supports not (hanging-punctuation: first) {
  .liquid-glass {
    backdrop-filter: url(#liquid-glass-filter) blur(10px);
    -webkit-backdrop-filter: blur(18px);
  }
}

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

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

.button:hover,
.nav-cta:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(164, 137, 165, 0.18);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 134px;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .floating-note--top {
    top: 36px;
    left: -8px;
  }

  .floating-note--bottom {
    right: -8px;
    bottom: 26px;
  }

  .benefits-head {
    display: block;
  }

  .benefits-meta {
    justify-content: flex-start;
    margin-top: 24px;
  }

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

  .founder-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .founder-portrait {
    width: min(420px, 100%);
  }

  .founder-copy {
    padding: 0 8px 8px;
  }
}

@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  .hero,
  .benefits-section,
  .showcase-section,
  .founder-section,
  .pricing-section {
    padding-inline: 16px;
    overflow: hidden;
  }

  main#top,
  .hero-visual,
  .showcase-card,
  .founder-card,
  .pricing-card {
    overflow-x: hidden;
  }

  .liquid-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .glow-noise {
    display: none;
  }

  .topbar {
    top: 12px;
    display: inline-flex;
    width: fit-content;
    min-width: 0;
    max-width: calc(100vw - 28px);
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: visible;
    padding: 6px 12px;
    box-shadow: 0 14px 28px rgba(148, 120, 153, 0.12);
    backdrop-filter: blur(5px) saturate(115%);
    -webkit-backdrop-filter: blur(5px) saturate(115%);
  }

  .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .top-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    display: none;
    gap: 6px;
    width: min(220px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.16)),
      rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 44px rgba(148, 120, 153, 0.12);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    transform: translateX(-50%);
    transform-origin: top center;
  }

  .nav-item {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 14px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.14);
  }

  .nav-item span {
    display: inline;
  }

  .nav-cta-icon {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    width: 30px;
    min-width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
      0 12px 24px rgba(164, 137, 165, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
    color: var(--ink);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    width: 12px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.3s var(--ease),
      opacity 0.25s var(--ease);
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-3.5px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(3.5px);
  }

  .topbar.is-menu-open .top-nav {
    display: grid;
  }

  .topbar.is-menu-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .topbar.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-cta-telegram {
    width: 18px;
    height: 18px;
  }

  .hero {
    gap: 32px;
    padding-top: 116px;
    padding-bottom: 76px;
    border-radius: 0 0 40px 40px;
    text-align: center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 246, 248, 0.92) 0%, rgba(251, 246, 248, 0.88) 44%, rgba(251, 246, 248, 0.76) 100%),
      radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.52), transparent 36%),
      linear-gradient(180deg, rgba(251, 246, 248, 0.04) 0%, rgba(251, 246, 248, 0.08) 58%, rgba(251, 246, 248, 0.5) 86%, #fbf6f8 100%);
  }

  .hero::after {
    background-position: center 18%;
    transform: translate3d(0, 0, 0) scale(1.14);
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 80%,
      rgba(0, 0, 0, 0.86) 88%,
      rgba(0, 0, 0, 0.44) 95%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 80%,
      rgba(0, 0, 0, 0.86) 88%,
      rgba(0, 0, 0, 0.44) 95%,
      transparent 100%
    );
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(1.95rem, 8vw, 2.5rem);
  }

  .hero-text {
    margin-inline: auto;
    font-size: 12px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-actions,
  .button,
  .benefits-grid,
  .showcase-card,
  .pricing-card,
  .pricing-minirow,
  .pricing-includes {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 22px;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-heading {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .benefit-card {
    padding: 20px;
    text-align: center;
  }

  .benefits-section::before {
    top: 24px;
    right: -80px;
    width: 240px;
    height: 220px;
    filter: blur(4px);
    opacity: 0.5;
  }

  .hero::after {
    transform: translate3d(0, 0, 0) scale(1.16);
  }

  .benefits-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .benefits-meta__item {
    min-width: 0;
    padding: 14px 16px;
    text-align: center;
  }

  .benefit-icon {
    width: 46px;
    height: 46px;
    margin-inline: auto;
    border-radius: 16px;
  }

  .phone-preview {
    margin-inline: auto;
    width: min(252px, calc(100vw - 84px));
    transform: rotateY(-4deg) rotateX(2deg) rotateZ(-2deg);
    transition: none;
  }

  .hero-orbit {
    inset: 36px 28px 28px;
    filter: none;
    opacity: 0.54;
  }

  .benefit-card,
  .showcase-card,
  .founder-card,
  .mini-ui,
  .pricing-card,
  .floating-note {
    box-shadow: 0 14px 34px rgba(166, 132, 162, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .phone-preview__device {
    border-radius: 42px;
  }

  .phone-preview__bezel {
    padding: 7px;
    border-radius: 36px;
  }

  .phone-preview__screen {
    border-radius: 28px;
  }

  .floating-note {
    display: none;
  }

  .section-heading h2,
  .showcase-copy h2 {
    font-size: 1.8rem;
  }

  .benefits-section,
  .showcase-section,
  .founder-section,
  .pricing-section {
    padding-bottom: 72px;
  }

  .showcase-card {
    gap: 34px;
    padding: 20px;
    text-align: center;
  }

  .founder-card {
    padding: 12px;
    border-radius: 40px;
    text-align: center;
  }

  .founder-portrait {
    width: 100%;
    margin-inline: auto;
    border-radius: 32px;
  }

  .founder-portrait__label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    border-radius: 22px;
  }

  .founder-copy {
    padding: 0 8px 8px;
  }

  .founder-copy h2 {
    max-width: none;
    font-size: 1.95rem;
  }

  .founder-dialogue {
    margin-top: 26px;
  }

  .founder-answer {
    font-size: 11px;
    line-height: 1.7;
    text-align: left;
  }

  .founder-quote {
    margin-top: 28px;
    padding: 24px 22px;
    border-radius: 28px;
    font-size: 1.7rem;
  }

  .founder-quote::before {
    top: 10px;
    right: 18px;
    font-size: 3.4rem;
  }

  .showcase-copy {
    padding-left: 0;
  }

  .showcase-copy p:last-of-type {
    text-align: center;
  }

  .showcase-item {
    text-align: left;
  }

  .mini-ui {
    margin-inline: auto;
    padding: 22px 18px 20px;
    border-radius: 34px;
  }

  .mini-profile h3 {
    font-size: 24px;
  }

  .mini-shot {
    height: 128px;
  }

  .pricing-card {
    gap: 12px;
    margin-top: 42px;
    padding: 12px;
    border-radius: 40px;
    text-align: center;
  }

  .pricing-main {
    padding: 22px 16px 16px;
    border-radius: 32px;
  }

  .pricing-name {
    margin-top: 34px;
  }

  .pricing-value {
    font-size: 2.6rem;
  }

  .pricing-note {
    max-width: none;
    margin-inline: auto;
  }

  .pricing-minirow {
    margin-top: 24px;
  }

  .pricing-minirow div {
    padding: 16px 18px;
  }

  .pricing-side {
    padding: 20px 16px 16px;
    border-radius: 32px;
  }

  .pricing-side::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.76) 48%, rgba(255, 255, 255, 0.68) 100%),
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.6), transparent 40%);
  }

  .pricing-side__image {
    object-position: center 22%;
    opacity: 0.28;
    transform: scale(1.12);
  }

  .pricing-feature {
    text-align: left;
  }

  .footer-shell {
    justify-content: center;
    padding-inline: 16px;
    text-align: center;
  }

  .pricing-side__title {
    font-size: 1.8rem;
  }

  .pricing-includes {
    margin-top: 20px;
  }

  .pricing-feature {
    padding: 16px 18px 18px;
    border-radius: 24px;
  }

  .button:hover,
  .nav-cta:hover,
  .benefit-card:hover,
  .nav-item:hover {
    transform: none;
  }
}

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

  .reveal,
  .topbar,
  .button,
  .nav-cta,
  .benefit-card,
  .phone-preview {
    animation: none !important;
    transition: none !important;
  }

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