/* Dealcover — Studio · Blanc & Orange */

:root {
  --bg: #ffffff;
  --bg-warm: #fdf8f4;
  --surface: #ffffff;
  --surface-2: #fdf8f4;
  --border: rgba(30,15,0,0.08);
  --border-strong: rgba(30,15,0,0.14);
  --primary: #fc8a54;
  --primary-dark: #e87040;
  --primary-pale: #fff0e8;
  --text: #1a0f0a;
  --text-dim: #6b5040;
  --text-muted: #b09080;
  --shadow-sm: 0 1px 4px rgba(30,15,0,0.06), 0 1px 2px rgba(30,15,0,0.04);
  --shadow: 0 4px 18px rgba(30,15,0,0.08), 0 1px 4px rgba(30,15,0,0.04);
  --shadow-lg: 0 16px 50px rgba(30,15,0,0.12), 0 4px 12px rgba(30,15,0,0.06);
  --radius: 16px;
  --radius-lg: 24px;
  --max-w: 1200px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center; padding: 0 2rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-dim);
  transition: color 0.2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  border-radius: 1px; transition: width 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--primary); color: #fff;
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(252,138,84,0.4); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.4rem; flex-direction: column; gap: 5px;
}
.nav-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; }
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.05rem; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-warm { background: var(--bg-warm); }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--primary-pale); border: 1px solid rgba(252,138,84,0.25);
  color: var(--primary-dark); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #fff;
  padding: 0.875rem 1.75rem; border-radius: 10px;
  font-size: 1rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(252,138,84,0.35); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-dim); padding: 0.875rem 1.75rem; border-radius: 10px;
  font-size: 1rem; font-weight: 500; border: 1px solid var(--border-strong);
  transition: all 0.2s; background: var(--surface);
}
.btn-ghost:hover { color: var(--text); border-color: var(--primary); }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #f05050);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blob-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(252,138,84,0.12) 0%, transparent 70%);
  top: -200px; right: -150px; animation: float 9s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(252,138,84,0.07) 0%, transparent 70%);
  bottom: -100px; left: -100px; animation: float 12s ease-in-out infinite reverse;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-28px); } }
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.hero-p { font-size: 1.1rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── APP GRID (hero) ── */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.app-icon-card {
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  transition: all 0.22s; cursor: pointer; box-shadow: var(--shadow-sm);
}
.app-icon-card:hover {
  border-color: rgba(252,138,84,0.4); background: var(--surface);
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
}
.app-icon-card img { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; }
.app-icon-card span { font-size: 0.67rem; font-weight: 600; color: var(--text-dim); text-align: center; }
.app-soon { cursor: default !important; border-style: dashed !important; }
.app-soon:hover { transform: none !important; box-shadow: var(--shadow-sm) !important; border-color: rgba(252,138,84,0.2) !important; }
.app-soon-icon { font-size: 1.3rem; color: var(--primary); opacity: 0.5; }
.app-soon span { color: var(--primary) !important; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15; margin: 0.75rem 0 1rem;
}
.section-header p { font-size: 1.05rem; color: var(--text-dim); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.2; margin: 0.75rem 0 1.25rem;
}
.about-content p { color: var(--text-dim); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.stats-row { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat-num { font-size: 2.25rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

.about-card {
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow);
}
.about-card-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.about-card-apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.mini-app {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.75rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
}
.mini-app img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.mini-app span { font-size: 0.62rem; font-weight: 600; color: var(--text-dim); text-align: center; }
.mini-app-soon { border-style: dashed; }
.about-mission { background: var(--primary-pale); border-radius: 12px; padding: 1rem; border: 1px solid rgba(252,138,84,0.2); }
.about-mission-label { font-size: 0.72rem; color: var(--primary-dark); margin-bottom: 0.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.about-mission-text { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }

/* ── APPS GRID ── */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.5rem; }
.app-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.app-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); opacity: 0; transition: opacity 0.3s;
}
.app-card:hover { border-color: rgba(252,138,84,0.3); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.app-card:hover::before { opacity: 1; }
.app-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.app-card-icon { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.app-card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.25rem; }
.app-card-tag { font-size: 0.68rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; }
.app-card-desc { color: var(--text-dim); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.app-card-footer { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--bg-warm); border: 1px solid var(--border-strong);
  color: var(--text); font-size: 0.78rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 8px; transition: all 0.2s;
}
.app-store-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.app-store-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 720px; margin: 0 auto; }
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; text-align: center;
  transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.team-card:hover { border-color: rgba(252,138,84,0.3); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary), #f05050);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: #fff; overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.team-role { font-size: 0.72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.85rem; }
.team-bio { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 1.25rem; }
.team-social { display: flex; gap: 0.5rem; justify-content: center; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-warm); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.68rem; font-weight: 800; transition: all 0.2s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── CTA ── */
.cta-section { padding: 6rem 0; position: relative; overflow: hidden; background: var(--bg-warm); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin: 0.75rem 0 1.25rem; }
.cta-inner p { color: var(--text-dim); font-size: 1.05rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { padding: 4rem 0 2rem; background: #1a0f0a; color: #f5ede8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 28px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #7a5f52; font-size: 0.875rem; line-height: 1.75; max-width: 260px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.footer-contact a { display: flex; align-items: center; gap: 0.5rem; color: #9a7060; font-size: 0.875rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }
.footer-col-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #4a3028; margin-bottom: 1.25rem; }
.footer-col-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-links a { color: #9a7060; font-size: 0.9rem; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--primary); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; color: #4a3028; font-size: 0.8rem; }

/* ── PAGE HERO ── */
.page-hero { padding: calc(var(--nav-h) + 5rem) 0 4rem; text-align: center; background: var(--bg); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; margin: 0.75rem 0 1.25rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ── APP PAGE HERO ── */
.app-hero {
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  background: var(--bg);
}
.app-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center;
}
.app-hero-icon { width: 120px; height: 120px; border-radius: 28px; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-lg); }
.app-hero-tag { font-size: 0.72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.app-hero-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem; line-height: 1.1; }
.app-hero-desc { font-size: 1.1rem; color: var(--text-dim); line-height: 1.75; max-width: 600px; margin-bottom: 2rem; }
.app-hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.app-stat-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--primary-pale); border: 1px solid rgba(252,138,84,0.2);
  color: var(--primary-dark); font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 8px;
}

/* ── APP PAGE FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.feature-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-pale); border: 1px solid rgba(252,138,84,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1rem;
}
.feature-card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; margin-bottom: 2rem;
}
.back-link:hover { color: var(--primary); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.contact-info p { color: var(--text-dim); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; background: var(--bg-warm); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.25rem; box-shadow: var(--shadow-sm); }
.contact-item-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--primary-pale); border: 1px solid rgba(252,138,84,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-item-label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.1rem; }
.contact-item-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.calendly-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── DIVIDER ── */
hr.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .app-hero-inner { grid-template-columns: 1fr; }
  .app-hero-icon { width: 88px; height: 88px; border-radius: 22px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .apps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .app-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .hero-inner { padding: 3rem 1.25rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-row { gap: 1.5rem; }
}
