/* Off Limits / Red Ape Mobile — Shared Styles */

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

:root {
  --brand:      #ff2d55;
  --secondary:  #6025dd;
  --bg:         #EFF3FD;
  --text:       #4C4C4C;
  --white:      #ffffff;
  --radius:     16px;
  --gradient:   linear-gradient(135deg, #ff2d55 0%, #6025dd 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }

/* ── Hero ── */
.hero {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 100px 24px 80px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(16px, 2.5vw, 22px);
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.15s, opacity 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn:active { transform: translateY(0); }

.btn-white {
  background: var(--white);
  color: var(--brand);
}

.btn-brand {
  background: var(--gradient);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

/* ── App Store Badge ── */
.appstore-badge {
  display: inline-block;
  margin-top: 8px;
}
.appstore-badge img { height: 52px; border-radius: 12px; }

/* ── Section ── */
section { padding: 80px 24px; max-width: 960px; margin: 0 auto; }

section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

section .subtitle {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 560px;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.card p { font-size: 15px; color: var(--text); }

/* ── App Showcase ── */
.app-showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.app-showcase:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.app-showcase img {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,45,85,0.25);
}

.app-showcase-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.app-showcase-info p { font-size: 15px; color: var(--text); margin-bottom: 16px; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,45,85,0.1);
  color: var(--brand);
}

/* ── Feature Grid (Off Limits page) ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.feature .icon { font-size: 40px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: #1a1a1a; }
.feature p { font-size: 14px; color: var(--text); }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}

footer a { color: var(--brand); }

/* ── Responsive ── */
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 20px; }
  .app-showcase { flex-direction: column; text-align: center; }
  .hero { padding: 72px 20px 60px; }
}
