/* ============================================
   wellB — Landing Page Styles
   ============================================ */

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

:root {
  --green-dark:   #0d3320;
  --green-mid:    #1a5c3a;
  --green-accent: #25a65a;
  --green-light:  #4ade80;
  --green-pale:   #f0fdf4;
  --white:        #ffffff;
  --off-white:    #fafcfb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-800:     #1f2937;
  --text:         #0f1f12;
  --radius:       1rem;
  --radius-lg:    1.5rem;
  --radius-xl:    2rem;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.12);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(37, 166, 90, .1);
  border-radius: 999px;
  padding: .3rem .9rem;
  margin-bottom: 1rem;
}

.section-label.light {
  color: #a7f3d0;
  background: rgba(255,255,255,.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title.left { text-align: left; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.section-subtitle.left { margin: 0 0 2rem; }

.highlight {
  color: var(--green-accent);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--green-light));
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-nav {
  font-size: .875rem;
  padding: .5rem 1.25rem;
  background: var(--green-accent);
  color: var(--white);
}

.btn-nav:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ---- Store Buttons ---- */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  font-family: inherit;
}

.store-btn.apple {
  background: #000;
  color: #fff;
}

.store-btn.google {
  background: #fff;
  color: #000;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

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

.store-text {
  display: flex;
  flex-direction: column;
}

.store-sub {
  font-size: .65rem;
  opacity: .75;
  line-height: 1;
}

.store-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.store-btn.large {
  padding: 1rem 2rem;
}

.store-btn.large svg {
  width: 32px;
  height: 32px;
}

.store-btn.large .store-name {
  font-size: 1.1rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 252, 251, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.02em;
}

.logo-b {
  color: var(--green-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:not(.btn-nav):hover {
  color: var(--green-accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--green-accent); }

.mobile-link.cta {
  margin-top: .75rem;
  text-align: center;
  background: var(--green-accent);
  color: var(--white);
  border-radius: 999px;
  padding: .85rem;
  border: none;
  font-weight: 700;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #bbf7d0, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float1 12s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #86efac, transparent 70%);
  bottom: 0;
  left: -100px;
  animation: float2 15s ease-in-out infinite;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #d9f99d, transparent 70%);
  top: 40%;
  left: 40%;
  animation: float1 18s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.08); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-mid);
  background: rgba(37, 166, 90, .12);
  border: 1px solid rgba(37, 166, 90, .2);
  border-radius: 999px;
  padding: .4rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--green-accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: .2rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* ---- Phone Mockup ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  background: #0d1f14;
  border-radius: 2.5rem;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}

.phone-screen {
  background: #f8fdf9;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 520px;
}

.app-ui {
  padding: 1rem;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.app-greeting {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
}

.app-score-chip {
  font-size: .7rem;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 999px;
  padding: .2rem .6rem;
  font-weight: 600;
}

.app-hero-card {
  background: linear-gradient(135deg, #1a5c3a, #25a65a);
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: white;
  position: relative;
  margin-bottom: .75rem;
  min-height: 110px;
}

.app-card-tag {
  font-size: .65rem;
  font-weight: 600;
  opacity: .8;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.app-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .3rem;
}

.app-card-duration {
  font-size: .7rem;
  opacity: .75;
}

.app-play-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-categories-row {
  display: flex;
  gap: .4rem;
  margin-bottom: .75rem;
  overflow-x: auto;
}

.app-cat-chip {
  font-size: .65rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-600);
  white-space: nowrap;
  cursor: pointer;
}

.app-cat-chip.active {
  background: var(--green-accent);
  color: white;
}

.app-content-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.app-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem;
  border-radius: .75rem;
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.app-item-icon {
  width: 36px;
  height: 36px;
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.app-item-title {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.app-item-sub {
  font-size: .6rem;
  color: var(--gray-400);
  margin-top: .1rem;
}

.app-item-play {
  margin-left: auto;
  font-size: .65rem;
  color: var(--green-accent);
  opacity: .8;
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(37,166,90,.4), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

/* Real screenshot inside phone frame */
.phone-screen--img {
  padding: 0;
  border-radius: 2rem;
  overflow: hidden;
  min-height: unset;
  aspect-ratio: 9 / 19.5;
}

.phone-screen--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 166, 90, .2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================
   WELLB SCORE
   ============================================ */
.wellb-score {
  padding: 100px 0;
  background: linear-gradient(160deg, #0d3320 0%, #1a5c3a 60%, #25a65a 100%);
  position: relative;
  overflow: hidden;
}

.score-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.score-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.score-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Score Card */
.score-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: white;
}

.score-card-header {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1.5rem;
}

.score-circle {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
}

.score-ring {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}

.score-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,.15);
  stroke-width: 8;
}

.score-ring-fill {
  fill: none;
  stroke: #4ade80;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 44.1; /* ~87% filled */
  filter: drop-shadow(0 0 8px rgba(74,222,128,.6));
  transition: stroke-dashoffset 1.5s ease;
}

.score-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}

.score-dimensions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.score-dim {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.dim-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.dim-bar-wrap {
  flex: 1;
}

.dim-label {
  font-size: .7rem;
  opacity: .7;
  margin-bottom: .25rem;
  font-weight: 500;
}

.dim-bar {
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  overflow: hidden;
}

.dim-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1.5s ease;
}

.dim-val {
  font-size: .8rem;
  font-weight: 700;
  opacity: .9;
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

/* Score Content */
.score-content .section-label {
  color: #86efac;
  background: rgba(134, 239, 172, .15);
}

.score-content .section-title {
  color: white;
}

.score-content .section-subtitle {
  color: rgba(255,255,255,.7);
}

.score-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.score-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.score-list-icon {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-list li strong {
  display: block;
  font-size: .95rem;
  color: white;
  margin-bottom: .1rem;
}

.score-list li p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  padding: 100px 0;
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem .75rem;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cat-card:hover {
  border-color: var(--cat-color);
  background: color-mix(in srgb, var(--cat-color) 8%, white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.cat-icon {
  /* sizing handled in SVG ICONS section */
}

.cat-name {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.3;
}

.more-card {
  background: linear-gradient(135deg, #f8fdf9, #e8f5e9);
  border-style: dashed;
}

.more-card .cat-emoji {
  font-size: 2rem;
  color: var(--green-accent);
  font-weight: 800;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #0d3320, #1a5c3a);
  color: white;
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(13, 51, 32, .25);
  transform: translateY(-8px);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured:hover {
  transform: translateY(-12px);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}

.testimonial-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card.featured p {
  color: rgba(255,255,255,.8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
}

.testimonial-card.featured .testimonial-author strong {
  color: white;
}

.testimonial-author span {
  font-size: .75rem;
  color: var(--gray-400);
}

.testimonial-card.featured .testimonial-author span {
  color: rgba(255,255,255,.5);
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download {
  padding: 120px 0;
  background: linear-gradient(160deg, #0a1f12 0%, #0d3320 40%, #1a5c3a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .3;
}

.dl-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4ade80, transparent 70%);
  top: -100px;
  left: -100px;
}

.dl-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #86efac, transparent 70%);
  bottom: -50px;
  right: -80px;
}

.download-inner {
  position: relative;
  z-index: 1;
}

.download-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.download-title em {
  font-style: italic;
  color: #86efac;
}

.download-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.download-btns {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.download-btns .store-btn.apple {
  background: white;
  color: black;
}

.download-btns .store-btn.apple:hover {
  background: #f3f4f6;
}

.download-btns .store-btn.google {
  background: rgba(255,255,255,.08);
  color: white;
  border-color: rgba(255,255,255,.2);
}

.download-btns .store-btn.google:hover {
  background: rgba(255,255,255,.15);
}

.download-note {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.download-note svg {
  color: #4ade80;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050e08;
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding: 60px 0 40px;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.6;
  margin-top: .5rem;
  margin-bottom: 1.25rem;
  max-width: 240px;
}

.footer-logo {
  color: white;
}

.footer-logo .logo-b {
  color: #4ade80;
}

.social-links {
  display: flex;
  gap: .75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(74, 222, 128, .2);
  color: #4ade80;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: .25rem;
}

.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #4ade80;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, #edf7f1 100%);
}

.screenshots-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.screenshot-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.screenshot-phone--center .screenshot-frame {
  width: 240px;
}

.screenshot-phone--side .screenshot-frame {
  width: 200px;
  opacity: 0.88;
  transition: opacity var(--transition), transform var(--transition);
}

.screenshot-phone--side:hover .screenshot-frame {
  opacity: 1;
  transform: scale(1.02);
}

.screenshot-phone--side:first-child .screenshot-frame {
  transform: rotate(-4deg);
}
.screenshot-phone--side:first-child:hover .screenshot-frame {
  transform: rotate(-2deg) scale(1.02);
}
.screenshot-phone--side:last-child .screenshot-frame {
  transform: rotate(4deg);
}
.screenshot-phone--side:last-child:hover .screenshot-frame {
  transform: rotate(2deg) scale(1.02);
}

.screenshot-frame {
  background: #0d1f14;
  border-radius: 2.5rem;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

.screenshot-frame img {
  width: 100%;
  border-radius: 2rem;
  display: block;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.screenshot-caption {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .02em;
}

/* ============================================
   SVG ICONS
   ============================================ */

/* Base icon — inherits size from font-size context */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  flex-shrink: 0;
  /* stroke/fill are already set on each <symbol> */
}

/* Badge icon */
.badge .icon {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-right: 3px;
  color: var(--green-mid);
}

/* Feature card icon box */
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  /* color is set inline to match the gradient */
}

.feature-icon .icon {
  width: 26px;
  height: 26px;
}

/* Score dimension icon */
.dim-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dim-icon .icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.75);
}

/* Score list icon box */
.score-list-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-list-icon .icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.85);
}

/* Category cards — icon replaces .cat-emoji */
.cat-icon {
  width: 32px;
  height: 32px;
  color: var(--cat-color, var(--green-accent));
  transition: transform var(--transition);
}

.cat-card:hover .cat-icon {
  transform: scale(1.15);
}

/* App UI — card tag icon */
.app-card-tag .icon {
  width: 9px;
  height: 9px;
  vertical-align: -1px;
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.8);
}

/* App UI — content item icon */
.app-item-icon {
  width: 36px;
  height: 36px;
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-item-icon .icon {
  width: 16px;
  height: 16px;
}

/* Testimonial avatar icon */
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar .icon {
  width: 20px;
  height: 20px;
}

/* Footer heart */
.icon-heart-footer {
  width: 14px;
  height: 14px;
  vertical-align: -1px;
  color: #4ade80;
  margin: 0 1px;
}

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos="fade-left"] {
  transform: translateX(24px);
}

[data-aos="fade-right"] {
  transform: translateX(-24px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .score-visual {
    order: 2;
  }

  .score-content {
    order: 1;
    text-align: center;
  }

  .score-content .section-title {
    text-align: center;
  }

  .score-list {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-card.featured {
    transform: translateY(0);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .screenshot-phone--side {
    display: none;
  }

  .screenshot-phone--center .screenshot-frame {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .score-card {
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-num {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}
