/* Recall Rush Landing Website Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #07091D;
  --bg-card: rgba(18, 22, 51, 0.75);
  --bg-card-border: rgba(99, 102, 241, 0.22);
  --primary-cyan: #00F5D4;
  --primary-blue: #38BDF8;
  --accent-purple: #8B5CF6;
  --accent-amber: #FFBE0B;
  --text-white: #F8FAFC;
  --text-muted: #94A3B8;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] { display: none !important; }

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Ambient Orbs */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.16);
  top: -150px;
  left: -150px;
}
.orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(0, 245, 212, 0.12);
  bottom: -100px;
  right: -100px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 9, 29, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-white);
}
.nav-cta-btn {
  background: linear-gradient(135deg, #0EA5E9, #38BDF8) !important;
  color: #030712 !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 800 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}
.icon-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
}
.nav-cta-btn .icon-svg { margin-left: 0.28rem; }

/* Hero */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.hero-container {
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(0, 245, 212, 0.12);
  border: 1px solid var(--primary-cyan);
  color: var(--primary-cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.gradient-text {
  background: linear-gradient(135deg, #00F5D4, #38BDF8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-hero-primary, .btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.8rem;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.22s ease;
  min-width: 220px;
  text-align: left;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #0EA5E9, #38BDF8);
  color: #030712;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.5);
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.btn-icon { display: grid; place-items: center; font-size: 1.8rem; }
.btn-text strong { display: block; font-size: 1.05rem; font-weight: 800; font-family: var(--font-display); }
.btn-text span { font-size: 0.78rem; opacity: 0.8; }

.store-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.store-tag { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.platform-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-banner-preview {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(14, 165, 233, 0.2);
}
.feature-banner-img {
  width: 100%;
  display: block;
}

/* Features */
.features-section, .screenshots-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}
.section-container {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  text-align: left;
}
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(56, 189, 248, 0.15);
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary-cyan);
}
.feature-icon .icon-svg { display: block; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Screenshots */
.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}
.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.screenshot-item img {
  width: 100%;
  max-width: 220px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s;
}
.screenshot-item img:hover {
  transform: scale(1.04);
}
.screenshot-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 1.5rem;
  background: rgba(7, 9, 29, 0.9);
}
.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.footer-brand h4 { font-family: var(--font-display); font-size: 1.1rem; }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-cyan); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Privacy Page Specific */
.privacy-wrap {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
}
.privacy-wrap h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.privacy-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.privacy-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--primary-blue);
}
.privacy-wrap p, .privacy-wrap li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.privacy-wrap ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-wrap a { overflow-wrap: anywhere; }
.deletion-panel {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}
.deletion-panel-heading { display: flex; align-items: flex-start; gap: 1rem; }
.deletion-panel .deletion-panel-heading h2 { margin: 0 0 0.35rem; color: var(--text-white); }
.deletion-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  background: rgba(0, 245, 212, 0.12);
  border: 1px solid rgba(0, 245, 212, 0.3);
  font-size: 1.4rem;
  color: var(--primary-cyan);
}
.auth-status, .auth-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}
.auth-message.success { color: #A7F3D0; background: rgba(16, 185, 129, 0.12); border-color: rgba(16, 185, 129, 0.35); }
.auth-message.error { color: #FECACA; background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.35); }
.auth-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.provider-button, .danger-button, .text-button {
  appearance: none;
  border: 0;
  border-radius: 12px;
  min-height: 48px;
  padding: 0.8rem 1rem;
  font: 700 0.92rem var(--font-body);
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.provider-button { color: #111827; background: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.provider-button-apple { color: #fff; background: #000; }
.provider-button:hover:not(:disabled), .danger-button:hover:not(:disabled), .text-button:hover:not(:disabled) { transform: translateY(-1px); }
.provider-button:disabled, .danger-button:disabled, .text-button:disabled { cursor: not-allowed; opacity: 0.5; }
.provider-mark { display: inline-block; margin-right: 0.5rem; font-size: 1.05rem; }
.auth-help { grid-column: 1 / -1; margin: 0.25rem 0 0 !important; font-size: 0.82rem !important; }
.account-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.account-summary { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.account-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  color: #03111d;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  font: 800 0.9rem var(--font-display);
}
.account-summary strong, .account-summary span { display: block; }
.account-summary span { color: var(--text-muted); font-size: 0.82rem; overflow-wrap: anywhere; }
.danger-note { padding: 0.8rem; border-radius: 10px; background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.22); }
.confirm-label { display: block; margin: 1rem 0 0.45rem; color: var(--text-muted); font-size: 0.85rem; }
.confirm-input {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  outline: none;
}
.confirm-input:focus { border-color: #F87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12); }
.danger-button { width: 100%; margin-top: 0.8rem; color: #fff; background: linear-gradient(135deg, #DC2626, #EF4444); }
.text-button { width: 100%; margin-top: 0.5rem; color: var(--text-muted); background: transparent; border: 1px solid rgba(255, 255, 255, 0.1); }

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .nav-links a:not(.nav-cta-btn) { display: none; }
  .screenshots-slider { grid-template-columns: repeat(2, 1fr); }
  .footer-container { flex-direction: column; text-align: center; }
  .privacy-wrap { margin: 1.25rem 0.75rem; padding: 1.4rem; }
  .auth-actions { grid-template-columns: 1fr; }
  .deletion-panel { padding: 1rem; }
  .deletion-panel-heading { align-items: center; }
}
