* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    color: rgba(255,255,255,0.9);
    background: radial-gradient(circle at 30% 30%, #0a0a0a, #000);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Vanta background */
  #universe {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
  }
  
  /* Sections */
  section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px 2rem;
  }
  
  /* Typography */
  h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 0 24px rgba(255,255,255,0.08);
  }
  
  h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 20px rgba(255,255,255,0.06);
  }
  
  p, a {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 720px;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(255,255,255,0.05);
  }
  
  a {
    color: rgba(255,255,255,0.9);
    transition: opacity 0.3s ease;
  }
  a:hover { opacity: 0.6; }
  
  /* --- BUTTONS --- */
  .btn {
    display:inline-block;
    margin-top:2rem;
    padding:1rem 2.2rem;
    border-radius:40px;
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(10px);
    color:rgba(255,255,255,0.9);
    font-size:1rem;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:0.05em;
    transition:all 0.35s cubic-bezier(0.33,1,0.68,1);
    cursor:pointer;
  }
  
  .btn:hover {
    background:rgba(255,255,255,0.1);
    border-color:rgba(255,255,255,0.3);
    transform:translateY(-2px);
    box-shadow:0 4px 20px rgba(255,255,255,0.08);
  }
  
  .btn:active {
    transform:translateY(0);
    box-shadow:none;
  }
  
  /* --- CONTACT FORM --- */
  .contact-form {
    display:flex;
    flex-direction:column;
    gap:1.2rem;
    margin-top:2.5rem;
    width:100%;
    max-width:480px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width:100%;
    padding:1rem 1.3rem;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.04);
    color:rgba(255,255,255,0.9);
    font-size:1rem;
    font-family:'Inter',sans-serif;
    backdrop-filter:blur(8px);
    transition:border 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline:none;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color:rgba(255,255,255,0.5);
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border:1px solid rgba(255,255,255,0.4);
    background:rgba(255,255,255,0.08);
    box-shadow:0 0 20px rgba(255,255,255,0.05);
  }
  
  .contact-form button {
    align-self:flex-end;
    margin-top:0.5rem;
  }
  
  /* --- FOOTER --- */
  footer {
    width:100%;
    padding:2.5rem 2rem;
    border-top:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.02);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:10;
    border-radius:32px 32px 0 0;
    margin-top:120px;
  }
  
  .footer-container {
    width:100%;
    max-width:1200px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:2rem;
  }
  
  .footer-left {
    flex:1;
  }
  
  .footer-left p {
    font-size:1rem;
    opacity:0.7;
  }
  
  .footer-right {
    display:flex;
    flex-direction:column;
    gap:0.4rem;
  }
  
  .footer-right a {
    font-size:1rem;
    opacity:0.7;
    transition:opacity 0.3s ease;
  }
  .footer-right a:hover {
    opacity:1;
  }
  
  /* Fade-in animation */
  .fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .fade.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Section variations */
  .manifesto p { max-width: 700px; }
  .coming p { font-style: italic; opacity: 0.85; }
  
  /* Responsive */
  @media (max-width: 768px) {
    section { padding: 120px 1.5rem; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.6rem; }
    p, a { font-size: 1.05rem; }
  
    .footer-container {
      flex-direction:column;
      text-align:center;
      align-items:center;
    }
    footer {
      border-radius:24px 24px 0 0;
      padding:2rem 1.5rem;
    }

    /* --- HERO --- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 180px 2rem;
  }
  
  .hero-content {
    max-width: 900px;
    animation: fadeUp 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  
  .hero h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 0 40px rgba(255,255,255,0.08);
  }
  
  .hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 1rem;
    opacity: 0.85;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-top: 2rem;
    opacity: 0.75;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Gradient mask for cinematic fade */
  .hero::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    z-index: -1;
  }
  
  /* Button group */
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
  }
  
  /* Secondary button variation */
  .btn-secondary {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
  }

  .manifesto {
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 180px 2rem;
  }
  
  .manifesto h2 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  
  .manifesto p {
    font-size: 1.4rem;
    line-height: 2.1rem;
    opacity: 0.85;
  }  
  
  /* Entrance animation */
  @keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero h2 { font-size: 1.5rem; }
    .hero p { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; }
  }
  
  }
  