:root {
  --bg-deep: #050505;
  --text-light: #ffffff;
  --text-muted: #64748b;
  --card-glass: rgba(255, 255, 255, 0.03);
  --border-light: rgba(255, 255, 255, 0.1);
  --accent-glow: #10b981;
}

/* SECURITY LAYER: PREVENT SELECTION */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--bg-deep);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Allow user to type in form fields */
input,
textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#canvas-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.page-wrapper {
  width: 100%;
  padding: 0 10vw;
  position: relative;
  z-index: 1;
}

/* NAVIGATION */
nav {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: white;
}

.logo-circle {
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--border-light);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 25px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

/* CONTACT SECTION */
.contact-section {
  margin-top: 2vh;
  padding-bottom: 10vh;
  border-top: 1px solid var(--border-light);
  padding-top: 4vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* DYNAMIC SECURE STATUS */
@keyframes glitch-flicker {
  0% {
    opacity: 0.9;
  }
  5% {
    opacity: 0.4;
  }
  10% {
    opacity: 0.9;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0.3;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.secure-status-line {
  display: block;
  color: var(--accent-glow);
  font-family: "Fira Code", monospace;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
  animation: glitch-flicker 8s infinite;
  background: rgba(16, 185, 129, 0.05);
  padding: 8px 12px;
  border-left: 2px solid var(--accent-glow);
  width: fit-content;
}

.contact-info h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-info p.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 35px;
}

.label-header {
  font-size: 0.7rem;
  color: var(--accent-glow);
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-family: monospace;
}

.email-display {
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 30px;
  transition: 0.3s;
  font-weight: 500;
}

.email-display:hover {
  color: var(--accent-glow);
}

.social-links-wrapper {
  display: flex;
  gap: 20px;
}
.social-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.social-link:hover {
  border-color: white;
  color: white;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}
.input-group input,
.input-group textarea {
  background: var(--card-glass);
  border: none;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 10px;
  font-size: 1rem;
  color: white;
  outline: none;
  transition: 0.4s;
  backdrop-filter: blur(10px);
}
.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: var(--accent-glow);
  background: rgba(16, 185, 129, 0.03);
}

.submit-btn {
  background: white;
  color: black;
  border: none;
  padding: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.site-footer {
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  opacity: 0.4;
  font-size: 0.65rem;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
