@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --amber: #E8830A;
  --amber-light: #F5A63D;
  --navy: #0F1F3D;
  --navy-mid: #1A3260;
  --navy-light: #24437A;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --gray: #8896A8;
  --secondary: #C8C8D0;
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HEADER ─────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 4px solid var(--amber);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-decoration: none;
  align-self: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
  align-self: center;
}

nav a:not(.btn-nav-store):not(.btn-nav-getapp) {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:not(.btn-nav-store):not(.btn-nav-getapp):hover { color: white; background: rgba(255,255,255,0.07); }

.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: 8px; margin-top: 2px; }
.btn-nav-store {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: white !important;
  color: var(--navy) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav-store:hover { background: var(--off-white) !important; transform: translateY(-1px); }

.btn-nav-staff {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  margin-right: 4px;
}
.btn-nav-staff:hover { color: white; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }

.btn-nav-getapp {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: white;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-nav-getapp:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); background: transparent; }

.download-attribution {
  line-height: 1.5;
  max-width: 460px;
  margin: 0 auto 28px;
  font-family: 'Barlow Condensed';
  font-weight: 600;
}

.store-text-sm { display: flex; flex-direction: column; line-height: 1.1; color: var(--navy) !important; align-items: center; text-align: center; }
.store-sub-sm { font-family: 'Barlow', sans-serif; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.store-name-sm { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.02em; color: var(--navy) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-self: center;
  margin-bottom: -14px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 3px solid var(--amber);
  padding: 16px 24px 24px;
  position: relative;
  overflow-x: hidden;
}
.mobile-menu.open { display: flex; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}
.mobile-overlay.open { display: block; }
.mobile-menu > a {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 9px 16px;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav-chevron {
  flex-shrink: 0;
  display: block;
}
.mobile-dl {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: nowrap;
}
.mobile-dl .badge-link {
  display: block !important;
  flex: 0 0 auto !important;
  padding: 0 !important;
  border-bottom: none !important;
  color: inherit !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
  transition: transform 0.15s, opacity 0.15s !important;
}
.mobile-dl .badge-link:hover { transform: translateY(-2px) !important; opacity: 0.9; background: transparent !important; }
.mobile-dl .badge-link img { display: block; width: auto; height: 44px; max-height: 44px; }

.mobile-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-footer-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #C8C8D0 !important;
  text-decoration: none;
  padding: 0 !important;
  border-bottom: none !important;
  white-space: nowrap;
  transition: color 0.2s;
}
.mobile-footer-links a:hover { color: white !important; }
.btn-store-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy) !important;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn-store-hero:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-store-hero svg { color: var(--navy) !important; }

/* ── SECTION RULE ────────────────────── */
.section-rule { height: 4px; background: var(--amber); width: 100%; }

/* ── DOWNLOAD ────────────────────────── */

.download-section { padding: 40px 24px; text-align: center; scroll-margin-top: 70px; }
.download-inner { max-width: 580px; margin: 0 auto; }

.download-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 14px;
}
.download-section h2 .amber { color: var(--amber); }
.download-section > div > p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 28px;
  margin-bottom: 28px;
}

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

.btn-store-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: white;
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.btn-store-lg:hover { transform: translateY(-3px); background: var(--off-white); }
.store-text { text-align: center; }
.store-sub { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; display:block; }
.store-name { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:21px; letter-spacing:0.02em; line-height:1.1; display:block; }

/* ── BADGE LINKS (official store badges) ── */
.badge-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.badge-link:hover { transform: translateY(-2px); opacity: 0.9; }
.badge-link img { display: block; }

/* ── FOOTER ──────────────────────────── */

footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: #C8C8D0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: #C8C8D0; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1100px) {
  nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .header-inner { height: 72px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── COMMUNITY QUOTE MARK ───────────── */
.community-quote-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 96px;
  line-height: 0.6;
  color: rgba(232,131,10,0.2);
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.05em;
}

/* ── COMMUNITY ICON ─────────────────── */
.community-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.community-icon svg.icon-heart {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
}
.community-icon svg.icon-users {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
}

/* ── FOOTER COMMUNITY (shared footer) ── */
.footer-community {
  padding: 40px 24px;
  background: #1A3260;
}
.footer-community-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}
.footer-community .community-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 8px;
}
.footer-community .founder-card p {
  line-height: 1;
}
@media (max-width: 640px) {
  .footer-community-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── FOUNDER CARD (used in footer + for-directors) ── */
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  min-width: 160px;
}
.founder-card p, .founder-card a { margin: 0; }
.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  outline: 2px solid #E8830A;
  outline-offset: 3px;
  display: block;
  margin-bottom: 10px;
}
.founder-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: white;
  line-height: 1;
  display: block;
  padding: 10px 0;
}
.founder-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #F8F5F0;
  line-height: 1;
  display: block;
}
.founder-city {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,1);
  line-height: 1;
  display: block;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.founder-email {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  color: #E8830A;
  text-decoration: underline;
}
.founder-email:hover { color: #D4730A; }

/* ── EYEBROW (global) ── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8830A;
  display: block;
  margin-bottom: 14px;
}

