/* ============================================================
   Variables
   ============================================================ */
:root {
  --black:      #0f0f0f;
  --dark:       #1a1a1a;
  --dark-2:     #2a2a2a;
  --mid:        #555555;
  --subtle:     #888888;
  --border:     #e0e0e0;
  --light:      #f4f4f4;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --text-muted: #666666;
  --radius:     12px;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
  --max-w:      1020px;
  --narrow-w:   660px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: #0f0f0f; }
body {
  font-family: 'Besley', Georgia, serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; border: none; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  padding: 0 28px;
  margin: 0 auto;
}
.container--narrow { max-width: var(--narrow-w); }
.centred { text-align: center; }

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  /*position: sticky;
  top: 0;
  z-index: 100;*/
  background: var(--black);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border-bottom: 1px solid rgba(255,255,255,0.07); */
  padding-top: env(safe-area-inset-top);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-brand img {
  width: 44px;
  height: auto;
  border-radius: 8px;
}


/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: 'Besley', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--white);
  color: var(--black);
  transition: opacity var(--transition), transform var(--transition);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

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

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 40px 0 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 28px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 0px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 36px;
  line-height: 1.7;
}

.footnote {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin-top: -14px;
}

.app-store-badge {
  height: 66px;
  width: auto;
}

.hero-img {
  display: flex;
  justify-content: center;
}

.hero-img img {
  max-width: 300px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 80px 0; }

.section--light { background: var(--white); }

.section--alt { background: var(--light); }

.section--dark {
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.section--privacy {
  background: var(--black);
  padding: 48px 0;
}

.section--privacy h2 {
  color: var(--subtle);
  font-size: 1rem;
  margin-bottom: 14px;
}

.section--privacy p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.7;
}

.legal {
  margin-top: 20px;
  font-size: 0.75rem !important;
  color: #444 !important;
  line-height: 1.6;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}

.section--dark h2 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.section-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.section-img--small {
  max-width: 300px;
}

.section--light p,
.section--alt p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================================
   Pricing grid
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pricing-col {
  color: rgba(255,255,255,0.7);
}

.pricing-col-1 {
  padding-bottom: 40px;
}

.pricing-col h2 {
  display: inline-block;
  color: var(--white);
  padding: 10px 0;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.pricing-col ul {
  list-style: disc;
  max-width: 180px;
  margin: 0 auto;
  padding-left: 20px;
}

.pricing-col ul li {
  padding: 5px 0;
  font-size: 0.95rem;
}

.pricing-col--premium h2 {
  display: block;
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 28px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-col--premium ul li {
  color: rgba(255,255,255,0.7);
}

.pricing-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px !important;
  text-align: center;
}

.pricing-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 10px;
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Feature grid
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--dark-2);
}

.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #0a0a0a;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-img {
    justify-content: center;
    max-width: 260px;
  }
  .hero {
    padding: 40px 0 60px 0;
  }

  .section { padding: 60px 0; }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
