/* Pop Off — Brand: #FF3D5A, #000000 */

:root {
  --color-primary: #FF3D5A;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #1a1a1a;
  --font-sf: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sf);
  background-color: var(--color-black);
  color: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--color-primary);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: block;
}

/* Main / Hero */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
}

.hero {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    padding-right: 2.5rem;
  }
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--color-primary);
}

.hero-slogan {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-white);
  opacity: 0.95;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.cta:hover {
  background-color: #ff2445;
  transform: scale(1.02);
}

.cta:active {
  transform: scale(0.98);
}

/* Hero image – iPhone mockup */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.phone-mockup {
  position: relative;
  width: 280px;
  padding: 12px;
  background: #1c1c1e;
  border-radius: 3rem;
  box-shadow:
    0 0 0 3px #2c2c2e,
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-dynamic-island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 1;
}

.phone-screen {
  position: relative;
  width: 100%;
  border-radius: 2.25rem;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 0 0 0.75rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Legal pages (privacy, terms) */
.legal-page {
  flex: 1;
  background: #fff;
  color: #1a1a1a;
}

.legal-page .policy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  line-height: 1.5;
}
