@font-face {
  font-family: 'Gothic60';
  src: url('fonts/Gothic60-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Al Safflers';
  src: url('fonts/Al_Saflers.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Agista Display';
  src: url('fonts/Agista Display.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Flourishing';
  src: url('fonts/Flourishing Demo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Delight';
  src: url('fonts/Delight-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Delight';
  src: url('fonts/Delight-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
body, p, li, input, button, label, .subtitle, .features p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gothic60', Arial, sans-serif;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: radial-gradient(ellipse 60% 50% at 20% 30%, #b3c6ff 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 25%, #b3e0ff 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 60% 80%, #e0b3ff 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 80% 80%, #b3e0ff 0%, transparent 80%),
              radial-gradient(ellipse 80% 60% at 50% 50%, #fffbe6 0%, #f8f6f4 100%);
  font-family: 'Gothic60', Arial, sans-serif;
  color: #111;
}
body.fade-in {
  opacity: 0;
  animation: bodyFadeIn 1.2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes bodyFadeIn {
  to {
    opacity: 1;
  }
}
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  background: none;
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links a:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.cta-btn, .signup-btn, .email-signup button {
  border-radius: 0 !important;
  box-shadow: none !important;
  border-width: 1.5px !important;
  padding: 12px 28px !important;
  font-size: 1rem !important;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  background: var(--text-main) !important;
  color: var(--bg-main) !important;
  border-color: var(--text-main) !important;
}
.cta-btn:hover, .cta-btn:focus, .email-signup button:hover, .email-signup button:focus {
  background: var(--accent) !important;
  color: var(--bg-main) !important;
  border-color: var(--accent) !important;
}
.signup-btn {
  background: var(--bg-main) !important;
  color: var(--text-main) !important;
  border-color: var(--text-main) !important;
}
.signup-btn:hover, .signup-btn:focus {
  background: var(--accent) !important;
  color: var(--bg-main) !important;
  border-color: var(--accent) !important;
}
.hero {
  text-align: center;
  margin: 60px 0 40px 0;
  position: relative;
}
.hero h1 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 4rem;
  margin: 0 0 16px 0;
  line-height: 1.15;
  color: #111;
  letter-spacing: -0.01em;
  transition: color 0.5s;
}
.underline {
  border-bottom: 6px solid #111;
  display: inline-block;
  padding-bottom: 4px;
}
.subtitle {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  transition: color 0.5s;
}
.section-intro {
  font-family: 'Agista Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.1s forwards;
}
.section-title {
  font-family: 'Gothic60', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.05s forwards;
  transition: color 0.5s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.cta-btn {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  background: #111;
  color: #fff;
  border: 3px solid #111;
  border-radius: 6px;
  padding: 14px 36px;
  cursor: pointer;
  box-shadow: 0 2px 8px #0002;
  transition: border 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, color 0.3s, background 0.3s;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: #111 !important;
  color: #fff;
  border: 3px solid;
  border-image: linear-gradient(90deg, #d05cf7, #b3c6ff, #f1e9ed, #d05cf7) 1;
  animation: ctaGradientBorder 2s linear infinite;
}
@keyframes ctaGradientBorder {
  0% { border-image-source: linear-gradient(90deg, #d05cf7, #b3c6ff, #f1e9ed, #d05cf7); }
  50% { border-image-source: linear-gradient(270deg, #b3c6ff, #d05cf7, #f1e9ed, #b3c6ff); }
  100% { border-image-source: linear-gradient(90deg, #d05cf7, #b3c6ff, #f1e9ed, #d05cf7); }
}
.cta-btn::before { display: none !important; }
.hero-curve {
  position: absolute;
  left: 0; right: 0; top: 80px;
  height: 60px;
  background: none;
  border-bottom: 2px solid #222;
  border-radius: 100% 100% 0 0/60% 60% 0 0;
  width: 80%;
  margin: 0 auto;
  z-index: 0;
}
.features {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 60px 0 40px 0;
  flex-wrap: wrap;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 320px;
  flex: 1 1 200px;
}
.feature-icon {
  font-size: 2rem;
  color: #111;
  margin-top: 4px;
}
.features h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.email-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 60px 0 32px 0;
  padding-bottom: 32px;
}
.email-signup label {
  font-weight: 600;
  font-size: 1.1rem;
}
.email-signup input[type="email"] {
  padding: 10px 16px;
  border: 2px solid #111;
  border-radius: 6px;
  font-size: 1rem;
  width: 260px;
  margin-bottom: 4px;
}
.email-signup input[type="email"]:focus {
  outline: 2px solid #2563eb;
}
.email-signup button {
  background: #111;
  color: #fff;
  border: 2px solid #111;
  border-radius: 6px;
  padding: 10px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #0002;
  transition: box-shadow 0.2s, background 0.2s;
}
.email-signup button:hover, .email-signup button:focus {
  background: #222;
  box-shadow: 0 4px 16px #0003;
  outline: 2px solid #2563eb;
}
.email-success {
  color: #2563eb;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .container {
    padding: 20px;
  }
  
  .navbar {
    padding: 0;
    margin-bottom: 32px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .features {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .feature {
    max-width: 100%;
    justify-content: center;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 16px;
  }
  
  .navbar {
    margin-bottom: 24px;
  }

  .logo-text {
    font-size: 1.6rem;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .hero {
    margin: 32px 0 20px 0;
    padding: 0 2vw;
  }
  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
  }
  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding: 0 2vw;
  }
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    padding: 0 2vw;
  }
  .features {
    margin: 32px 0 24px 0;
    flex-direction: column;
    align-items: center;
  }
  .feature {
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }
  .email-signup {
    margin: 32px 0 16px 0;
  }
  .email-signup input[type="email"] {
    width: 90%;
    max-width: 300px;
  }
  .email-signup button {
    width: fit-content;
    max-width: 300px;
  }
  .hamburger {
    top: 15px;
    right: 15px;
  }
  .about-blocks-row {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    padding: 0;
    box-sizing: border-box;
  }
  .about-block {
    width: 100%;
    box-sizing: border-box;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
  }
  .about-block + .about-block {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .about-block h1,
  .about-block h2 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
  }
  .about-block p {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
}
@media (max-width: 375px) {
  .about-block {
    padding: 28px 16px;
  }
  .about-block h1,
  .about-block h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    max-width: 280px;
  }
  .about-block p {
    font-size: 0.95rem;
    max-width: 280px;
  }
}
.logo-text {
  font-family: 'Agista Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: #111;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}
.logo a {
  text-decoration: none;
}
.hamburger {
  display: none;
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
}
.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  z-index: -1;
}
.mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-menu nav ul li {
  margin: 24px 0;
}
.mobile-menu nav ul li a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  text-shadow: none;
}
.email-form {
  width: 100%;
}
.email-entry-section {
  opacity: 0;
  visibility: hidden;
  margin: 40px auto;
  max-width: 600px;
  padding: 0 20px;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: none;
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}
.email-entry-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.email-input-group {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 12px;
}
.email-input-group input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 2px solid #111;
  border-radius: 6px;
  font-size: 1rem;
}
.email-input-group button {
  padding: 12px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.email-input-group button:hover {
  background: linear-gradient(
    270deg,
    #2a98f9, 
    #f2f0f3, 
    #d05cf7, 
    #f1e9ed 
  );
  background-size: 300% 300%;
  animation: submitGradient 3s ease infinite;
  color: #000;
  border: none;
}
.email-input-group button:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .logo-text {
    font-size: 1.6rem;
  }
  .hero h1 {
    font-size: 3.2rem;
    padding: 0 20px;
  }
  .subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  .email-input-group {
    flex-direction: column;
  }
  .email-input-group button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .mobile-menu nav ul li a {
    font-size: 1.25rem;
  }
  .email-entry-section {
    padding: 0 16px;
  }
  .email-input-group input[type="email"],
  .email-input-group button {
    padding: 10px 16px;
  }
}
.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-fade-in {
  animation: fadeIn 0.3s ease forwards;
}

/* About Page Sections */
.about-main {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: none;
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}

.about-hero-card {
  text-align: center;
  margin-bottom: 0;
}

.about-title {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: color 0.5s;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  transition: color 0.5s;
}

/* Regular Sections */
.mission-section,
.invitation-section,
.about-note,
.about-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  background: none;
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}

.mission-section h2,
.invitation-section h2,
.about-note h3,
.about-cta h3 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  transition: color 0.5s;
}

.mission-section p,
.invitation-section p,
.about-note p,
.about-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  transition: color 0.5s;
}

/* Ticker Animation */
.ticker-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 24px 0;
  background: #000000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
  animation: ticker 12s linear infinite;
}

.ticker-text {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  background: linear-gradient(120deg, #b3c6ff, #b3e0ff, #e0b3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 120px;
  flex-shrink: 0;
  text-shadow: 0 0 20px rgba(179, 198, 255, 0.3);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(179, 198, 255, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(224, 179, 255, 0.5);
  }
}

/* Features Grid with Glass Morphism */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
  margin: 40px auto;
  max-width: 1200px;
  background: none;
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}

.feature-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  pointer-events: none;
  border-radius: 16px;
}

.feature-card h3 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
  position: relative;
  transition: color 0.5s;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  transition: color 0.5s;
}

/* Special Sections */
.about-note,
.about-cta {
  margin-top: 60px;
  text-align: center;
  background: none;
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}

.about-note h3,
.about-cta h3 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  transition: color 0.5s;
}

.about-note p,
.about-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  transition: color 0.5s;
}

/* Section Content */
.section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: none;
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}

.section-content h2,
.section-content h3 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  transition: color 0.5s;
}

.section-content p {
  margin: 0 auto;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  transition: color 0.5s;
}

@media (max-width: 900px) {
  .about-title {
    font-size: 2rem;
  }
  
  .ticker-text {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 15px;
  }

  .mission-section h2,
  .invitation-section h2,
  .about-note h3,
  .about-cta h3,
  .section-content h2,
  .section-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-lead {
    font-size: 1rem;
  }
  
  .ticker-text {
    font-size: 1.5rem;
    padding: 0 60px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
  
  .feature-card {
    padding: 20px;
  }

  .mission-section h2,
  .invitation-section h2,
  .about-note h3,
  .about-cta h3,
  .section-content h2,
  .section-content h3 {
    font-size: 1.6rem;
  }

  .mission-section p,
  .invitation-section p,
  .about-note p,
  .about-cta p,
  .section-content p {
    font-size: 1rem;
  }
}

/* Update all headings to explicitly use Delight Bold */
.about-title,
.mission-section h2,
.invitation-section h2,
.about-note h3,
.about-cta h3,
.section-content h2,
.section-content h3,
.feature-card h3 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
}

/* Remove text shadows */
.about-title,
.mission-section h2,
.invitation-section h2,
.about-note h3,
.about-cta h3,
.section-content h2,
.section-content h3,
.about-lead,
.mission-section p,
.invitation-section p,
.about-note p,
.about-cta p,
.section-content p {
  text-shadow: none;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes submitGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Footer Styles */
.footer {
  margin-top: 80px;
  padding: 60px 0 20px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  transition: background 0.5s, color 0.5s;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 1rem;
}

.footer-section ul li a:hover {
  color: #2a98f9;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 900px) {
  .footer {
    margin-top: 60px;
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer {
    margin-top: 40px;
    padding: 30px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }
}

/* Animated Blobs Background */
.animated-blobs {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(12px);
  mix-blend-mode: lighten;
  animation: blobMove 18s ease-in-out infinite alternate;
}

.blob1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, #b3c6ff 60%, #7b61ff 100%);
  left: 5vw; top: 10vh;
  animation-delay: 0s;
}
.blob2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle at 70% 70%, #e0b3ff 60%, #a259f7 100%);
  left: 60vw; top: 20vh;
  animation-delay: 4s;
}
.blob3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle at 50% 50%, #b3e0ff 60%, #5cc6f7 100%);
  left: 30vw; top: 60vh;
  animation-delay: 8s;
}
.blob4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle at 60% 40%, #d05cf7 60%, #b3c6ff 100%);
  left: 70vw; top: 70vh;
  animation-delay: 12s;
}

@keyframes blobMove {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.55;
  }
  25% {
    transform: scale(1.15) translate(40px, -30px);
    opacity: 0.7;
  }
  50% {
    transform: scale(0.95) translate(-30px, 40px);
    opacity: 0.5;
  }
  75% {
    transform: scale(1.1) translate(30px, 30px);
    opacity: 0.65;
  }
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.55;
  }
}

/* Premium Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.slide-in {
  opacity: 0;
  transform: translateX(-32px);
  animation: slideIn 1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Smooth transitions for cards and buttons */
.feature-card, .cta-btn, .signup-btn, .email-signup button {
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.cta-btn:active, .signup-btn:active, .email-signup button:active {
  transform: scale(0.97);
}

/* Theme switcher button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  margin-left: 18px;
  color: var(--text-main);
  transition: color 0.3s;
  outline: none;
  display: flex;
  align-items: center;
}
.theme-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:root {
  --bg-main: #f8f6f4;
  --bg-secondary: #fffbe6;
  --text-main: #111;
  --text-secondary: #444;
  --card-bg: rgba(255,255,255,0.1);
  --accent: #2563eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
[data-theme="dark"] {
  --bg-main: #181926;
  --bg-secondary: #23243a;
  --text-main: #f8f8fa;
  --text-secondary: #b3b3c6;
  --card-bg: rgba(36,37,54,0.7);
  --accent: #7b61ff;
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.about-main p, .about-main ul, .about-main li {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1em;
}

.about-blocks-row {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 16px 0;
  box-sizing: border-box;
  background: #000000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about-block {
  flex: 1;
  min-width: 0;
  background: transparent;
  padding: 16px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.about-block h1, 
.about-block h2 {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.5rem;
  background: linear-gradient(120deg, #b3c6ff, #b3e0ff, #e0b3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(179, 198, 255, 0.3);
  width: 100%;
  display: block;
}

.about-block p {
  font-family: 'Delight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
  background: linear-gradient(120deg, #b3c6ff, #b3e0ff, #e0b3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(179, 198, 255, 0.3);
  width: 100%;
  display: block;
}

.about-block-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .about-block {
    padding: 16px 40px;
  }
  
  .about-block h1,
  .about-block h2,
  .about-block p {
    font-size: 1.3rem;
  }
}

/* Mobile Landscape */
@media (max-width: 900px) {
  .about-blocks-row {
    flex-direction: column;
    padding: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .about-block {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-block:last-child {
    border-bottom: none;
  }

  .about-block h1,
  .about-block h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-align: left;
  }

  .about-block p {
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: left;
  }
}

/* Mobile Portrait */
@media (max-width: 600px) {
  .about-blocks-row {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    padding: 0;
    box-sizing: border-box;
  }
  .about-block {
    width: 100%;
    box-sizing: border-box;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
  }
  .about-block + .about-block {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .about-block h1,
  .about-block h2 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
  }
  .about-block p {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .about-block {
    padding: 28px 16px;
  }
  .about-block h1,
  .about-block h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    max-width: 280px;
  }
  .about-block p {
    font-size: 0.95rem;
    max-width: 280px;
  }
}

/* Handle very small screens */
@media (max-width: 320px) {
  .about-block {
    padding: 8px 10px;
  }
}

/* Handle landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .about-blocks-row {
    flex-direction: row;
  }
  
  .about-block {
    padding: 12px 20px;
  }

  .about-block h1,
  .about-block h2,
  .about-block p {
    font-size: 1rem;
  }
}