/* Findexr Minimal Master Stylesheet — Light Mode */
:root {
  --bg-page: #f0f7ff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --border-color: rgba(14, 116, 192, 0.15);
  --border-glow: rgba(14, 116, 192, 0.35);

  --primary-cyan: #0ea5e9;
  --primary-dark: #0f2952;
  --accent-teal: #0d9488;
  --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #0d9488 100%);

  --text-main: #0f2952;
  --text-muted: #3b5f8a;
  --text-dim: #7a9bbf;

  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 10px 30px -10px rgba(14, 165, 233, 0.3);
  --shadow-card: 0 4px 20px rgba(15, 41, 82, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.07) 0%, transparent 40%),
    var(--bg-page);
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(240, 247, 255, 0.88);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 8px rgba(15, 41, 82, 0.06);
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-cyan);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.08);
}

/* Hero Section */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrapper {
  margin-bottom: 2rem;
}

.hero-logo-img {
  width: 140px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 41, 82, 0.12), 0 0 0 1px rgba(14, 165, 233, 0.15);
  background: #ffffff;
  padding: 8px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(160deg, #0f2952 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

/* Download Buttons Grid */
.download-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
  min-width: 220px;
  box-shadow: var(--shadow-card);
}

.store-card:hover {
  border-color: var(--primary-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.store-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
  color: var(--primary-dark);
}

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

.store-text .sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-text .title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.status-pill {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--accent-teal);
  margin-left: 6px;
  font-weight: 600;
}

/* Legal & Document Content Layout */
.page-content {
  padding: 4rem 0 6rem;
}

.doc-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.doc-wrapper h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.doc-meta {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.doc-body h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--primary-cyan);
}

.doc-body p, .doc-body ul, .doc-body ol {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.doc-body ul, .doc-body ol {
  padding-left: 1.5rem;
}

.doc-body li {
  margin-bottom: 0.5rem;
}

.callout-box {
  background: rgba(14, 165, 233, 0.07);
  border-left: 4px solid var(--primary-cyan);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

.callout-box p {
  margin-bottom: 0;
  color: var(--text-main);
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-cyan);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Form Controls */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

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

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--primary-cyan);
}

.copyright {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 116, 192, 0.08);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-content {
    height: 70px;
  }
  .doc-wrapper {
    padding: 1.5rem;
  }
  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .store-card {
    justify-content: center;
  }
}
