/* House style */
:root {
    --Accent_color: #ff7ac8;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  background: #080808;
  color: #f0f0f0;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/*  Scrollbar  */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/*  Navbar */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Hero  */
.hero-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 10px 24px 0;
  pointer-events: none;
  background-image: url('assets/images/gradient%20background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}


.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 80%);
  pointer-events: none;
}

/* ── Hero left-aligned copy ── */
.hero-copy {
  width: 100%;
  padding-left: clamp(0px, 1vw, 16px);
  margin-top: 100px;
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,122,200,0.65);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow-text::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,122,200,0.4);
}

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subtext {
  color: #9ca3af;
  font-size: clamp(15px, 2vw, 19px);
  max-width: 360px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ── Hero CTA ── */
.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  pointer-events: auto;
}

.hero-cta-play {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 22px;
  border: 1.5px solid rgba(255,122,200,0.5);
  border-radius: 12px;
  background: rgba(255,122,200,0.06);
  color: #f0f0f0;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer;
}
.hero-cta-play:hover {
  border-color: rgba(255,122,200,0.8);
  background: rgba(255,122,200,0.1);
  transform: translateY(-1px);
}
.hero-cta-play-icon {
  color: var(--Accent_color);
  flex-shrink: 0;
  display: flex;
}
.hero-cta-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.hero-cta-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.hero-cta-coming {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
  width: 100%;
}

/* ── Hero CTA – Apple (coming soon) ── */
.hero-cta-apple {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 22px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  cursor: default;
  position: relative;
}
.hero-cta-apple-icon {
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
  display: flex;
}
.hero-cta-soon-pill {
  position: absolute;
  top: -9px;
  right: -8px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  line-height: 1.4;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── Navbar branded store button ── */
.navbar-store-branded {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1.5px solid rgba(255,122,200,0.3);
  border-radius: 10px;
  background: rgba(255,122,200,0.05);
  color: #f0f0f0;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: default;
  flex-shrink: 0;
}
.navbar-store-branded:hover {
  border-color: rgba(255,122,200,0.55);
  background: rgba(255,122,200,0.1);
  transform: translateY(-1px);
}
.navbar-branded-eyebrow {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1;
  margin-bottom: 2px;
}
.navbar-branded-name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
}

/* ── Marquee strip ── */
.marquee-strip {
  border-top: 1px solid rgba(255,122,200,0.12);
  border-bottom: 1px solid rgba(255,122,200,0.12);
  background: rgba(255,122,200,0.03);
  overflow: hidden;
  padding: 11px 0;
  user-select: none;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-inner span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,122,200,0.5);
  padding: 0 4px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gradient-text {
  background: linear-gradient(135deg, #f0f0f0 0%, var(--Accent_color) 60%,#f686c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navbar Play Store badge */
.navbar-store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.navbar-store-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.navbar-store-btn img {
  display: block;
  height: 36px;
  width: auto;
}
.navbar-soon-pill {
  position: absolute;
  top: -7px;
  right: -10px;
  background: var(--Accent_color);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  line-height: 1.4;
  pointer-events: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--Accent_color);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(255, 48, 214, 0.35);
}
.btn-primary:hover {
  background: var(--Accent_color);
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255,48,214,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #f0f0f0;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Hero phone mockup */
.hero-phone-container {
  position: relative;
  margin-top: -44rem;
  margin-bottom: -120px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform: translateX(22%);
}

.hero-phone-glow {
  display: none;
}

.hero-mockup-wrapper {
  position: relative;
  width: 1440px;
  max-width: 105vw;
  z-index: 1;
}

.hero-mockup-img {
  width: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 92%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 92%);
}

.hero-mockup-img--2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: heroSwapIn 8s ease-in-out infinite;
}

.hero-mockup-img--1 {
  animation: heroSwapOut 8s ease-in-out infinite;
}

@keyframes heroSwapOut {
  0%, 38%  { opacity: 1; }
  48%, 90% { opacity: 0; }
  100%     { opacity: 1; }
}

@keyframes heroSwapIn {
  0%, 38%  { opacity: 0; }
  48%, 90% { opacity: 1; }
  100%     { opacity: 0; }
}

/* Section titles */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--Accent_color);
  padding: 6px 6px;
  background: rgba(255,48,214,0.1);
  border: 1px solid rgba(255,48,214,0.25);
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Feature cards */
.feature-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: rgba(255,48,214,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,48,214,0.12);
  border: 1px solid rgba(255,48,214,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

/* ── Interactive Customizer Section ── */
.customize-section {
  scroll-margin-top: -60px;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #080808;
}

.customize-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  transition: background 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

.customize-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 52px;
  max-width: 840px;
  margin: 0 auto;
}

/* Phone column */
.cust-phone-col {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.cust-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(60px);
  transition: background 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

.cust-phone-frame {
  width: 248px;
  height: 527px;
  border-radius: 34px;
  border: 2.5px solid rgba(255,255,255,0.18);
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 40px 80px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 1;
}

.cust-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #0d0d0d;
  border-radius: 0 0 16px 16px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top: none;
  z-index: 2;
}

.cust-phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
}

.cust-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: opacity 0.3s ease;
}

/* Settings column */
.cust-settings-col {
  flex: 1;
  min-width: 0;
  max-width: 380px;
}

.settings-panel {
  background: #141414;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.settings-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.settings-topbar-back {
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.settings-topbar-title {
  font-size: 17px;
  font-weight: 700;
  color: #f0f0f0;
  flex: 1;
}

.settings-pro-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--Accent_color);
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.settings-pro-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 20px;
  padding: 12px 14px;
  background: rgba(255,122,200,0.07);
  border: 1px solid rgba(255,122,200,0.18);
  border-radius: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.settings-pro-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--Accent_color);
  opacity: 0.8;
}

.settings-pro-notice strong {
  color: var(--Accent_color);
  font-weight: 600;
}

.settings-section {
  padding: 16px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.settings-section--colors {
  padding-bottom: 14px;
}

.settings-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.settings-theme-row {
  display: flex;
  gap: 8px;
}

.settings-theme-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.settings-theme-btn.active {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #f0f0f0;
}

.settings-theme-btn:not(.active):hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.18);
}

/* Color swatches */
.color-swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  gap: 8px;
  align-items: center;
  justify-items: center;
  touch-action: manipulation;
}

.color-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  border: 2.5px solid transparent;
  box-sizing: border-box;
  touch-action: manipulation;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-swatch:hover:not(.active) {
  transform: scale(1.12);
}

.color-swatch.active {
  border-color: #ffffff;
  transform: scale(1.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

/* Selected color footer */
.settings-color-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
}

.settings-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.4s ease;
}

.settings-color-name {
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f0;
  transition: color 0.4s ease;
}

/*  Screenshots grid  */
.screenshot-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/*  Screenshots grid  */
.screenshots-grid {
  display: flex;
  gap: 8px;
}

.screenshots-grid .screenshot-frame {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 768px) {
  .screenshots-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .screenshots-grid .screenshot-frame {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .screenshots-grid .screenshot-frame {
    flex: 0 0 75vw;
  }
}


/*  FAQ  */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #f0f0f0;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--Accent_color); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.3s, background 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,48,214,0.15);
  border-color: rgba(255,48,214,0.3);
  color: var(--Accent_color);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer-inner {
  padding-bottom: 22px;
  color: #9ca3af;
  line-height: 1.7;
  font-size: 15px;
}

/*  Privacy section */
.privacy-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
  margin-top: 32px;
  margin-bottom: 10px;
}
.privacy-content p, .privacy-content li {
  color: #9ca3af;
  line-height: 1.75;
  font-size: 15px;
}
.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.privacy-content a {
  color: var(--Accent_color);
  text-decoration: none;
}
.privacy-content a:hover { text-decoration: underline; }

/*  Footer  */
footer a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: #f0f0f0; }

/*  Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.07) 70%, transparent);
}

/* ── Heart icon (SVG mask, color via currentColor) ── */
.heart-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url('assets/images/heart.svg');
  mask-image: url('assets/images/heart.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* ── Floating Support Card ── */
#supportFloat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

#supportToggle {
  pointer-events: auto;
}

#supportCard.open {
  pointer-events: auto;
}

#supportToggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(255, 122, 200, 0.25);
  color: #f0f0f0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 16px rgba(255,48,214,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
#supportToggle:hover {
  border-color: rgba(255, 122, 200, 0.5);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6), 0 0 24px rgba(255,48,214,0.25);
  transform: translateY(-2px);
}

#supportCard {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px;
  width: 280px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,48,214,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#supportCard.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.support-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.support-card-icon {
  display: flex;
  align-items: center;
  line-height: 1;
}
.support-card-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.support-card-close:hover { color: rgba(255,255,255,0.7); }

.support-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #f0f0f0;
  margin: 0 0 10px;
  line-height: 1.4;
}
.support-card-text {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0 0 18px;
}
.support-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--Accent_color);
  color: #000;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255,48,214,0.3);
  transition: transform 0.15s, box-shadow 0.2s;
}
.support-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(255,48,214,0.45);
}

@media (max-width: 480px) {
  #supportFloat { bottom: 18px; right: 16px; }
  #supportCard { width: calc(100vw - 32px); }
}

/*  Fade-in animation  */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*  Responsive tweaks  */
@media (max-width: 768px) {
  .hero-mockup-wrapper { width: 700px; }
  .hero-phone-glow { width: 600px; height: 600px; }
  .hero-phone-container { margin-bottom: -90px; margin-top: 40px; transform: none; }

  .customize-layout {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .cust-phone-frame { width: 200px; height: 433px; }
  .cust-phone-notch { width: 74px; height: 22px; }
  .cust-settings-col { max-width: 100%; width: 100%; }
}

/* Hero image: desktop vs mobile */
.hero-mockup-mobile { display: none; }
.hero-mockup-desktop { display: block; }

@media (max-width: 480px) {
  /* Hero mobile optimisation */
  .hero-section { padding: 72px 16px 0; justify-content: flex-start; }
  .hero-mockup-mobile { display: block; }
  .hero-mockup-desktop { display: none; }
  .hero-copy { padding-left: 0; margin-top: 16px; pointer-events: auto; }
  .hero-eyebrow-text { display: none; }
  .hero-cta-row { flex-wrap: wrap; gap: 10px; }
  .hero-cta-coming { font-size: 10px; width: 100%; margin-top: 2px; }
  .hero-cta-eyebrow { display: none; }
  .hero-cta-play {
    padding: 11px 16px;
    gap: 9px;
    border-color: rgba(255,122,200,0.75);
    background: rgba(255,122,200,0.12);
  }
  .hero-cta-apple {
    padding: 11px 16px;
    gap: 9px;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
  }
  .hero-mockup-wrapper { width: 115%; max-width: 115vw; margin-left: -7.5%; }
  .hero-phone-glow { width: 340px; height: 340px; }
  .hero-phone-container { margin-top: 48px; margin-bottom: -50px; transform: none; }
  .navbar-store-branded .navbar-branded-eyebrow { display: none; }
  .navbar-store-branded .navbar-branded-name { font-size: 12px; }

  /* Customization: phone → theme toggle → color slider */
  .customize-layout {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cust-phone-frame { width: 160px; height: 338px; }
  .cust-phone-notch { width: 62px; height: 19px; }
  .cust-settings-col { max-width: 100%; width: 100%; }

  /* Hide verbose chrome */
  .settings-topbar { display: none; }
  .settings-pro-notice { display: none; }

  /* Horizontal color slider */
  .color-swatch-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .color-swatch-grid::-webkit-scrollbar { display: none; }
  .color-swatch {
    flex: 0 0 44px;
    scroll-snap-align: center;
  }
}
