/* ============================================================
   SKŌR — Global Stylesheet
   Warm editorial aesthetic · Playfair Display + DM Sans
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #FAF8F3;
  --white:   #FFFFFF;
  --stone:   #E8E4DB;
  --charcoal:#2C2A28;
  --ink:     #1A1917;
  --brown:   #7C6B52;
  --brown-lt:#A08B6E;
  --brown-dk:#5A4D3A;
  --dark-bg: #1E1C1A;
  --dark-card:#2A2724;
  --radius:  16px;
  --radius-sm:10px;
  --shadow:  0 4px 24px rgba(44,42,40,.08);
  --shadow-md:0 8px 40px rgba(44,42,40,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
}
.btn-primary:hover { background: var(--brown-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,107,82,.35); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-1px); }

.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover { background: var(--stone); }

.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,243,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,228,219,.6);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(44,42,40,.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.8rem;
  color: #1A1917;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav__logo-o {
  color: #7C6B52;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.nav__links a:hover { color: var(--brown); }

.nav__cta { flex-shrink: 0; }

.nav__store-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__badge-link {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav__badge-link:hover { opacity: .8; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--stone);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--stone);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 148px 0 100px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--stone);
  color: var(--brown);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brown);
  border-radius: 50%;
}

.hero__headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero__headline em {
  font-style: italic;
  color: var(--brown);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: .85;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__avatars {
  display: flex;
}
.hero__avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-left: -10px;
}
.hero__avatars img:first-child { margin-left: 0; }

/* Avatar placeholders */
.avatar-placeholder {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
  flex-shrink: 0;
}
.avatar-placeholder:first-child { margin-left: 0; }
.ap-1 { background: #C4A882; }
.ap-2 { background: #A08060; }
.ap-3 { background: #8B6F50; }
.ap-4 { background: #7C6248; }
.ap-5 { background: #6D5540; }

.hero__proof-text { font-size: .875rem; }
.hero__proof-text strong { display: block; font-weight: 600; color: var(--ink); }
.hero__proof-text span { color: var(--charcoal); opacity: .7; font-size: .8rem; }

.stars {
  display: inline-flex;
  gap: 2px;
  color: #F59E0B;
  font-size: .9rem;
}

/* ---------- Phone Mockup ---------- */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  z-index: 2;
}

.phone-shell {
  background: var(--ink);
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 32px 80px rgba(26,25,23,.35), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
}
.phone-shell::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
}

.phone-screen {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  padding: 36px 18px 24px;
}

.phone-screen__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.phone-screen__header span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: .6;
}

.scan-circle {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-circle__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--brown) 0% 85%, var(--stone) 85% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scan-circle__inner {
  width: 96px; height: 96px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.scan-circle__score {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.scan-circle__label {
  font-size: .55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brown);
  margin-top: 2px;
}

.scan-face-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.metric-bars { display: flex; flex-direction: column; gap: 8px; }

.metric-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.metric-bar__label {
  font-size: .65rem;
  font-weight: 500;
  color: var(--charcoal);
  width: 80px;
  flex-shrink: 0;
}
.metric-bar__track {
  flex: 1;
  height: 5px;
  background: var(--stone);
  border-radius: 10px;
  overflow: hidden;
}
.metric-bar__fill {
  height: 100%;
  background: var(--brown);
  border-radius: 10px;
  transition: width 1.2s ease;
}
.metric-bar__score {
  font-size: .65rem;
  font-weight: 700;
  color: var(--brown);
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.float-card__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-card__icon--face { background: #F0EBE3; }
.float-card__icon--body { background: #E8F0E8; }
.float-card__label { font-size: .7rem; font-weight: 500; color: var(--charcoal); opacity: .7; }
.float-card__score { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); line-height: 1.1; }

.float-card--face { left: -60px; top: 60px; }
.float-card--body { right: -55px; bottom: 100px; }

/* Background deco */
.hero__deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero__deco--1 {
  width: 400px; height: 400px;
  background: rgba(124,107,82,.08);
  top: -80px; right: -80px;
}
.hero__deco--2 {
  width: 250px; height: 250px;
  background: rgba(232,228,219,.6);
  bottom: -40px; left: 0;
}

/* ---------- Section Shared ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--white); }
.section--stone { background: var(--stone); }
.section--dark {
  background: var(--dark-bg);
  color: var(--cream);
}
.section--dark h2, .section--dark h3 { color: var(--white); }

.section__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: .75;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section__header { text-align: center; margin-bottom: 60px; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-card__stars { margin-bottom: 16px; }
.testimonial-card__quote {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.ta-1 { background: var(--brown-lt); }
.ta-2 { background: #8D9B6A; }
.ta-3 { background: #8B7EB8; }

.testimonial-card__name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.testimonial-card__role { font-size: .8rem; color: var(--brown); font-weight: 500; }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.features-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card__desc {
  font-size: .9rem;
  color: var(--charcoal);
  opacity: .75;
  line-height: 1.65;
}

/* ---------- Scan Types ---------- */
.scan-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.scan-card {
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.scan-card--light {
  background: var(--white);
  border: 1px solid var(--stone);
}
.scan-card--dark {
  background: var(--ink);
  color: var(--cream);
}
.scan-card--dark h3, .scan-card--dark .scan-card__sub { color: var(--cream); }

.scan-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.scan-card--light .scan-card__badge { background: var(--stone); color: var(--brown); }
.scan-card--dark .scan-card__badge { background: rgba(255,255,255,.12); color: var(--cream); }

.scan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.scan-card__sub {
  font-size: .9rem;
  opacity: .7;
  margin-bottom: 32px;
  line-height: 1.6;
}

.scan-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scan-metric {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scan-metric__name {
  font-size: .85rem;
  font-weight: 500;
  width: 120px;
  flex-shrink: 0;
}
.scan-card--dark .scan-metric__name { color: rgba(250,248,243,.8); }

.scan-metric__bar {
  flex: 1;
  height: 6px;
  background: var(--stone);
  border-radius: 10px;
  overflow: hidden;
}
.scan-card--dark .scan-metric__bar { background: rgba(255,255,255,.12); }

.scan-metric__fill {
  height: 100%;
  border-radius: 10px;
}
.scan-card--light .scan-metric__fill { background: var(--brown); }
.scan-card--dark .scan-metric__fill { background: var(--brown-lt); }

.scan-metric__val {
  font-size: .8rem;
  font-weight: 700;
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}
.scan-card--light .scan-metric__val { color: var(--brown); }
.scan-card--dark .scan-metric__val { color: var(--brown-lt); }

.scan-card__deco {
  position: absolute;
  right: -20px; bottom: -20px;
  font-size: 8rem;
  opacity: .05;
  pointer-events: none;
  line-height: 1;
}

/* ---------- GLP-1 Section ---------- */
.glp1-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.glp1-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.glp1-card:hover { transform: translateY(-3px); border-color: rgba(124,107,82,.4); }

.glp1-card__icon { font-size: 1.8rem; margin-bottom: 16px; }

.glp1-card__score {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.glp1-card__label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(250,248,243,.6);
}

.glp1-card__bar {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.glp1-card__fill {
  height: 100%;
  background: var(--brown-lt);
  border-radius: 10px;
}

.glp1-header { text-align: center; }
.glp1-header .section__sub { color: rgba(250,248,243,.6); }
.glp1-header .section__eyebrow { color: var(--brown-lt); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--stone);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.ra-1 { background: #C4956A; }
.ra-2 { background: #7A9E7E; }
.ra-3 { background: #9B8EA8; }

.review-card__name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.review-card__date { font-size: .75rem; color: var(--charcoal); opacity: .5; }
.review-card__store { font-size: .75rem; color: var(--brown); font-weight: 500; margin-top: 4px; }

.review-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.review-card__body {
  font-size: .875rem;
  color: var(--charcoal);
  opacity: .75;
  line-height: 1.65;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card__image {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-card__image-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.blog-img-1 { background: linear-gradient(135deg, #F0EBE3 0%, #E8D9C6 100%); }
.blog-img-2 { background: linear-gradient(135deg, #E8EDE8 0%, #D4E0D4 100%); }
.blog-img-3 { background: linear-gradient(135deg, #E8E4DB 0%, #D8D0C0 100%); }

.blog-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--brown);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.blog-card__body { padding: 24px; }
.blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: .78rem;
  color: var(--charcoal);
  opacity: .55;
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card__excerpt {
  font-size: .875rem;
  color: var(--charcoal);
  opacity: .7;
  line-height: 1.65;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown);
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__link { gap: 10px; }

/* ---------- Download CTA ---------- */
.download-section {
  padding: 100px 0;
  text-align: center;
  background: var(--stone);
}
.download-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.download-section p { font-size: 1.05rem; opacity: .7; max-width: 500px; margin: 0 auto 48px; }

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 180px;
  text-decoration: none;
}
.store-btn:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,25,23,.25); }
.store-btn--disabled { opacity: .5; cursor: not-allowed; }
.store-btn--disabled:hover { transform: none; box-shadow: none; }

.store-btn__icon { font-size: 1.8rem; flex-shrink: 0; }
.store-btn__text { text-align: left; }
.store-btn__sub { font-size: .7rem; opacity: .7; display: block; line-height: 1; margin-bottom: 2px; }
.store-btn__name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; line-height: 1; display: block; }

.soon-badge {
  background: var(--brown);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(250,248,243,.75);
  padding: 64px 0 32px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer__main--slim {
  grid-template-columns: 1.6fr 1fr 1fr;
}

.footer__logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.footer__logo-o {
  color: #7C6B52;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer__brand-name span { color: #7C6B52; }
.footer__brand-desc {
  font-size: .875rem;
  line-height: 1.7;
  opacity: .65;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__social--icons {
  flex-direction: row;
  gap: 16px;
}
.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity var(--transition);
}
.footer__social-icon:hover { opacity: .7; }
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(250,248,243,.65);
  transition: color var(--transition);
}
.footer__social-link:hover { color: var(--brown-lt); }
.footer__social-link .social-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.footer__social-link:hover .social-icon { background: rgba(124,107,82,.3); }

.footer__col-title {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: .875rem;
  color: rgba(250,248,243,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--brown-lt); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: .8rem; opacity: .5; }
.footer__legal-links {
  display: flex;
  gap: 20px;
}
.footer__legal-links a {
  font-size: .8rem;
  opacity: .5;
  transition: opacity var(--transition);
}
.footer__legal-links a:hover { opacity: .9; }

/* ---------- Legal Pages ---------- */
.legal-page { padding: 140px 0 80px; }
.legal-page .container { max-width: 780px; }

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.legal-page .lead {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: .75;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--stone);
}
.legal-page h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal-page h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--charcoal);
}
.legal-page p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 14px;
  opacity: .85;
}
.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-page ul li {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: .85;
  margin-bottom: 6px;
}
.legal-page a { color: var(--brown); text-decoration: underline; }

.legal-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--stone);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
  font-size: .875rem;
  flex-wrap: wrap;
}
.legal-nav a { color: var(--brown); font-weight: 500; }
.legal-nav span { opacity: .4; }

.highlight-box {
  background: var(--stone);
  border-left: 3px solid var(--brown);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; }

/* ---------- Hero screenshot placeholder ---------- */
.hero__screenshot-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.screenshot-slot {
  width: 100%;
  aspect-ratio: 9 / 19;
  background: var(--stone);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px dashed rgba(124,107,82,.25);
}
.screenshot-slot__label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--brown);
  opacity: .6;
}

/* ---------- App preview ---------- */
.app-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.app-preview-card {
  text-align: center;
}
.app-preview-card__screenshot {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--stone);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  border: 2px dashed rgba(124,107,82,.2);
}
.app-preview-card__screenshot span {
  font-size: .8rem;
  color: var(--brown);
  opacity: .5;
  font-weight: 500;
}
.app-preview-card__label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.app-preview-card__desc {
  font-size: .875rem;
  color: var(--charcoal);
  opacity: .7;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Scroll animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__content { text-align: center; }
  .hero__sub { margin: 0 auto 40px; }
  .hero__ctas { justify-content: center; }
  .hero__social-proof { justify-content: center; }
  .hero__visual { order: -1; }
  .float-card--face { left: 10px; }
  .float-card--body { right: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .glp1-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__main--slim { grid-template-columns: 1.6fr 1fr 1fr; }
  .app-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__cta, .nav__store-badges { display: none; }
  .nav__hamburger { display: flex; }
  .features-grid--3 { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 72px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .scan-types-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .glp1-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .footer__main--slim { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .scan-card { padding: 32px 24px; }
  .app-preview-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero__screenshot-placeholder { max-width: 220px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.4rem; }
  .glp1-grid { grid-template-columns: 1fr 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
}
