/* ============================================================
   Pick Party – Landing Page Styles
   Palette: Mango Tango
   Fonts: Paytone One (display) + DM Sans (body)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700&family=Paytone+One&display=swap');

/* --- Design Tokens --- */
:root {
  --mango: #FF8A1F;
  --mango-dk: #E2730C;
  --magenta: #F6478A;
  --sunny: #FFD23F;
  --teal: #2EC4B6;
  --coral: #FF6B4A;
  --peach: #FFA94D;
  --ink: #3A2410;
  --ink-soft: #9A7B5C;
  --paper: #FFF7EC;
  --card: #FFFFFF;
  --line: #F0E2CF;
  --shadow: 0 16px 40px -18px rgba(120, 70, 10, .35);
  --shadow-sm: 0 6px 18px -10px rgba(120, 70, 10, .35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -8%, #ffe7c6 0%, rgba(255, 231, 198, 0) 60%),
    radial-gradient(900px 500px at 100% 0%, #ffe0ec 0%, rgba(255, 224, 236, 0) 55%),
    var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
.disp, h1, h2, h3 { font-family: 'Paytone One', sans-serif; font-weight: 400; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; }
h3 { font-size: 1.15rem; }
p { color: var(--ink-soft); font-size: 1.05rem; }

/* --- Layout --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: 'Paytone One', sans-serif;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(58, 36, 16, .5);
}
.btn-primary:hover {
  box-shadow: 0 16px 32px -10px rgba(58, 36, 16, .6);
}
.btn-secondary {
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--mango);
}
.btn-cta {
  background: var(--mango);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(255, 138, 31, .7);
}
.btn-cta:hover {
  box-shadow: 0 16px 32px -10px rgba(255, 138, 31, .8);
}
.btn svg, .btn img { width: 22px; height: 22px; }
.btn { position: relative; }
.btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--magenta);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(246, 71, 138, 0.4);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 247, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(120, 70, 10, .08);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--mango);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Paytone One', sans-serif;
  font-size: 22px;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-sm);
}
.nav-logo-text {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
}
.nav-logo-text span { color: var(--mango); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mango); }

/* --- Hero --- */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  max-width: 700px;
  margin: 0 auto 16px;
}
.hero h1 .highlight { color: var(--mango); }
.hero-sub {
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-phones {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  perspective: 1000px;
}
.phone-frame {
  width: 240px;
  border-radius: 36px;
  background: #1e140a;
  padding: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}
.phone-frame:hover {
  transform: translateY(-8px) rotateY(2deg);
}
.phone-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
}
.phone-label {
  text-align: center;
  margin-top: 12px;
  font-family: 'Paytone One', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
}

/* --- Features Section --- */
.features { background: var(--card); border-radius: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  color: #fff;
}
.feature-card:nth-child(1) .feature-icon { background: var(--mango); }
.feature-card:nth-child(2) .feature-icon { background: var(--magenta); }
.feature-card:nth-child(3) .feature-icon { background: var(--teal); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.95rem; line-height: 1.6; }
.feature-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mango-dk);
  background: #ffe9cf;
  padding: 4px 10px;
  border-radius: 20px;
}

/* --- Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefit {
  text-align: center;
  padding: 28px 20px;
}
.benefit-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.benefit h3 { margin-bottom: 6px; font-size: 1.05rem; }
.benefit p { font-size: 0.9rem; }

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 100px 0;
}
.cta-card {
  background: linear-gradient(135deg, var(--mango), var(--magenta));
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  box-shadow: 0 24px 48px -16px rgba(255, 138, 31, .4);
}
.cta-card h2 { color: #fff; margin-bottom: 12px; }
.cta-card p { color: rgba(255, 255, 255, .85); margin-bottom: 32px; font-size: 1.1rem; }
.cta-card .btn-primary { background: #fff; color: var(--ink); }
.cta-card .btn-primary:hover {
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, .2);
}
.cta-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Coming Soon --- */
.coming-soon {
  background: var(--card);
}
.coming-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.coming-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 1rem;
}
.coming-chip span:first-child { font-size: 1.6rem; }

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 0;
}
.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px;
  font-family: 'Paytone One', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--mango);
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '-';
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-item a {
  color: var(--mango);
  text-decoration: none;
  font-weight: 500;
}
.faq-item a:hover {
  text-decoration: underline;
}

/* --- Footer --- */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mango); }
.footer-copy {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* --- Confetti Decorations --- */
.confetti {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero { padding: 130px 0 60px; }
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .phone-frame { width: 180px; }
  .hero-phones { gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 48px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .phone-frame { width: 150px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* --- Privacy Page --- */
.privacy-page {
  padding: 140px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}
.privacy-page h1 { font-size: 2rem; margin-bottom: 8px; }
.privacy-page .last-updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 40px; }
.privacy-page h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px; }
.privacy-page p, .privacy-page li { font-size: 1rem; color: var(--ink-soft); margin-bottom: 12px; }
.privacy-page ul { padding-left: 24px; }
.privacy-page li { margin-bottom: 8px; }
