:root {
  --text: #050505;
  --muted: #6b6b70;
  --line: #e9e9ed;
  --soft: #f4f4f5;
  --panel: #ffffff;
  --black: #050505;
  --radius: 8px;
  --container: 1120px;
  --mono: "SF Mono", "Roboto Mono", "Cascadia Mono", Menlo, monospace;
  --sans: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: var(--sans);
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 24px;
}

.logo {
  font-weight: 950;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav a {
  padding: 16px 0;
}

.main-nav a:hover,
.footer-links a:hover {
  opacity: 0.58;
}

.header-cta {
  margin-left: auto;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  padding: 11px 18px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  place-items: center;
  padding: 0;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: white;
  display: block;
  margin: 3px 0;
}

.mobile-panel {
  display: none;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(22px);
}

.site-header.is-mega-open .mega-menu,
.site-header:hover .mega-menu,
.site-header:focus-within .mega-menu {
  display: block;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  padding: 20px 0 22px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mega-column h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.mega-links {
  display: grid;
  gap: 7px;
}

.mega-links a {
  display: flex;
  justify-content: space-between;
  min-height: 34px;
  border-radius: 6px;
  background: #f5f5f6;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.mega-highlight {
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(196, 255, 242, 0.88), transparent 36%),
    radial-gradient(circle at 88% 15%, rgba(238, 128, 235, 0.4), transparent 34%),
    linear-gradient(135deg, #eefcff, #f7e8ff);
}

.mega-highlight p {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mega-highlight span {
  display: block;
  margin-top: 12px;
  color: #55555b;
  font-size: 13px;
  line-height: 1.35;
}

.hero {
  height: min(760px, max(650px, calc(100svh - 88px)));
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 43% 62%, rgba(205, 255, 44, 0.78) 0 8%, transparent 22%),
    radial-gradient(circle at 68% 32%, rgba(255, 190, 226, 0.76), transparent 30%),
    radial-gradient(circle at 26% 8%, rgba(232, 208, 255, 0.9), transparent 34%),
    linear-gradient(120deg, #fff8ff 0%, #fff3ff 46%, #ffe6f6 100%);
}

.hero-grid {
  width: min(1500px, calc(100% - 80px));
  height: 100%;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) 1.08fr;
  align-items: center;
  gap: 8px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 16px;
}

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

h1 {
  max-width: 700px;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.button-dark {
  background: var(--black);
  color: white;
}

.button:hover,
.header-cta:hover,
.telegram-link:hover,
.feature-column a:hover {
  transform: translateY(-1px);
}

.hero-copy .button {
  width: 304px;
  min-height: 88px;
  margin-top: 52px;
  padding: 0 32px;
  font-size: 15px;
}

.hero-device {
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.motion-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.motion-card {
  position: absolute;
  width: 220px;
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
  box-shadow: 0 18px 48px rgba(42, 32, 52, 0.13);
  backdrop-filter: blur(16px);
  animation: motionCardFloat 5s ease-in-out infinite;
}

.motion-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 10px;
}

.motion-card div {
  display: grid;
  gap: 5px;
}

.motion-card small {
  color: #717177;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.motion-card strong {
  font-size: 14px;
  line-height: 1.15;
}

.motion-card-web {
  top: 126px;
  left: 100px;
}

.motion-card-mobile {
  top: 320px;
  left: 100px;
  animation-delay: -1.7s;
}

.motion-card-backend {
  bottom: 86px;
  left: 110px;
  animation-delay: -3.1s;
}

.phone {
  position: relative;
  width: 480px;
  height: 830px;
  border: 18px solid #050505;
  border-bottom-width: 24px;
  border-radius: 74px 74px 0 0;
  background: #f7f1f5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.phone-hero {
  transform: translate(38px, 112px) rotate(7deg);
  transform-origin: 50% 100%;
}

.phone::before,
.phone::after {
  content: "";
  position: absolute;
  width: 4px;
  background: #050505;
  border-radius: 999px;
  left: -20px;
}

.phone::before {
  top: 118px;
  height: 48px;
}

.phone::after {
  top: 185px;
  height: 84px;
}

.phone-top {
  position: absolute;
  top: 24px;
  left: 34px;
  right: 34px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
}

.signal {
  letter-spacing: -0.25em;
}

.hero-screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 92px 28px 28px;
  background: linear-gradient(180deg, #fafbff, #f0f2f8);
  text-align: center;
}

.hero-bank-head {
  width: 100%;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  color: #252942;
  font-family: var(--mono);
}

.hero-bank-head > span {
  font-size: 42px;
  line-height: 1;
}

.hero-bank-head small {
  grid-column: 2;
  font-size: 12px;
}

.hero-balance {
  margin-top: 64px;
  color: #111744;
  font-size: 56px;
  line-height: 1;
}

.hero-balance span {
  color: #a8abbe;
  font-size: 38px;
}

.hero-loyalty {
  margin-top: 30px;
  border-radius: 999px;
  background: white;
  padding: 13px 22px;
  color: #30344c;
  box-shadow: 0 12px 30px rgba(30, 38, 70, 0.06);
  font-size: 13px;
}

.hero-loyalty strong {
  margin-left: 14px;
}

.hero-card {
  width: 268px;
  height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 86px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 18%, rgba(122, 255, 185, 0.48), transparent 32%),
    linear-gradient(135deg, #00704f, #0e3f36);
  padding: 22px;
  color: white;
  text-align: left;
  box-shadow: 0 18px 30px rgba(4, 66, 48, 0.2);
  animation: cardLift 4s ease-in-out infinite;
}

.hero-card small {
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-actions {
  width: calc(100% + 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: -10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
  box-shadow: 0 18px 40px rgba(31, 37, 69, 0.14);
  backdrop-filter: blur(12px);
}

.hero-actions span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: white;
  padding: 0 16px;
  color: #242942;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.hero-actions span:last-child {
  width: 54px;
  padding: 0;
  font-size: 20px;
}

.hero-history {
  width: 100%;
  height: 120px;
  margin-top: 24px;
  border-radius: 22px;
  background:
    linear-gradient(#e6e8ef 0 0) 24px 26px / 160px 10px no-repeat,
    linear-gradient(#d8dbe5 0 0) 24px 50px / 220px 8px no-repeat,
    white;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 52px 0;
}

.split-copy {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 50px;
  align-items: end;
}

.split-copy p {
  color: #2c2c30;
  font-size: 18px;
  line-height: 1.34;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.stat-pill {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  background: var(--soft);
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #050505;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 48px;
  font-weight: 900;
  text-align: center;
}

.brand-row span {
  min-width: 0;
}

.gradient-panel {
  border-radius: var(--radius);
  padding: 58px 22px 30px;
  background:
    radial-gradient(circle at 15% 17%, rgba(200, 255, 250, 0.85), transparent 30%),
    radial-gradient(circle at 86% 9%, rgba(246, 114, 235, 0.42), transparent 35%),
    radial-gradient(circle at 14% 87%, rgba(226, 134, 255, 0.52), transparent 33%),
    linear-gradient(125deg, #dffcff 0%, #f4efff 48%, #f3d4ff 100%);
}

.industries-panel h2,
.services-panel h2 {
  margin: 0 0 38px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  margin-bottom: 18px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: #050505;
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.feature-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin-top: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.services-panel {
  background:
    radial-gradient(circle at 12% 54%, rgba(240, 90, 225, 0.46), transparent 27%),
    radial-gradient(circle at 76% 24%, rgba(202, 249, 255, 0.9), transparent 32%),
    radial-gradient(circle at 87% 85%, rgba(80, 255, 227, 0.35), transparent 26%),
    linear-gradient(125deg, #efd9ff 0%, #f4f1ff 48%, #cdfcf9 100%);
}

.gradient-pink-lime {
  background:
    radial-gradient(circle at 46% 58%, rgba(205, 255, 44, 0.72) 0 9%, transparent 20%),
    radial-gradient(circle at 67% 34%, rgba(255, 190, 226, 0.76), transparent 28%),
    linear-gradient(120deg, #fff8ff 0%, #fff3ff 46%, #ffe6f6 100%);
}

.gradient-cyan-violet {
  background:
    radial-gradient(circle at 15% 17%, rgba(200, 255, 250, 0.85), transparent 30%),
    radial-gradient(circle at 86% 9%, rgba(246, 114, 235, 0.42), transparent 35%),
    linear-gradient(125deg, #dffcff 0%, #f4efff 48%, #f3d4ff 100%);
}

.gradient-violet-mint {
  background:
    radial-gradient(circle at 12% 54%, rgba(240, 90, 225, 0.46), transparent 27%),
    radial-gradient(circle at 76% 24%, rgba(202, 249, 255, 0.9), transparent 32%),
    linear-gradient(125deg, #efd9ff 0%, #f4f1ff 48%, #cdfcf9 100%);
}

.gradient-white {
  background: #ffffff;
}

.tech-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  margin: 44px 0 8px;
  font-size: 18px;
  font-weight: 650;
}

.tech-row span::before {
  content: "✦";
  margin-right: 7px;
  font-size: 13px;
}

.solutions-section {
  padding-top: 38px;
}

.inner-page-hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 116px 0 86px;
}

.inner-page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 88px;
  align-items: end;
}

.inner-page-hero h1 {
  max-width: 740px;
}

.inner-page-hero p:not(.eyebrow) {
  color: #242429;
  font-size: 21px;
  line-height: 1.35;
}

.dynamic-section {
  padding: 52px 0;
}

.dynamic-panel {
  border-radius: var(--radius);
  padding: 54px 24px 24px;
}

.dynamic-panel h2 {
  max-width: 880px;
  margin-top: 16px;
}

.dynamic-lead {
  max-width: 680px;
  margin-top: 20px;
  color: #48494f;
  font-size: 17px;
  line-height: 1.45;
}

.dynamic-card-grid,
.process-grid,
.numbered-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.dynamic-card-grid article,
.process-grid article,
.numbered-list-grid article {
  min-height: 180px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: 16px;
}

.dynamic-card-grid h3 {
  margin-top: 18px;
}

.dynamic-card-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.process-grid span,
.numbered-list-grid span,
.process-grid p,
.numbered-list-grid p {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  text-transform: uppercase;
}

.process-grid h3,
.numbered-list-grid h3 {
  margin-top: 36px;
  font-size: 18px;
}

.process-grid p,
.numbered-list-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.faq-panel {
  padding-bottom: 34px;
}

.faq-list {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 4px;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.service-cta {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
  border-radius: var(--radius);
  padding: 48px 28px 28px;
}

.service-cta h2 {
  max-width: 720px;
  margin-top: 18px;
}

.service-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: #47484e;
  line-height: 1.45;
}

.service-cta .button {
  width: 220px;
  flex: 0 0 auto;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading p {
  margin-top: 16px;
  font-size: 18px;
  color: #2b2b2f;
}

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

.solution-card {
  min-width: 0;
}

.solution-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.solution-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.solution-card:hover .solution-image {
  transform: scale(1.025);
}

.project-art {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: end center;
}

.project-art-phone {
  width: 192px;
  height: 276px;
  transform: translateY(18px) rotate(-3deg);
  border: 11px solid #080808;
  border-radius: 36px 36px 0 0;
  background: #f8f8fa;
  padding: 18px 12px;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
  animation: projectPhone 5s ease-in-out infinite;
}

.project-art-2 .project-art-phone,
.project-art-5 .project-art-phone {
  transform: translateY(18px) rotate(4deg);
}

.project-art-status {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
}

.project-art-display {
  height: 210px;
  display: grid;
  align-content: end;
  gap: 10px;
  margin-top: 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.92), transparent 23%),
    linear-gradient(150deg, #dff6ff, #eadcff);
  padding: 16px;
}

.project-art-display i {
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 7px 14px rgba(40, 40, 70, 0.08);
}

.project-art-1 .project-art-display {
  background: linear-gradient(150deg, #fff1cb, #ff9667);
}

.project-art-3 .project-art-display {
  background: linear-gradient(150deg, #e5ffe8, #80e2ad);
}

.project-art-4 .project-art-display {
  background: linear-gradient(150deg, #ddffda, #28c862);
}

.project-art-5 .project-art-display {
  background: linear-gradient(150deg, #e6fbff, #75c9ff);
}

.project-art-6 .project-art-display {
  background: linear-gradient(150deg, #fff5a6, #4d8eff);
}

.media-orange {
  background:
    radial-gradient(circle at 70% 18%, #ffdca3, transparent 25%),
    linear-gradient(135deg, #ff8500, #ff9c19);
}

.media-lilac {
  background:
    radial-gradient(circle at 18% 16%, #ffffff, transparent 24%),
    linear-gradient(135deg, #f3dafe, #eff8ff);
}

.media-soft {
  background:
    radial-gradient(circle at 88% 44%, rgba(255, 58, 72, 0.46), transparent 18%),
    linear-gradient(135deg, #f7f0df, #eef7ee);
}

.media-green {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.75), transparent 25%),
    linear-gradient(135deg, #00e594, #2adb27);
}

.media-blue {
  background:
    radial-gradient(circle at 28% 18%, #eaffff, transparent 30%),
    linear-gradient(135deg, #b9f3ff, #7bdfff);
}

.media-yellow {
  background:
    radial-gradient(circle at 83% 20%, #0a5fff, transparent 28%),
    linear-gradient(135deg, #00a4ff, #0061e8);
}

.phone-card {
  width: 188px;
  height: 274px;
  border: 11px solid #070707;
  border-radius: 34px;
  background: white;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.food-animation {
  transform: rotate(-1deg) translateY(18px);
  width: 218px;
  height: 302px;
}

.screen-menu {
  height: 100%;
  padding: 42px 14px 16px;
  background: #fff6e9;
}

.badge {
  display: inline-block;
  border-radius: 9px;
  background: white;
  color: #ee6b2e;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 850;
}

.tabs {
  display: flex;
  gap: 6px;
  margin-top: 32px;
}

.tabs span {
  border-radius: 16px;
  background: #fff1db;
  padding: 8px 7px;
  font-size: 9px;
  font-weight: 800;
}

.food-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.food-row i {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(#f6b43f 0 22%, #632b15 22% 48%, #f9c84a 48% 58%, #883817 58% 80%, #f6b43f 80%);
  animation: floatFood 2.8s ease-in-out infinite;
}

.food-row i:nth-child(2) {
  border-radius: 42% 42% 46% 46%;
  background: linear-gradient(#fff9ec, #f6d4a5);
  animation-delay: 380ms;
}

.dock {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 118px;
  margin: 29px auto 0;
  border-radius: 999px;
  background: #5d2818;
  padding: 11px;
}

.dock span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff9c35;
  animation: dockPulse 1.8s ease-in-out infinite;
}

.dock span:nth-child(2) {
  background: #25c768;
  animation-delay: 200ms;
}

.dock span:nth-child(3) {
  background: #ece9df;
  animation-delay: 400ms;
}

.fashion-animation {
  padding: 55px 16px 18px;
  transform: rotate(-5deg) translateY(10px);
}

.search-line {
  border-bottom: 1px solid #d8d8dd;
  padding-bottom: 14px;
  font-size: 12px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag-cloud span {
  border: 1px solid #171717;
  border-radius: 999px;
  padding: 7px 9px;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  animation: tagBlink 3.6s ease-in-out infinite;
}

.tag-cloud span:nth-child(2n) {
  animation-delay: 300ms;
}

.tag-cloud span:nth-child(3n) {
  animation-delay: 700ms;
}

.suggestions {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.suggestions span {
  height: 12px;
  border-radius: 999px;
  background: #ededf1;
}

.bank-animation {
  padding: 52px 18px 18px;
  transform: rotate(4deg) translateY(18px);
}

.balance {
  font-size: 19px;
  font-weight: 900;
}

.card-preview {
  height: 64px;
  border-radius: 12px;
  margin-top: 18px;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.8), transparent 16%),
    linear-gradient(135deg, #0dc6c9, #77f4cf);
  animation: cardSweep 2.8s ease-in-out infinite;
}

.chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 52px;
  margin-top: 16px;
}

.chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: #78d3db;
  animation: chartMove 2.2s ease-in-out infinite;
}

.chart span:nth-child(1) {
  height: 28%;
}

.chart span:nth-child(2) {
  height: 64%;
  animation-delay: 160ms;
}

.chart span:nth-child(3) {
  height: 42%;
  animation-delay: 320ms;
}

.chart span:nth-child(4) {
  height: 78%;
  animation-delay: 480ms;
}

.bank-animation button {
  width: 100%;
  height: 34px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  background: #eef0ff;
  color: #726ed1;
  font-size: 10px;
  font-weight: 800;
}

.delivery-animation {
  display: grid;
  place-items: center;
  background: #33df27;
  transform: translateY(12px);
}

.map-pin {
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 0;
  background: #050505;
  transform: rotate(-45deg);
  animation: pinMove 2.2s ease-in-out infinite;
}

.route {
  position: absolute;
  width: 116px;
  height: 116px;
  border: 2px dashed rgba(0, 0, 0, 0.32);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

.order-sheet {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 18px;
  border-radius: 14px;
  background: white;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.order-sheet span {
  color: var(--muted);
  font-size: 12px;
}

.fintech-animation {
  padding: 46px 15px 18px;
  transform: rotate(7deg) translateY(12px);
}

.amount {
  font-size: 18px;
  font-weight: 900;
}

.mini-card,
.event-card {
  border-radius: 12px;
  background: linear-gradient(135deg, #0e7f68, #48ce91);
}

.mini-card {
  height: 76px;
  margin-top: 16px;
  animation: cardLift 2.8s ease-in-out infinite;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.actions span {
  border-radius: 999px;
  background: #f4f4f7;
  padding: 8px 3px;
  font-size: 9px;
  text-align: center;
}

.event-card {
  height: 46px;
  margin-top: 10px;
  background: linear-gradient(135deg, #39d59c, #f17865);
}

.immersive-animation {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.cup {
  width: 118px;
  height: 160px;
  border-radius: 8px 8px 32px 32px;
  background: linear-gradient(90deg, #f7a600, #ffca29 44%, #ff9900);
  box-shadow: inset -12px 0 22px rgba(125, 61, 0, 0.18);
  animation: cupFloat 3s ease-in-out infinite;
}

.liquid {
  position: absolute;
  top: -18px;
  width: 10px;
  height: 140px;
  border-radius: 999px;
  background: #ffd23b;
  animation: pour 1.8s ease-in-out infinite;
}

.caption {
  position: absolute;
  color: white;
  font-size: 12px;
  font-weight: 850;
}

.solution-card h3 {
  margin-top: 18px;
}

.solution-card p {
  min-height: 48px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
}

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

.solution-card li {
  border-radius: 6px;
  background: var(--soft);
  padding: 10px 12px 10px 34px;
  position: relative;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #050505;
}

.values-panel {
  padding: 58px 20px 30px;
  background:
    radial-gradient(circle at 10% 12%, rgba(178, 255, 246, 0.85), transparent 31%),
    radial-gradient(circle at 78% 19%, rgba(242, 129, 235, 0.5), transparent 36%),
    radial-gradient(circle at 22% 91%, rgba(221, 147, 255, 0.5), transparent 30%),
    linear-gradient(125deg, #dbfcff 0%, #f3f0ff 48%, #f3d6ff 100%);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.values-panel h2 {
  max-width: 640px;
  margin-top: 24px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.value-grid article {
  min-height: 112px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 15px;
}

.value-grid span,
.value-grid p {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  text-transform: uppercase;
}

.value-grid p {
  margin-top: 22px;
}

.contact-section {
  padding-top: 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 110px;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 22px;
  max-width: 520px;
}

.telegram-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(450px, 100%);
  min-height: 50px;
  margin-top: 28px;
  border-radius: var(--radius);
  background: var(--soft);
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.contact-form {
  display: grid;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

label {
  position: relative;
  display: grid;
}

label span {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #66666a;
  pointer-events: none;
  transition: transform 160ms ease, font-size 160ms ease;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--text);
  padding: 27px 16px 10px;
  outline: 2px solid transparent;
  resize: vertical;
}

input {
  height: 54px;
}

textarea {
  min-height: 70px;
}

input:focus,
textarea:focus {
  outline-color: #050505;
}

label:focus-within span,
label.has-value span {
  transform: translateY(-10px);
  font-size: 10px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.form-actions-single {
  grid-template-columns: 1fr;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.file-control {
  min-height: 52px;
  border: 1px dashed #050505;
  border-radius: var(--radius);
  cursor: pointer;
}

.file-control input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-control span,
.file-control b {
  position: static;
  pointer-events: none;
}

.file-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.form-actions .button {
  width: 100%;
}

.form-note {
  color: #96969b;
  font-size: 12px;
  line-height: 1.32;
}

.form-status {
  min-height: 20px;
  color: #16734c;
  font-size: 13px;
}

.form-status.is-error {
  color: #a52121;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.site-footer {
  margin-top: 42px;
  padding: 56px 0 42px;
  background: #050505;
  color: #ffffff;
}

.footer-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  min-height: 260px;
  padding: 12px 0;
  background: #050505;
}

.footer-label {
  color: #a8a8ad;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-main {
  display: inline-block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 2;
  color: #9c9ca2;
  font-size: 12px;
  line-height: 1.42;
}

.footer-sign {
  position: absolute;
  right: 36px;
  bottom: 30px;
  font-weight: 950;
  font-style: italic;
  color: #ffffff;
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.86;
  }
}

@keyframes projectPhone {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes motionCardFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: -1deg;
  }
  50% {
    translate: 0 -12px;
    rotate: 1deg;
  }
}

@keyframes floatFood {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

@keyframes dockPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.16);
  }
}

@keyframes tagBlink {
  0%,
  100% {
    background: white;
  }
  50% {
    background: #111;
    color: white;
  }
}

@keyframes cardSweep {
  0%,
  100% {
    filter: hue-rotate(0);
  }
  50% {
    filter: hue-rotate(32deg);
  }
}

@keyframes chartMove {
  0%,
  100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes pinMove {
  0%,
  100% {
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    transform: rotate(-45deg) translate(16px, -14px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cardLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cupFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes pour {
  0%,
  100% {
    transform: translateY(-28px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-cta,
  .main-nav,
  .mega-menu {
    display: none;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .mobile-panel.is-open {
    display: grid;
    gap: 14px;
    width: min(100% - 32px, var(--container));
    margin: 0 auto 16px;
    border-radius: var(--radius);
    background: #f5f5f6;
    padding: 16px;
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
  }

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: var(--radius);
    background: #050505;
    color: white;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 48px;
  }

  .hero,
  .hero-grid {
    height: auto;
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 32px, var(--container));
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 70px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-device {
    height: 460px;
    align-items: end;
    justify-content: center;
  }

  .phone {
    width: 258px;
    height: 460px;
    border-width: 12px;
    border-bottom-width: 18px;
    border-radius: 48px 48px 0 0;
  }

  .phone-hero {
    transform: translateY(46px) rotate(4deg);
  }

  .motion-card {
    width: 168px;
    min-height: 62px;
    grid-template-columns: 30px 1fr;
    padding: 9px;
  }

  .motion-card > span {
    width: 30px;
    height: 30px;
  }

  .motion-card strong {
    font-size: 11px;
  }

  .motion-card-web {
    top: 56px;
    left: 0;
  }

  .motion-card-mobile {
    top: 218px;
    right: 0;
    left: auto;
  }

  .motion-card-backend {
    bottom: 34px;
    left: 12px;
  }

  .hero-screen {
    padding: 58px 16px 18px;
  }

  .hero-balance {
    margin-top: 30px;
    font-size: 30px;
  }

  .hero-balance span {
    font-size: 20px;
  }

  .hero-loyalty {
    margin-top: 18px;
    padding: 9px 14px;
    font-size: 10px;
  }

  .hero-card {
    width: 166px;
    height: 98px;
    margin-top: 34px;
    padding: 14px;
  }

  .hero-actions {
    width: calc(100% + 16px);
    padding: 8px;
  }

  .hero-actions span {
    min-height: 36px;
    padding: 0 8px;
    font-size: 8px;
  }

  .hero-actions span:last-child {
    width: 36px;
  }

  .split-copy,
  .contact-grid,
  .inner-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-row,
  .feature-grid,
  .value-grid,
  .dynamic-card-grid,
  .process-grid,
  .numbered-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-row,
  .tech-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    grid-column: auto;
    max-width: 460px;
  }

  .service-cta {
    min-height: 300px;
    display: grid;
    align-content: end;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section,
  .section-tight {
    padding: 42px 0;
  }

  .hero-grid {
    padding-top: 34px;
    gap: 24px;
  }

  .hero-device {
    height: 300px;
  }

  .phone {
    height: 420px;
  }

  h1,
  h2 {
    font-size: 44px;
  }

  .hero-copy .button {
    width: min(100%, 304px);
    min-height: 72px;
    margin-top: 34px;
  }

  .motion-card-backend {
    display: none;
  }

  .stats-row,
  .feature-grid,
  .value-grid,
  .dynamic-card-grid,
  .process-grid,
  .numbered-list-grid,
  .solutions-grid,
  .form-row,
  .form-actions,
  .brand-row,
  .tech-row {
    grid-template-columns: 1fr;
  }

  .stat-pill {
    white-space: normal;
  }

  .gradient-panel {
    padding: 34px 14px 18px;
  }

  .inner-page-hero {
    min-height: 420px;
    padding: 62px 0 42px;
  }

  .dynamic-panel {
    padding: 32px 14px 18px;
  }

  .dynamic-card-grid article,
  .process-grid article,
  .numbered-list-grid article {
    min-height: 148px;
  }

  .service-cta {
    padding: 34px 16px 16px;
  }

  .service-cta .button {
    width: 100%;
  }

  .solution-media {
    height: 270px;
  }

  .contact-copy h2 {
    font-size: 42px;
  }

  .footer-panel {
    padding: 18px 0;
  }

  .footer-sign {
    position: static;
    align-self: end;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
