/* SF Mono Font */
@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Ultralight.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Thin.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'SF Mono';
  src: url('assets/font/SF-Pro-Rounded-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* CSS Variables for Light and Dark Mode */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-card: #ffffff;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --dumb-color: var(--text-primary);
  --dumb-secondary: var(--text-primary);
  --accent-color: #0071e3;
  --border-color: #d2d2d7;
  --shadow: rgba(0, 0, 0, 0.1);
  --toggle-bg: #e5e5ea;
  --toggle-thumb: #ffffff;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.6s ease;
}

/* Section background colors */
body.bg-white {
  background-color: #ffffff;
}

body.bg-light-yellow {
  background-color: var(--bg-primary);
}

body.bg-light-brown {
  background-color: var(--bg-primary);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  /* border-bottom: 1px solid var(--border-color); */
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav-container {
  max-width: 100vw;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-left {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.5rem;
}

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

.nav-home {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 400;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.55rem 0.9rem;
  border-radius: 18px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-underline-offset: 6px;
}

.nav-home:hover {
  color: var(--dumb-color);
  text-decoration: underline;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links .nav-item {
  position: relative;
}

.github-link {
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
}

.github-link.is-arming {
  border-color: currentColor;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.github-link:not(.is-arming):hover {
  text-decoration: none;
}

.nav-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  background: #ffffff;
  border: 1px solid #000000;
  color: var(--text-primary);
  border-radius: 14px;
  padding: 8px 10px;
  opacity: 0;
  transform: translate(-50%, 6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
  min-width: 120px;
}

.nav-popup-inner {
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.nav-popup.open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-popup-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-underline-offset: 6px;
}

.nav-popup-actions {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.nav-popup-btn {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-popup-btn:hover {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 400;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  position: relative;
  padding: 0.55rem 0.9rem;
  border-radius: 18px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-underline-offset: 6px;
}

.nav-links a:hover {
  color: var(--dumb-color);
  text-decoration: underline;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  appearance: none;
}

.pill-secondary {
  background: #f2f2f2;
  color: #0f0f0f;
  border: 1px solid #e7e7e7;
}

.pill-secondary:hover {
  background: #e8e8e8;
  border-color: #dddddd;
}

.pill-primary {
  background: #1f1f1f;
  color: #f7f7f7;
  border: 1px solid #1f1f1f;
  box-shadow: none;
}

.pill-primary:hover {
  background: #151515;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image {
  margin-bottom: 0rem;
  animation: float 6s ease-in-out infinite;
  display: flex;
  justify-content: center;
}

.hero-text {
  margin-top: -8rem;
}

.hero-dumb {
  max-width: 800px;
  height: auto;
  filter: drop-shadow(0 10px 30px var(--shadow));
  transform: translateX(35px);
  margin-top: -15rem;
  margin-bottom: 5rem;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.beta-tag {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.about-summary p {
  margin-bottom: 1.25rem;
}

.privacy-toc {
  margin: 0;
  padding: 0;
}

.privacy-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-toc li {
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

.privacy-toc a {
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.15s ease, transform 0.15s ease;
}

.privacy-toc a:hover {
  color: var(--dumb-color);
  transform: translateX(2px);
}

.privacy-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.privacy-section:first-of-type {
  border-top: none;
}

.privacy-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.privacy-section p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.privacy-list li {
  color: var(--text-secondary);
  line-height: 1.6;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
}

.privacy-sidebar {
  position: sticky;
  top: 6rem;
  align-self: flex-start;
}

.privacy-toc-card {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--bg-secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.toc-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.privacy-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

.privacy-hero {
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.privacy-lede {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.7;
}

.privacy-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.privacy-content h2 {
  scroll-margin-top: 110px;
}

.privacy-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
}

.privacy-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.privacy-section:last-of-type {
  padding-bottom: 0;
}

.download-btn {
  background: #1f1f1f;
  color: #f7f7f7;
  border: 1px solid #1f1f1f;
  padding: 0.7rem 1.6rem;
  font-size: inherit;
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  background: #151515;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.availability {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sticky Section with Parallax */
.sticky-section {
  position: relative;
  min-height: 300vh;
  background: transparent;
  padding: 4rem 0;
  z-index: 1;
}

.sticky-container {
  position: relative;
}

.sticky-text {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

.section-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0;
}

.highlight {
  color: var(--dumb-color);
  position: relative;
}

.scrolling-content {
  position: relative;
  z-index: 2;
  padding-top: 40vh;
}

.scroll-section {
  margin-bottom: 20rem;
  padding: 0 2rem;
  min-height: 190vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-section-title {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 90vh;
  color: var(--text-primary);
  text-align: center;
  z-index: 1;

  display: block;
  /* stays block-level -> sticky works */
  width: fit-content;
  padding: 2rem 4rem;
  background: #ffffff;
  border: 6px solid #000000;
  border-radius: 60px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  /* margin: 0 auto; */
}

.section-3-title {
  margin-bottom: 0vh;
}

.scroll-section-3 {
  min-height: 100vh;
}

.horizontal-scroll {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-card {
  flex: 0 0 350px;
  min-width: 350px;
  height: 450px;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  scroll-snap-align: start;
  border: 1px solid var(--border-color);
}

.scroll-card:hover {
  animation: cardShake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  box-shadow: 0 12px 40px rgba(255, 206, 122, 0.2);
}

.card-image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--dumb-secondary), var(--dumb-color));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.card-content {
  padding: 2rem;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Old Features Section (kept for compatibility) */
.features {
  padding: 8rem 2rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: transparent;
  background-image: url('assets/background.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(50px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideUp 0.6s ease forwards;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

/* Info Sections */
.info-section {
  padding: 8rem 2rem;
  background: transparent;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}

.info-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 10px;
  margin: 0 auto;
  justify-items: center;
}

.info-section.right-align .container {
  grid-template-columns: 1fr 1fr;
}

.info-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.info-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Device Mockup */
.device-mockup {
  background: var(--text-primary);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 20px 60px var(--shadow);
  transition: transform 0.3s ease;
}

.device-mockup:hover {
  transform: scale(1.05);
}

.mockup-screen {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem;
  min-height: 400px;
}

.news-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  background: var(--bg-secondary);
  height: 100px;
  border-radius: 10px;
  animation: pulse 2s ease-in-out infinite;
}

.news-item:nth-child(2) {
  animation-delay: 0.2s;
}

.news-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* Comparison View */
.comparison-view {
  display: flex;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 60px var(--shadow);
  border: 1px solid var(--border-color);
}

.side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.left-side {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.right-side {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.side .label {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.divider {
  width: 2px;
  background: var(--border-color);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow);
  border: 1px solid var(--border-color);
}

.feature-box {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dumb-color), var(--dumb-secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-box:hover::before {
  opacity: 0.1;
}

.feature-box .feature-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
  animation: floatIcon 3s ease-in-out infinite;
}

.feature-box-1 .feature-icon {
  animation-delay: 0s;
}

.feature-box-2 .feature-icon {
  animation-delay: 0.5s;
}

.feature-box-3 .feature-icon {
  animation-delay: 1s;
}

.feature-box-4 .feature-icon {
  animation-delay: 1.5s;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Community Section */
.community-section {
  padding: 10rem 2rem;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
}

.community-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.community-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

/* Newsletter Section */
.newsletter-section {
  padding: 8rem 2rem;
  background: var(--bg-primary);
  text-align: center;

}

.newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
  background: var(--bg-secondary);
  border-radius: 32px;
  border: #000000 7px solid;
}

.newsletter-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.newsletter-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--dumb-color);
  box-shadow: 0 0 0 4px rgba(255, 206, 122, 0.1);
}

.newsletter-input::placeholder {
  color: var(--text-secondary);
}

.newsletter-btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dumb-color);
  color: var(--text-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 206, 122, 0.3);
}

.newsletter-btn:hover {
  background: var(--dumb-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 206, 122, 0.4);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-btn {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  padding: 1.2rem 3.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo svg {
  width: 50px;
  height: 50px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

/* Social Link Hover Effect */
.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
  border-color: var(--dumb-color);
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-up {
  animation: slideUp 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cardShake {
  0% {
    transform: translateY(-8px) rotate(0deg);
  }

  25% {
    transform: translateY(-8px) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }

  75% {
    transform: translateY(-8px) rotate(-1deg);
  }

  100% {
    transform: translateY(-8px) rotate(0deg);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    position: static;
  }

  .privacy-content {
    padding: 1.5rem 1.25rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .info-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .info-section.right-align .container {
    grid-template-columns: 1fr;
  }

  .info-content h2 {
    font-size: 2.2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .scroll-section-title {
    font-size: 2.5rem;
  }

  .scroll-card {
    flex: 0 0 380px;
  }

  .newsletter-title {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .community-content h2 {
    font-size: 2.5rem;
  }

  .features .container {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .scroll-section-title {
    font-size: 2rem;
    text-align: left;
  }

  .scroll-card {
    flex: 0 0 320px;
  }

  .card-image {
    height: 200px;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    min-width: 100%;
  }

  .hero {
    padding: 6rem 1rem 2rem;
  }
}

/* Donate Page Styles */
.donate-section {
  padding: 10rem 2rem 8rem;
  min-height: 100vh;
  background: var(--bg-primary);
}

.donate-content {
  max-width: 900px;
  margin: 0 auto;
}

.donate-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-primary);
}

.donate-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.6;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

.donation-options {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  border: 6px solid #000000;
  margin-bottom: 3rem;
}

.donation-options h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.zelle-instruction {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

.zelle-info {
  background: #ffcccc;
  padding: 2rem;
  border-radius: 16px;
  border: 6px solid #000000;
  margin-bottom: 1.5rem;
}

.zelle-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.info-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

.info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
}

.copy-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dumb-color);
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--dumb-secondary);
  transform: translateY(-2px);
}

.zelle-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

.recruiter-section {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  border: 6px solid #000000;
  margin-bottom: 3rem;
  text-align: center;
}

.recruiter-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.recruiter-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: #ffcccc;
  border-radius: 12px;
  border: 6px solid #000000;
}

.info-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: #333333;
  text-decoration: underline;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.amount-btn {
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover {
  border-color: var(--dumb-color);
  transform: translateY(-2px);
}

.amount-btn.active {
  background: var(--dumb-color);
  border-color: var(--dumb-color);
  color: var(--text-primary);
}

.custom-amount-container {
  margin-top: 1rem;
}

.custom-amount-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.custom-amount-input:focus {
  outline: none;
  border-color: var(--dumb-color);
  box-shadow: 0 0 0 4px rgba(255, 206, 122, 0.1);
}

.donation-form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.donation-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--dumb-color);
  box-shadow: 0 0 0 4px rgba(255, 206, 122, 0.1);
}

.form-input::placeholder {
  color: var(--text-secondary);
}

.donate-submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dumb-color);
  color: var(--text-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.donate-submit-btn:hover {
  background: var(--dumb-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 206, 122, 0.4);
}

.donation-impact {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  border: 6px solid #000000;
}

.donation-impact h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.impact-item {
  text-align: center;
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.impact-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dumb-color);
  margin-bottom: 0.5rem;
}

.impact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Download Modal */
.download-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.download-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.qr-code-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid var(--border-color);
}

.qr-code {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
}

.download-link-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'SF Mono', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.download-link-btn:hover {
  background: var(--bg-card);
  transform: translateY(-2px);
}

.phone-icon {
  font-size: 1.2rem;
}
