:root {
  --pink: #ed567c;
  --pink-dark: #ce3c64;
  --pink-soft: #fff0f4;
  --cream: #fffaf7;
  --ink: #5e3441;
  --muted: #856a73;
  --green: #72b92d;
  --yellow: #ffc84a;
  --blue: #70bdeb;
  --purple: #9b78dd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(101, 44, 62, .14);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 18px;
  font-family: Inter, ui-rounded, "SF Pro Rounded", "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 187, 205, .42), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(255, 220, 119, .26), transparent 25rem),
    linear-gradient(180deg, #fffaf8 0%, #fff 42%, #fff9f5 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.rtl { font-family: Tahoma, "Segoe UI", Arial, sans-serif; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { color: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 24px;
  background: rgba(255, 252, 250, .83);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 14px 42px rgba(99, 47, 63, .1);
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; }
.brand img { border-radius: 14px; box-shadow: 0 7px 18px rgba(209, 62, 103, .22); }
.desktop-nav { display: flex; gap: 26px; color: var(--muted); font-size: .94rem; font-weight: 700; }
.desktop-nav a { transition: .2s ease; }
.desktop-nav a:hover { color: var(--pink-dark); transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.language-picker { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #f4dce3; border-radius: 14px; padding: 0 8px; height: 44px; }
.language-picker select { border: 0; outline: 0; color: var(--ink); background: transparent; max-width: 110px; cursor: pointer; }
.header-download { display: grid; place-items: center; height: 44px; padding: 0 20px; background: var(--pink); color: #fff; border-radius: 14px; font-weight: 900; box-shadow: 0 9px 22px rgba(224, 67, 109, .24); transition: .2s ease; }
.header-download:hover { background: var(--pink-dark); transform: translateY(-2px); }

main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero { min-height: 760px; padding: 76px 0 56px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 56px; }
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--pink-dark); font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.eyebrow { padding: 10px 14px; background: rgba(255,255,255,.7); border: 1px solid #f5dbe2; border-radius: 999px; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(114,185,45,.14); }
h1 { margin: 20px 0 18px; max-width: 720px; font-size: clamp(3rem, 6.5vw, 5.35rem); line-height: .96; letter-spacing: -.065em; color: #5b2f3c; text-wrap: balance; }
.hero-description { max-width: 640px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.26rem); line-height: 1.78; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.play-button { min-width: 220px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 20px; border-radius: 18px; color: #fff; background: #272224; box-shadow: 0 16px 30px rgba(39,34,36,.2); transition: transform .2s ease, box-shadow .2s ease; }
.play-button:hover { transform: translateY(-3px); box-shadow: 0 22px 38px rgba(39,34,36,.25); }
.play-button svg { width: 34px; height: 34px; flex: 0 0 auto; }
.play-button span { display: grid; text-align: start; line-height: 1.05; }
.play-button small { font-size: .62rem; letter-spacing: .1em; opacity: .82; }
.play-button strong { margin-top: 3px; font-size: 1.19rem; }
.secondary-button { display: inline-flex; align-items: center; gap: 10px; padding: 13px 19px; border-radius: 18px; background: rgba(255,255,255,.8); border: 1px solid #f3d9e1; font-weight: 900; color: var(--ink); transition: .2s ease; }
.secondary-button:hover { transform: translateY(-3px); background: #fff; }
.play-circle { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--pink); font-size: .78rem; padding-inline-start: 2px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 34px; }
.hero-stats div { display: grid; gap: 2px; padding-inline-end: 25px; border-inline-end: 1px solid #ead9de; }
.hero-stats div:last-child { border: 0; }
.hero-stats strong { font-size: 1.36rem; color: #60333f; }
.hero-stats span { color: var(--muted); font-size: .83rem; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; width: 490px; height: 490px; border-radius: 48% 52% 44% 56%; background: linear-gradient(145deg, #ffd6df, #ffe8c4); transform: rotate(-8deg); z-index: -3; box-shadow: inset 0 0 80px rgba(255,255,255,.85); }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(1px); z-index: -2; }
.blob-one { width: 140px; height: 140px; background: rgba(116,190,235,.2); top: 40px; right: 0; }
.blob-two { width: 90px; height: 90px; background: rgba(114,185,45,.18); bottom: 35px; left: 5px; }
.phone-shell { width: min(570px, 96%); aspect-ratio: 16/9; position: relative; padding: 12px; border-radius: 38px; background: linear-gradient(145deg,#171416,#454043 45%,#161315); box-shadow: 0 32px 70px rgba(71,33,44,.28), inset 0 0 0 2px rgba(255,255,255,.28); transform: rotate(2.5deg); }
.phone-shell::before { content: ""; position: absolute; inset: 5px; border: 2px solid #cfc8c7; border-radius: 34px; pointer-events: none; }
.phone-shell img { width: 100%; height: 100%; object-fit: cover; border-radius: 27px; }
.phone-speaker { position: absolute; z-index: 2; width: 54px; height: 5px; border-radius: 999px; background: #0c0b0c; top: 5px; left: 50%; transform: translateX(-50%); }
.floating-icon { position: absolute; width: 138px; height: 138px; object-fit: cover; border-radius: 30px; left: -8px; bottom: 20px; transform: rotate(-7deg); box-shadow: 0 21px 42px rgba(93,37,55,.25); border: 5px solid rgba(255,255,255,.9); }
.floating-badge { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 14px 34px rgba(93,37,55,.16); font-size: .86rem; backdrop-filter: blur(12px); }
.floating-badge span { font-size: 1.2rem; }
.badge-top { top: 80px; left: -5px; transform: rotate(-4deg); }
.badge-bottom { right: -8px; bottom: 72px; transform: rotate(4deg); }

.feature-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 12px 0 70px; padding: 14px; border: 1px solid #f3e2e6; border-radius: 25px; background: rgba(255,255,255,.74); box-shadow: 0 12px 40px rgba(90,42,56,.07); }
.feature-strip div { min-height: 68px; display: flex; align-items: center; justify-content: center; gap: 11px; border-radius: 17px; background: #fff8f6; font-size: .94rem; }
.feature-strip span { font-size: 1.45rem; }

.section { padding: 86px 0; }
.section-heading { width: min(790px,100%); margin: 0 auto 38px; text-align: center; }
.section-heading.align-start { margin-inline: 0; text-align: start; }
.section-heading h2, .how-copy h2, .download-cta h2 { margin: 12px 0; color: #5b2f3c; font-size: clamp(2rem,4vw,3.3rem); line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
.section-heading p, .how-copy > p { margin: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.feature-card { min-height: 260px; position: relative; overflow: hidden; padding: 29px; border: 1px solid rgba(255,255,255,.82); border-radius: 28px; box-shadow: 0 18px 50px rgba(84,39,52,.08); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -38px; bottom: -45px; background: rgba(255,255,255,.48); }
.feature-card:hover { transform: translateY(-7px); box-shadow: 0 26px 55px rgba(84,39,52,.13); }
.feature-card h3 { margin: 19px 0 10px; font-size: 1.25rem; }
.feature-card p { margin: 0; color: #7e6570; line-height: 1.68; }
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,255,255,.86); box-shadow: 0 10px 25px rgba(76,34,47,.09); font-size: 1.65rem; }
.feature-pink { background: linear-gradient(150deg,#fff1f5,#ffe2ea); }
.feature-yellow { background: linear-gradient(150deg,#fff9e8,#ffedb9); }
.feature-green { background: linear-gradient(150deg,#f1fae8,#dff3c7); }
.feature-blue { background: linear-gradient(150deg,#eef9ff,#dceffc); }
.feature-purple { background: linear-gradient(150deg,#f6f0ff,#e8dcfb); }
.feature-orange { background: linear-gradient(150deg,#fff5ec,#ffe2c8); }

.screenshot-section { padding-top: 96px; }
.screenshot-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.screenshot-wide { grid-column: 1/-1; }
.screenshot-card { position: relative; overflow: hidden; display: block; padding: 0; border: 0; border-radius: 27px; background: #fff; box-shadow: var(--shadow); cursor: zoom-in; text-align: start; }
.screenshot-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s ease; }
.screenshot-card:hover img { transform: scale(1.025); }
.screenshot-card span { position: absolute; inset-inline: 18px; bottom: 17px; width: fit-content; max-width: calc(100% - 36px); padding: 10px 14px; border-radius: 13px; color: #fff; background: rgba(58,31,39,.79); backdrop-filter: blur(10px); font-weight: 800; font-size: .9rem; }

.how-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 62px; align-items: center; }
.video-card { position: relative; overflow: hidden; width: min(450px,90%); margin: auto; aspect-ratio: 9/16; border: 12px solid #fff; border-radius: 38px; background: #f6d9df; box-shadow: 0 28px 70px rgba(77,34,47,.22); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-toggle { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 70px; height: 70px; border: 0; border-radius: 50%; color: #fff; background: rgba(231,70,112,.92); box-shadow: 0 13px 30px rgba(112,31,53,.25); cursor: pointer; font-size: 1.45rem; padding-inline-start: 5px; }
.video-card.is-playing .video-toggle { opacity: 0; pointer-events: none; }
.video-card:hover .video-toggle { opacity: 1; pointer-events: auto; }
.steps { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 18px; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 15px; align-items: start; padding: 18px; border-radius: 21px; background: rgba(255,255,255,.75); border: 1px solid #f1dde3; }
.steps li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--pink); color: #fff; font-weight: 900; font-size: 1.2rem; box-shadow: 0 10px 24px rgba(231,70,112,.2); }
.steps strong { display: block; margin: 2px 0 6px; font-size: 1.08rem; }
.steps p { margin: 0; color: var(--muted); line-height: 1.62; }

.flavors-section { position: relative; }
.flavor-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 13px; }
.flavor-grid article { position: relative; min-width: 0; padding: 13px 10px 14px; text-align: center; border-radius: 24px; background: rgba(255,255,255,.86); border: 1px solid #f1e0e4; box-shadow: 0 12px 34px rgba(83,39,51,.07); transition: .23s ease; }
.flavor-grid article:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 20px 40px rgba(83,39,51,.12); }
.flavor-grid img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.flavor-grid span { display: block; margin-top: 5px; font-weight: 800; font-size: .86rem; }

.download-cta { position: relative; overflow: hidden; margin: 80px 0 90px; min-height: 330px; display: grid; grid-template-columns: 180px 1fr auto; gap: 28px; align-items: center; padding: 42px; color: #fff; border-radius: 38px; background: linear-gradient(130deg,#dc3f6b,#f27491 52%,#f2a75f); box-shadow: 0 28px 70px rgba(182,50,88,.25); }
.download-cta::before, .download-cta::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); }
.download-cta::before { width: 290px; height: 290px; top: -180px; right: 20%; }
.download-cta::after { width: 180px; height: 180px; bottom: -100px; left: 35%; }
.cta-art, .cta-copy, .cta-button { position: relative; z-index: 2; }
.cta-art img { width: 160px; height: 160px; border-radius: 37px; box-shadow: 0 20px 40px rgba(81,24,42,.28); border: 5px solid rgba(255,255,255,.8); transform: rotate(-5deg); }
.cta-copy > span { font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; opacity: .86; }
.download-cta h2 { color: #fff; margin: 10px 0; }
.download-cta p { margin: 0; opacity: .88; }
.cta-button { background: #fff; color: #2b2426; box-shadow: 0 16px 35px rgba(89,28,46,.2); }

.site-footer { width: min(1180px,calc(100% - 32px)); margin: 0 auto 96px; padding: 25px 0; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; border-top: 1px solid #eadde1; color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { border-radius: 16px; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand strong { color: var(--ink); }
.footer-brand span { font-size: .84rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 20px; font-size: .9rem; font-weight: 700; }
.footer-links a:hover { color: var(--pink-dark); }
.site-footer > p { grid-column: 1/-1; margin: 0; font-size: .8rem; }
.mobile-install { display: none; }

.lightbox { width: min(1120px,94vw); padding: 0; border: 0; border-radius: 24px; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(32,18,22,.78); backdrop-filter: blur(10px); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: 21px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.lightbox button { position: absolute; right: -8px; top: -50px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: var(--pink); cursor: pointer; font-size: 1.5rem; }
body.rtl .lightbox button { right: auto; left: -8px; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-description { margin-inline: auto; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 520px; width: min(690px,100%); margin: auto; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .flavor-grid { grid-template-columns: repeat(4,1fr); }
  .how-section { grid-template-columns: 1fr; }
  .how-visual { order: 2; }
  .download-cta { grid-template-columns: 150px 1fr; }
  .cta-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 720px) {
  body { padding-bottom: 86px; }
  .site-header { top: 7px; width: calc(100% - 16px); margin-top: 7px; min-height: 62px; border-radius: 19px; padding: 8px; }
  .brand span { display: none; }
  .brand img { width: 44px; height: 44px; }
  .header-download { display: none; }
  .language-picker { height: 42px; }
  .language-picker select { max-width: 128px; }
  main { width: min(100% - 22px,1180px); }
  .hero { min-height: auto; padding: 62px 0 25px; gap: 34px; }
  h1 { font-size: clamp(2.75rem,13vw,4.1rem); }
  .hero-description { font-size: 1rem; }
  .hero-buttons { width: 100%; }
  .play-button, .secondary-button { width: 100%; }
  .hero-stats { width: 100%; gap: 0; justify-content: space-between; }
  .hero-stats div { flex: 1; padding: 0 8px; }
  .hero-visual { min-height: 360px; }
  .hero-visual::before { width: 310px; height: 310px; }
  .phone-shell { width: 100%; padding: 7px; border-radius: 24px; }
  .phone-shell::before { border-radius: 21px; }
  .phone-shell img { border-radius: 18px; }
  .floating-icon { width: 82px; height: 82px; border-radius: 20px; bottom: 28px; }
  .floating-badge { display: none; }
  .feature-strip { grid-template-columns: repeat(2,1fr); margin-bottom: 30px; }
  .feature-strip div { font-size: .78rem; }
  .section { padding: 62px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .screenshot-wide { grid-column: auto; }
  .screenshot-card span { font-size: .76rem; }
  .video-card { width: min(370px,90%); }
  .flavor-grid { grid-template-columns: repeat(3,1fr); gap: 9px; }
  .flavor-grid article { padding: 8px 7px 11px; border-radius: 18px; }
  .flavor-grid span { font-size: .72rem; }
  .download-cta { grid-template-columns: 1fr; text-align: center; padding: 32px 21px; }
  .cta-art img { margin: auto; }
  .cta-button { grid-column: auto; width: 100%; }
  .site-footer { grid-template-columns: 1fr; margin-bottom: 25px; }
  .footer-links { justify-content: start; }
  body.rtl .footer-links { justify-content: end; }
  .mobile-install { position: fixed; z-index: 45; left: 8px; right: 8px; bottom: 8px; min-height: 70px; display: grid; grid-template-columns: 46px 1fr 34px; align-items: center; gap: 11px; padding: 8px 11px; color: #fff; border-radius: 19px; background: rgba(42,35,38,.95); box-shadow: 0 18px 50px rgba(31,20,24,.3); backdrop-filter: blur(15px); }
  .mobile-install img { border-radius: 12px; }
  .mobile-install span { display: grid; min-width: 0; }
  .mobile-install small { opacity: .7; font-size: .67rem; }
  .mobile-install strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .91rem; }
  .mobile-install b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--pink); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
