* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      background: #0a0f1a;
      color: #e8e6e3;
      font-family: 'DM Sans', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    /* Typography */
    .heading-display {
      font-family: 'Crimson Pro', Georgia, serif;
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    
    .body-text {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      color: #d4d2cf;
    }
    
    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .nav.scrolled {
      background: rgba(10, 15, 26, 0.95);
      backdrop-filter: blur(20px);
      padding: 16px 48px;
    }
    
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }
    
    .nav-logo-text {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 22px;
      font-weight: 500;
      color: #e8e6e3;
    }
    
    .nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
    }
    
    .nav-link {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
      color: #c8c6c3;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .nav-link:hover {
      color: #e8e6e3;
    }

    /* Mobile Menu Toggle */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 101;
    }

    .hamburger {
      display: block;
      width: 24px;
      height: 2px;
      background: #e8e6e3;
      position: relative;
      transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 2px;
      background: #e8e6e3;
      left: 0;
      transition: all 0.3s ease;
    }

    .hamburger::before {
      top: -7px;
    }

    .hamburger::after {
      bottom: -7px;
    }

    .nav-toggle.active .hamburger {
      background: transparent;
    }

    .nav-toggle.active .hamburger::before {
      transform: rotate(45deg);
      top: 0;
    }

    .nav-toggle.active .hamburger::after {
      transform: rotate(-45deg);
      bottom: 0;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10, 15, 26, 0.98);
      backdrop-filter: blur(20px);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .mobile-menu.active {
      display: flex;
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu-link {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 28px;
      color: #e8e6e3;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mobile-menu-link:hover {
      color: #2dd4bf;
    }

    /* Buttons */
    .btn-primary {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 0.3px;
      background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
      color: white;
      padding: 16px 36px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 24px rgba(15, 118, 110, 0.3);
      text-decoration: none;
      display: inline-block;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(15, 118, 110, 0.4);
    }

    .btn-large {
      font-size: 17px;
      padding: 20px 48px;
    }

    .btn-price {
      font-weight: 600;
      margin-right: 4px;
    }

    .btn-price-original {
      text-decoration: line-through;
      opacity: 0.6;
      font-size: 0.85em;
      margin-right: 8px;
    }
    
    .btn-secondary {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.3px;
      background: transparent;
      color: rgba(232, 230, 227, 0.9);
      padding: 16px 36px;
      border-radius: 50px;
      border: 1px solid rgba(232, 230, 227, 0.2);
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-secondary-gold {
      border-color: rgba(245, 158, 11, 0.3);
    }

    .btn-secondary-gold:hover {
      border-color: rgba(245, 158, 11, 0.5);
      background: rgba(245, 158, 11, 0.05);
    }
    
    .btn-secondary:hover {
      background: rgba(232, 230, 227, 0.05);
      border-color: rgba(232, 230, 227, 0.4);
    }
    
    /* CES Badge */
    .ces-badge {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      color: #0a0f1a;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1px;
      padding: 8px 16px;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    
    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 48px 80px;
      background: linear-gradient(180deg, #0a0f1a 0%, #131b2e 50%, #1a2744 100%);
    }
    
    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }
    
    .hero-glow-1 {
      top: 10%;
      left: 15%;
      background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    }
    
    .hero-glow-2 {
      bottom: 10%;
      right: 10%;
      background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    }
    
    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }
    
    .hero-text {
      max-width: 600px;
    }
    
    .hero-badge {
      margin-bottom: 24px;
    }
    
    .hero h1 {
      font-size: clamp(42px, 5vw, 64px);
      color: #e8e6e3;
      margin-bottom: 24px;
    }
    
    .hero h1 span {
      color: rgba(45, 212, 191, 0.9);
    }
    
    .hero-desc {
      font-size: 19px;
      margin-bottom: 40px;
      max-width: 480px;
    }
    
    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 56px;
    }
    
    .hero-stats {
      display: flex;
      gap: 40px;
    }
    
    .hero-stat {
      text-align: center;
    }
    
    .hero-stat-value {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 26px;
      font-weight: 500;
      color: #e8e6e3;
    }
    
    .hero-stat-label {
      font-size: 11px;
      letter-spacing: 1px;
      color: #b8b6b3;
      margin-top: 4px;
    }
    
    .hero-product {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .hero-product img {
      max-width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: contain;
      filter: drop-shadow(0 20px 60px rgba(20, 184, 166, 0.2));
    }
    
    /* Section Styling */
    .section {
      padding: 120px 48px;
      position: relative;
    }
    
    .section-dark {
      background: #0d1421;
    }
    
    .section-gradient {
      background: linear-gradient(180deg, #0d1421 0%, #131b2e 100%);
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    
    .section-label {
      font-size: 12px;
      letter-spacing: 2px;
      color: rgba(45, 212, 191, 0.8);
      margin-bottom: 16px;
      display: block;
    }

    .section-label-purple {
      color: rgba(99, 102, 241, 0.8);
    }

    /* Utility classes */
    .mt-16 { margin-top: 16px; }
    .mt-56 { margin-top: 56px; }
    .mb-0 { margin-bottom: 0; }
    .text-center { text-align: center; }

    .section-title {
      font-size: clamp(36px, 4vw, 56px);
      color: #e8e6e3;
    }
    
    /* Problem/Solution Section */
    .problem-solution {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }
    
    .ps-card h2 {
      font-size: 42px;
      color: #e8e6e3;
      margin-bottom: 20px;
    }
    
    .ps-card p {
      font-size: 17px;
      margin-bottom: 16px;
    }
    
    /* How It Works */
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    
    .how-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 24px;
      padding: 48px 36px;
      transition: all 0.3s ease;
    }
    
    .how-card:hover {
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-4px);
    }
    
    .how-icon {
      margin-bottom: 20px;
      color: rgba(45, 212, 191, 0.8);
    }
    
    .how-number {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 64px;
      font-weight: 300;
      color: rgba(20, 184, 166, 0.2);
      line-height: 1;
    }
    
    .how-card h3 {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 22px;
      font-weight: 500;
      color: #e8e6e3;
      margin: 8px 0 12px;
    }
    
    .how-card p {
      font-size: 15px;
      color: #c8c6c3;
    }
    
    /* Science Demo Section */
    .science-demo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    
    .science-image {
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 24px;
      overflow: hidden;
    }

    .science-image img {
      width: 100%;
      height: auto;
      border-radius: 16px;
    }
    
    .science-content h2 {
      font-size: 42px;
      color: #e8e6e3;
      margin-bottom: 24px;
    }
    
    .science-content p {
      font-size: 17px;
      margin-bottom: 16px;
    }
    
    .science-points {
      margin-top: 32px;
    }
    
    .science-point {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;
    }
    
    .science-point-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(20, 184, 166, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    
    .science-point-icon svg {
      width: 12px;
      height: 12px;
      color: #2dd4bf;
    }
    
    /* Founder Section */
    .founder-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 32px;
      padding: 64px;
      position: relative;
      overflow: hidden;
    }
    
    .founder-glow {
      position: absolute;
      top: -50px;
      right: -50px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
      filter: blur(40px);
    }
    
    .founder-content {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 10;
    }
    
    .founder-image {
      text-align: center;
    }
    
    .founder-photo {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(45, 212, 191, 0.3);
      margin-bottom: 20px;
    }
    
    .founder-name {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 24px;
      font-weight: 500;
      color: #e8e6e3;
      margin-bottom: 4px;
    }
    
    .founder-role {
      font-size: 13px;
      color: rgba(45, 212, 191, 0.8);
      letter-spacing: 0.5px;
    }
    
    .founder-quote {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 26px;
      font-weight: 400;
      font-style: italic;
      color: #e8e6e3;
      line-height: 1.5;
      margin-bottom: 32px;
    }
    
    .founder-credentials {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 24px;
    }
    
    .founder-credential {
      flex: 1;
      min-width: 200px;
    }
    
    .founder-credential-label {
      font-size: 11px;
      letter-spacing: 1px;
      color: #b8b6b3;
      margin-bottom: 6px;
    }

    .founder-credential-value {
      font-size: 14px;
      color: #e0dedb;
    }

    .book-callout {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 32px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
    }

    .book-cover {
      flex-shrink: 0;
      width: 100px;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .book-cover:hover {
      transform: scale(1.05);
    }

    .book-cover img {
      width: 100%;
      height: auto;
      display: block;
    }

    .book-info {
      flex: 1;
    }

    .book-label {
      font-size: 11px;
      letter-spacing: 1px;
      color: #2dd4bf;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .book-title {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 20px;
      font-weight: 500;
      color: #e8e6e3;
      margin-bottom: 6px;
    }

    .book-subtitle {
      font-size: 14px;
      color: #b8b6b3;
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .book-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      color: #2dd4bf;
      text-decoration: none;
      font-weight: 500;
    }

    .book-link:hover {
      color: #14b8a6;
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .book-callout {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Testimonials */
    .testimonials-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      min-height: 280px;
      position: relative;
    }
    
    .testimonial {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
      pointer-events: none;
    }
    
    .testimonial.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      position: relative;
    }
    
    .testimonial-photo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 24px;
      border: 3px solid rgba(45, 212, 191, 0.3);
    }

    .testimonial-quote {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 30px;
      font-weight: 400;
      font-style: italic;
      color: #e8e6e3;
      line-height: 1.4;
      margin-bottom: 24px;
    }

    .testimonial-author {
      font-size: 16px;
      font-weight: 500;
      color: #e8e6e3;
    }

    .testimonial-role {
      font-size: 14px;
      color: #b8b6b3;
      margin-top: 4px;
    }
    
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 48px;
    }
    
    .testimonial-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .testimonial-dot.active {
      width: 32px;
      background: rgba(45, 212, 191, 0.8);
    }
    
    /* CES Section */
    .ces-card {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
      border: 1px solid rgba(245, 158, 11, 0.2);
      border-radius: 32px;
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .ces-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('../images/ces-bg.webp') center center / cover no-repeat;
      opacity: 0.04;
      z-index: 0;
    }
    
    .ces-glow {
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
      filter: blur(60px);
    }
    
    .ces-content {
      position: relative;
      z-index: 10;
    }
    
    .ces-content h2 {
      font-size: 46px;
      color: #e8e6e3;
      margin: 24px 0;
    }
    
    .ces-content > p {
      font-size: 18px;
      max-width: 550px;
      margin: 0 auto 40px;
    }
    
    .ces-details {
      display: flex;
      justify-content: center;
      gap: 56px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    
    .ces-detail-label {
      font-size: 11px;
      letter-spacing: 1px;
      color: rgba(245, 158, 11, 0.8);
      margin-bottom: 8px;
    }
    
    .ces-detail-value {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 20px;
      color: #e8e6e3;
    }
    
    .ces-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
    }
    
    .btn-ces {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      box-shadow: 0 4px 24px rgba(245, 158, 11, 0.3);
    }
    
    .btn-ces:hover {
      box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
    }
    
    /* Lifestyle Section */
    /* Lifestyle Mosaic */
    .lifestyle-mosaic-section {
      padding: 120px 0;
    }
    
    .lifestyle-header {
      text-align: center;
      margin-bottom: 64px;
    }
    
    .lifestyle-header h2 {
      font-size: 48px;
      color: #e8e6e3;
      margin-bottom: 16px;
    }
    
    .lifestyle-header p {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .mosaic-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 220px);
      gap: 20px;
    }
    
    .mosaic-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
    
    .mosaic-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .mosaic-item:hover img {
      transform: scale(1.05);
    }
    
    .mosaic-item.large {
      grid-column: 1;
      grid-row: 1 / 3;
    }

    .mosaic-item.large img {
      transform: scale(1.08);
      transform-origin: left bottom;
    }

    .mosaic-item.large:hover img {
      transform: scale(1.12);
      transform-origin: left bottom;
    }
    
    .mosaic-item:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
    }
    
    .mosaic-item:nth-child(3) {
      grid-column: 3;
      grid-row: 1;
    }
    
    .mosaic-item:nth-child(4) {
      grid-column: 2;
      grid-row: 2;
    }
    
    .mosaic-item:nth-child(5) {
      grid-column: 3;
      grid-row: 2;
    }
    
    .mosaic-item:nth-child(6) {
      grid-column: 1;
      grid-row: 3;
      display: none;
    }
    
    .mosaic-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(transparent, rgba(10, 15, 26, 0.9));
    }
    
    .mosaic-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #2dd4bf;
      margin-bottom: 6px;
    }
    
    .mosaic-title {
      font-family: 'Crimson Pro', serif;
      font-size: 20px;
      color: #e8e6e3;
      font-weight: 400;
    }
    
    .lifestyle-features-row {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    
    .lifestyle-feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .lifestyle-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(20, 184, 166, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2dd4bf;
    }
    
    .lifestyle-feature-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: #a8a29e;
    }
    
    @media (max-width: 900px) {
      .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
      }
      
      .mosaic-item.large,
      .mosaic-item:nth-child(2),
      .mosaic-item:nth-child(3),
      .mosaic-item:nth-child(4),
      .mosaic-item:nth-child(5),
      .mosaic-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
      }

      .mosaic-item:nth-child(6) {
        display: block;
      }
      
      .lifestyle-features-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
      }
    }
    
    @media (max-width: 600px) {
      .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
      }
    }
    
    /* Final CTA */
    .final-cta {
      text-align: center;
      padding: 140px 48px;
      background: linear-gradient(180deg, #131b2e 0%, #0a0f1a 100%);
    }
    
    .final-cta h2 {
      font-size: 52px;
      color: #e8e6e3;
      margin-bottom: 20px;
    }
    
    .final-cta > p {
      font-size: 19px;
      max-width: 480px;
      margin: 0 auto 48px;
    }
    
    /* Email Capture */
    .email-capture {
      margin-top: 48px;
      padding-top: 48px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .email-capture-text {
      font-size: 15px;
      color: rgba(232, 230, 227, 0.7);
      margin-bottom: 16px;
    }

    .email-form {
      display: flex;
      gap: 12px;
      justify-content: center;
      max-width: 480px;
      margin: 0 auto;
    }

    .email-input {
      flex: 1;
      padding: 16px 24px;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      color: #e8e6e3;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      outline: none;
      transition: all 0.3s ease;
    }

    .email-input::placeholder {
      color: #7a7876;
    }

    .email-input:focus {
      border-color: rgba(20, 184, 166, 0.5);
      background: rgba(255, 255, 255, 0.08);
    }

    .email-btn {
      padding: 16px 36px;
      white-space: nowrap;
    }

    .email-disclaimer {
      font-size: 12px;
      color: #8a8885;
      margin-top: 12px;
    }

    .email-success {
      color: #10b981;
      font-size: 15px;
    }

    .form-error {
      color: #ef4444;
      font-size: 14px;
      margin-bottom: 12px;
      padding: 12px 16px;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.2);
      border-radius: 8px;
    }

    .email-input:invalid:not(:placeholder-shown) {
      border-color: rgba(239, 68, 68, 0.5);
    }

    @media (max-width: 600px) {
      .email-form {
        flex-direction: column;
      }

      .email-btn {
        width: 100%;
      }
    }

    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 48px;
      opacity: 1;
    }
    
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
    }
    
    /* Footer */
    .footer-simple {
      background: #0a0f1a;
      padding: 48px 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-simple-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-simple-links {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }

    .footer-simple-links a {
      color: #c8c6c3;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-simple-links a:hover {
      color: #e8e6e3;
    }

    .footer-divider {
      color: #5a5856;
    }

    .footer-simple-social {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 24px;
    }

    .footer-simple-social a {
      color: #8a8885;
      transition: color 0.3s;
    }

    .footer-simple-social a:hover {
      color: #e8e6e3;
    }

    .footer-simple-copyright {
      font-size: 13px;
      color: #9a9895;
    }

    .footer-built-by {
      font-size: 12px;
      color: #6a6865;
      margin-top: 8px;
    }

    .footer-built-by a {
      color: #8a8885;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-built-by a:hover {
      color: #2dd4bf;
    }

    /* Shopify Buy Button Overrides */
    .shopify-buy-frame--cart {
      z-index: 9999 !important;
    }

    .shopify-buy-frame--toggle {
      z-index: 9998 !important;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content,
      .problem-solution,
      .science-demo,
      .founder-content,
      .lifestyle {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      
      .how-grid {
        grid-template-columns: 1fr;
      }
      
      .hero-product {
        order: -1;
      }
    }
    
    @media (max-width: 768px) {
      .nav {
        padding: 16px 24px;
      }

      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: block;
      }
      
      .section {
        padding: 80px 24px;
      }
      
      .hero {
        padding: 100px 24px 60px;
      }
      
      .hero-buttons {
        flex-direction: column;
      }
      
      .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
      }
      
      .ces-card {
        padding: 48px 24px;
      }
      
      .ces-details {
        flex-direction: column;
        gap: 24px;
      }
      
      .ces-buttons {
        flex-direction: column;
      }
    }