/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #F7F6FB;
  color: #1A1A2E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F7F6FB; }
::-webkit-scrollbar-thumb { background: rgba(119,47,192,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(119,47,192,0.55); }

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.animate-fade-in-up { animation: fade-in-up 0.6s ease both; }
.animate-fade-in    { animation: fade-in    0.6s ease both; }
.animate-pulse      { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-spin       { animation: spin 1s linear infinite; }

/* ===== UTILITIES ===== */
.gradient-text {
  background: linear-gradient(135deg, #772FC0, #9B5CE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}
#nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8E6F0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 32px; height: 32px;
  border-radius: 8px;
}
.nav-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: -0.025em;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  color: #64748B;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1A1A2E; }
.nav-cta { display: none; }
.btn-nav {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #772FC0;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}
.btn-nav:hover {
  background: #5B1F94;
  box-shadow: 0 10px 20px rgba(119,47,192,0.3);
}
#hamburger {
  display: flex;
  padding: 0.5rem;
  color: #64748B;
  transition: color 0.2s;
}
#hamburger:hover { color: #1A1A2E; }
#ham-close { display: none; }
#mobile-menu {
  display: none;
  border-top: 1px solid #E8E6F0;
  background: white;
  padding: 1rem 0;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #64748B;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
#mobile-menu a:hover { color: #1A1A2E; background: #F3F0FA; }
.mobile-cta { margin: 0.5rem 0.75rem 0; }
.mobile-cta a {
  display: block;
  text-align: center;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  background: #772FC0;
  color: white !important;
  font-size: 0.875rem;
  font-weight: 500;
}
.mobile-cta a:hover { background: #5B1F94 !important; }

@media (min-width: 640px)  { .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  #hamburger { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
  background: #F7F6FB;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
}
.hero-glow-1 { top:25%; left:25%; width:24rem; height:24rem; background:rgba(119,47,192,0.06); }
.hero-glow-2 { bottom:25%; right:25%; width:20rem; height:20rem; background:rgba(155,92,232,0.05); }
.hero-glow-3 { top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; background:rgba(119,47,192,0.04); }

.hero-inner {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  padding: 6rem 1rem;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: #F3F0FA;
  border: 1px solid #E8E6F0;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #772FC0;
}
.hero-badge span { font-size:0.75rem; font-weight:500; color:#772FC0; letter-spacing:0.05em; }
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #1A1A2E;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}
.hero-ctas { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:2.5rem; }
.btn-hero-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: #772FC0;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}
.btn-hero-primary:hover {
  background: #5B1F94;
  box-shadow: 0 10px 20px rgba(119,47,192,0.3);
  transform: translateY(-2px);
}
.btn-hero-outline {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #772FC0;
  color: #772FC0;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}
.btn-hero-outline:hover {
  border-color: #5B1F94;
  color: #5B1F94;
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
}
.hero-trust svg { color: #772FC0; flex-shrink: 0; }
.hero-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-inner { position: relative; }
.hero-phone-glow {
  position: absolute;
  inset: 0;
  background: rgba(119,47,192,0.1);
  filter: blur(80px);
  border-radius: 9999px;
  transform: scale(0.75);
}
.hero-phone-inner svg {
  position: relative;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
}

@media (min-width: 640px) {
  .hero-inner { padding: 6rem 1.5rem; }
  .hero h1   { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-phone-wrap { justify-content: flex-end; }
}

/* ===== STATS BAR ===== */
.stats {
  background: white;
  border-top: 1px solid #E8E6F0;
  border-bottom: 1px solid #E8E6F0;
}
.stats-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E8E6F0;
}
.stat-item:last-child { border-bottom: none; }
.stat-icon { color: #772FC0; flex-shrink: 0; margin-top: 2px; }
.stat-value { font-size:1.5rem; font-weight:700; color:#772FC0; }
.stat-label { font-size:1rem; font-weight:600; color:#1A1A2E; margin-left:0.5rem; }
.stat-desc  { margin-top:0.25rem; font-size:0.875rem; color:#64748B; }

@media (min-width: 640px) {
  .stats-inner { padding: 3rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .stat-item {
    border-bottom: none;
    border-right: 1px solid #E8E6F0;
    padding: 0 2rem;
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child  { padding-right: 0; border-right: none; }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #772FC0;
}
.section-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.2;
}
@media (min-width: 640px) { .section-title { font-size: 3rem; } }

/* ===== FEATURES ===== */
.features {
  padding: 7rem 1rem;
  background: #F7F6FB;
}
.features-inner { max-width: 1152px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.feature-card {
  background: white;
  border: 1px solid #E8E6F0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(119,47,192,0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: #F3F0FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #772FC0;
  margin-bottom: 1.25rem;
}
.feature-card h3 { font-size:1.125rem; font-weight:600; color:#1A1A2E; margin-bottom:0.5rem; }
.feature-card p  { font-size:0.875rem; color:#64748B; line-height:1.6; }

@media (min-width: 640px)  { .features { padding: 7rem 1.5rem; } .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== SCREENSHOTS ===== */
.screenshots { padding: 6rem 0; background: white; }
.screenshots-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}
.screenshots-header { text-align:center; max-width:40rem; margin:0 auto 4rem; }
.screenshots-header .section-title { font-size:1.875rem; }
.screenshots-header p { margin-top:1rem; font-size:1.125rem; color:#64748B; line-height:1.7; }

.carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.carousel-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #E8E6F0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.carousel-btn:hover { border-color:#772FC0; color:#772FC0; }
.carousel-btn:disabled { opacity:0.2; cursor:not-allowed; }

.carousel-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-strip::-webkit-scrollbar { display: none; }

.screenshot-item {
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  scroll-snap-align: center;
  transition: all 0.5s ease;
  transform: scale(0.9);
  opacity: 0.4;
}
.screenshot-item.active {
  transform: scale(1);
  opacity: 1;
  filter: drop-shadow(0 12px 40px rgba(119,47,192,0.25));
}
.screenshot-item:not(.active):hover { opacity:0.6; transform:scale(0.93); }

.phone-frame {
  width: 192px;
  height: 400px;
  display: flex;
  flex-direction: column;
  background: black;
  border-radius: 32px;
  border: 2px solid rgba(148,163,184,0.8);
  overflow: hidden;
}
.phone-status {
  height: 28px;
  flex-shrink: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 14px;
  background: black;
  border-radius: 9999px;
  z-index: 10;
  border: 1px solid #1e293b;
}
.phone-time { font-size:8px; color:#94A3B8; font-weight:500; }
.phone-signal { display:flex; align-items:center; gap:6px; }
.signal-bars { display:flex; align-items:flex-end; gap:1px; }
.signal-bar  { width:2px; background:#64748B; border-radius:1px; }
.phone-battery { display:flex; align-items:center; }
.battery-body {
  width:16px; height:9px;
  border: 1px solid rgba(100,116,139,0.6);
  border-radius: 2px;
  position: relative;
}
.battery-fill {
  position: absolute;
  inset: 2px 3px 2px 2px;
  background: rgba(119,47,192,0.7);
  border-radius: 1px;
}
.battery-cap { width:2px; height:5px; background:rgba(100,116,139,0.6); border-radius:0 1px 1px 0; margin-left:1px; }
.phone-screen { flex:1; position:relative; overflow:hidden; }
.phone-screen img { width:100%; height:100%; object-fit:cover; object-position:top; }
.phone-home-bar {
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
}
.phone-home-bar::after {
  content: '';
  width: 40px; height: 3px;
  background: #334155;
  border-radius: 9999px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: #E8E6F0;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active { width:24px; background:#772FC0; }
.carousel-dot:not(.active):hover { background:rgba(119,47,192,0.4); }

@media (min-width: 640px) {
  .screenshots-inner { padding: 0 1.5rem; }
  .carousel-wrap { gap: 1.5rem; }
  .carousel-strip { gap: 1.5rem; }
  .screenshots-header .section-title { font-size: 2.25rem; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 7rem 1rem; background: white; }
.how-inner { max-width: 56rem; margin: 0 auto; }
.how-it-works .section-header { margin-bottom: 5rem; }
.steps { position:relative; display:flex; flex-direction:column; gap:2rem; }
.steps-line {
  display: none;
  position: absolute;
  left: calc(4.75rem / 2 - 0.5px);
  top: 4rem; bottom: 4rem;
  width: 1px;
  background: #E8E6F0;
}
.step { display:flex; gap:1.5rem; }
.step-badge {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 4.75rem; height: 4.75rem;
  border-radius: 1rem;
  background: #772FC0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.step:hover .step-badge { background:#5B1F94; box-shadow:0 10px 25px rgba(119,47,192,0.25); }
.step-number { font-size:10px; font-weight:700; color:rgba(255,255,255,0.8); letter-spacing:0.1em; }
.step-badge svg { color:white; margin-top:4px; }
.step-content {
  flex: 1;
  background: white;
  border: 1px solid #E8E6F0;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s;
}
.step:hover .step-content { border-color:rgba(119,47,192,0.3); box-shadow:0 2px 8px rgba(0,0,0,0.06); }
.step-content h3 { font-size:1.25rem; font-weight:600; color:#1A1A2E; margin-bottom:0.5rem; }
.step-content p  { color:#64748B; line-height:1.7; }

@media (min-width: 640px)  { .how-it-works { padding: 7rem 1.5rem; } }
@media (min-width: 768px) { .steps-line { display:block; } .step { gap:2rem; } }

/* ===== PRIVACY BAND ===== */
.privacy-band {
  position: relative;
  padding: 7rem 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #772FC0 0%, #5B1F94 100%);
}
.pb-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  background: rgba(255,255,255,0.05);
}
.pb-blob-1 { top:0; left:0; width:18rem; height:18rem; }
.pb-blob-2 { bottom:0; right:0; width:24rem; height:24rem; }
.pb-inner { position:relative; max-width:1152px; margin:0 auto; }
.privacy-band .section-eyebrow { color:rgba(255,255,255,0.7); }
.privacy-band .section-title   { color:white; }
.privacy-band .section-header p {
  margin-top:1.25rem;
  color:rgba(255,255,255,0.75);
  max-width:36rem;
  margin-left:auto; margin-right:auto;
  font-size:1.125rem;
  line-height:1.7;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pillar-card {
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 8px 32px rgba(119,47,192,0.12);
}
.pillar-icon {
  width:3rem; height:3rem;
  border-radius:0.75rem;
  background:rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  color:white;
  margin-bottom:1.5rem;
}
.pillar-card h3 { font-size:1.25rem; font-weight:600; color:white; margin-bottom:0.75rem; }
.pillar-card p  { color:rgba(255,255,255,0.75); line-height:1.7; }
.pb-footer { text-align:center; color:rgba(255,255,255,0.75); font-size:0.875rem; }
.pb-footer a { color:white; text-decoration:underline; text-underline-offset:4px; font-weight:500; transition:color 0.2s; }
.pb-footer a:hover { color:rgba(255,255,255,0.9); }

@media (min-width: 640px)  { .privacy-band { padding: 7rem 1.5rem; } }
@media (min-width: 768px)  { .pillars-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== CONTACT ===== */
.contact { background:#F7F6FB; padding:6rem 1rem; }
.contact-inner { max-width:1152px; margin:0 auto; }
.contact-grid { display:grid; grid-template-columns:1fr; gap:2.5rem; align-items:start; }
.contact-info-card {
  background:white; border:1px solid #E8E6F0; border-radius:1rem;
  padding:1.5rem; display:flex; flex-direction:column; gap:1.25rem;
}
.contact-info-item { display:flex; align-items:flex-start; gap:1rem; }
.contact-info-icon {
  width:2.5rem; height:2.5rem; border-radius:0.75rem;
  background:#F3F0FA; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-info-item .ci-title { font-size:0.875rem; font-weight:600; color:#1A1A2E; }
.contact-info-item .ci-sub   { font-size:0.875rem; color:#64748B; margin-top:2px; }
.contact-quote {
  background:#772FC0; border-radius:1rem; padding:1.5rem; color:white;
}
.contact-quote svg { margin-bottom:0.75rem; }
.contact-quote p { font-size:0.875rem; line-height:1.6; color:rgba(255,255,255,0.9); }
.cq-author { display:flex; align-items:center; gap:0.75rem; margin-top:1rem; }
.cq-avatar {
  width:2rem; height:2rem; border-radius:50%;
  background:rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:700; color:white;
}
.cq-name { font-size:0.75rem; font-weight:600; color:white; }
.cq-sub  { font-size:0.75rem; color:rgba(255,255,255,0.6); }
.contact-form-card {
  background:white; border:1px solid #E8E6F0; border-radius:1rem;
  padding:2rem; box-shadow:0 1px 4px rgba(0,0,0,0.04);
}
.form-row {
  display:grid; grid-template-columns:1fr;
  gap:1.25rem; margin-bottom:1.25rem;
}
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:1.25rem; }
.form-group:last-of-type { margin-bottom:0; }
.form-group label {
  font-size:0.75rem; font-weight:600; color:#1A1A2E;
  text-transform:uppercase; letter-spacing:0.05em;
}
.form-input {
  width:100%; padding:0.75rem 1rem;
  border-radius:0.75rem; background:white;
  border:1px solid #E8E6F0; color:#1A1A2E;
  font-size:0.875rem; outline:none; transition:all 0.2s;
}
.form-input::placeholder { color:#94A3B8; }
.form-input:focus { border-color:#772FC0; box-shadow:0 0 0 3px rgba(119,47,192,0.1); }
textarea.form-input { resize:none; }
.form-error-msg {
  display:none; font-size:0.875rem; color:#dc2626;
  background:#fef2f2; border:1px solid #fecaca;
  border-radius:0.75rem; padding:0.75rem 1rem; margin-bottom:1.25rem;
}
.btn-submit {
  width:100%; padding:0.875rem; border-radius:0.75rem;
  background:#772FC0; color:white; font-size:0.875rem; font-weight:600;
  border:none; cursor:pointer; transition:all 0.2s;
  display:flex; align-items:center; justify-content:center; gap:0.5rem;
}
.btn-submit:hover { background:#5B1F94; box-shadow:0 10px 20px rgba(119,47,192,0.3); }
.btn-submit:disabled { opacity:0.6; cursor:not-allowed; }
.contact-success {
  display:none; flex-direction:column; align-items:center;
  justify-content:center; padding:3rem 1rem; text-align:center; gap:1rem;
}
.contact-success .si {
  width:3.5rem; height:3.5rem; border-radius:50%;
  background:#F3F0FA; display:flex; align-items:center; justify-content:center;
}
.contact-success h3  { font-size:1.25rem; font-weight:700; color:#1A1A2E; }
.contact-success p   { font-size:0.875rem; color:#64748B; max-width:20rem; }
.contact-success button {
  font-size:0.875rem; color:#772FC0; font-weight:500;
  background:none; border:none; cursor:pointer; transition:color 0.2s;
}
.contact-success button:hover { color:#5B1F94; }

@media (min-width: 640px) { .contact { padding:6rem 1.5rem; } .form-row { grid-template-columns:1fr 1fr; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

/* ===== CTA / NOTIFY ===== */
.cta-section { padding:7rem 1rem; background:#F7F6FB; }
.cta-inner { max-width:48rem; margin:0 auto; text-align:center; }
.cta-badge {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.375rem 0.75rem; border-radius:9999px;
  background:#F3F0FA; border:1px solid #E8E6F0; margin-bottom:2rem;
}
.cta-badge-dot { width:6px; height:6px; border-radius:50%; background:#772FC0; }
.cta-badge span { font-size:0.75rem; font-weight:500; color:#772FC0; letter-spacing:0.05em; }
.cta-section h2 {
  font-size:2.25rem; font-weight:700; color:#1A1A2E;
  margin-bottom:1.25rem; line-height:1.2;
}
.cta-lead { font-size:1.125rem; color:#64748B; margin-bottom:3rem; }
.store-badges {
  display:flex; flex-wrap:wrap; align-items:center;
  justify-content:center; gap:1rem; margin-bottom:3rem;
}
.store-badge {
  display:flex; align-items:center; gap:0.75rem;
  padding:0.75rem 1.25rem; border-radius:0.75rem;
  background:#F3F0FA; border:1px solid #E8E6F0;
  opacity:0.5; cursor:not-allowed; user-select:none;
}
.store-badge svg { color:#64748B; }
.sb-label .cs  { font-size:10px; color:#64748B; line-height:1; margin-bottom:2px; }
.sb-label .sn  { font-size:0.875rem; font-weight:600; color:#64748B; line-height:1; }
.divider { display:flex; align-items:center; gap:1rem; margin-bottom:2.5rem; }
.divider-line { flex:1; height:1px; background:#E8E6F0; }
.divider span  { font-size:0.75rem; color:#94A3B8; font-weight:500; }
.notify-form { max-width:28rem; margin:0 auto; }
.notify-row { display:flex; gap:0.5rem; margin-bottom:0.75rem; }
.notify-input {
  flex:1; background:white; border:1px solid #E8E6F0;
  color:#1A1A2E; border-radius:0.75rem;
  padding:0.75rem 1rem; font-size:0.875rem;
  outline:none; font-family:inherit; transition:all 0.2s;
}
.notify-input::placeholder { color:#94A3B8; }
.notify-input:focus { border-color:#772FC0; box-shadow:0 0 0 3px rgba(119,47,192,0.1); }
.notify-btn {
  padding:0.75rem 1.25rem; border-radius:0.75rem;
  background:#772FC0; color:white; font-size:0.875rem;
  font-weight:500; border:none; cursor:pointer;
  transition:all 0.2s; white-space:nowrap;
  display:flex; align-items:center; justify-content:center; min-width:6rem;
}
.notify-btn:hover { background:#5B1F94; box-shadow:0 10px 20px rgba(119,47,192,0.3); }
.notify-btn:disabled { opacity:0.6; cursor:not-allowed; }
.notify-hint { font-size:0.75rem; color:#94A3B8; text-align:left; }
.notify-success {
  display:none; background:white; border:1px solid #E8E6F0;
  border-radius:1rem; padding:2rem;
  flex-direction:column; align-items:center;
  text-align:center; gap:0.5rem;
  animation: fade-in 0.3s ease;
}
.notify-success .nsi {
  width:3rem; height:3rem; border-radius:50%;
  background:#F3F0FA; display:flex; align-items:center; justify-content:center;
  margin-bottom:0.5rem;
}
.notify-success .ns-title { font-size:1.125rem; font-weight:600; color:#1A1A2E; }
.notify-success .ns-sub   { font-size:0.875rem; color:#64748B; margin-bottom:0.5rem; }
.btn-apk {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.75rem 1.5rem; border-radius:0.75rem;
  background:#772FC0; color:white; font-size:0.875rem;
  font-weight:500; text-decoration:none; transition:all 0.2s;
}
.btn-apk:hover { background:#5B1F94; box-shadow:0 10px 20px rgba(119,47,192,0.3); }

@media (min-width: 640px) { .cta-section { padding:7rem 1.5rem; } .cta-section h2 { font-size:3rem; } }

/* ===== FOOTER ===== */
footer {
  background: #1A1A2E;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
  max-width:1152px; margin:0 auto; padding:3.5rem 1rem;
}
.footer-grid {
  display:grid; grid-template-columns:1fr;
  gap:2.5rem; padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:1rem; }
.footer-logo img { width:28px; height:28px; border-radius:0.5rem; }
.footer-logo span { font-size:1rem; font-weight:700; color:white; }
.footer-tagline { font-size:0.875rem; color:#94A3B8; line-height:1.6; max-width:20rem; }
.footer-sub { margin-top:0.75rem; font-size:0.75rem; color:rgba(148,163,184,0.7); }
.footer-col h4 {
  font-size:0.75rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase;
  color:#94A3B8; margin-bottom:1.25rem;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.75rem; }
.footer-col a { font-size:0.875rem; color:#94A3B8; text-decoration:none; transition:color 0.2s; }
.footer-col a:hover { color:white; }
.footer-bottom {
  padding-top:2rem; display:flex;
  flex-direction:column; align-items:center; gap:1rem;
}
.footer-bottom p, .footer-bottom a, .footer-bottom span {
  font-size:0.875rem; color:rgba(148,163,184,0.6);
}
.footer-bottom a { text-decoration:none; transition:color 0.2s; }
.footer-bottom a:hover { color:#9B5CE8; }
.fp-badge { display:flex; align-items:center; gap:4px; }
.fp-badge svg { color:#9B5CE8; }

@media (min-width: 640px) {
  .footer-inner { padding:3.5rem 1.5rem; }
  .footer-bottom { flex-direction:row; justify-content:space-between; }
}
@media (min-width: 768px) { .footer-grid { grid-template-columns:repeat(3,1fr); } }

/* ===== LEGAL PAGES ===== */
.legal-page { background:white; min-height:100vh; }
.legal-section { padding:8rem 1rem 6rem; }
.legal-inner { max-width:42rem; margin:0 auto; }
.legal-header { margin-bottom:3rem; }
.legal-header .section-eyebrow { display:block; margin-bottom:0.75rem; }
.legal-header h1 { font-size:2.25rem; font-weight:700; color:#1A1A2E; margin-bottom:0.75rem; }
.legal-header .legal-date { color:#64748B; }
.legal-body { color:#64748B; line-height:1.7; }
.legal-body > * + * { margin-top:2.5rem; }
.legal-sec h2 {
  border-left:4px solid #772FC0; padding-left:1rem;
  font-size:1.25rem; font-weight:600; color:#1A1A2E; margin-bottom:1rem;
}
.legal-body p + p { margin-top:1rem; }
.legal-body ul { list-style:none; display:flex; flex-direction:column; gap:0.75rem; margin-left:1rem; }
.legal-bullet { display:flex; gap:0.75rem; }
.lb-dot { margin-top:6px; width:6px; height:6px; border-radius:50%; background:#772FC0; flex-shrink:0; }
.legal-body a { color:#772FC0; text-decoration:underline; text-underline-offset:4px; transition:color 0.2s; }
.legal-body a:hover { color:#5B1F94; }
.legal-body strong { color:#1A1A2E; font-weight:600; }
.legal-body code { font-size:0.875rem; background:#F3E8FF; padding:2px 6px; border-radius:4px; font-family:monospace; }
.legal-subsec { margin-top:1.5rem; }
.legal-subsec h3 { font-weight:600; color:#1A1A2E; margin-bottom:0.5rem; }
.legal-intro { font-size:1.125rem; color:#1A1A2E; margin-bottom:2.5rem !important; }
