/* General Body and Font Styling */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Layering */
#background-container {
  background-image: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3');
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

#reveal-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: crosshair;
}

.ui-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5vh; /* Move brand column higher */
    align-items: center;
    pointer-events: none;
    z-index: 3;
}

.brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    pointer-events: auto;
}

/* UI Elements */
.logo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.brand-tagline {
    width: 100%;
    text-align: justify;
    margin-bottom: 30px;
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

.waitlist-btn {
    width: 100%;
}

.about-trigger {
    position: static;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 0px; /* Sharp Swiss edges */
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    pointer-events: auto;
}

.about-trigger:hover {
  opacity: 0.8;
}

/* Modal Styling */
#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#modal {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

#close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.modal-tabs {
    display: flex;
    border-bottom: none; /* Remove persistent underline */
    margin-bottom: 20px;
}

.tab-link {
    background: none;
    border: none;
    border-bottom: 2px solid transparent; /* Placeholder for active state */
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    opacity: 0.6;
}

.tab-link.active {
    opacity: 1;
    border-bottom: 2px solid #000000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Form Styling */
.modal-copy {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

#lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#lead-form input, #lead-form select {
    padding: 12px;
    border: 1px solid #000;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.5);
}

#status-message {
    margin-top: 10px;
}

.modal-submit-btn {
    background-color: #000000;
    color: #FFFFFF;
    width: 100%;
    padding: 15px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}

/* Success Message */
#success-message {
    text-align: center;
}

/* Footer & Swiss Identity */
.main-footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.swiss-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  color: #000000;
}

.copyright {
  font-size: 8px;
  color: #888;
}

.swiss-flag {
  width: 12px;
  height: 12px;
  background-color: #D52B1E;
  position: relative;
  display: inline-block;
}

.swiss-flag::after, .swiss-flag::before {
  content: "";
  position: absolute;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiss-flag::after { width: 8px; height: 2px; }
.swiss-flag::before { width: 2px; height: 8px; }

.input-error {
    border: 1px solid #ff7a7a !important;
}
