/* Import modern fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties / Tokens */
:root {
  --primary: #8B2E3C;
  --primary-hover: #A03848;
  --secondary: #FAF7F2;
  --border: #EBE6DD;
  --text-dark: #1D1D1D;
  --text-light: #6A6A6A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(139, 46, 60, 0.05);
  --shadow-md: 0 8px 24px rgba(139, 46, 60, 0.08);
  --shadow-lg: 0 16px 40px rgba(139, 46, 60, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--secondary);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(235, 230, 221, 0.5);
  z-index: 1000;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background-color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
}

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

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(139, 46, 60, 0.05) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 54px;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  line-height: 1.2;
}

.store-badge span {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.hero-image-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-image-container img {
  display: block;
  width: 100%;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 40px 32px;
  background-color: var(--secondary);
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 46, 60, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(139, 46, 60, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* Trust & Safety Section */
.safety {
  padding: 100px 0;
  background-color: var(--secondary);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.safety-image-placeholder {
  height: 400px;
  background: linear-gradient(135deg, rgba(139, 46, 60, 0.1) 0%, rgba(139, 46, 60, 0.02) 100%);
  border-radius: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 72px;
  box-shadow: var(--shadow-md);
}

.safety-content h2 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 24px;
}

.safety-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.safety-checkmarks {
  list-style: none;
}

.safety-checkmarks li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
}

.safety-checkmarks li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Static Policy Page Style */
.policy-page {
  padding: 140px 0 100px;
  background-color: var(--white);
  min-height: 80vh;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 16px;
}

.policy-meta {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.policy-body h2 {
  font-size: 24px;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 16px;
}

.policy-body p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.policy-body ul {
  margin-bottom: 20px;
  padding-left: 24px;
  color: var(--text-light);
}

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

/* Footer Section */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #A0A0A0;
  margin-top: 16px;
  font-size: 15px;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #A0A0A0;
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid #2D2D2D;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #A0A0A0;
  font-size: 14px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Responsive / Media Queries */
@media (max-width: 991px) {
  .hero-grid, .safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 36px;
  }
  .hero-actions {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .safety-checkmarks li {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .nav-links, .nav-btn {
    display: none;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
}
