/* ═══════════════════════════════════════════════════════════════════════════
   Inventory System — Landing Page Styles
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg:            #0a0a0f;
  --bg-2:          #13131a;
  --bg-3:          #1a1a24;
  --bg-card:       #111118;
  --border:        #22222e;
  --border-hi:     rgba(107,122,255,0.35);
  --text:          #e4e4ea;
  --text-dim:      #9494a8;
  --text-muted:    #5a5a72;
  --accent:        #6b7aff;
  --accent-dim:    #4a5acc;
  --accent-glow:   rgba(107,122,255,0.18);
  --accent-tint:   rgba(107,122,255,0.12);
  --success:       #4ade80;
  --success-tint:  rgba(74,222,128,0.12);
  --warning:       #fbbf24;
  --danger:        #ff5656;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.4);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.6);
  --radius:        14px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    0.22s cubic-bezier(0.4,0,0.2,1);
  --header-h:      68px;
}

[data-theme="light"] {
  --bg:            #f4f4f9;
  --bg-2:          #ffffff;
  --bg-3:          #eaeaf2;
  --bg-card:       #ffffff;
  --border:        #d0d0e0;
  --border-hi:     rgba(74,90,204,0.35);
  --text:          #16162a;
  --text-dim:      #52527a;
  --text-muted:    #9090b0;
  --accent:        #4a5acc;
  --accent-dim:    #3a47b0;
  --accent-glow:   rgba(74,90,204,0.14);
  --accent-tint:   rgba(74,90,204,0.10);
  --success:       #1a9e50;
  --success-tint:  rgba(26,158,80,0.10);
  --warning:       #c07a00;
  --danger:        #d93030;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--text); }

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(107,122,255,0.25); border-radius: 4px; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Syne', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(107,122,255,0.35);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-tint);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Header / Nav ────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(244,244,249,0.88);
}

.header-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent), #9d6bff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 0 14px var(--accent-glow);
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

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

[data-theme="light"] .nav-link:hover {
  background: rgba(0,0,0,0.04);
}

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

.btn-theme-toggle {
  background: none;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  color: var(--text-dim);
  flex-shrink: 0;
}

.btn-theme-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-tint);
}

.theme-icon-dark,
.theme-icon-light { display: none; }

:root .theme-icon-dark { display: inline; }
[data-theme="light"] .theme-icon-light { display: inline; }
[data-theme="light"] .theme-icon-dark { display: none; }

.btn-signin {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-signin:hover {
  background: var(--accent-dim);
  color: #fff;
}

.btn-signout {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-signout:hover { color: var(--text); border-color: var(--text-dim); }
.btn-signout.hidden { display: none; }
.btn-signin.hidden { display: none; }
#mobile-btn-signin.hidden { display: none; }
#mobile-btn-signout.hidden { display: none; }

/* ── Auth Modal ──────────────────────────────────────────────────────────── */
.auth-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  animation: fadeInAuth 0.2s ease;
}
@keyframes fadeInAuth {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.auth-modal-overlay .modal {
  position: relative;
  max-width: 420px;
  width: 90%;
  padding: 32px;
  background: var(--card-bg, #1a1a2e);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  animation: slideUpAuth 0.3s ease;
}
@keyframes slideUpAuth {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.auth-modal-overlay .modal-close {
  position: absolute;
  top: 14px; right: 14px;
  padding: 6px 10px;
  background: transparent;
  color: var(--text-dim);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-modal-overlay .modal-close:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.auth-modal-overlay .modal-icon { font-size: 40px; text-align: center; margin-bottom: 12px; }
.auth-modal-overlay h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  color: var(--text);
}
.auth-input {
  display: block; width: 100%;
  padding: 10px 12px; margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 8px;
  color: var(--text); font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.auth-input:focus { outline: none; border-color: var(--accent, #6b7aff); }
.auth-submit-btn { width: 100%; margin-bottom: 10px; }
.auth-switch {
  text-align: center; font-size: 13px;
  color: var(--text-dim); margin-bottom: 4px;
}
.auth-switch a { color: var(--accent, #6b7aff); text-decoration: none; margin-left: 4px; }
.auth-switch a:hover { text-decoration: underline; }
.auth-error {
  font-size: 13px; color: #f87171;
  margin-bottom: 8px; text-align: center;
}
.auth-error.hidden { display: none; }
.auth-divider {
  display: flex; align-items: center;
  gap: 8px; margin: 12px 0 8px;
  color: var(--text-dim); font-size: 12px;
}
.auth-divider::before,
.auth-divider::after { content: ''; flex: 1; border-top: 1px solid var(--border, rgba(255,255,255,0.1)); }
#landing-google-signin-button { display: flex; justify-content: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}

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

.mobile-menu .nav-link {
  display: block;
  padding: 12px 14px;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--header-h) + 80px) 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(107,122,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-tint);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #9d6bff 50%, #ff6bb5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  padding: 14px 30px;
  font-size: 16px;
}

.hero-ctas .btn-ghost {
  padding: 14px 30px;
  font-size: 16px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Products ────────────────────────────────────────────────────────────── */
#products {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--border-hi);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.available {
  border-color: rgba(107,122,255,0.25);
}

.product-icon {
  font-size: 32px;
  line-height: 1;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-available {
  background: var(--success-tint);
  color: var(--success);
  border: 1px solid rgba(74,222,128,0.2);
}

.badge-soon {
  background: rgba(251,191,36,0.12);
  color: var(--warning);
  border: 1px solid rgba(251,191,36,0.2);
}

.product-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
}

.product-footer {
  margin-top: auto;
}

.product-footer .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 10px 18px;
}

/* Waitlist inline form */
.waitlist-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.waitlist-input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
  min-width: 0;
}

.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus { border-color: var(--accent); }

.waitlist-btn {
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.waitlist-btn:hover { background: var(--accent-dim); }
.waitlist-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.waitlist-msg {
  font-size: 12px;
  margin-top: 8px;
  min-height: 18px;
}

.waitlist-msg.success { color: var(--success); }
.waitlist-msg.error { color: var(--danger); }

/* ── About ───────────────────────────────────────────────────────────────── */
#about .section-desc {
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.value-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.value-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Partners ────────────────────────────────────────────────────────────── */
#partners {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.partner-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
}

.partner-perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.partner-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.2px;
}

.form-input,
.form-textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

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

.form-submit {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  width: 100%;
}

.form-submit:hover { background: var(--accent-dim); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-success {
  display: none;
  padding: 12px 16px;
  background: var(--success-tint);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--success);
  text-align: center;
}

/* ── Legal ───────────────────────────────────────────────────────────────── */
#legal .container > .section-desc {
  margin-bottom: 40px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.legal-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  cursor: pointer;
}

.legal-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.legal-icon {
  font-size: 26px;
}

.legal-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.legal-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.legal-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links li a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ── Modals ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96) translateY(8px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 16px;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: var(--danger);
  color: var(--danger);
  background: rgba(255,86,86,0.08);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--text);
}

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

.modal-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}

.modal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.modal-body ul li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ── Cookie Banner ───────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  flex-wrap: wrap;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-text {
  font-size: 14px;
  color: var(--text-dim);
  flex: 1;
  min-width: 200px;
}

.cookie-text a {
  color: var(--accent);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-reject {
  padding: 8px 16px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}

.btn-cookie-reject:hover { border-color: var(--text-dim); color: var(--text); }

.btn-cookie-accept {
  padding: 8px 16px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}

.btn-cookie-accept:hover { background: var(--accent-dim); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-signin { display: none; }

  .partner-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links-group { gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 72px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie-reject, .btn-cookie-accept { flex: 1; justify-content: center; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
