/* ===== Brutalist styles for 67TAP marketing site ===== */

:root {
  --bg: #FFFF00;
  --ink: #000000;
  --paper: #FFFFFF;
  --accent: #FF1744;
  --six: #FF1744;
  --seven: #00E676;
  --shadow-offset: 8px;
}

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

html, body { background: var(--bg); color: var(--ink); }

body {
  font-family: 'Anton', 'Impact', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  overflow-x: hidden;
}

p { font-family: 'Anton', 'Impact', sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== HERO ===== */
.hero {
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-stickers {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.sticker {
  display: inline-block;
  padding: 6px 12px;
  border: 3px solid var(--ink);
  font-size: 14px;
  letter-spacing: 1px;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 4px 4px 0 var(--ink);
}

.sticker--ink { background: var(--ink); color: var(--bg); box-shadow: 4px 4px 0 var(--paper); }
.sticker--paper { background: var(--paper); color: var(--ink); }

.title {
  font-size: clamp(96px, 22vw, 240px);
  letter-spacing: -8px;
  line-height: 0.85;
  text-shadow: 8px 8px 0 var(--accent);
  margin-bottom: 8px;
}

.tagline {
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 2px;
  margin-bottom: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
}

.hero-art img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(8px 8px 0 var(--ink));
}

.hero-cta { display: flex; flex-direction: column; gap: 20px; }

.cta-pitch {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0.5px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.appstore-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 24px;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--accent);
  transform: rotate(-1deg);
  width: max-content;
  transition: transform 80ms ease-out;
}
.appstore-btn:hover { transform: rotate(-1deg) translate(-2px, -2px); box-shadow: 8px 8px 0 var(--accent); }
.appstore-btn:active { transform: rotate(-1deg) translate(2px, 2px); box-shadow: 4px 4px 0 var(--accent); }

.appstore-btn__small { font-size: 12px; opacity: 0.7; }
.appstore-btn__big { font-size: 24px; letter-spacing: 1px; }

.cta-fineprint {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
  border-top: 6px solid var(--ink);
}

.section--features { background: var(--paper); }
.section--screenshots { background: var(--bg); }
.section--quotes { background: var(--ink); color: var(--bg); }

.section-title {
  font-size: clamp(40px, 8vw, 80px);
  letter-spacing: -2px;
  margin-bottom: 48px;
  text-align: center;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  border: 5px solid var(--ink);
  padding: 28px 24px;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 80ms ease-out;
}
.feature-card:hover { transform: rotate(var(--rot, 0deg)) translateY(-4px); }

.feature-card--accent { background: var(--accent); color: var(--paper); }
.feature-card--ink    { background: var(--ink); color: var(--bg); box-shadow: 8px 8px 0 var(--paper); }
.feature-card--paper  { background: var(--paper); color: var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.feature-card--seven  { background: var(--seven); color: var(--ink); }

.feature-emoji { font-size: 48px; margin-bottom: 12px; }
.feature-title { font-size: 32px; letter-spacing: -1px; margin-bottom: 8px; }
.feature-body {
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: none;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* ===== SCREENSHOTS ===== */
.screenshots-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.phone-frame {
  border: 6px solid var(--ink);
  background: var(--ink);
  padding: 6px;
  border-radius: 32px;
  width: 240px;
  height: 480px;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 10px 10px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* placeholder when no image */
.phone-frame img:not([src]),
.phone-frame img[src=""],
.phone-frame img:-moz-broken {
  background: var(--accent);
}

.screenshots-fineprint {
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 1px;
  margin-top: 32px;
}

/* ===== QUOTES ===== */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.quote {
  background: var(--bg);
  color: var(--ink);
  border: 4px solid var(--paper);
  padding: 24px;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 6px 6px 0 var(--paper);
}

.quote p {
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  margin-bottom: 12px;
}

.quote footer {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 48px 24px;
  text-align: center;
}

.footer-brand {
  font-size: 56px;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-nav a:hover { color: var(--accent); }
.footer-dot { opacity: 0.5; }

.footer-fineprint {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 1px;
  line-height: 1.6;
}

/* ===== LEGAL PAGES (privacy + terms) ===== */
body.legal { background: var(--paper); }
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-back {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  font-size: 14px;
  letter-spacing: 1px;
  border: 3px solid var(--ink);
  margin-bottom: 32px;
}
.legal-back:hover { background: var(--accent); border-color: var(--accent); }

.legal-title {
  font-size: clamp(40px, 8vw, 72px);
  letter-spacing: -2px;
  text-shadow: 6px 6px 0 var(--accent);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 40px;
}

.legal-prose h2 {
  font-size: 22px;
  letter-spacing: 1px;
  margin: 32px 0 12px;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 6px;
}
.legal-prose p,
.legal-prose ul {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.legal-prose ul { padding-left: 24px; }
.legal-prose li { margin-bottom: 6px; }
.legal-prose strong { font-weight: 600; }
.legal-prose a { color: var(--accent); text-decoration: underline; }
.legal-prose a:hover { background: var(--ink); color: var(--bg); }

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .title { letter-spacing: -4px; }
  .feature-title { font-size: 26px; }
  .phone-frame { width: 180px; height: 360px; }
}
