/* ReelHour website – same colors as the app (R logo gradient) */
:root {
  --teal: #33b8c7;
  --light-blue: #59a6f2;
  --purple: #9959e6;
  --pink: #fa4073;
  --coral: #ff7359;
  --gradient: linear-gradient(90deg, var(--teal), var(--light-blue), var(--purple), var(--pink), var(--coral));
  --bg: #0a0a0c;
  --surface: #141418;
  --text: #f5f5f7;
  --text-muted: #a1a1a6;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--light-blue);
}

/* Logo R – gradient like the app */
.logo-r,
.hero-r,
.mock-r {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: inherit;
  line-height: 1;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
}

.logo .logo-r {
  font-size: 1.75rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  min-height: 80vh;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.hero-r {
  font-size: 1.1em;
}

.hero-tagline {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 0 2rem;
}

.cta {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Phone mock (hero visual) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mock {
  width: 260px;
  height: 520px;
  background: var(--surface);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-r {
  font-size: 6rem;
  font-weight: 700;
  -webkit-text-fill-color: white;
  background: transparent;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Features */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.features h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Download */
.download {
  text-align: center;
  padding: 4rem 1.5rem 5rem;
}

.download h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.download p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cta-store {
  font-size: 1.1rem;
}

.download-note {
  font-size: 0.85rem;
  margin-top: 1.5rem;
  opacity: 0.7;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mock {
    width: 200px;
    height: 400px;
  }

  .mock-r {
    font-size: 4rem;
  }
}
