/* Scoops marketing site — tryscoops.online */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --primary: #FF6B6B;
  --primary-dark: #e85a5a;
  --cream: #FFF8E7;
  --dark: #1A1A2E;
  --accent: #4ECDC4;
  --white: #FFFFFF;
  --text: #333333;
  --text-muted: #666666;
  --border: #E8E8E8;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius-btn: 12px;
  --radius-card: 16px;
  --max-width: 1120px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--coral {
  background: var(--primary);
  color: var(--white);
}

.section--coral h1,
.section--coral h2,
.section--coral h3,
.section--coral p {
  color: var(--white);
}

.section--coral .section-lead {
  color: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
}

.nav__brand img {
  height: 40px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--primary);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.25rem 1.25rem;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile a {
  padding: 0.875rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

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

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: none;
  }

  .nav__mobile {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background: var(--cream);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 12px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2;
  transition: transform 0.15s, background 0.2s;
  min-width: 180px;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: #2a2a42;
}

.store-btn--light {
  background: var(--white);
  color: var(--dark);
}

.store-btn--light:hover {
  background: var(--cream);
}

.store-btn__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.store-btn__small {
  display: block;
  font-size: 0.625rem;
  font-weight: 400;
  opacity: 0.85;
}

.store-btn__large {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.hero {
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero__screenshot {
  display: flex;
  justify-content: center;
}

.hero-screenshot-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.35);
}

.screenshot-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19.5;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero__screenshot {
    justify-content: flex-end;
  }

  .hero-screenshot-img {
    max-width: 300px;
  }
}

.steps {
  display: grid;
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 0 0.5rem;
}

.step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.step__icon svg {
  width: 32px;
  height: 32px;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.card-grid--2x2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid--2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.benefit-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
  color: var(--dark);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq-item a {
  color: var(--primary);
  font-weight: 600;
}

.faq-item a:hover {
  text-decoration: underline;
}

.cta-block {
  text-align: center;
  padding: 4rem 0;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
}

.cta-block .store-buttons {
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-block__note {
  font-size: 0.875rem;
  opacity: 0.9;
}

.drivers-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.drivers-section__header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
}

.drivers-section__cta {
  text-align: center;
  margin-top: 2rem;
}

.about-blurb {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-blurb p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.legal-page {
  padding: 3rem 0 4rem;
  background: var(--cream);
  min-height: calc(100vh - var(--nav-height) - 200px);
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page__updated {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.legal-content {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-highlight {
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.legal-highlight p {
  margin-bottom: 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.legal-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
}

.legal-table td {
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid #F5F5F5;
  line-height: 1.6;
  vertical-align: top;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-placeholder {
  padding: 2rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius-card);
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

.legal-content a {
  color: var(--primary);
  font-weight: 600;
}

.legal-content code {
  font-family: monospace;
  font-size: 0.875em;
  background: var(--cream);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .legal-content {
    padding: 2.5rem 3rem;
  }
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand img {
  height: 40px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

.footer__links h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom .made-with {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.page-hero {
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 1.75rem;
}
