:root {
  --purple: #5b2cf6;
  --purple-dark: #3f19a4;
  --purple-light: #9b45ff;
  --blue: #75acef;
  --yellow: #ffdf6d;
  --ink: #2d2933;
  --muted: #6f6878;
  --soft: #f3f4f8;
  --white: #ffffff;
  --border: rgba(45, 41, 51, .11);
  --shadow: 0 24px 70px rgba(58, 36, 118, .14);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #24165f;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr); align-items: center; gap: clamp(44px, 7vw, 110px); }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: #fff;
}
.site-header.is-scrolled {
  position: fixed;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 26px rgba(30, 20, 70, .09);
  backdrop-filter: blur(10px);
  animation: header-in .24s ease-out;
}
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header-inner { min-height: 100px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; position: relative; z-index: 3; }
.brand img { width: 121px; }
.site-header.is-scrolled .brand img { filter: invert(23%) sepia(96%) saturate(5027%) hue-rotate(250deg) brightness(97%); }
.site-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; font-size: 16px; }
.site-nav a { position: relative; padding-block: 12px; }
.site-nav a:not(.nav-button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 2px; background: currentColor; transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-button { padding: 10px 23px !important; border-radius: 999px; background: #fff; color: #34216f; font-weight: 700; box-shadow: 0 7px 20px rgba(29, 10, 87, .18); transition: transform .2s ease; }
.nav-button:hover { transform: translateY(-2px); }
.site-header.is-scrolled .nav-button { background: var(--purple); color: #fff; }
.languages { display: flex; gap: 8px; }
.language { width: 34px; height: 34px; display: grid; place-items: center; border: 1.5px solid currentColor; border-radius: 50%; font-size: 12px; font-weight: 700; }
.language.is-current { background: #fff; color: var(--purple); border-color: #fff; }
.site-header.is-scrolled .language.is-current { background: var(--purple); color: #fff; border-color: var(--purple); }
.language.is-disabled { opacity: .48; cursor: default; }
.menu-toggle { display: none; position: relative; z-index: 4; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: #fff; cursor: pointer; box-shadow: 0 7px 20px rgba(29, 10, 87, .18); }
.menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after { position: absolute; left: 12px; width: 20px; height: 2px; background: var(--purple); transition: transform .22s ease, opacity .22s ease; }
.menu-toggle-lines { top: 21px; }
.menu-toggle-lines::before, .menu-toggle-lines::after { content: ""; left: 0; }
.menu-toggle-lines::before { transform: translateY(-7px); }
.menu-toggle-lines::after { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 170px 0 84px;
  color: #fff;
  background: linear-gradient(145deg, #4e25ee 0%, #712ff9 48%, #a347ff 100%);
}
.hero::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -122px; height: 220px; background: #fff; border-radius: 50% 50% 0 0 / 35% 35% 0 0; }
.hero-grid { position: relative; z-index: 2; min-height: 560px; }
.hero-copy { max-width: 650px; padding-bottom: 48px; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .16em; font-size: 13px; font-weight: 800; opacity: .78; }
.eyebrow-dark { color: var(--purple); opacity: 1; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; font-size: clamp(44px, 5.2vw, 72px); line-height: 1.03; letter-spacing: -.035em; }
h2 { margin-bottom: 24px; font-size: clamp(34px, 3.65vw, 54px); line-height: 1.08; letter-spacing: -.025em; }
.lead { max-width: 630px; margin-bottom: 34px; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.65; color: rgba(255,255,255,.9); }
.store-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.store-link { display: inline-flex; border-radius: 7px; transition: transform .2s ease, opacity .2s ease; }
.store-link:hover, .store-link:focus-visible { transform: translateY(-3px); }
.hero-visual { position: relative; align-self: end; display: flex; justify-content: center; }
.hero-visual img { position: relative; z-index: 2; width: min(100%, 462px); filter: drop-shadow(0 36px 44px rgba(28, 8, 78, .34)); }
.phone-glow { position: absolute; z-index: 1; width: 460px; height: 460px; top: 60px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.55), rgba(255,255,255,.07) 58%, transparent 70%); }
.hero-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.hero-orb-one { width: 420px; height: 420px; right: -130px; top: -150px; }
.hero-orb-two { width: 160px; height: 160px; left: 4%; bottom: 16%; }

.feature { position: relative; overflow: hidden; padding: clamp(92px, 10vw, 155px) 0; }
.feature-soft { background: var(--soft); }
.feature-white { background: #fff; }
.feature-grid-reverse .feature-copy { order: 2; }
.feature-grid-reverse .feature-visual { order: 1; }
.feature-copy { max-width: 570px; }
.feature-copy p:not(.section-number) { max-width: 570px; font-size: clamp(18px, 1.65vw, 22px); line-height: 1.7; color: var(--muted); }
.section-number { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; color: var(--purple); background: rgba(91,44,246,.09); font-size: 13px; font-weight: 800; }
.feature-visual { display: flex; justify-content: center; }
.phone-stage { position: relative; width: min(100%, 500px); min-height: 530px; display: flex; align-items: flex-end; justify-content: center; padding: 54px 50px 0; border-radius: 42% 58% 28% 72% / 52% 37% 63% 48%; }
.phone-stage::before { content: ""; position: absolute; inset: 38px 60px 90px; border: 1px solid rgba(255,255,255,.52); border-radius: inherit; }
.phone-stage img { position: relative; z-index: 2; width: min(100%, 340px); filter: drop-shadow(0 28px 34px rgba(38,28,83,.2)); }
.phone-stage-blue { background: linear-gradient(145deg, rgba(117,172,239,.35), rgba(117,172,239,.92)); }
.phone-stage-purple { background: linear-gradient(145deg, rgba(155,69,255,.25), rgba(91,44,246,.88)); }
.phone-stage-yellow { background: linear-gradient(145deg, #fff0ae, var(--yellow)); }

.services { padding: clamp(90px, 10vw, 150px) 0; background: #fff; }
.section-heading { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; }
.service-card { min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: 24px 16px; border: 1px solid var(--border); border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(32,22,66,.08); transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.service-card h3 { margin: 0; font-size: 18px; }
.service-card img { height: 69px; object-fit: contain; transition: filter .2s ease; }
.service-card:hover { transform: translateY(-7px); background: var(--purple); color: #fff; box-shadow: 0 20px 36px rgba(91,44,246,.22); }
.service-card:hover img { filter: brightness(0) invert(1); }

.download { padding: clamp(70px, 8vw, 105px) 0; background: var(--yellow); }
.download-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.download h2 { max-width: 700px; margin-bottom: 14px; }
.download p:last-child { margin-bottom: 0; color: rgba(45,41,51,.72); font-size: 18px; }
.store-row-dark { flex: 0 0 auto; }
.store-link.is-pending { opacity: .82; cursor: default; }
.store-link.is-pending:hover { transform: none; }

.site-footer { color: #fff; background: var(--purple-dark); }
.footer-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.footer-inner nav { display: flex; gap: 30px; font-size: 14px; }
.footer-inner a:hover { text-decoration: underline; }

.cookie-panel { position: fixed; z-index: 50; right: 22px; bottom: 22px; width: min(430px, calc(100% - 44px)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; color: #fff; background: rgba(34,20,92,.96); box-shadow: 0 20px 60px rgba(20,10,55,.32); transition: opacity .2s ease, transform .2s ease; }
.cookie-panel[hidden] { display: none; }
.cookie-panel strong { display: block; margin-bottom: 3px; }
.cookie-panel p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.4; }
.cookie-panel button { padding: 9px 13px; border: 0; border-radius: 999px; color: #35216e; background: var(--yellow); font-weight: 800; cursor: pointer; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .site-nav { gap: 20px; }
  .site-nav a { font-size: 14px; }
  .languages { display: none; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); gap: 42px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header, .site-header.is-scrolled { position: absolute; background: transparent; color: #fff; box-shadow: none; backdrop-filter: none; animation: none; }
  .site-header.is-scrolled .brand img { filter: none; }
  .header-inner { min-height: 82px; }
  .menu-toggle { display: block; margin-left: auto; }
  .languages { display: flex; position: relative; z-index: 3; }
  .language { width: 32px; height: 32px; }
  .language.is-disabled { display: none; }
  .site-header.is-scrolled .language.is-current { background: #fff; color: var(--purple); border-color: #fff; }
  .site-nav { position: fixed; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 90px 28px 40px; color: #fff; background: linear-gradient(150deg, #4e25ee, #9b45ff); transform: translateY(-105%); visibility: hidden; transition: transform .28s ease, visibility .28s; }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav a { width: min(100%, 320px); padding: 15px; text-align: center; font-size: 20px; }
  .nav-button { color: #34216f; }
  .split { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding: 130px 0 64px; }
  .hero::after { bottom: -170px; }
  .hero-grid { min-height: 0; gap: 18px; }
  .hero-copy { padding-bottom: 0; text-align: center; }
  .hero-copy .store-row { justify-content: center; }
  h1 { font-size: clamp(40px, 12.5vw, 58px); }
  h2 { font-size: clamp(32px, 9.6vw, 44px); }
  .lead { font-size: 18px; }
  .hero-visual img { width: min(88vw, 430px); }
  .phone-glow { width: 340px; height: 340px; }
  .feature { padding: 82px 0; }
  .feature-copy { max-width: none; text-align: center; }
  .section-number { margin-inline: auto; }
  .feature-grid-reverse .feature-copy, .feature-grid-reverse .feature-visual { order: initial; }
  .feature-visual { order: 2; }
  .phone-stage { min-height: 470px; width: min(100%, 430px); margin: 0 auto; padding-inline: 35px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .service-card { min-height: 165px; }
  .download-inner { flex-direction: column; text-align: center; }
  .download .store-row { justify-content: center; }
  .footer-inner { flex-direction: column; justify-content: center; padding: 28px 0; text-align: center; }
  .footer-inner nav { flex-direction: column; gap: 10px; }
  .cookie-panel { grid-template-columns: auto 1fr; }
  .cookie-panel button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 430px) {
  .brand img { width: 104px; }
  .store-row { justify-content: center; }
  .store-link img { width: 126px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 150px; padding: 18px 10px; gap: 16px; }
  .service-card img { height: 58px; }
  .service-card h3 { font-size: 16px; }
  .phone-stage { min-height: 430px; padding-top: 40px; }
}
.legal-page { min-height: 100vh; padding: 70px 0; background: var(--soft); }
.legal-page article { max-width: 820px; padding: 54px; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.legal-page a { display: inline-block; margin-bottom: 44px; color: var(--purple); font-weight: 700; }
.legal-page h1 { color: var(--ink); font-size: clamp(38px, 6vw, 64px); }
.legal-page p { color: var(--muted); font-size: 19px; line-height: 1.7; }
@media (max-width: 600px) { .legal-page { padding: 20px 0; } .legal-page article { padding: 32px 24px; } }
