:root {
  --page-bg: #f3f5f7;
  --surface: #ffffff;
  --text: #04060f;
  --muted: rgba(4, 6, 15, 0.5);
  --muted-soft: rgba(4, 6, 15, 0.3);
  --brand: #fe375b;
  --brand-strong: #ff2d56;
  --soft: rgba(4, 6, 15, 0.1);
  --radius-pill: 999px;
  --radius-xl: 40px;
  --radius-lg: 32px;
  --container: 1180px;
  --shadow-soft: 0 16px 40px rgba(4, 6, 15, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

button {
  font: inherit;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.page-shell {
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding-top: 20px;
  transform: translateY(0);
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 20px));
}

.header-pill {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
  padding: 16px 20px 16px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(42px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link img,
.footer-logo {
  width: 208px;
  height: auto;
}

.logo-link {
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
  margin-left: 12px;
  font-size: 22px;
  line-height: 1.3;
  color: rgba(4, 6, 15, 0.6);
}

.header-actions,
.hero-actions,
.footer-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn img {
  width: 24px;
  height: 24px;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
}

.btn-soft {
  background: var(--soft);
  color: var(--text);
}

.btn-glass {
  align-self: flex-start;
  min-height: 76px;
  padding: 24px 36px;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(22px);
  font-size: 22px;
}

.btn-glass img {
  width: 32px;
  height: 24px;
}

.btn-dark-rect {
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 16px;
  background: #04060f;
  color: #fff;
  gap: 12px;
}

.btn-dark-rect img {
  filter: brightness(0) invert(1);
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none !important;
}

.menu-toggle {
  width: 36px;
  height: 36px;
  padding: 7px 5px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu-overlay {
  display: none;
}

.mobile-menu-nav {
  display: none;
}

.hero-section {
  margin-top: -97px;
  padding-top: 260px;
  padding-bottom: 48px;
  background: var(--surface);
  border-bottom-left-radius: 52px;
  border-bottom-right-radius: 52px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 392px) minmax(0, 1fr);
  align-items: center;
  gap: 84px;
  min-height: 655px;
}

.hero-copy h1,
.section-heading h2,
.action-card h3,
.footer-mail {
  margin: 0;
  font-family: "Geologica", sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 500;
  align-items: flex-start;
}

.hero-copy h1 .hero-title-accent {
  color: var(--brand);
}

.hero-title-combo {
  display: inline-flex;
  white-space: nowrap;
}

.hero-copy p {
  margin: 20px 0 0;
  font-size: 24px;
  line-height: 1.3;
  color: var(--muted);
}

.hero-actions {
  margin-top: 40px;
  flex-direction: column;
  align-items: flex-start;
}

.hero-actions .btn {
  width: 354px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 563px;
  height: 645px;
  object-fit: contain;
}

.feature-strip,
.profile-section,
.connect-section {
  padding-top: 80px;
}

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

.feature-card {
  position: relative;
  min-height: 542px;
  padding: 40px;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}

.feature-card--accent {
  background:
    radial-gradient(circle at 90% 95%, #ffafbd 0%, #ff738c 33%, #fe5574 50%, #fe375b 66%);
  color: #fff;
}

.feature-card__content {
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.feature-card__content h2 {
  margin: 0;
  font-family: "Geologica", sans-serif;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.feature-card__content p {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
  color: inherit;
}

.feature-card--plain .feature-card__content p {
  color: var(--muted);
}

.feature-card__image {
  position: absolute;
  pointer-events: none;
}

.feature-card__image--woman {
  right: -2px;
  bottom: 0;
  width: 350px;
}

.feature-card__image--portrait {
  right: 0;
  bottom: 0;
  width: 177px;
}

.feature-card__image--chat {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.emoji-grid {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 94.67px);
  gap: 8px;
}

.emoji-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94.67px;
  height: 94.67px;
  border-radius: 23px;
  background: #f3f5f7;
}

.emoji-grid img {
  width: 78.67px;
  height: 78.67px;
  border-radius: 50%;
}

.profile-layout,
.connect-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: 52px;
  line-height: 1.04;
  font-weight: 500;
}

.section-heading p {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.3;
  color: var(--muted-soft);
}

.profile-visual {
  margin-top: 36px;
}

.profile-visual img {
  width: 641px;
}

.profile-button {
  margin-top: 24px;
}

.connect-panel {
  display: grid;
  grid-template-columns: 580px 580px;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
}

.connect-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connect-item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 148px;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 0 rgba(4, 6, 15, 0.02);
}

.connect-item img {
  width: 68px;
  height: 68px;
}

.connect-item p {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
}

.connect-item span {
  color: var(--brand);
}

.connect-visual--surface {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 484px;
  padding: 0;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}

.connect-visual img {
  width: 580px;
  margin-left: 0;
}

.actions-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.slider-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.action-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 700px;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  padding-top: 8px;
  margin-top: -8px;
  padding-left: max(40px, calc((100vw - 1180px) / 2));
  padding-right: max(40px, calc((100vw - 1180px) / 2));
  cursor: grab;
  user-select: none;
}

.action-slider::-webkit-scrollbar {
  display: none;
}

.action-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.action-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  border-radius: 40px;
  background: #04060f;
}

.action-card__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  height: 454px;
  width: auto;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

.action-card--dark .btn-glass img {
  filter: brightness(0) invert(1);
}

.action-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0) 100%);
}

.action-card__overlay--dark {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0) 100%);
}

.action-card__overlay--blue {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0) 100%);
}

.action-card__overlay--amber {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0) 100%);
}

.action-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px;
  color: #fff;
}

.action-card__content > div:first-child {
  max-width: 400px;
}

.action-card h3 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 500;
}

.action-card p {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(4, 6, 15, 0.15);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--brand);
}

.site-footer {
  background: #fff;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.footer-layout {
  padding-top: 104px;
  padding-bottom: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 152px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 500px;
}

.footer-brand p,
.footer-address,
.footer-bottom p,
.footer-links a {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: var(--muted);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 16px 24px;
  border: 1px solid rgba(4, 6, 15, 0.1);
  border-radius: 16px;
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
}

.lang-dropdown {
  position: relative;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 100%;
  padding: 8px;
  border: 1px solid rgba(4, 6, 15, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.lang-dropdown.is-open .lang-menu {
  display: grid;
  gap: 4px;
}

.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.lang-option.is-active,
.lang-option:hover {
  background: rgba(4, 6, 15, 0.06);
}

.lang-pill img {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.lang-option img {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.lang-pill__arrow-icon {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 auto;
}

.footer-side {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-mail {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  transition: color 180ms ease;
}

.footer-mail:hover {
  color: #fe375b;
}

.store-link img {
  width: 189px;
  height: 56px;
}

.store-link {
  flex: 0 0 auto;
}

.footer-divider {
  height: 1px;
  background: rgba(4, 6, 15, 0.12);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
}

.footer-bottom p,
.footer-links a {
  font-size: 16px;
  color: var(--muted-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  @keyframes heroIntroUpDesktop {
    0% {
      opacity: 0;
      transform: translateY(34px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes heroVisualIntroDesktop {
    0% {
      opacity: 0;
      transform: translateY(34px) scale(0.985);
    }

    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes heroFloatDesktop {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .hero-copy > * {
    opacity: 0;
    animation: heroIntroUpDesktop 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-copy h1 {
    animation-delay: 80ms;
  }

  .hero-copy p {
    animation-delay: 180ms;
  }

  .hero-copy .hero-actions {
    animation-delay: 300ms;
  }

  .hero-visual {
    opacity: 0;
    animation:
      heroVisualIntroDesktop 900ms cubic-bezier(0.22, 1, 0.36, 1) 140ms forwards,
      heroFloatDesktop 7s ease-in-out 1.2s infinite;
    will-change: transform;
  }

  .reveal-desktop {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 720ms ease,
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

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

  .feature-card,
  .connect-item,
  .connect-visual--surface,
  .profile-visual,
  .action-card {
    transition:
      transform 260ms ease,
      box-shadow 260ms ease,
      filter 260ms ease;
  }

  .feature-card:hover,
  .connect-item:hover,
  .connect-visual--surface:hover,
  .profile-visual:hover,
  .action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(4, 6, 15, 0.09);
  }

  .action-card:hover .action-card__bg {
    filter: saturate(1.04);
  }

  .slider-bleed {
    overflow: visible;
  }

  .feature-card:hover,
  .connect-item:hover,
  .connect-visual--surface:hover,
  .profile-visual:hover {
    transform: none;
    box-shadow: none;
  }

  .action-card:hover {
    box-shadow: none;
  }
}

@media (max-width: 1260px) and (min-width: 768px) {
  .header-bar {
    gap: 16px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .feature-card {
    min-height: clamp(420px, 42vw, 542px);
    padding: clamp(24px, 2.6vw, 40px);
  }

  .feature-card__content {
    max-width: min(100%, 320px);
  }

  .feature-card--compact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .emoji-grid {
    position: static;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
    grid-template-columns: repeat(3, minmax(72px, 1fr));
  }

  .emoji-cell {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .emoji-grid img {
    width: min(78px, 74%);
    height: auto;
    max-height: min(78px, 74%);
  }

  .connect-panel {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
  }

  .connect-item {
    min-height: auto;
    padding: clamp(24px, 2.6vw, 40px);
  }

  .connect-item p {
    font-size: clamp(20px, 2.2vw, 26px);
  }

  .connect-visual--surface {
    min-height: clamp(360px, 42vw, 484px);
  }

  .connect-visual img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 980px) and (min-width: 768px) {
  .connect-panel {
    grid-template-columns: 1fr;
  }

  .connect-visual--surface {
    min-height: 420px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .lang-pill:hover,
  .lang-option:hover,
  .slider-dot:hover,
  .store-link:hover,
  .logo-link:hover,
  .main-nav a:hover,
  .footer-links a:hover {
    transform: scale(1.03);
  }
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    z-index: 70;
    padding-top: 12px;
  }

  .container,
  .header-pill {
    width: min(calc(100% - 32px), 1180px);
  }

  .header-pill {
    padding: 8px 20px;
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    border-radius: 32px;
    overflow: hidden;
    transition: padding 260ms ease, border-radius 260ms ease, background-color 260ms ease;
  }

  .header-bar {
    gap: 12px;
  }

  body.menu-open .header-pill {
    padding-bottom: 0;
  }

  .logo-link img,
  .footer-logo {
    width: 160px;
  }

  .main-nav,
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex !important;
  }

  .menu-toggle {
    display: flex;
    padding: 0;
    width: 36px;
    height: 36px;
    position: relative;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .menu-toggle span {
    position: absolute;
    width: 26px;
    height: 2px;
    background: #04060f;
    border-radius: 2px;
    transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 10px;
  }

  .menu-toggle span:nth-child(2) {
    top: 17px;
  }

  .menu-toggle span:nth-child(3) {
    top: 24px;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    top: 17px;
    transform: rotate(45deg);
  }

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

  body.menu-open .menu-toggle span:nth-child(3) {
    top: 17px;
    transform: rotate(-45deg);
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    font-family: "Geologica", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    opacity: 0;
    transition:
      max-height 280ms ease,
      padding-top 280ms ease,
      padding-bottom 280ms ease,
      opacity 220ms ease;
  }

  .mobile-menu-nav a {
    transform: translateY(10px);
    opacity: 0;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  body.menu-open .mobile-menu-nav {
    max-height: 260px;
    padding-top: 36px;
    padding-bottom: 36px;
    opacity: 1;
  }

  body.menu-open .mobile-menu-nav a {
    transform: translateY(0);
    opacity: 1;
  }

  body.menu-open .mobile-menu-nav a:nth-child(1) {
    transition-delay: 40ms;
  }

  body.menu-open .mobile-menu-nav a:nth-child(2) {
    transition-delay: 80ms;
  }

  body.menu-open .mobile-menu-nav a:nth-child(3) {
    transition-delay: 120ms;
  }

  .hero-section {
    margin-top: 0;
    padding-top: 120px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 32px;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    min-height: 769px;
    height: auto;
    display: flex;
    align-items: flex-end;
    overflow: visible;
  }

  .hero-layout {
    position: relative;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: end;
    min-height: auto;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-visual {
    position: absolute;
    top: -29px;
    left: calc(50% - 10px);
    width: min(427px, calc(100vw - 24px));
    transform: translateX(-50%);
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 0;
    height: 351px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      #fff 77%,
      #fff 100%
    );
  }

  .hero-visual img {
    width: min(384px, calc(100vw - 64px));
    height: auto;
    max-height: 440px;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    margin-top: 248px;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-copy p {
    margin-top: 12px;
    font-size: 18px;
    max-width: 265px;
  }

  .hero-actions {
    margin-top: 32px;
    width: 100%;
  }

  .hero-actions .btn,
  .btn-soft,
  .btn-brand {
    width: 100%;
    min-height: 56px;
    padding: 16px 24px;
    font-size: 18px;
  }

  .hero-actions .btn img {
    width: 24px;
    height: 24px;
  }

  .feature-strip,
  .profile-section,
  .connect-section,
  .actions-section {
    padding-top: 80px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    min-height: 446px;
    padding: 24px;
    border-radius: 32px;
  }

  .feature-card--accent {
    min-height: 446px;
  }

  .feature-card--compact .feature-card__content {
    max-width: 100%;
  }

  .feature-card__content {
    max-width: 100%;
  }

  .feature-card__content h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .feature-card__content p {
    font-size: 16px;
    line-height: 1.3;
  }

  .feature-card__image--woman {
    width: min(312px, calc(100% - 8px));
    right: 0;
    bottom: 0;
  }

  .feature-card__image--chat {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(352px, calc(100% - 32px));
    transform: translateX(-50%);
  }

  .emoji-grid {
    position: static;
    margin-top: 25px;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .emoji-cell {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 23px;
    background: #f3f5f7;
  }

  .emoji-grid img {
    width: min(77px, 82%);
    height: auto;
    max-height: min(77px, 82%);
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    margin-top: 8px;
    font-size: 16px;
  }

  .profile-visual {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .profile-visual img {
    width: min(100%, 343px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-button {
    margin-top: 12px;
    width: auto;
    align-self: center;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .connect-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
    align-items: stretch;
  }

  .connect-item {
    min-height: auto;
    padding: 24px;
    border-radius: 16px;
    gap: 16px;
    align-items: center;
  }

  .connect-item img {
    width: clamp(40px, 12vw, 48px);
    height: clamp(40px, 12vw, 48px);
    flex: 0 0 auto;
  }

  .connect-item p {
    font-family: "Geologica", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.7px;
    font-weight: 400;
    flex: 1 1 auto;
  }

  .connect-visual--surface {
    min-height: min(286px, 78vw);
    padding: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
  }

  .connect-visual img {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
  }

  .slider-bleed {
    margin-left: calc(50% - 50vw);
    padding-left: 16px;
    padding-right: 16px;
  }

  .action-slider {
    grid-auto-columns: calc(100vw - 48px);
    max-width: 100%;
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .action-card {
    height: min(400px, calc(100vw - 48px));
    min-height: 360px;
    border-radius: 32px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }


  .action-card__bg {
    top: 0;
    left: auto;
    width: auto;
    min-width: auto;
    height: 100%;
    transform: none;
    object-position: top right;
  }

  .action-card--pink .action-card__bg {
    right: -40px;
  }

  .action-card--dark .action-card__bg {
    right: -56px;
  }

  .action-card--blue .action-card__bg {
    right: -60px;
  }

  .action-card--amber .action-card__bg {
    right: -86px;
  }

  .action-card__overlay,
  .action-card__overlay--dark,
  .action-card__overlay--blue,
  .action-card__overlay--amber {
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 44%);
  }

  .action-card__content {
    padding: 24px;
  }

  .action-card__content > div:first-child {
    max-width: min(260px, calc(100% - 12px));
  }

  .action-card h3 {
    font-size: 24px;
  }

  .action-card p {
    font-size: 16px;
  }

  .btn-glass {
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    gap: 8px;
    font-size: 16px;
  }

  .btn-glass img {
    width: 24px;
    height: 24px;
  }

  .slider-dots {
    display: flex;
    margin-top: 16px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .site-footer {
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    overflow: hidden;
  }

  .footer-layout {
    padding-top: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 60px;
    padding: 32px 0;
  }

  .footer-brand {
    gap: 24px;
  }

  .footer-brand p,
  .footer-address {
    font-size: 16px;
  }

  .footer-side {
    align-items: flex-start;
    gap: 40px;
  }

  .footer-contact {
    text-align: left;
    order: 3;
  }

  .footer-mail {
    font-size: 20px;
  }

  .footer-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .btn-dark-rect {
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    width: 170px;
  }

  .store-link img {
    width: 162px;
    height: 48px;
  }

  .lang-pill {
    height: 48px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    width: 191px;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    padding: 32px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p,
  .footer-links a {
    font-size: 14px;
  }
}
