:root {
  --navy: #0f1336;
  --heading: #12142a;
  --nav: #6e6d78;
  --muted: #8b8a96;
  --body: #6b6a75;
  --line: #ececf2;
  --bg: #ffffff;
  --soft: #f6f6fe;
  --soft-2: #f4f4fc;
  --purple: #a240d5;
  --purple-deep: #8e2de2;
  --pink: #e74169;
  --orange: #ff7324;
  --orange-hot: #fb7c1f;
  --blue: #516cf7;
  --blue-bright: #4675f9;
  --logo: #482ac8;
  --tagline: #7b9cff;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(72, 42, 200, .08);
  --grad-cta: linear-gradient(90deg, #a240d5 0%, #e74169 48%, #ff7324 100%);
  --grad-text: linear-gradient(90deg, #9a41d7 0%, #e74169 52%, #ff7324 100%);
  --grad-banner: linear-gradient(90deg, #fb7c1f 0%, #f45f41 14%, #ef525b 26%, #ea497b 40%, #c74bad 56%, #8f53e9 74%, #516cf7 90%, #4675f9 100%);
  --radius-pill: 999px;
  --header-h: 76px;
  --shell: min(1180px, calc(100% - 48px));
  --font: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --hero-bg: url("../img/hero_bg.jpg");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--heading);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -0.03em; }
p { margin: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--heading);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  overflow: visible;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,19,54,.04);
}
.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; transition: opacity .2s ease, transform .2s ease; }
.brand:hover { opacity: .82; }
.brand img {
  display: block;
  height: 58px;
  width: auto;
}
.footer-brand .brand img { height: 44px; }
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav);
}
.nav > a,
.nav-drop-btn {
  position: relative;
  padding: 8px 0;
  color: inherit;
  font: inherit;
  font-weight: 500;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .2s ease;
}
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-drop-btn svg {
  width: 12px;
  height: 12px;
  transition: transform .2s ease;
}
.nav > a:hover,
.nav > a:focus-visible,
.nav-drop-btn:hover,
.nav-drop-btn:focus-visible,
.nav-drop:hover .nav-drop-btn,
.nav-drop:focus-within .nav-drop-btn {
  color: var(--heading);
}
.nav > a::after,
.nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-cta);
  transform: translateX(-50%);
  transition: width .28s ease;
}
.nav > a:hover::after,
.nav > a:focus-visible::after,
.nav > a.is-active::after,
.nav-drop-btn:hover::after,
.nav-drop-btn:focus-visible::after,
.nav-drop-btn.is-active::after,
.nav-drop:hover .nav-drop-btn::after,
.nav-drop:focus-within .nav-drop-btn::after,
.nav-drop.is-open .nav-drop-btn::after {
  width: 100%;
}
.nav > a.is-active,
.nav-drop-btn.is-active { color: var(--heading); font-weight: 600; }
.nav-drop {
  position: relative;
}
.nav-drop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -28px;
  width: 980px;
  max-width: calc(100vw - 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 22px 50px rgba(40, 32, 90, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 80;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  color: var(--heading);
  text-align: left;
  transition: background .18s ease;
}
.mega-item img {
  width: 148px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 148px;
  background: #111318;
  box-shadow: 0 0 0 1px rgba(15, 19, 54, .06);
}
.mega-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  padding-top: 1px;
}
.mega-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 2px;
}
.mega-ico svg { width: 15px; height: 15px; }
.mega-tone-blue { background: #4d6ef5; }
.mega-tone-pink { background: #e74169; }
.mega-tone-green { background: #1f9d64; }
.mega-tone-orange { background: #ff7324; }
.mega-tone-magenta { background: #d946a6; }
.mega-tone-purple { background: #7a45e8; }
.mega-tone-cyan { background: #3d8cf0; }
.mega-copy strong {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #1a2140;
}
.mega-desc {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.mega-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px 3px 5px;
  border-radius: 999px;
  background: #f4f5fb;
  color: #5b6078;
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
}
.mega-tag svg { width: 11px; height: 11px; }
.mega-world {
  flex-direction: column;
  gap: 8px;
  grid-column: 1 / -1;
}
.mega-world img {
  width: 100%;
  height: 118px;
  flex: 0 0 auto;
}
.mega-item:hover,
.mega-item:focus-visible,
.mega-item.is-active {
  background: var(--soft);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-drop:hover .nav-drop-btn svg,
.nav-drop:focus-within .nav-drop-btn svg,
.nav-drop.is-open .nav-drop-btn svg {
  transform: rotate(180deg);
}
.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--nav);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 6px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.lang-btn:hover,
.lang-btn[aria-expanded="true"] { color: var(--heading); background: var(--soft); }
.lang-btn svg { width: 16px; height: 16px; }
.lang-menu[hidden],
.mobile-nav[hidden],
.mobile-drop-menu[hidden] { display: none !important; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 60;
}
.lang-menu a,
.lang-soon,
.lang-more {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--heading);
}
.lang-menu a:hover { background: var(--soft); }
.lang-menu a[aria-selected="true"] { background: var(--soft); font-weight: 700; }
.lang-soon { opacity: .45; cursor: default; }
.lang-more { color: var(--muted); font-size: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }
.btn-grad {
  color: #fff;
  background: var(--grad-cta);
  box-shadow: 0 10px 22px rgba(231, 65, 105, .28);
}
.btn-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.32) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform .55s ease;
  pointer-events: none;
}
.btn-grad:hover::before,
.btn-grad:focus-visible::before { transform: translateX(130%); }
.btn-grad:hover,
.btn-grad:focus-visible {
  box-shadow: 0 16px 30px rgba(231, 65, 105, .42);
  filter: brightness(1.06);
}
.btn-lg { min-height: 52px; padding: 0 28px; font-size: 15px; }
.btn-outline {
  background: #fff;
  color: var(--heading);
  border: 1.5px solid #1a1a22;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--heading);
  color: #fff;
  border-color: var(--heading);
  box-shadow: 0 12px 24px rgba(18, 20, 42, .18);
}
.btn-white {
  background: #fff;
  color: var(--heading);
  box-shadow: 0 10px 24px rgba(20, 16, 50, .12);
}
.btn-white:hover,
.btn-white:focus-visible {
  box-shadow: 0 16px 32px rgba(20, 16, 50, .2);
}
.play-ico {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}
.play-ico svg { width: 16px; height: 16px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--heading);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  color: var(--heading);
  font-weight: 600;
  width: fit-content;
}
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-cta);
  transform: translateX(-50%);
  transition: width .28s ease;
}
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after { width: 100%; }
.mobile-nav .mobile-join {
  display: inline-flex;
  width: 100%;
  margin-top: 8px;
  padding: 0 22px;
  color: #fff;
}
.mobile-nav .mobile-join::after { display: none; }
.mobile-drop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--heading);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.mobile-drop-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.mobile-drop-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.mobile-drop-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 10px;
}
.mobile-drop-menu .mega-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}
.mobile-drop-menu .mega-item img {
  width: 72px;
  height: 50px;
  flex: 0 0 72px;
}
.mobile-drop-menu .mega-copy {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.mobile-drop-menu .mega-copy strong {
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 13.5px;
}
.mobile-drop-menu .mega-desc,
.mobile-drop-menu .mega-tags { display: none; }
.mobile-drop-menu .mega-item::after { display: none; }

.hero {
  padding: 48px 0 28px;
  background-color: #fff;
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--navy);
}
.hero h1 span { display: block; }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p {
  max-width: 460px;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badges { display: flex; gap: 10px; margin-top: 22px; align-items: center; }
.store-img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: transform .25s ease, opacity .2s ease;
}
.store-img img {
  height: 40px;
  width: auto;
  display: block;
}
.store-img:hover,
.store-img:focus-visible {
  transform: translateY(-2px);
  opacity: .9;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  min-height: 46px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .28);
}
.store-badge-light {
  background: #fff;
  color: #111;
  border: 1px solid #e4e4ee;
  min-height: 42px;
  padding: 6px 10px 6px 8px;
  box-shadow: none;
}
.store-badge-light:hover,
.store-badge-light:focus-visible {
  box-shadow: 0 8px 18px rgba(40, 40, 90, .1);
}
.store-badge small {
  display: block;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}
.store-badge strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.1; }

.hero-visual { position: relative; display: grid; place-items: center; }
.tv-frame {
  margin: 0;
  width: min(100%, 560px);
  filter: drop-shadow(0 28px 50px rgba(40, 50, 90, .18));
}
.tv-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.hero-nav {
  position: absolute;
  top: 46%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e6e6ee;
  background: #fff;
  color: #444;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(20,20,40,.08);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.hero-nav:hover,
.hero-nav:focus-visible {
  transform: scale(1.08);
  color: var(--purple);
  box-shadow: 0 10px 22px rgba(162, 64, 213, .18);
}
.hero-nav-prev { left: -8px; }
.hero-nav-next { right: -8px; }
.hero-dots { display: flex; gap: 7px; margin-top: 14px; }
.hero-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9d9e3;
}
.hero-dots .is-active { background: var(--blue); }

.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 10px 0 28px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid #ececf5;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  box-shadow: 0 8px 18px rgba(20, 20, 50, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pill:hover,
.pill:focus-visible {
  transform: translateY(-3px);
  border-color: #d8d4f0;
  box-shadow: 0 14px 26px rgba(72, 42, 200, .12);
}
.pill-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.pill-ico svg { width: 16px; height: 16px; }
.pill-orange .pill-ico { color: #ff7324; background: #fff3ea; }
.pill-blue .pill-ico { color: #3d6df5; background: #eef3ff; }
.pill-pink .pill-ico { color: #e74169; background: #ffeff3; }
.pill-purple .pill-ico { color: #8e2de2; background: #f4ecff; }
.pill-green .pill-ico { color: #1bbf7a; background: #e9faf2; }

.langs-row { padding: 8px 0 36px; text-align: center; }
.langs-row h2 { font-size: 28px; font-weight: 800; margin-bottom: 18px; color: var(--navy); }
.flag-row, .langs-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.flag, .flag-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #eee;
  flex: 0 0 auto;
}
.flag { width: 18px; height: 18px; box-shadow: none; }
.flag-more {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--heading);
  font-size: 12px;
  font-weight: 800;
}
.flag-tr { background: linear-gradient(#e30a17 40%, #e30a17 40%); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Crect width='30' height='30' fill='%23e30a17'/%3E%3Ccircle cx='13' cy='15' r='6' fill='%23fff'/%3E%3Ccircle cx='14.5' cy='15' r='4.8' fill='%23e30a17'/%3E%3Cpath fill='%23fff' d='M19.2 15 16.8 16.1l.9-2.5-.9-2.5 2.4 1.1 2.4-1.1-.9 2.5.9 2.5z'/%3E%3C/svg%3E"); }
.flag-gb { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23C8102E' stroke-width='2'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E"); }
.flag-de { background-image: linear-gradient(#000 33%, #dd0000 33% 66%, #ffce00 66%); }
.flag-sa { background-image: linear-gradient(#006c35, #006c35); }
.flag-fr { background-image: linear-gradient(90deg, #002395 33%, #fff 33% 66%, #ed2939 66%); }
.flag-es { background-image: linear-gradient(#aa151b 25%, #f1bf00 25% 75%, #aa151b 75%); }
.flag-it { background-image: linear-gradient(90deg, #009246 33%, #fff 33% 66%, #ce2b37 66%); }
.flag-ru { background-image: linear-gradient(#fff 33%, #0039a6 33% 66%, #d52b1e 66%); }
.flag-cn { background-image: linear-gradient(#de2910, #de2910); }

.feature-row { padding: 8px 0 16px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.feat-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid #e4e4ee;
  border-radius: 16px;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: #d5d2ea;
  box-shadow: 0 12px 24px rgba(40, 40, 90, .08);
}
.feat-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin: 2px 0 0;
  color: var(--feat, #3d6df5);
  display: grid;
  place-items: center;
}
.feat-ico svg { width: 28px; height: 28px; }
.feat-copy h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.feat-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.feat-blue { --feat: #3d6df5; }
.feat-purple { --feat: #8e2de2; }
.feat-orange { --feat: #ff7324; }
.feat-violet { --feat: #7a45e8; }
.feat-cyan { --feat: #3d6df5; }

.revenue { padding: 0 0 56px; }
.revenue-banner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 42px 48px;
  border-radius: 28px;
  background: var(--grad-banner);
  color: #fff;
  box-shadow: 0 24px 50px rgba(232, 72, 112, .28);
}
.revenue-copy h2 { font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin-bottom: 10px; }
.revenue-copy p { max-width: 360px; margin-bottom: 22px; font-size: 16px; opacity: .95; }
.revenue-formula {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.rev-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.rev-ico {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
}
.rev-ico svg { width: 40px; height: 40px; }
.rev-ico-gold { background: #f3c44a; color: #7a4d00; border-color: #ffd76a; }
.rev-op { font-size: 32px; font-weight: 800; }

.cando { padding: 18px 0 64px; }
.cando h2, .how h2 { text-align: center; font-size: clamp(28px, 3vw, 36px); font-weight: 800; margin-bottom: 34px; color: var(--navy); }
.cando-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cando-card {
  padding: 26px 22px 24px;
  border-radius: 18px;
  min-height: 210px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cando-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(40, 40, 90, .08);
}
.cando-ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: #fff;
}
.cando-ico svg { width: 28px; height: 28px; }
.cando-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.cando-card p { color: var(--body); font-size: 14px; }
.card-violet { background: #f3e9ff; color: #6b2bd9; }
.card-blue { background: #eaf1ff; color: #2f5de8; }
.card-green { background: #e9f8ef; color: #1aa35a; }
.card-orange { background: #fff1e6; color: #e86a12; }
.card-pink { background: #ffe8ef; color: #e2416c; }
.card-yellow { background: #fff6df; color: #d89a00; }
.card-cyan { background: #e8f7fb; color: #1a8fb3; }
.card-indigo { background: #ecebff; color: #4a45d6; }

.how { padding: 0 0 72px; }
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.how-steps li {
  text-align: center;
  position: relative;
  padding: 32px 22px 28px;
  border-radius: 20px;
  border: 1px solid var(--how-border, #eadffc);
  background: var(--how-bg, #fbf8ff);
  transition: transform .25s ease, box-shadow .25s ease;
}
.how-steps li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(40, 40, 90, .06);
}
.how-ico {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4f1ff;
  color: #7a3adf;
}
.how-ico svg { width: 46px; height: 46px; }
.step-purple { --how-border: #e4d6fb; --how-bg: #fbf8ff; }
.step-blue { --how-border: #d6e2ff; --how-bg: #f6f9ff; }
.step-blue .how-ico { background: #eef3ff; color: #3d6df5; }
.step-orange { --how-border: #ffe0cc; --how-bg: #fff8f2; }
.step-orange .how-ico { background: #fff1e6; color: #ff7324; }
.how-steps h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.how-steps p { color: var(--muted); margin: 0; }
.how-arrow {
  position: absolute;
  left: -30px;
  top: 56px;
  color: #d0d2e0;
  width: 24px;
}
.how-arrow svg { width: 24px; height: 24px; }

.stats-wrap { padding: 0 0 28px; }
.stats-card {
  background-color: var(--soft);
  background-image: url("../img/join_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  border-radius: 28px;
  padding: 36px 36px 32px;
  overflow: hidden;
}
.stats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.stats-head h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  max-width: 640px;
  color: var(--navy);
}
.stats-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 999px;
  padding: 14px 10px;
  box-shadow: 0 12px 32px rgba(40, 40, 90, .06);
}
.stats-bar article {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  position: relative;
  min-width: 0;
}
.stats-bar article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: #ececf2;
}
.stat-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: var(--stat-bg, #efe8ff);
  color: var(--stat, #7b4dff);
}
.stat-ico svg { width: 22px; height: 22px; }
.stat-copy { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.stat-copy strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--stat, #7b4dff);
}
.stat-copy span { color: #6b6a75; font-size: 13px; font-weight: 500; }
.stat-purple { --stat: #7a45e8; --stat-bg: #efe8ff; }
.stat-violet { --stat: #6d4dff; --stat-bg: #ece8ff; }
.stat-orange { --stat: #ff7a2e; --stat-bg: #fff1e6; }
.stat-red { --stat: #f05a3a; --stat-bg: #ffe8e2; }
.stat-pink { --stat: #ff6b4a; --stat-bg: #ffe8ea; }

.trust { padding: 18px 0 48px; }
.trust-title {
  text-align: center;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b0b2bc;
  font-weight: 700;
  margin-bottom: 18px;
}
.brand-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 36px;
  color: #9aa0ad;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  filter: grayscale(1);
  opacity: .85;
}

.inner-page {
  padding: 72px 0 96px;
  min-height: 50vh;
  background-color: #fff;
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
.inner-wrap { max-width: 720px; }
.inner-wrap h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; }
.inner-wrap p { color: var(--body); font-size: 17px; margin-bottom: 24px; }

.about-page { background: #fff; }
.about-kicker {
  margin: 0 0 12px;
  color: #6a3de8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-kicker-center { text-align: center; }
.about-hero { padding: 56px 0 28px; }
.about-hero-grid,
.about-world-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.about-copy h1 {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 18px;
}
.about-copy > p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 540px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.about-values h2 {
  font-size: 15px;
  font-weight: 800;
  margin: 10px 0 6px;
  letter-spacing: -0.02em;
}
.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.about-value-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #6a3de8;
}
.about-value-ico svg { width: 28px; height: 28px; }
.about-hero-visual {
  margin: 0;
}
.about-hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-stats { padding: 12px 0 40px; }
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 28px 12px 26px;
  border-radius: 22px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #5b2fe0 0%, #8e2de2 28%, #e74169 68%, #ff7a1a 100%);
  box-shadow: 0 18px 40px rgba(142, 45, 226, .22);
}
.about-stats-bar article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.about-stat-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  opacity: .95;
}
.about-stat-ico svg { width: 24px; height: 24px; }
.about-stats-bar strong {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.about-stats-bar span:last-child {
  font-size: 13px;
  font-weight: 500;
  opacity: .92;
}

.about-world { padding: 36px 0 28px; }
.about-world .about-copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.about-checks {
  list-style: none;
  margin: 22px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 500;
}
.about-check-ico {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #6a3de8;
  margin-top: 1px;
}
.about-check-ico svg { width: 22px; height: 22px; }
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a3de8;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 0;
  transition: gap .2s ease, color .2s ease;
}
.about-link svg { width: 18px; height: 18px; }
.about-link:hover,
.about-link:focus-visible { gap: 12px; color: #5428d4; }
.about-map {
  position: relative;
  min-height: 380px;
}
.about-map-img {
  width: 100%;
  height: auto;
  display: block;
}
.about-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 148px;
  padding: 7px 12px 7px 7px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(40, 40, 90, .12);
  z-index: 2;
}
.about-pin img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 40px;
}
.about-pin strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.about-pin span {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
}
.about-pin-america { top: 18%; left: 2%; }
.about-pin-europe { top: 8%; left: 42%; }
.about-pin-turkey { top: 42%; left: 38%; }
.about-pin-me { top: 28%; right: 8%; }
.about-pin-asia { bottom: 14%; right: 2%; }

.about-why { padding: 36px 0 20px; }
.about-why-title {
  text-align: center;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 36px;
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: center;
}
.about-why-grid article {
  padding: 8px 8px 4px;
}
.about-why-ico {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3edff;
  color: #6a3de8;
}
.about-why-ico svg { width: 26px; height: 26px; }
.about-why-grid h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.about-why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.about-cta { padding: 28px 0 72px; }
.about-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 42px;
  border-radius: 24px;
  background: linear-gradient(105deg, #1a1240 0%, #2a1760 48%, #1c2a6a 100%);
  color: #fff;
  box-shadow: 0 20px 44px rgba(26, 18, 64, .28);
}
.about-cta-banner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 520px;
  margin-bottom: 8px;
}
.about-cta-banner p {
  margin: 0;
  opacity: .82;
  font-size: 15px;
}
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #fff;
  color: var(--heading);
  border-color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.btn-ghost svg { width: 16px; height: 16px; }

.live-page { background: #fff; }
.live-page .btn { border-radius: 12px; }
.live-kicker {
  margin: 0 0 12px;
  color: #6a3de8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-hero {
  padding: 52px 0 28px;
  background-color: #fff;
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
.live-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.live-copy h1 {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.live-copy h1 span { display: block; }
.live-copy > p {
  max-width: 540px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.live-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}
.live-pills article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.live-pill-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #6a3de8;
  background: #f3edff;
  margin-bottom: 4px;
}
.live-pill-ico svg { width: 20px; height: 20px; }
.live-pills strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.live-pills span { color: var(--muted); font-size: 12px; line-height: 1.35; }
.live-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-outline-purple {
  background: #fff;
  color: #6a3de8;
  border: 1.5px solid #6a3de8;
}
.btn-outline-purple svg { width: 16px; height: 16px; }
.btn-outline-purple:hover,
.btn-outline-purple:focus-visible {
  background: #6a3de8;
  color: #fff;
  box-shadow: 0 12px 24px rgba(106, 61, 232, .24);
}
.live-hero-visual {
  margin: 0;
  position: relative;
}
.live-hero-visual img { width: 100%; height: auto; }
.live-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  background: #dc2748;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.live-badge-a { top: 14%; left: 10%; }
.live-badge-b { top: 22%; right: 16%; }
.live-signal {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 44px;
  height: 44px;
  margin-left: -22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6a3de8;
  color: #fff;
  box-shadow: 0 8px 20px rgba(106, 61, 232, .35);
}
.live-signal svg { width: 22px; height: 22px; }

.live-control-wrap { padding: 20px 0 36px; }
.live-control {
  background: #f7f6fc;
  border: 1px solid #eceaf6;
  border-radius: 24px;
  padding: 36px 40px 40px;
}
.live-control h2 {
  text-align: center;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.live-control-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.live-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.live-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
}
.live-check-ico {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #6a3de8;
  margin-top: 1px;
}
.live-check-ico svg { width: 22px; height: 22px; }
.live-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}
.live-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px 4px;
}
.live-step-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #6a3de8;
  border: 1px solid #eceaf6;
  box-shadow: 0 8px 18px rgba(40, 32, 90, .06);
}
.live-step-ico svg { width: 28px; height: 28px; }
.live-steps strong { font-size: 13.5px; font-weight: 800; letter-spacing: -0.02em; }
.live-steps li > span:last-child { color: var(--muted); font-size: 12px; line-height: 1.35; }
.live-step-arrow {
  position: absolute;
  left: -16px;
  top: 28px;
  color: #c4b7ef;
}
.live-step-arrow svg { width: 18px; height: 18px; }

.live-use { padding: 28px 0 20px; }
.live-use-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}
.live-use h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.live-use-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.live-use-icons article {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
}
.live-use-icons span {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #6a3de8;
  color: #fff;
}
.live-use-icons svg { width: 18px; height: 18px; }
.live-use-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-height: 380px;
}
.live-use-photos article {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
}
.live-use-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.live-use-photos span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 8px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}
.live-photo-purple span { background: #6a3de8; }
.live-photo-orange span { background: #ff7324; }
.live-photo-pink span { background: #e74169; }
.live-photo-blue span { background: #4675f9; }

.live-hi { padding: 18px 0 12px; }
.live-hi-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 28px 24px;
  background: #f7f6fc;
  border-radius: 22px;
}
.live-hi-bar article { text-align: left; }
.live-hi-ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #6a3de8;
  margin-bottom: 10px;
}
.live-hi-ico svg { width: 28px; height: 28px; }
.live-hi-bar h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.live-hi-bar p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.live-cta { padding: 20px 0 72px; }
.live-cta-banner {
  display: grid;
  grid-template-columns: 1.1fr auto .7fr;
  gap: 24px;
  align-items: center;
  padding: 28px 36px;
  border-radius: 24px;
  color: #fff;
  background: var(--grad-banner);
  box-shadow: 0 20px 44px rgba(232, 72, 112, .28);
}
.live-cta-banner h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 420px;
}
.live-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.live-cta-visual {
  position: relative;
  justify-self: end;
  width: 180px;
}
.live-cta-visual img { width: 100%; height: auto; filter: drop-shadow(0 10px 18px rgba(0,0,0,.22)); }
.live-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  background: #fff;
  color: #dc2748;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,.16);
  font-size: 10px;
  font-weight: 800;
}
.live-bubble-a { top: -8px; right: -8px; padding: 4px 8px; }
.live-bubble-b {
  left: -10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #6a3de8;
}
.live-bubble-b svg { width: 16px; height: 16px; }

.celeb-hero-visual img { display: block; }
.celeb-steps-wrap { padding: 12px 0 36px; }
.celeb-steps-wrap h2 {
  text-align: center;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.celeb-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.celeb-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 14px 18px;
  background: #f7f6fc;
  border-radius: 20px;
}
.celeb-step-num {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6a3de8;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.celeb-step-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #6a3de8;
  box-shadow: 0 8px 18px rgba(40, 32, 90, .06);
}
.celeb-step-ico svg { width: 26px; height: 26px; }
.celeb-steps strong { font-size: 15px; font-weight: 800; }
.celeb-steps li > span:last-child { color: var(--muted); font-size: 13px; line-height: 1.4; }
.celeb-done {
  background: #fff;
  border: 1px solid #eceaf6;
  box-shadow: 0 12px 28px rgba(40, 32, 90, .08);
}
.celeb-done .celeb-step-ico { color: #ff7324; background: #fff4ec; }
.celeb-mix { padding: 12px 0 24px; }
.celeb-mix-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.celeb-mix h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.celeb-cat-lead {
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 460px;
}
.celeb-tpl-visual {
  margin: 16px 0 14px;
}
.celeb-tpl-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.celeb-hi-bar { grid-template-columns: repeat(5, 1fr); }
.celeb-cta-banner p {
  margin: 8px 0 0;
  opacity: .9;
  max-width: 420px;
}
.celeb-cta-gift {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: rgba(255,255,255,.16);
  color: #fff;
}
.celeb-cta-gift svg { width: 44px; height: 44px; }

.sc-badge {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f3edff;
  color: #6a3de8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sc-accent { color: #6a3de8; }
.sc-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 520px; }

.sc-devices {
  position: relative;
  min-height: 360px;
  padding: 10px 48px 20px 0;
}
.sc-laptop { position: relative; z-index: 1; }
.sc-laptop-screen {
  background: #1a1630;
  border: 8px solid #2a2548;
  border-bottom-width: 4px;
  border-radius: 16px 16px 6px 6px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(18, 20, 42, .18);
}
.sc-laptop-base {
  height: 10px;
  margin: 0 auto;
  width: 92%;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(#d8d6e8, #c4c1d6);
}
.sc-app-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #12101f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.sc-app-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5f57;
}
.sc-app-bar span:nth-child(2) { background: #febc2e; }
.sc-app-bar span:nth-child(3) { background: #28c840; }
.sc-app-bar strong { margin-left: 8px; }
.sc-app-body { padding: 12px; background: #f6f4fb; }
.sc-app-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  color: #4b1fa5;
}
.sc-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sc-thumbs article {
  height: 62px;
  border-radius: 8px;
  background:
    linear-gradient(160deg, #ece7ff, #d9d2f5);
}
.sc-thumbs article:nth-child(2) { background: linear-gradient(160deg, #ffd9c8, #ffb08a); }
.sc-thumbs article:nth-child(3) { background: linear-gradient(160deg, #d6ecff, #9ec8ff); }
.sc-thumbs article:nth-child(4) { background: linear-gradient(160deg, #ffe3ef, #f7a8c4); }
.sc-thumbs article:nth-child(5) { background: linear-gradient(160deg, #e3ffe8, #9ee0b0); }
.sc-thumbs article:nth-child(6) { background: linear-gradient(160deg, #fff3c8, #ffd56a); }
.sc-thumb-offer {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6a3de8, #e74169) !important;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}
.sc-phone {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 2;
  width: 148px;
  padding: 14px 12px 12px;
  background: #fff;
  border: 6px solid #1a1630;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(18, 20, 42, .2);
}
.sc-phone strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.sc-phone ul { list-style: none; margin: 0 0 8px; padding: 0; }
.sc-phone li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  margin-bottom: 4px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  color: #4d4c58;
  background: #f6f4fb;
}
.sc-phone li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 1.5px solid #6a3de8;
  flex: 0 0 10px;
}
.sc-phone li.is-on {
  background: #efe8ff;
  color: #4b1fa5;
}
.sc-phone li.is-on::before {
  background: #6a3de8;
  box-shadow: inset 0 0 0 2px #fff;
}
.sc-phone-preview {
  height: 54px;
  margin-bottom: 8px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6a3de8, #e74169);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.sc-phone-btn {
  display: block;
  text-align: center;
  padding: 7px 8px;
  border-radius: 8px;
  background: #6a3de8;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.sc-why { padding: 12px 0 36px; }
.sc-why h2 {
  text-align: center;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.sc-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.sc-why-grid article { text-align: center; }
.sc-why-ico {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f3edff;
  color: #6a3de8;
}
.sc-why-ico svg { width: 26px; height: 26px; }
.sc-why-grid h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.sc-why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sc-feature { padding: 12px 0 28px; }
.sc-feature-alt { padding-bottom: 8px; }
.sc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sc-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.sc-copy h2 span { display: block; }
.sc-copy > p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 480px;
}
.sc-copy .live-checks { margin-bottom: 22px; }
.sc-copy .btn { display: inline-flex; align-items: center; gap: 8px; }
.sc-copy .btn svg { width: 16px; height: 16px; }

.sc-shot { margin: 0; }
.sc-shot img { display: block; width: 100%; height: auto; }
.sc-shot-dark {
  background: #09090f;
  border-radius: 20px;
  overflow: hidden;
}

.sc-editor {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 320px;
  background: #fff;
  border: 1px solid #eceaf6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(40, 32, 90, .08);
}
.sc-editor nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 10px;
  background: #f7f6fc;
}
.sc-editor nav span {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #6a3de8;
  background: #fff;
}
.sc-editor nav span.is-on { background: #6a3de8; color: #fff; }
.sc-editor nav svg { width: 20px; height: 20px; }
.sc-editor-main { display: grid; grid-template-rows: auto 1fr; gap: 12px; padding: 16px; }
.sc-timeline {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr .7fr;
  gap: 8px;
}
.sc-clip { height: 46px; border-radius: 10px; }
.sc-clip-a { background: linear-gradient(135deg, #6a3de8, #9a6bff); }
.sc-clip-b { background: linear-gradient(135deg, #ff7324, #ffb08a); }
.sc-clip-c { background: linear-gradient(135deg, #4675f9, #9ec8ff); }
.sc-clip-d { background: linear-gradient(135deg, #e74169, #f7a8c4); }
.sc-preview {
  border-radius: 16px;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 20, 42, .15), rgba(18, 20, 42, .35)),
    linear-gradient(135deg, #6a3de8 0%, #e74169 52%, #ff7324 100%);
}
.sc-preview em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}
.sc-preview strong { font-size: 28px; letter-spacing: -0.03em; }

.sc-dist {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #f7f6fc;
  border-radius: 22px;
}
.sc-dist-master {
  position: relative;
  min-height: 220px;
  border-radius: 18px;
  display: grid;
  place-content: end start;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(180deg, transparent 30%, rgba(18, 20, 42, .72)),
    linear-gradient(135deg, #6a3de8, #ff7324);
}
.sc-dist-master span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #22a45a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sc-dist-master strong { font-size: 18px; }
.sc-dist ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sc-dist li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(40, 32, 90, .05);
}
.sc-dist-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f3edff;
  color: #6a3de8;
}
.sc-dist-ico svg { width: 18px; height: 18px; }
.sc-dist strong { display: block; font-size: 13px; }
.sc-dist small { color: var(--muted); font-size: 12px; }
.sc-dist em {
  font-style: normal;
  color: #22a45a;
  font-size: 11px;
  font-weight: 800;
}

.sc-cta-banner {
  grid-template-columns: 1.3fr auto;
}
.sc-cta-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sc-cta-banner p {
  margin: 6px 0 0;
  opacity: .92;
  max-width: 420px;
}
.sc-cta-rocket {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  color: #fff;
}
.sc-cta-rocket svg { width: 30px; height: 30px; }

.or-kicker {
  margin: 0 0 12px;
  color: #ff7324;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.or-kicker-pink { color: #e74169; }
.or-kicker-blue { color: #4675f9; }
.or-steps-wrap { padding: 8px 0 28px; }
.or-steps-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 36px;
  align-items: start;
}
.or-steps-grid h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.or-steps-grid > div > p:last-child {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}
.or-steps-side { display: grid; gap: 16px; }
.or-steps-visual { margin: 0; }
.or-steps-visual img { display: block; width: 100%; height: auto; }
.or-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.or-steps li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}
.or-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: #ff7324;
}
.or-step-num-3 { background: #6a3de8; }
.or-step-num-4 { background: #4675f9; }
.or-steps strong { font-size: 13.5px; font-weight: 800; letter-spacing: -0.02em; }
.or-steps li > span:last-child { color: var(--muted); font-size: 12px; line-height: 1.4; }

.or-pack { padding: 8px 0 12px; }
.or-pack-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #eceaf6;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(40, 32, 90, .06);
}
.or-tpl-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}
.or-tpl-split h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.or-tpl-split > div > p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 420px;
}
.or-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.or-cats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f7f6fc;
  color: var(--heading);
  font-size: 12.5px;
  font-weight: 700;
}
.or-cats svg { width: 16px; height: 16px; color: #6a3de8; }
.or-tpl-split .btn { display: inline-flex; align-items: center; gap: 8px; }
.or-tpl-split .btn svg { width: 16px; height: 16px; }
.or-tpl-visual { margin: 0; }
.or-tpl-visual img { display: block; width: 100%; height: auto; }

.or-hi {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid #eceaf6;
}
.or-hi-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.or-hi-ico svg { width: 22px; height: 22px; }
.or-hi-orange { background: #fff1e8; color: #ff7324; }
.or-hi-purple { background: #f3edff; color: #6a3de8; }
.or-hi-blue { background: #eaf1ff; color: #4675f9; }
.or-hi-pink { background: #ffeef3; color: #e74169; }
.or-hi-gold { background: #fff6e0; color: #d89a10; }
.or-hi h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.or-hi p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.or-cta-banner { grid-template-columns: 1.2fr auto; }
.or-cta-banner h2 { max-width: 560px; }

.bx-kicker {
  margin: 0 0 12px;
  color: #6a3de8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bx-pills {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 560px;
}
.bx-pills .live-pill-ico { border-radius: 50%; }
.bx-pills article { align-items: center; text-align: center; }
.bx-pills strong { text-align: center; font-size: 12px; }
.bx-center { text-align: center; margin-bottom: 28px; }
.bx-center h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.bx-center p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
}
.bx-feat-wrap { padding: 12px 0 36px; }
.bx-feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bx-feat article {
  padding: 24px 20px 22px;
  background: #fff;
  border: 1px solid #eceaf6;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(40, 32, 90, .05);
}
.bx-feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #f3edff;
  color: #6a3de8;
}
.bx-feat-ico svg { width: 22px; height: 22px; }
.bx-feat h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bx-feat p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.bx-api {
  padding: 40px 0;
  background: #f6f4fb;
}
.bx-api-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.bx-api .sc-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.bx-api .sc-copy > p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.bx-api .live-checks { margin-bottom: 22px; }
.bx-api .btn { display: inline-flex; align-items: center; gap: 8px; }
.bx-api .btn svg { width: 16px; height: 16px; }
.bx-flow {
  display: grid;
  grid-template-columns: 1fr .7fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.bx-flow-col {
  padding: 16px 14px;
  background: #fff;
  border: 1px solid #eceaf6;
  border-radius: 18px;
}
.bx-flow-col strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a3de8;
  margin-bottom: 12px;
}
.bx-flow-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.bx-flow-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f7f6fc;
  font-size: 13px;
  font-weight: 700;
}
.bx-flow-col li span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #efe8ff;
  color: #6a3de8;
  flex: 0 0 28px;
}
.bx-flow-col li svg { width: 14px; height: 14px; }
.bx-flow-api {
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px 10px;
  border-radius: 18px;
  background: #6a3de8;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 12px 28px rgba(106, 61, 232, .28);
}
.bx-flow-api span {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
}
.bx-flow-api svg { width: 22px; height: 22px; }

.bx-biz { padding: 40px 0 12px; }
.bx-biz-visual {
  margin: 0 0 20px;
  background: #0a0a0c;
  border-radius: 20px;
  overflow: hidden;
}
.bx-biz-visual img { display: block; width: 100%; height: auto; }
.bx-biz-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.bx-biz-grid article { text-align: center; padding: 0 6px; }
.bx-biz-ico {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6a3de8;
  color: #fff;
}
.bx-biz-ico svg { width: 18px; height: 18px; }
.bx-biz-grid h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.bx-biz-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.or-cta-banner p {
  margin: 8px 0 0;
  opacity: .92;
  max-width: 480px;
}

.an-page .live-copy .live-checks { margin: 0 0 22px; }
.an-hero-ph {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 12px;
  align-items: end;
}
.an-ph-tv, .an-ph-totem, .an-ph-phone {
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  padding: 16px;
}
.an-ph-tv {
  grid-column: 1;
  min-height: 200px;
  background: linear-gradient(160deg, #2a1d4a, #6a3de8);
}
.an-ph-totem {
  grid-row: 1 / span 2;
  min-height: 280px;
  background: linear-gradient(180deg, #dc2748, #ff7324);
}
.an-ph-phone {
  min-height: 120px;
  background: linear-gradient(160deg, #12142a, #4675f9);
}
.an-ph-totem svg, .an-ph-phone svg { width: 36px; height: 36px; }
.an-ph-bell {
  position: absolute;
  left: 42%;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6a3de8;
  color: #fff;
  box-shadow: 0 10px 22px rgba(106, 61, 232, .35);
}
.an-ph-bell svg { width: 22px; height: 22px; }

.an-edit { padding: 40px 0; background: #f7f6fc; }
.an-edit .sc-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.an-edit .sc-copy > p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.an-edit .live-checks { margin-bottom: 22px; }
.an-edit .btn { display: inline-flex; align-items: center; gap: 8px; }
.an-editor {
  display: grid;
  grid-template-columns: 52px 1fr .9fr;
  min-height: 320px;
  background: #fff;
  border: 1px solid #eceaf6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(40, 32, 90, .08);
}
.an-editor aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px;
  background: #1a1630;
  color: #cfc8e8;
}
.an-editor aside span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.an-editor aside span.is-on { background: #6a3de8; color: #fff; }
.an-editor aside svg { width: 18px; height: 18px; }
.an-editor-main, .an-editor-preview { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.an-editor-main strong { font-size: 14px; }
.an-editor-main label { font-size: 11px; font-weight: 700; color: var(--muted); }
.an-editor-main em, .an-editor-preview em {
  font-style: normal;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f7f6fc;
  font-size: 13px;
  font-weight: 600;
}
.an-editor-preview { background: #f7f6fc; }
.an-editor-preview span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #6a3de8; }
.an-editor-preview div {
  min-height: 140px;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  align-content: end;
  gap: 6px;
  color: #fff;
  background: linear-gradient(180deg, #2a1d4a, #12142a);
}
.an-editor-preview em {
  background: #6a3de8;
  color: #fff;
  text-align: center;
  font-weight: 800;
}

.an-biz { padding: 40px 0 12px; }
.an-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.an-biz-grid article { min-width: 0; }
.an-biz-photo {
  height: 140px;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #ece7ff, #d9d2f5);
}
.an-biz-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.an-biz-edu .an-biz-photo { background: linear-gradient(160deg, #4675f9, #6a3de8); }
.an-biz-grid h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.an-biz-grid p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

.gm-page .bx-kicker {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .12em;
}
.gm-page .live-copy .live-checks { margin: 0 0 22px; }
.gm-page .live-check-ico { color: #4675f9; }
.gm-feat article { text-align: center; }
.gm-feat .bx-feat-ico {
  margin: 0 auto 12px;
  background: transparent;
  border: 1.5px solid #d9ccff;
  border-radius: 14px;
}
.gm-reach { padding: 12px 0 28px; }
.gm-reach .about-copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.gm-reach .about-copy > p { margin-bottom: 22px; }
.gm-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
}
.gm-stats strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--heading);
}
.gm-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.gm-network {
  margin: 0;
}
.gm-network img {
  display: block;
  width: 100%;
  height: auto;
}
.gm-page .live-cta-banner p {
  margin: 8px 0 0;
  opacity: .92;
  max-width: 460px;
}
.gm-page .live-cta-banner h2 { max-width: 520px; }
.gm-hero-ph {
  position: relative;
  min-height: 360px;
}
.gm-laptop {
  width: 88%;
}
.gm-laptop-screen {
  padding: 14px 14px 18px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(160deg, #1b1638, #2d2460);
  box-shadow: 0 22px 40px rgba(40, 24, 90, .28);
}
.gm-laptop-screen > span {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: .8;
}
.gm-ph-map {
  height: 150px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 22% 42%, #5eead4 0 4px, transparent 5px),
    radial-gradient(circle at 48% 28%, #67e8f9 0 4px, transparent 5px),
    radial-gradient(circle at 72% 38%, #c4b5fd 0 4px, transparent 5px),
    radial-gradient(circle at 38% 68%, #fda4af 0 4px, transparent 5px),
    radial-gradient(circle at 78% 72%, #86efac 0 4px, transparent 5px),
    linear-gradient(180deg, #12142a, #1e1b4b);
}
.gm-ph-charts {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8px;
  margin-top: 10px;
}
.gm-ph-charts em {
  display: block;
  height: 52px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.gm-ph-charts em:last-child { grid-column: 2; grid-row: 1; border-radius: 50%; }
.gm-laptop-base {
  height: 12px;
  margin: 0 -4%;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #c9c4d8, #a8a2bb);
}
.gm-phone {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 108px;
  padding: 10px 8px 12px;
  border-radius: 18px;
  background: #12142a;
  box-shadow: 0 16px 28px rgba(18, 20, 42, .35);
  border: 3px solid #2a2748;
}
.gm-phone b {
  display: block;
  width: 28px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 99px;
  background: #3f3b5c;
}
.gm-ph-map-sm { height: 120px; }
.gm-cta-globe {
  width: 140px;
  height: 140px;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.28), rgba(255,255,255,.04) 46%, transparent 68%);
  box-shadow: 0 0 0 10px rgba(255,255,255,.08);
}
.gm-cta-globe svg { width: 78px; height: 78px; opacity: .92; }

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eceaf6;
  padding: 56px 0 0;
  background: #f7f6fc;
}
.site-footer::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    0 0 0 48px rgba(122, 69, 232, .05),
    0 0 0 96px rgba(122, 69, 232, .045),
    0 0 0 144px rgba(81, 108, 247, .04),
    0 0 0 192px rgba(81, 108, 247, .035),
    0 0 0 240px rgba(142, 45, 226, .03);
}
.footer-inner { position: relative; z-index: 1; padding-bottom: 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr .9fr 1fr;
  gap: 28px 24px;
  padding-bottom: 92px;
}
.footer-brand p {
  margin: 14px 0 18px;
  color: var(--body);
  max-width: 320px;
  font-size: 14px;
  line-height: 1.65;
}
.footer-stores { margin: 0 0 18px; flex-wrap: wrap; }
.site-footer h2 {
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #4b1fa5;
  font-weight: 800;
  margin: 6px 0 16px;
}
.site-footer h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 8px;
  border-radius: 2px;
  background: #7a45e8;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 9px 0; }
.footer-links a {
  position: relative;
  display: inline-block;
  color: #6b6a75;
  font-size: 14px;
  padding-bottom: 2px;
  transition: color .2s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 2px;
  background: var(--grad-cta);
  transform: translateX(-50%);
  transition: width .28s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--heading); }
.footer-links a:hover::after,
.footer-links a:focus-visible::after { width: 100%; }
.footer-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  color: #5c5b66;
  font-size: 14px;
}
.footer-meta a { color: inherit; transition: color .2s ease; }
.footer-meta a:hover { color: #4b1fa5; }
.footer-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  color: #7a45e8;
  display: grid;
  place-items: center;
}
.footer-ico svg { width: 18px; height: 18px; }
.footer-youreye {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #111118;
  line-height: 0;
}
.footer-youreye img {
  display: block;
  height: 32px;
  width: auto;
}
.footer-secure {
  position: absolute;
  right: 0;
  bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: min(360px, 42%);
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(75, 31, 165, .12);
}
.secure-ico {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe8ff;
  color: #7a45e8;
}
.secure-ico svg { width: 24px; height: 24px; }
.footer-secure strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.footer-secure p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid #eceaf6;
  padding: 16px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.pr-hero .live-copy { max-width: 720px; margin: 0 auto; text-align: center; }
.pr-hero .live-copy h1 span { display: block; }
.pr-hero .live-copy > p { margin-inline: auto; }
.pr-hero .bx-kicker {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pr-hero .live-actions { justify-content: center; margin-top: 8px; }
.pr-plans { padding: 8px 0 28px; }
.pr-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.pr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #eceaf6;
  box-shadow: 0 18px 40px rgba(40, 32, 90, .06);
}
.pr-card h2 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pr-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}
.pr-price strong {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--heading);
  font-variant-numeric: tabular-nums;
}
.pr-price span { color: var(--muted); font-weight: 600; }
.pr-price small {
  width: 100%;
  color: #6a3de8;
  font-size: 13px;
  font-weight: 700;
}
.pr-card .live-checks { margin: 0 0 26px; flex: 1; }
.pr-inc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pr-card .btn { width: 100%; justify-content: center; }
.pr-card-pro {
  color: #fff;
  background:
    linear-gradient(180deg, #1a1638 0%, #12142a 100%) padding-box,
    var(--grad-cta) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 50px rgba(106, 61, 232, .22);
}
.pr-card-pro h2 { color: rgba(255,255,255,.7); }
.pr-card-pro .pr-price strong,
.pr-card-pro .live-checks li { color: #fff; }
.pr-card-pro .pr-price span { color: rgba(255,255,255,.62); }
.pr-card-pro .pr-price small { color: #ffb38a; }
.pr-card-pro .live-check-ico { color: #ff9a62; }
.pr-card-pro .pr-price strong { font-size: clamp(28px, 3.2vw, 36px); }
.pr-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--grad-cta);
  box-shadow: 0 8px 18px rgba(231, 65, 105, .28);
}
.pr-badge-soft {
  background: #f3edff;
  color: #6a3de8;
  box-shadow: none;
}
.pr-steps { padding: 20px 0 12px; }
.pr-calc-wrap { padding: 28px 0 12px; }
.pr-calc {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(18, 20, 42, .16);
}
.pr-calc-controls {
  display: grid;
  gap: 22px;
  padding: 32px 28px;
  background: #12142a;
  color: #fff;
}
.pr-calc-controls label { display: grid; gap: 10px; }
.pr-calc-controls span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.pr-calc-controls strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pr-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
  outline: none;
}
.pr-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #a240d5;
  box-shadow: 0 6px 14px rgba(0,0,0,.28);
  cursor: pointer;
}
.pr-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #a240d5;
  box-shadow: 0 6px 14px rgba(0,0,0,.28);
  cursor: pointer;
}
.pr-calc-result {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 36px 32px;
  color: #fff;
  background: var(--grad-banner);
}
.pr-calc-result span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .82;
  margin-bottom: 6px;
}
.pr-calc-result strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.pr-calc-share strong { font-size: 22px; }
.pr-calc-note {
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.pr-compare-wrap { padding: 36px 0 12px; }
.pr-table-scroll { overflow-x: auto; }
.pr-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #eceaf6;
  border-radius: 22px;
  overflow: hidden;
}
.pr-table th,
.pr-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #f0eef6;
}
.pr-table thead th {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  background: #faf9ff;
}
.pr-table thead th:nth-child(2),
.pr-table tbody td:nth-child(2) {
  background: #f4edff;
  color: var(--heading);
  font-weight: 700;
}
.pr-table tbody th {
  font-weight: 700;
  color: var(--heading);
  width: 24%;
}
.pr-table tbody tr:last-child th,
.pr-table tbody tr:last-child td { border-bottom: 0; }
.pr-table td svg {
  width: 18px;
  height: 18px;
  vertical-align: -4px;
  margin-right: 6px;
}
.pr-cell-ok { color: #4675f9; font-weight: 700; }
.pr-cell-no { color: #e74169; }
.pr-cell-mid { color: var(--muted); }
.pr-faq { padding: 28px 0 8px; }
.pr-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pr-faq details {
  padding: 4px 20px 8px;
  border: 1px solid #eceaf6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(40, 32, 90, .04);
}
.pr-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pr-faq summary::-webkit-details-marker { display: none; }
.pr-faq summary svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #6a3de8;
  transition: transform .2s ease;
}
.pr-faq details[open] summary svg { transform: rotate(180deg); }
.pr-faq details p {
  margin: 0 0 14px;
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 52ch;
}
.pr-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.pr-trust li { display: inline-flex; align-items: center; gap: 8px; }
.pr-trust svg { width: 16px; height: 16px; color: #6a3de8; }

.faq-hero .live-copy { max-width: 720px; margin: 0 auto; text-align: center; }
.faq-hero .live-copy > p { margin-inline: auto; }
.faq-hero .bx-kicker {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq-list { padding: 8px 0 20px; }
.faq-acc { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-acc details {
  padding: 4px 22px 8px;
  border: 1px solid #eceaf6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(40, 32, 90, .04);
}
.faq-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc summary svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #6a3de8;
  transition: transform .2s ease;
}
.faq-acc details[open] {
  border-color: #d9ccff;
  box-shadow: 0 14px 32px rgba(106, 61, 232, .08);
}
.faq-acc details[open] summary svg { transform: rotate(180deg); }
.faq-acc details p {
  margin: 0 0 18px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .nav { gap: 14px; font-size: 13px; }
  .cando-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-why-grid { grid-template-columns: repeat(3, 1fr); }
  .about-hero-grid,
  .about-world-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-cta-banner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .nav-drop-menu { width: 860px; left: -120px; }
  .live-hero-grid,
  .live-control-grid,
  .live-use-grid,
  .celeb-mix-grid,
  .sc-split,
  .or-steps-grid,
  .or-tpl-split { grid-template-columns: 1fr; gap: 28px; }
  .bx-api-grid { grid-template-columns: 1fr; gap: 28px; }
  .bx-feat { grid-template-columns: 1fr 1fr; }
  .an-biz-grid { grid-template-columns: 1fr 1fr; }
  .celeb-hi-bar { grid-template-columns: 1fr 1fr; }
  .sc-why-grid { grid-template-columns: repeat(3, 1fr); }
  .sc-cta-banner { grid-template-columns: 1fr; }
  .or-cta-banner { grid-template-columns: 1fr; }
  .or-hi { grid-template-columns: 1fr 1fr; }
  .sc-devices { min-height: 0; padding-right: 0; }
  .sc-phone { position: relative; right: auto; bottom: auto; margin: -36px 8px 0 auto; }
  .live-cta-banner { grid-template-columns: 1fr; }
  .live-cta-visual { justify-self: start; }
  .pr-calc,
  .pr-faq-grid,
  .pr-plan-grid { grid-template-columns: 1fr; }
  .revenue-banner { grid-template-columns: 1fr; padding: 32px; }
  .revenue-formula { justify-content: flex-start; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-secure {
    position: static;
    width: auto;
    max-width: 420px;
    margin-top: 8px;
  }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-join { display: none; }
  .mobile-nav.is-open { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .how-arrow { display: none; }
  .stats-head { flex-direction: column; align-items: flex-start; }
  .stats-bar {
    flex-direction: column;
    border-radius: 24px;
    padding: 8px 10px;
  }
  .stats-bar article:not(:last-child)::after {
    top: auto;
    right: 16px;
    left: 16px;
    bottom: 0;
    width: auto;
    height: 1px;
  }
  .header-inner { grid-template-columns: 1fr auto; }
  .about-stats-bar {
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    padding: 20px 12px;
    gap: 18px 8px;
  }
  .about-stats-bar article:last-child { grid-column: 1 / -1; }
  .about-map { min-height: 320px; }
  .about-pin { min-width: 128px; padding: 5px 8px 5px 5px; }
  .about-pin img { width: 32px; height: 32px; flex-basis: 32px; }
  .live-pills { grid-template-columns: 1fr 1fr; }
  .sc-why-grid { grid-template-columns: 1fr 1fr; }
  .sc-dist { grid-template-columns: 1fr; }
  .live-steps { grid-template-columns: 1fr 1fr; gap: 18px; }
  .live-step-arrow { display: none; }
  .live-control { padding: 24px; }
  .live-use-photos { grid-template-columns: 1fr 1fr; min-height: 0; }
  .live-use-photos article { min-height: 220px; }
  .live-hi-bar { grid-template-columns: 1fr 1fr; }
  .celeb-steps { grid-template-columns: 1fr 1fr; }
  .or-steps { grid-template-columns: 1fr 1fr; }
  .bx-pills { grid-template-columns: 1fr 1fr; }
  .bx-flow { grid-template-columns: 1fr; }
  .bx-biz-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  :root { --shell: min(1180px, calc(100% - 32px)); }
  .cando-grid, .feature-grid, .footer-grid, .about-why-grid, .about-values, .live-pills, .live-hi-bar, .live-use-icons, .celeb-hi-bar, .celeb-steps, .sc-why-grid, .or-steps, .or-hi, .bx-feat, .an-biz-grid { grid-template-columns: 1fr; }
  .an-editor { grid-template-columns: 1fr; }
  .bx-biz-grid { grid-template-columns: 1fr 1fr; }
  .gm-stats { grid-template-columns: 1fr; }
  .about-stats-bar { grid-template-columns: 1fr; }
  .about-stats-bar article:last-child { grid-column: auto; }
  .about-pin-america { top: 6%; left: 0; }
  .about-pin-europe { top: 6%; right: 0; left: auto; }
  .about-pin-turkey { top: 38%; left: 0; }
  .about-pin-me { top: 38%; right: 0; }
  .about-pin-asia { bottom: 4%; left: 50%; transform: translateX(-50%); }
  .pills { justify-content: flex-start; }
  .hero h1 { font-size: 34px; }
  .rev-ico { width: 64px; height: 64px; }
  .sc-cta-copy { align-items: flex-start; }
  .sc-editor { grid-template-columns: 52px 1fr; }
  .or-pack-card { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .btn:hover,
  .btn:focus-visible,
  .pill:hover,
  .store-badge:hover,
  .store-img:hover,
  .cando-card:hover,
  .feat-card:hover,
  .about-pin:hover,
  .hero-nav:hover,
  .brand:hover {
    transform: none;
  }
}

.ap-hero .live-copy h1 span { display: inline; }
.ap-hero .live-copy h1 { max-width: 560px; }
.ap-main { padding: 8px 0 48px; }
.ap-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}
.ap-who {
  background: #eef5ff;
  border-radius: 22px;
  padding: 28px 26px 22px;
}
.ap-form-card {
  background: #fff;
  border: 1.5px solid #ffb27a;
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 40px rgba(255, 122, 40, .08);
  scroll-margin-top: 96px;
}
.ap-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ap-card-head h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ap-card-head p {
  margin: 4px 0 0;
  color: var(--body);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
}
.ap-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
}
.ap-card-ico svg { width: 20px; height: 20px; }
.ap-card-ico-purple { background: #6a3de8; color: #fff; }
.ap-card-ico-orange { background: linear-gradient(135deg, #ff8a1a, #ff5a00); color: #fff; }
.ap-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.ap-who-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
}
.ap-who-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #6a3de8;
  flex: 0 0 36px;
  box-shadow: 0 6px 14px rgba(80, 90, 160, .08);
}
.ap-who-ico svg { width: 18px; height: 18px; }
.ap-who-grid strong {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ap-gift {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff3ea;
  color: #9a3d00;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}
.ap-gift span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ff7a1a;
  color: #fff;
  flex: 0 0 28px;
}
.ap-gift svg { width: 15px; height: 15px; }
.ap-form { display: grid; gap: 16px; }
.ap-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.ap-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ap-req {
  color: #c81e1e;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}
.ap-form input::placeholder,
.ap-form textarea::placeholder {
  color: #b0adbb;
}
.ap-form input,
.ap-form select,
.ap-form textarea {
  width: 100%;
  border: 1px solid #e6e3f0;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--heading);
  background: #fafafc;
}
.ap-form textarea { resize: vertical; min-height: 96px; }
.ap-form input:focus,
.ap-form select:focus,
.ap-form textarea:focus {
  outline: none;
  border-color: #c4b5fd;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(106, 61, 232, .12);
}
.ap-full { grid-column: 1 / -1; }
.ap-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--body);
}
.ap-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  accent-color: #6a3de8;
}
.ap-kvkk {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}
.ap-submit {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
}
.ap-submit svg { width: 16px; height: 16px; }
.ap-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ap-alert {
  margin: 0 0 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff1f2;
  color: #b42318;
  font-size: 13.5px;
  font-weight: 600;
}
.ap-ok {
  text-align: center;
  padding: 28px 12px 12px;
}
.ap-ok-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef8f0;
  color: #14804a;
}
.ap-ok-ico svg { width: 28px; height: 28px; }
.ap-ok h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.ap-ok p {
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 22px;
}
.ap-ribbon {
  padding: 32px 0;
  color: #fff;
  background: var(--grad-cta);
}
.ap-ribbon-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.ap-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.ap-ribbon-grid article {
  text-align: center;
  padding: 4px 8px;
}
.ap-ribbon-grid span {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
}
.ap-ribbon-grid svg { width: 20px; height: 20px; }
.ap-ribbon-grid strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ap-ribbon-grid p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  opacity: .92;
}
.ap-faq-wrap { padding: 56px 0 12px; }
.ap-faq-title {
  text-align: center;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.ap-faq {
  max-width: none;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.ap-faq details { background: #f6f6fa; border-color: transparent; box-shadow: none; }
.ap-bottom { padding: 28px 0 72px; }
.ap-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}
.ap-bottom-copy {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ap-bottom-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #6a3de8;
  background: #f3edff;
  flex: 0 0 48px;
}
.ap-bottom-ico svg { width: 24px; height: 24px; }
.ap-bottom-copy p {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 420px;
}
.ap-bottom-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1100px) {
  .ap-hero .live-copy h1 { max-width: none; }
  .ap-split,
  .ap-faq,
  .ap-ribbon-grid { grid-template-columns: 1fr 1fr; }
  .ap-ribbon-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ap-bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .ap-split,
  .ap-fields,
  .ap-who-grid,
  .ap-faq,
  .ap-ribbon-grid { grid-template-columns: 1fr; }
  .ap-who,
  .ap-form-card { padding: 22px 18px; }
}

.ct-hero .live-copy h1 span { display: inline; }
.ct-hero .live-copy h1 { max-width: 14em; }
.ct-hero .bx-kicker {
  color: #ff7324;
  letter-spacing: .18em;
}
.ct-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 8px 0 18px;
  max-width: 520px;
}
.ct-mini article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(40, 32, 90, .08);
}
.ct-mini-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  color: #fff;
}
.ct-mini-ico svg { width: 18px; height: 18px; }
.ct-mini-purple { background: #6a3de8; }
.ct-mini-orange { background: linear-gradient(135deg, #ff8a1a, #ff5a00); }
.ct-mini strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}
.ct-mini a {
  display: block;
  color: #516cf7;
  font-weight: 700;
  font-size: 14px;
}
.ct-mini-orange + div a,
.ct-mini article:last-child a { color: #ff7324; }
.ct-mini div span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 2px;
}
.ct-safe {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.ct-safe span {
  width: 22px;
  height: 22px;
  color: #14804a;
  display: grid;
  place-items: center;
}
.ct-safe svg { width: 16px; height: 16px; }
.ct-main { padding: 8px 0 28px; }
.ct-panel {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(40, 32, 90, .08);
  overflow: hidden;
}
.ct-form-col { padding: 32px 32px 28px; scroll-margin-top: 96px; }
.ct-help {
  padding: 32px 28px;
  background: linear-gradient(180deg, #f7f4ff 0%, #f3f7ff 100%);
  border-left: 1px solid #eceaf6;
}
.ct-help ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.ct-help li { display: flex; gap: 12px; align-items: flex-start; }
.ct-help-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: #fff;
}
.ct-help-ico svg { width: 18px; height: 18px; }
.ct-help-blue { background: #516cf7; }
.ct-help-purple { background: #6a3de8; }
.ct-help-orange { background: #ff7324; }
.ct-help-pink { background: #e74169; }
.ct-help strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.ct-help p { margin: 0; color: var(--body); font-size: 13px; line-height: 1.5; }
.ct-assist-wrap { padding: 8px 0 28px; }
.ct-assist {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(90deg, #5b21e6 0%, #6d28d9 48%, #4f46e5 100%);
}
.ct-assist-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
}
.ct-assist-ico svg { width: 24px; height: 24px; }
.ct-assist p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 640px;
}
.ct-values { padding: 8px 0 20px; }
.ct-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ct-values-grid article {
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(40, 32, 90, .06);
}
.ct-values-grid span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #6a3de8;
  background: #f3edff;
}
.ct-values-grid svg { width: 20px; height: 20px; }
.ct-values-grid h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ct-values-grid p { margin: 0; color: var(--body); font-size: 13.5px; line-height: 1.55; }
.ct-page .or-cta-banner p { margin-top: 8px; }

@media (max-width: 1100px) {
  .ct-hero .live-copy h1 { max-width: none; }
  .ct-panel,
  .ct-mini,
  .ct-values-grid { grid-template-columns: 1fr 1fr; }
  .ct-panel { grid-template-columns: 1fr; }
  .ct-help { border-left: 0; border-top: 1px solid #eceaf6; }
  .ct-assist { grid-template-columns: auto 1fr; }
  .ct-assist .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 760px) {
  .ct-mini,
  .ct-values-grid { grid-template-columns: 1fr; }
  .ct-form-col,
  .ct-help { padding: 22px 18px; }
}
