/* ============================================
   PlayPulse Sports — Athletic Luxury Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Primary Greens */
  --green: #2E7D5B;
  --green-dark: #1B5E40;
  --green-darker: #144A30;
  --green-light: #E8F5EE;
  --green-mid: #3A9B6E;

  /* Accents */
  --gold: #F5A623;
  --gold-light: #FFF3D6;
  --blue: #3B82F6;
  --blue-light: #DBEAFE;

  /* Neutrals */
  --bg: #F7F8F6;
  --bg-alt: #FFFFFF;
  --card-bg: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F0F1F0;

  /* Surfaces */
  --hero-gradient: linear-gradient(135deg, #1B5E40 0%, #2E7D5B 40%, #3A9B6E 100%);
  --cta-gradient: linear-gradient(135deg, #2E7D5B 0%, #1B5E40 100%);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --card-shadow-hover: 0 4px 16px rgba(46,125,91,0.10), 0 8px 32px rgba(0,0,0,0.06);
  --nav-shadow: 0 1px 0 rgba(0,0,0,0.04);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing */
  --section-y: clamp(64px, 8vw, 120px);
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

.hero .label {
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
}

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

.section {
  padding: var(--section-y) 0;
}

/* --- Field Pattern Background --- */
.field-pattern {
  position: relative;
}

.field-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.04) 49.5%, rgba(255,255,255,0.04) 50.5%, transparent 50.5%);
  pointer-events: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 248, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--duration) var(--ease-out);
}

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

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--green-dark);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all var(--duration) var(--ease-out);
  position: relative;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(0,0,0,0.03);
}

.nav-link.active {
  color: var(--green-dark);
  background: var(--green-light);
}

/* Partners nav — visually distinct */
.nav-link.partners-link {
  background: var(--green);
  color: white;
  padding: 8px 20px;
  margin-left: 4px;
  position: relative;
  overflow: hidden;
}

.nav-link.partners-link::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-pill);
  background: var(--green);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}

.nav-link.partners-link:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-1px);
}

.nav-link.partners-link:hover::after {
  opacity: 0.3;
}

.nav-link.partners-link.active {
  background: var(--green-dark);
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-alt);
  z-index: 999;
  padding: 96px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -8px 0 32px rgba(0,0,0,0.08);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--duration) var(--ease-out);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--green);
}

.mobile-nav-link.partners-link {
  color: var(--green);
  border-bottom-color: var(--green-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--duration) var(--ease-spring);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(46,125,91,0.25);
}

.btn-secondary {
  background: var(--card-bg);
  color: var(--green-dark);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

.btn-ghost {
  color: var(--green);
  padding: 14px 8px;
}

.btn-ghost:hover {
  color: var(--green-dark);
}

.btn-ghost svg {
  transition: transform var(--duration) var(--ease-spring);
}

.btn-ghost:hover svg {
  transform: translateX(3px);
}

/* Store Buttons */
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all var(--duration) var(--ease-spring);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.store-btn::after {
  content: 'Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 94, 64, 0.92);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}

.store-btn:hover::after {
  opacity: 1;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn-label {
  font-size: 0.6875rem;
  opacity: 0.7;
  font-weight: 400;
}

.store-btn-store {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  background: var(--hero-gradient);
  color: white;
  overflow: hidden;
  padding-top: 72px; /* header offset */
}

.hero-home {
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-home .container {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero h1 {
  color: white;
  max-width: 680px;
}

.hero p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  font-size: 1.1875rem;
  margin-top: 20px;
}

.hero .store-buttons {
  margin-top: 36px;
}

/* Hero decorative elements */
.hero-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 1;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
}

.hero-ring:nth-child(1) {
  inset: 0;
  animation: ring-rotate 30s linear infinite;
}

.hero-ring:nth-child(2) {
  inset: 60px;
  border-style: dashed;
  animation: ring-rotate 25s linear infinite reverse;
}

.hero-ring:nth-child(3) {
  inset: 130px;
  animation: ring-rotate 35s linear infinite;
}

.hero-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

.hero-dot:nth-child(4) { top: 0; left: 50%; }
.hero-dot:nth-child(5) { top: 50%; right: 0; }
.hero-dot:nth-child(6) { bottom: 20%; left: 10%; }

@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}

/* Diagonal clip on hero bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
}

/* Sub-page heroes */
.hero-sub {
  padding: calc(72px + 64px) 0 80px;
  text-align: center;
}

.hero-sub h1 {
  margin: 0 auto;
}

.hero-sub p {
  margin: 16px auto 0;
  text-align: center;
}

.hero-sub::after {
  height: 60px;
}

/* ============================================
   TAGS / CHIPS
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--green-light);
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.tag-gold {
  background: var(--gold-light);
  color: #B8860B;
}

.tag-blue {
  background: var(--blue-light);
  color: var(--blue);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease-spring);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: transparent;
}

/* Feature Cards */
.feature-card {
  text-align: left;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--green-light);
  color: var(--green);
}

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

.feature-icon.gold {
  background: var(--gold-light);
  color: var(--gold);
}

.feature-icon.blue {
  background: var(--blue-light);
  color: var(--blue);
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ============================================
   STATS SCOREBOARD
   ============================================ */
.stats-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--cta-gradient);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-banner .store-buttons {
  justify-content: center;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  max-width: 560px;
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header .label {
  margin-bottom: 12px;
  display: block;
}

.section-header p {
  margin-top: 12px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
/* Story / Timeline */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-light));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--green);
}

.timeline-item h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
}

.timeline-item p {
  font-size: 1rem;
}

/* Value Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9375rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease-out);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 3px rgba(46,125,91,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #EF4444;
  background: #FEF2F2;
}

.form-error-text {
  font-size: 0.8125rem;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-error-text {
  display: block;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 36px;
  height: 36px;
}

.form-success h3 {
  margin-bottom: 8px;
}

/* Contact Sidebar */
.contact-sidebar .card {
  padding: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-text h4 {
  margin-bottom: 2px;
}

.contact-info-text p {
  font-size: 0.9375rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease-spring);
}

.social-link:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   PARTNERS PAGE
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.partner-card {
  display: flex;
  flex-direction: column;
}

.partner-logo {
  width: 100%;
  height: 120px;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-card .tag {
  align-self: flex-start;
  margin-bottom: 12px;
}

.partner-card h3 {
  margin-bottom: 6px;
}

.partner-card p {
  font-size: 0.9375rem;
  flex-grow: 1;
}

.partner-card .btn-visit {
  align-self: stretch;
  margin-top: 16px;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green);
  background: var(--green-light);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--duration) var(--ease-spring);
  text-decoration: none;
}

.partner-card .btn-visit:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46,125,91,0.2);
}

.partner-card .btn-visit svg {
  transition: transform var(--duration) var(--ease-spring);
}

.partner-card .btn-visit:hover svg {
  transform: translateX(3px);
}

/* Partner CTA */
.partner-cta {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  margin-top: 64px;
}

.partner-cta h2 {
  margin-bottom: 12px;
}

.partner-cta p {
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: var(--green);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer h4 {
  color: white;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--duration) var(--ease-out);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-bottom-love {
  color: rgba(255,255,255,0.35);
}

.footer-bottom-love span {
  color: #EF4444;
}

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-decoration {
    width: 360px;
    height: 360px;
    right: -10%;
    opacity: 0.5;
  }
}

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

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .hero-home {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-home .container {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero::after {
    height: 40px;
  }

  .hero-decoration {
    display: none;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .store-btn {
    justify-content: center;
  }

  .partner-cta {
    padding: 40px 24px;
  }

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

  .hero-sub {
    padding: calc(72px + 40px) 0 56px;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-dot {
    left: -36px;
  }
}

/* ============================================
   AOS OVERRIDES & UTILITIES
   ============================================ */
[data-aos] {
  transition-timing-function: var(--ease-out) !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
