/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Brand */
  --blue:            #2563EB;
  --blue-hover:      #1D4ED8;
  --green:           #10B981;
  --green-hover:     #059669;

  /* Dark palette (nav, footer, dark sections) */
  --dark:            #020617;
  --dark-card:       #0F172A;
  --dark-end:        #0B1120;
  --dark-border:     #1E293B;

  /* Light palette (main content) */
  --light:           #F8FAFC;
  --white:           #FFFFFF;
  --secondary-bg:    #F1F5F9;

  /* Text */
  --text-primary:    #0F172A;
  --text-secondary:  #475569;
  --text-muted:      #64748B;
  --text-light:      #CBD5E1;

  /* Borders */
  --border:          #E2E8F0;
  --border-mid:      #CBD5E1;

  /* Shadows */
  --shadow-card:     0px 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-device:   0px 20px 60px rgba(15, 23, 42, 0.18);
  --shadow-btn:      0px 8px 20px rgba(37, 99, 235, 0.15);

  /* Radius */
  --radius-btn:      14px;
  --radius-card:     20px;
  --radius-img:      24px;
  --radius-device:   28px;
  --radius-sm:       8px;

  /* Layout */
  --nav-height:      80px;
  --container-max:   1200px;
  --transition:      0.22s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

/* Home page: centered nav, no right actions */
.nav-container--home {
  justify-content: flex-start;
}

.nav-container--home .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex: none;
  justify-content: center;
}

.nav-logo {
  flex-shrink: 0;
  margin-right: 48px;
}

/* Nav bar logo */
.nav-logo-img {
  display: block;
  height: 104px;
  width: auto;
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
  color: var(--green);
  background-color: rgba(16, 185, 129, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--dark-border);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  cursor: not-allowed;
  opacity: 0.5;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-top--four {
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
}

.footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 14px;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer-links-list a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  font-size: 14px;
  color: var(--text-light);
  transition: color var(--transition);
}

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

.footer-logo-img {
  height: 110px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin: 10px 0 16px;
  font-style: italic;
}

.footer-store-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.social-link--row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.social-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.social-link--row:hover .social-icon-wrap {
  background-color: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--blue);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background-color: var(--blue-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

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

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.section-header {
  margin-bottom: 36px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
  background-color: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  margin-bottom: 10px;
}

.section-tag-green {
  color: var(--green);
  background-color: rgba(16, 185, 129, 0.07);
  border-color: rgba(16, 185, 129, 0.2);
}

/* Section tags used inside dark sections */
.on-dark .section-tag {
  color: #60A5FA;
  background-color: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.2);
}

.on-dark .section-tag-green {
  color: var(--green);
  background-color: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.section-title--lg {
  font-size: 36px;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 540px;
}

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

.text-center .section-tag,
.text-center .section-subtitle {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hide-mobile {
  display: inline;
}

/* ============================================
   FEATURES PAGE — SECTION 1: PRODUCT OVERVIEW
   ============================================ */
.feat-overview-section {
  padding: 80px 0 72px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.feat-overview-text {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

.feat-overview-text .section-tag {
  margin-bottom: 16px;
}

.feat-overview-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 20px;
}

.feat-overview-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.feat-overview-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.feat-icon-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
}

.feat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.feat-icon-row--compact {
  justify-content: center;
  gap: 0;
}

.feat-icon-row--compact .feat-pill {
  flex: 0 0 auto;
  padding: 18px 28px;
}

.feat-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(37, 99, 235, 0.07);
  border-radius: 10px;
  color: var(--blue);
  flex-shrink: 0;
}

.feat-pill-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .feat-overview-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .feat-overview-section {
    padding: 56px 0 52px;
  }

  .feat-overview-heading {
    font-size: 26px;
  }

  .feat-overview-text {
    margin-bottom: 40px;
  }

  .feat-pill-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 400px) {
}

/* ============================================
   FEATURES PAGE — SECTION 2: DAILY LOGS
   ============================================ */
.feat-daily-section {
  padding: 88px 0 120px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.feat-daily-header {
  margin-bottom: 64px;
}

.feat-daily-header .section-tag {
  margin-bottom: 20px;
}

.feat-daily-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.feat-daily-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.feat-daily-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: min(2400px, 90vw);
  margin: 0 auto;
  padding: 0 48px;
}

.feat-daily-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.feat-daily-col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.feat-daily-screenshot {
  width: 100%;
  margin-bottom: 24px;
}

.feat-daily-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

.feat-daily-col-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1100px) {
  .feat-daily-heading {
    font-size: 32px;
  }

  .feat-daily-cols {
    max-width: 95vw;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .feat-daily-section {
    padding: 64px 0 72px;
  }

  .feat-daily-heading {
    font-size: 28px;
  }

  .feat-daily-cols {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 56px;
  }
}

/* ============================================
   FEATURES PAGE — SECTION 3: TARGETS & GOALS
   ============================================ */
.feat-targets-section {
  padding: 104px 0 112px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.feat-targets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1040px;
  margin: 0 auto;
}

.feat-targets-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feat-targets-heading {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 20px;
}

.feat-targets-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 460px;
}

.feat-targets-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feat-targets-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.feat-targets-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green);
}

.feat-targets-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-targets-screenshot-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 32px;
  display: block;
}

@media (max-width: 900px) {
  .feat-targets-heading {
    font-size: 30px;
  }

  .feat-targets-grid {
    gap: 56px;
  }
}

@media (max-width: 700px) {
  .feat-targets-section {
    padding: 72px 0 80px;
  }

  .feat-targets-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feat-targets-heading {
    font-size: 26px;
  }

  .feat-targets-subtitle {
    max-width: none;
  }

  .feat-targets-visual {
    order: -1;
  }

  .feat-targets-screenshot-img {
    max-width: 220px;
  }
}

/* ============================================
   PRIVACY PAGE — SECTION 2: PRIVACY COMMITMENTS
   ============================================ */
.priv-commits-section {
  padding: 88px 0 80px;
  background-color: var(--white);
}

.priv-commits-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.priv-commits-accent {
  color: var(--green);
}

.priv-commits-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.priv-commit {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.priv-commit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.priv-commit-icon--green { background-color: rgba(16, 185, 129, 0.10); color: #10B981; }
.priv-commit-icon--blue  { background-color: rgba(37,  99, 235, 0.10); color: #2563EB; }

.priv-commit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.priv-commit-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1100px) {
  .priv-commits-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
  }
}

@media (max-width: 680px) {
  .priv-commits-section {
    padding: 64px 0 56px;
  }

  .priv-commits-heading {
    font-size: 24px;
    margin-bottom: 48px;
  }

  .priv-commits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 420px) {
  .priv-commits-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRIVACY PAGE — SECTION 3: MANIFESTO
   ============================================ */
.priv-manifesto-section {
  background-color: var(--dark);
  padding: 120px 24px;
}

.priv-manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.priv-manifesto-title {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 32px;
}

.priv-manifesto-subtitle {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0 0 56px;
}

.priv-manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.priv-manifesto-body p {
  font-size: 17px;
  color: #CBD5E1;
  line-height: 1.7;
  margin: 0;
}

.priv-manifesto-quote {
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0 0 64px;
  padding: 0;
  border: none;
  font-style: normal;
}

.priv-manifesto-qmark {
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
  line-height: 0;
  vertical-align: -4px;
}

.priv-manifesto-closer {
  font-size: 15px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.priv-manifesto-accent {
  color: var(--green);
}

@media (max-width: 700px) {
  .priv-manifesto-section {
    padding: 80px 24px;
  }

  .priv-manifesto-title {
    font-size: 34px;
  }

  .priv-manifesto-subtitle {
    font-size: 16px;
  }

  .priv-manifesto-quote {
    font-size: 18px;
  }
}

/* ============================================
   FEATURES PAGE — SECTION 6: BACKUP & RESTORE
   ============================================ */
.feat-backup-section {
  padding: 120px 0 140px;
  background-color: var(--dark);
}

.feat-backup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1040px;
  margin: 0 auto;
}

.feat-backup-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feat-backup-heading {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 20px;
}

.feat-backup-accent {
  color: var(--green);
}

.feat-backup-subtitle {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0 0 40px;
}

.feat-backup-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feat-backup-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-backup-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-backup-icon--green  { background-color: rgba(16, 185, 129, 0.15); color: #10B981; }
.feat-backup-icon--blue   { background-color: rgba(37, 99, 235,  0.18); color: #60A5FA; }
.feat-backup-icon--amber  { background-color: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.feat-backup-icon--teal   { background-color: rgba(20, 184, 166, 0.15); color: #2DD4BF; }

.feat-backup-item-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 3px;
}

.feat-backup-item-desc {
  display: block;
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

.feat-backup-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.feat-backup-shot {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: 0px 24px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .feat-backup-heading {
    font-size: 30px;
  }

  .feat-backup-grid {
    gap: 56px;
  }
}

@media (max-width: 700px) {
  .feat-backup-section {
    padding: 80px 0 100px;
  }

  .feat-backup-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feat-backup-heading {
    font-size: 26px;
  }

  .feat-backup-visual {
    gap: 14px;
  }
}

/* ============================================
   FEATURES PAGE — SECTION 5: PDF REPORTS
   ============================================ */
.feat-reports-section {
  padding: 104px 0 112px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.feat-reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1040px;
  margin: 0 auto;
}

.feat-reports-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-reports-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-card);
}

.feat-reports-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feat-reports-heading {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 20px;
}

.feat-reports-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 14px;
}

.feat-reports-supporting {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 36px;
}

.feat-reports-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feat-reports-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-reports-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-reports-icon--green  { background-color: rgba(16, 185, 129, 0.10); color: #10B981; }
.feat-reports-icon--blue   { background-color: rgba(37, 99, 235,  0.10); color: #2563EB; }
.feat-reports-icon--amber  { background-color: rgba(245, 158, 11, 0.10); color: #D97706; }
.feat-reports-icon--teal   { background-color: rgba(20, 184, 166, 0.10); color: #0D9488; }

.feat-reports-item-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.feat-reports-item-desc {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .feat-reports-heading {
    font-size: 30px;
  }

  .feat-reports-grid {
    gap: 56px;
  }
}

@media (max-width: 700px) {
  .feat-reports-section {
    padding: 72px 0 80px;
  }

  .feat-reports-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feat-reports-heading {
    font-size: 26px;
  }
}

/* ============================================
   FEATURES PAGE — SECTION 4: CAREER INSIGHTS
   ============================================ */
.feat-insights-section {
  padding: 112px 0 100px;
  background-color: var(--dark);
}

.feat-insights-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.feat-insights-heading {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 20px;
}

.feat-insights-accent {
  color: var(--green);
}

.feat-insights-subtitle {
  font-size: 17px;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0;
}

.feat-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  margin-bottom: 80px;
}

.feat-insights-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-insights-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
}

.feat-insights-icon--green  { background-color: rgba(16, 185, 129, 0.15); color: #10B981; }
.feat-insights-icon--blue   { background-color: rgba(37, 99, 235,  0.18); color: #60A5FA; }
.feat-insights-icon--amber  { background-color: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.feat-insights-icon--teal   { background-color: rgba(20, 184, 166, 0.15); color: #2DD4BF; }
.feat-insights-icon--purple { background-color: rgba(99, 102, 241, 0.15); color: #A5B4FC; }

.feat-insights-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #F1F5F9;
  line-height: 1.3;
  margin: 0;
}

.feat-insights-item-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

.feat-insights-screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}

.feat-insights-shot {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
}

@media (max-width: 960px) {
  .feat-insights-heading {
    font-size: 32px;
  }

  .feat-insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 36px;
  }

  .feat-insights-screenshots {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .feat-insights-section {
    padding: 72px 0 64px;
  }

  .feat-insights-heading {
    font-size: 26px;
  }

  .feat-insights-subtitle {
    font-size: 15px;
  }

  .feat-insights-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feat-insights-screenshots {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ============================================
   PAGE HERO (inner pages — on white bg)
   ============================================ */
.page-hero {
  padding: 72px 0 64px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

/* ============================================
   PRIVACY PAGE — HERO
   ============================================ */
.privacy-hero {
  padding: 112px 0 104px;
  background-color: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}

.privacy-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  max-width: 1040px;
  margin: 0 auto;
}

.privacy-hero-text {
  display: flex;
  flex-direction: column;
}

.privacy-hero-heading {
  font-size: 56px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.privacy-hero-accent {
  color: var(--green);
}

.privacy-hero-subtitle {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 480px;
}

.privacy-hero-note {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
}

.privacy-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .privacy-hero-heading {
    font-size: 42px;
  }

  .privacy-hero-grid {
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .privacy-hero {
    padding: 72px 0 64px;
  }

  .privacy-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .privacy-hero-heading {
    font-size: 34px;
  }

  .privacy-hero-subtitle {
    font-size: 16px;
    max-width: none;
  }
}

.page-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  padding: 4px 10px;
  border-radius: 100px;
  background-color: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 14px;
}

.page-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
}

/* ============================================
   PLACEHOLDER SYSTEM
   ============================================ */
@keyframes placeholder-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Light context (default — used on white/light sections) */
.placeholder-box {
  background-color: var(--light);
  border: 1.5px dashed var(--border-mid);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  animation: placeholder-pulse 2.8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.placeholder-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--border-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.6;
}

.placeholder-hero     { min-height: 480px; }
.placeholder-large    { min-height: 300px; }
.placeholder-medium   { min-height: 220px; }
.placeholder-small    { min-height: 160px; }
.placeholder-card     { min-height: 200px; }
.placeholder-form     { min-height: 380px; }
.placeholder-timeline { min-height: 260px; }
.placeholder-text     { min-height: 110px; }

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================
   404 PAGE
   ============================================ */
.body-404 {
  display: flex;
  flex-direction: column;
  background-color: var(--dark);
  min-height: 100vh;
}

.page-404 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.card-404 {
  text-align: center;
  padding: 64px 48px;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-card);
  max-width: 420px;
  width: 100%;
}

.error-code {
  font-size: 96px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.error-message {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.error-description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 36px;
}

/* ============================================
   STORE BADGES
   ============================================ */
.store-badge {
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}

.store-badge--lg {
  width: 160px;
  height: auto;
}

.store-badge--google.store-badge--lg {
  width: 205px;
}

.store-badge--sm {
  width: 110px;
  height: auto;
}

.store-badge--google.store-badge--sm {
  width: 132px;
  margin-left: -8px;
}

/* ============================================
   BADGE PLACEHOLDERS
   ============================================ */
.badge-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  background-color: var(--light);
  border: 1.5px dashed var(--border-mid);
  border-radius: var(--radius-btn);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: placeholder-pulse 2.8s ease-in-out infinite;
}

.badge-placeholder--lg {
  height: 58px;
  padding: 0 28px;
  font-size: 11px;
}

.badge-placeholder--sm {
  height: 38px;
  padding: 0 14px;
  font-size: 10px;
}

/* Badge on dark backgrounds */
.badge-placeholder--dark {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

/* ============================================
   HOME: NAV CENTERED VARIANT
   (already defined above in nav-container--home)
   ============================================ */

/* ============================================
   HOME: SECTION 1 — HERO (light: #F8FAFC)
   ============================================ */
.hero-section {
  display: block;
  line-height: 0;
}

.hero-full-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   HOME: SECTION 2 — FEATURES (white: #FFFFFF)
   ============================================ */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
}

/* Single unified card */
.features-card {
  overflow: hidden;
}

.features-card-header {
  text-align: center;
  padding: 40px 40px 36px;
}

.features-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.features-title-bar {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #60A5FA;
  border-radius: 2px;
  margin: 0 auto;
}

/* Horizontal strip of 6 features */
.features-strip {
  display: flex;
}

.feature-item {
  flex: 1;
  padding: 36px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item-icon {
  color: #60A5FA;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-item-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 130px;
}

/* ============================================
   HOME: SECTION 3 — PRIVACY (dark: #020617)
   ============================================ */
.privacy-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--dark);
  overflow: hidden;
}

.privacy-map-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(16, 185, 129, 0.07) 1.5px, transparent 1.5px),
    radial-gradient(rgba(37, 99, 235, 0.04) 1.5px, transparent 1.5px);
  background-size: 36px 36px, 18px 18px;
  background-position: 0 0, 9px 9px;
  pointer-events: none;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.privacy-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

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

.privacy-headline {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 14px 0 28px;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.privacy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.privacy-check {
  width: 24px;
  height: 24px;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.privacy-statement {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  border-left: 2px solid rgba(16, 185, 129, 0.4);
  padding-left: 16px;
}

.privacy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-shield-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.shield-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.14);
  animation: pulse-ring 3s ease-in-out infinite;
  pointer-events: none;
}

.shield-glow-ring--outer {
  width: 450px;
  height: 450px;
  border-color: rgba(37, 99, 235, 0.1);
  animation-delay: 1s;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}

.shield-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
}

.shield-lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
}

.privacy-badges-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.privacy-illustration-label {
  color: var(--dark-border);
  position: relative;
  z-index: 1;
}

/* ============================================
   HOME: SECTION 4 — GLOBAL WORK
   ============================================ */
.world-section {
  display: block;
  line-height: 0;
}

.world-full-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   HOME: SECTION 5 — AUDIENCE (dark: #020617)
   ============================================ */
.audience-section {
  padding: 140px 0;
  background-color: #020617;
  text-align: center;
}

.audience-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* Tag */
.audience-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #10B981;
}

.audience-tag-rule {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background-color: #10B981;
  margin: 12px auto 0;
}

.audience-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Headline */
.audience-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

/* Secondary */
.audience-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #CBD5E1;
  margin: 0;
}

/* Description */
.audience-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  max-width: 800px;
  line-height: 1.7;
  margin: 0 auto;
}

/* Scroll strip */
.audience-scroll-wrap {
  width: calc(100% + 80px);
  margin-left: -40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.audience-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.audience-strip {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: flex-start;
  min-width: max-content;
  padding: 8px 40px;
}

/* Images */
.audience-img {
  width: 360px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  flex-shrink: 0;
}

/* Closing sentence */
.audience-closing {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #CBD5E1;
  margin: 0;
}

@media (max-width: 640px) {
  .audience-section {
    padding: 96px 0;
  }

  .audience-inner {
    padding: 0 20px;
    gap: 40px;
  }

  .audience-tag {
    font-size: 24px;
  }

  .audience-scroll-wrap {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .audience-strip {
    justify-content: flex-start;
    padding: 8px 20px;
  }

  .audience-img {
    width: 280px;
    height: 187px;
  }

  .audience-closing {
    font-size: 18px;
  }
}

/* ============================================
   HOME: SECTION 6 — CTA (dark gradient)
   ============================================ */
.cta-section {
  position: relative;
  padding: 140px 0;
  background: #020617;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta-glow--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}

.cta-glow--green {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-headline {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #FFFFFF;
  max-width: 700px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.cta-download-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: -8px;
}

.cta-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Override badge placeholder in dark CTA section */
.cta-section .badge-placeholder {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-light);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top,
  .footer-top--four {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col.footer-brand,
  .footer-col.footer-store {
    grid-column: 1 / -1;
  }

  .nav-link {
    font-size: 13px;
    padding: 8px 10px;
  }

  .btn-store {
    font-size: 11px;
    padding: 8px 12px;
  }

  /* Home: fix centered nav on tablet */
  .nav-container--home .nav-links {
    position: static;
    transform: none;
  }

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

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

  /* Features strip: stays single row on tablet, allow scroll */
  .features-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .feature-item {
    flex: 0 0 calc(100% / 3);
    min-width: 0;
    border-bottom: none;
  }

  .feature-item:nth-child(3) {
    border-right: 1px solid var(--border);
  }

  .feature-item:nth-child(4),
  .feature-item:nth-child(5),
  .feature-item:nth-child(6) {
    border-bottom: none;
  }

  .feature-item:nth-child(6) {
    border-right: none;
  }

  .privacy-grid {
    gap: 48px;
  }

  .privacy-headline {
    font-size: 36px;
  }

  .page-hero-title {
    font-size: 36px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: var(--radius-sm);
  }

  .nav-actions {
    display: none;
  }

  /* Inner page sections */
  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .section-title--lg {
    font-size: 26px;
  }

  .page-hero {
    padding: 48px 0 40px;
  }

  .page-hero-title {
    font-size: 28px;
  }

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-top--four {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col.footer-brand,
  .footer-col.footer-store {
    grid-column: auto;
  }

  .placeholder-hero {
    min-height: 300px;
  }

  .placeholder-large {
    min-height: 220px;
  }

  .card-404 {
    padding: 48px 28px;
  }

  .error-code {
    font-size: 72px;
  }

  /* Home mobile */

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-section {
    padding: 72px 0;
  }

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

  /* Features strip: single row on mobile, horizontally scrollable */
  .features-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .features-strip::-webkit-scrollbar {
    display: none;
  }

  .features-card-header {
    padding: 28px 20px 24px;
  }

  .features-card-title {
    font-size: 20px;
  }

  .feature-item {
    flex: 0 0 160px;
    min-width: 0;
    padding: 28px 12px 32px;
    border-bottom: none;
  }

  .feature-item:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  .feature-item:last-child {
    border-right: none;
  }

  .feature-item:nth-child(5),
  .feature-item:nth-child(6) {
    border-bottom: none;
  }

  .privacy-section {
    padding: 80px 0;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .privacy-headline {
    font-size: 28px;
  }

  .privacy-item {
    font-size: 16px;
  }

  .global-section {
    padding: 72px 0;
  }

  .global-headline {
    font-size: 26px;
  }

  .global-cards-row {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-headline {
    font-size: 28px;
  }

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

  .hide-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }
}

/* ============================================
   PRIVACY PAGE — SECTION 4: POLICY ACCORDION
   ============================================ */
.priv-policy-section {
  padding: 96px 24px 104px;
  background-color: var(--white);
}

.priv-policy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.priv-policy-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin: 0 0 40px;
}

/* Accordion wrapper */
.priv-accordion {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
}

/* Toggle button */
.priv-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background-color 0.18s ease;
}

.priv-accordion-toggle:hover {
  background-color: #F8FAFC;
}

.priv-accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.priv-accordion-toggle:hover .priv-accordion-icon,
.priv-accordion.is-open .priv-accordion-icon {
  border-color: var(--green);
  color: var(--green);
}

/* Show/hide icons */
.priv-icon-minus { display: none; }
.priv-accordion.is-open .priv-icon-plus  { display: none; }
.priv-accordion.is-open .priv-icon-minus { display: block; }

/* Panel */
.priv-accordion-panel {
  border-top: 1px solid #E2E8F0;
}

.priv-policy-body {
  padding: 32px 24px 40px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Placeholder text */
.priv-policy-placeholder {
  color: #94A3B8;
  font-style: italic;
  text-align: center;
  padding: 48px 0;
  margin: 0;
}

/* Styles ready for final policy text */
.priv-policy-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

.priv-policy-body h3:first-child { margin-top: 0; }

.priv-policy-body p { margin: 0 0 16px; }
.priv-policy-body p:last-child { margin-bottom: 0; }

.priv-policy-body ul,
.priv-policy-body ol {
  padding-left: 20px;
  margin: 0 0 16px;
}

.priv-policy-body li { margin-bottom: 8px; }

.priv-policy-body .effective-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .priv-policy-section {
    padding: 64px 24px 72px;
  }

  .priv-policy-heading {
    font-size: 26px;
  }

  .priv-accordion-toggle {
    padding: 16px 20px;
  }

  .priv-policy-body {
    padding: 24px 20px 32px;
  }
}

/* Policy body sub-headings, links and copyright */
.priv-policy-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 24px 0 8px;
  letter-spacing: 0.01em;
}

.priv-policy-body a {
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.priv-policy-body a:hover {
  opacity: 0.75;
}

.priv-policy-copyright {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

/* Shared accent */
.about-accent {
  color: var(--green);
}

/* ── Section 1: Hero ── */
.about-hero {
  background-color: var(--dark);
  padding: 112px 24px 104px;
}

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

.about-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 28px;
}

.about-hero-subtitle {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0 0 20px;
}

.about-hero-desc {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
  margin: 0 0 72px;
}

/* Founder block */
.about-founder-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-founder-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
  margin-bottom: 20px;
  background-color: #0F172A;
}

.about-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(0%);
}

.about-founder-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin: 0 0 28px;
}

.about-founder-para {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Section 2: Looking Ahead ── */
.about-ahead {
  background-color: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 80px 24px 96px;
}

.about-ahead-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.about-ahead-title {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}

.about-ahead-text {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.75;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .about-hero {
    padding: 80px 24px 72px;
  }

  .about-hero-title {
    font-size: 34px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-ahead-title {
    font-size: 24px;
  }
}

/* ============================================
   SUPPORT PAGE
   ============================================ */

/* ── Section 1: Hero ── */
.sup-hero {
  background-color: var(--dark);
  padding: 112px 24px 104px;
  text-align: center;
}

.sup-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.sup-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.sup-hero-subtitle {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
}

/* ── Section 2: FAQ ── */
.sup-faq {
  background-color: var(--white);
  padding: 96px 24px 104px;
}

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

.sup-faq-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin: 0 0 48px;
}

/* FAQ list */
.sup-faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.sup-faq-item {
  border-bottom: 1px solid var(--border);
}

.sup-faq-item:last-child {
  border-bottom: none;
}

/* Question button */
.sup-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.sup-faq-btn:hover {
  background-color: #F8FAFC;
}

.sup-faq-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

/* Icon circle */
.sup-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.sup-faq-btn[aria-expanded="true"] .sup-faq-icon {
  border-color: var(--green);
  color: var(--green);
}

/* Plus / minus toggle */
.sup-icon-minus { display: none; }

.sup-faq-btn[aria-expanded="true"] .sup-icon-plus  { display: none; }
.sup-faq-btn[aria-expanded="true"] .sup-icon-minus { display: block; }

/* Answer panel */
.sup-faq-panel {
  padding: 0 24px 20px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Section 3: Contact ── */
.sup-contact {
  background-color: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 96px 24px 104px;
  text-align: center;
}

.sup-contact-inner {
  max-width: 540px;
  margin: 0 auto;
}

.sup-contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

.sup-contact-text {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0 0 32px;
}

.sup-contact-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  word-break: break-all;
  transition: opacity 0.18s ease;
  margin-bottom: 20px;
}

.sup-contact-email:hover {
  opacity: 0.75;
}

.sup-contact-response {
  font-size: 13px;
  color: #475569;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .sup-hero {
    padding: 80px 24px 72px;
  }

  .sup-hero-title {
    font-size: 38px;
  }

  .sup-hero-subtitle {
    font-size: 16px;
  }

  .sup-faq {
    padding: 64px 24px 72px;
  }

  .sup-faq-heading {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .sup-faq-btn {
    padding: 16px 20px;
    font-size: 14px;
  }

  .sup-faq-panel {
    padding: 0 20px 16px;
  }

  .sup-contact {
    padding: 64px 24px 72px;
  }

  .sup-contact-title {
    font-size: 26px;
  }

  .sup-contact-email {
    font-size: 16px;
  }
}
