:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f5f5f7;
  --surface-2: #fbfbfd;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0,0,0,.10);
  --blue: #007aff;
  --blue-soft: rgba(0,122,255,.10);
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #77f4d1, #71a7ff);
  box-shadow: 0 10px 30px rgba(0,122,255,.18);
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.03em;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.hero {
  padding: 70px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-size: 15px;
  font-weight: 750;
  margin: 0 0 10px;
}

.hero h1, .contact-copy h1 {
  font-size: clamp(46px, 6.4vw, 78px);
  line-height: .96;
  letter-spacing: -.07em;
  margin: 0;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 760;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(0,122,255,.24);
}

.button.secondary {
  background: var(--surface);
  color: var(--text);
}

.phone-showcase {
  display: flex;
  justify-content: flex-end;
  perspective: 1200px;
}

.phone-frame {
  width: min(315px, 100%);
  aspect-ratio: 9 / 18.6;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(145deg, #303036, #050506);
  box-shadow:
    0 24px 70px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.16);
  position: relative;
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.phone-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 20px;
  border-radius: 999px;
  background: #050506;
  z-index: 2;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.12);
}

.phone-screen {
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  padding: 52px 17px 20px;
  background:
    radial-gradient(circle at 30% 0%, rgba(0,122,255,.35), transparent 34%),
    radial-gradient(circle at 100% 20%, rgba(119,244,209,.18), transparent 28%),
    linear-gradient(180deg, #111116, #000);
  color: #fff;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 20px;
}

.phone-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 10px;
}

.phone-app {
  min-width: 0;
  text-align: center;
  color: #fff;
}

.phone-app img, .skeleton-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,.36);
  transition: transform .18s ease, filter .18s ease;
}

.phone-app:hover img {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.08);
}

.phone-app span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.1;
  color: rgba(255,255,255,.74);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.phone-hint {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 650;
}

.skeleton-icon {
  background: linear-gradient(90deg, #27272b, #3a3a40, #27272b);
  background-size: 220% 100%;
  animation: shimmer 1.3s infinite;
}

.section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2, .contact-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.055em;
  line-height: 1;
}

.section-heading p:not(.eyebrow), .contact-cta p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.circle-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.featured-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

.featured-track::-webkit-scrollbar, .rank-list::-webkit-scrollbar { display: none; }

.feature-card {
  position: relative;
  flex: 0 0 min(420px, 86vw);
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  background: #161617;
  color: #fff;
  box-shadow: var(--shadow);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.18) 38%, rgba(0,0,0,.84));
}

.feature-card .feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  filter: blur(24px) saturate(1.15);
  opacity: .68;
}

.feature-content {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-icon {
  width: 128px;
  height: 128px;
  border-radius: 26%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  margin-bottom: 22px;
}

.feature-label {
  color: #0a84ff;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -.055em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-desc {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.36;
  margin: 12px 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.14);
}

.get-btn {
  align-self: flex-start;
  min-width: 76px;
  border-radius: 999px;
  padding: 10px 18px;
  color: #0a84ff;
  background: rgba(255,255,255,.14);
  font-weight: 850;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  min-width: 0;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,.04);
}

.rank-number {
  width: 28px;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.app-icon {
  width: 74px;
  height: 74px;
  border-radius: 23%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.rank-meta {
  min-width: 0;
  flex: 1;
}

.rank-title, .grid-title {
  margin: 0;
  font-weight: 760;
  letter-spacing: -.02em;
}

.rank-title {
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-sub, .grid-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.rank-item .button {
  min-height: 34px;
  padding: 8px 14px;
  background: var(--blue-soft);
  color: var(--blue);
  box-shadow: none;
  font-size: 13px;
}

.all-heading {
  align-items: center;
}

.search-box {
  min-width: min(320px, 100%);
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 16px;
  background: var(--surface);
  outline: 0;
}

.search-box input:focus {
  border-color: rgba(0,122,255,.45);
  box-shadow: 0 0 0 4px rgba(0,122,255,.12);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 22px;
}

.grid-card {
  display: block;
  min-width: 0;
}

.grid-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24%;
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
  transition: transform .18s ease;
}

.grid-card:hover img {
  transform: translateY(-3px) scale(1.02);
}

.grid-title {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 36px;
  overflow: hidden;
}

.contact-cta {
  margin: 50px auto 70px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer a {
  color: var(--blue);
  font-weight: 700;
}

.loading-card, .loading-row {
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  padding: 28px;
  min-height: 120px;
  display: grid;
  place-items: center;
}

.contact-page {
  padding: 54px 0 76px;
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  background: var(--surface);
}

.contact-copy h1 {
  font-size: clamp(48px, 6vw, 72px);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.muted {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  background: var(--bg);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  outline: 0;
  background: var(--surface-2);
  color: var(--text);
  resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(0,122,255,.45);
  box-shadow: 0 0 0 4px rgba(0,122,255,.12);
}

@keyframes shimmer {
  to { background-position-x: -220%; }
}

@media (max-width: 1040px) and (min-width: 821px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    gap: 34px;
  }
  .phone-frame {
    width: min(292px, 100%);
  }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { align-items: flex-start; flex-direction: column; padding: 12px 0; gap: 10px; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero { grid-template-columns: 1fr; padding: 44px 0 24px; gap: 34px; }
  .phone-showcase { justify-content: center; }
  .phone-frame { width: min(292px, 92vw); border-radius: 42px; padding: 10px; transform: none; }
  .phone-screen { border-radius: 32px; padding: 48px 15px 18px; }
  .phone-apps { gap: 12px 9px; }
  .section-heading, .all-heading { align-items: flex-start; flex-direction: column; }
  .carousel-controls { display: none; }
  .feature-card { flex-basis: 88vw; min-height: 390px; }
  .feature-content { min-height: 390px; padding: 22px; }
  .feature-title { font-size: 30px; }
  .rank-list { grid-template-columns: 1fr; }
  .rank-item .button { display: none; }
  .app-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .contact-cta { align-items: flex-start; flex-direction: column; }
  .contact-panel { grid-template-columns: 1fr; padding: 20px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #000000;
    --surface: #1c1c1e;
    --surface-2: #111113;
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --line: rgba(255,255,255,.13);
    --blue-soft: rgba(10,132,255,.16);
    --shadow: 0 18px 45px rgba(0,0,0,.44);
  }
  .site-header { background: rgba(0,0,0,.78); }
  .phone-app img, .app-icon, .grid-card img { box-shadow: 0 12px 24px rgba(0,0,0,.35); }
}


/* ===== RESPONSIVE HERO FIX ===== */

/* Desktop balance */
.hero {
  grid-template-columns: 1.3fr 0.7fr !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .phone-showcase {
    justify-content: center !important;
  }

  .phone-frame {
    width: 280px !important;
    transform: none !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 20px !important;
    gap: 24px !important;
  }

  .hero h1 {
    font-size: 36px !important;
  }

  .lead {
    font-size: 18px !important;
  }

  .phone-frame {
    width: 240px !important;
  }

  .phone-app span {
    font-size: 9px !important;
  }
}


/* ===== ANIMATIONS ===== */

/* fade in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* phone floating */
.phone-frame {
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0% { transform: translateY(0px) rotateY(-7deg) rotateX(2deg); }
  50% { transform: translateY(-10px) rotateY(-7deg) rotateX(2deg); }
  100% { transform: translateY(0px) rotateY(-7deg) rotateX(2deg); }
}

/* icon hover bounce */
.phone-app img {
  transition: transform 0.25s ease;
}

.phone-app:hover img {
  transform: translateY(-6px) scale(1.08);
}

/* button hover */
.button {
  transition: all 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}


/* ===== NEXT LEVEL ANIMATION ===== */

/* parallax tilt on phone */
.phone-frame {
  transition: transform 0.2s ease;
  will-change: transform;
}

/* feature card hover depth */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

/* smooth scroll snapping */
.featured-track {
  scroll-behavior: smooth;
}

/* subtle fade stagger */
.fade-in {
  transition-delay: calc(var(--i, 0) * 0.05s);
}


/* ===== BRIGHT PLAYFUL STYLE OVERRIDE ===== */

:root {
  --bg: #fff9fd;
  --surface: #ffffff;
  --surface-2: #fff7ff;
  --text: #19162b;
  --muted: #6f6a86;
  --line: rgba(107, 72, 255, .14);
  --blue: #7c4dff;
  --blue-soft: rgba(124, 77, 255, .12);
  --shadow: 0 24px 70px rgba(95, 64, 186, .16);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 120, 190, .34), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(111, 207, 255, .45), transparent 31%),
    radial-gradient(circle at 52% 74%, rgba(255, 221, 89, .20), transparent 35%),
    linear-gradient(135deg, #ffe1f1 0%, #fff9fb 45%, #dff4ff 100%);
  color: var(--text);
}

.site-header {
  background: rgba(255, 249, 253, .78);
  border-bottom: 1px solid rgba(124, 77, 255, .12);
}

.brand-icon {
  background: linear-gradient(135deg, #ff7ac8, #7c4dff 55%, #48d7ff);
  color: #fff;
}

.nav-links a:hover { background: rgba(255,255,255,.70); }

.hero {
  min-height: calc(100vh - 76px);
  padding-top: 88px;
}

.eyebrow {
  color: #7c4dff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
}

.hero h1 {
  max-width: 820px;
  color: #171426;
  font-weight: 900;
  letter-spacing: -.075em;
  font-size: clamp(52px, 6.8vw, 92px) !important;
  text-wrap: balance;
}

.lead {
  max-width: 760px;
  color: #6f6a86;
  font-size: clamp(20px, 1.75vw, 27px) !important;
  line-height: 1.55;
}

.button.primary {
  background: linear-gradient(135deg, #7c4dff, #ff5db8);
  box-shadow: 0 18px 36px rgba(124,77,255,.26);
}

.button.secondary {
  background: rgba(255,255,255,.72);
  color: #19162b;
  border: 1px solid rgba(124,77,255,.12);
}

.phone-frame {
  width: min(330px, 100%) !important;
  border-radius: 50px;
  padding: 13px;
  background: linear-gradient(145deg, #2a243c, #12101d);
  box-shadow:
    0 34px 90px rgba(87, 65, 160, .28),
    0 18px 36px rgba(255, 93, 184, .12),
    inset 0 0 0 1px rgba(255,255,255,.18);
}

.phone-screen {
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 122, 200, .34), transparent 28%),
    radial-gradient(circle at 100% 15%, rgba(72, 215, 255, .26), transparent 34%),
    linear-gradient(180deg, #fff5ff 0%, #f1ecff 60%, #fff7fb 100%);
  color: #19162b;
  padding-top: 54px;
}

.phone-speaker {
  background: rgba(255,255,255,.22);
  height: 11px;
  top: 22px;
}

.phone-status { color: rgba(25,22,43,.72); }

.phone-app img {
  box-shadow:
    0 12px 26px rgba(65, 43, 135, .20),
    0 2px 0 rgba(255,255,255,.72) inset;
}

.phone-app span {
  color: rgba(25,22,43,.72);
  font-weight: 700;
}

.phone-hint { color: rgba(25,22,43,.52); }

.section-heading h2,
.contact-cta h2 {
  color: #171426;
  font-weight: 900;
}

.section-heading p:not(.eyebrow),
.contact-cta p { color: #6f6a86; }

.feature-card {
  background: #fff;
  color: #171426;
  border: 1px solid rgba(124,77,255,.12);
}

.feature-card::after {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.18) 35%, rgba(255,255,255,.92));
}

.feature-title,
.feature-content { color: #171426; }

.feature-desc { color: #6f6a86; }

.feature-label { color: #7c4dff; }

.pill {
  background: rgba(124,77,255,.10);
  border: 1px solid rgba(124,77,255,.12);
  color: #5c45b8;
}

.get-btn {
  background: linear-gradient(135deg, #7c4dff, #ff5db8);
  color: #fff;
  box-shadow: 0 12px 24px rgba(124,77,255,.20);
}

.rank-item,
.contact-cta,
.loading-card,
.loading-row {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(124,77,255,.12);
  box-shadow: 0 14px 34px rgba(95,64,186,.08);
}

.search-box input,
.contact-form input,
.contact-form textarea { background: rgba(255,255,255,.82); }

.grid-card img,
.app-icon { box-shadow: 0 14px 30px rgba(95,64,186,.16); }

.footer { background: rgba(255,255,255,.42); }

/* keep bright theme even when OS dark mode is on */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
    --bg: #fff9fd;
    --surface: #ffffff;
    --surface-2: #fff7ff;
    --text: #19162b;
    --muted: #6f6a86;
    --line: rgba(107, 72, 255, .14);
    --blue: #7c4dff;
    --blue-soft: rgba(124, 77, 255, .12);
    --shadow: 0 24px 70px rgba(95, 64, 186, .16);
  }

  .site-header { background: rgba(255, 249, 253, .78); }

  .phone-app img, .app-icon, .grid-card img {
    box-shadow: 0 14px 30px rgba(95,64,186,.16);
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 54px !important;
  }

  .hero h1 { font-size: clamp(42px, 8vw, 68px) !important; }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .phone-frame { width: 292px !important; }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px !important;
    line-height: 1.02;
  }

  .lead {
    font-size: 18px !important;
    line-height: 1.45;
  }

  .phone-frame { width: 248px !important; }
}


/* ===== JSONP FIX VERSION: PHONE ANIMATION COMPAT ===== */
.phone-frame {
  --tilt-x: 2deg;
  --tilt-y: -7deg;
}

@keyframes floatPhone {
  0% { transform: translateY(0px) rotateY(var(--tilt-y)) rotateX(var(--tilt-x)); }
  50% { transform: translateY(-10px) rotateY(var(--tilt-y)) rotateX(var(--tilt-x)); }
  100% { transform: translateY(0px) rotateY(var(--tilt-y)) rotateX(var(--tilt-x)); }
}

@media (max-width: 1024px) {
  .phone-frame {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
  }
}
