 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 :root {
     --bg: #0d0d0d;
     --card: #141414;
     --card-2: #1a1a1a;
     --primary: #00ff9d;
     --beige: #f2e4cc;
     --border: rgba(255, 255, 255, 0.06);
     --border-2: rgba(255, 255, 255, 0.08);
     --text: #ffffff;
     --text-muted: rgba(255, 255, 255, 0.55);
     --text-faint: rgba(255, 255, 255, 0.4);
     --radius: 16px;
     --font-heading: 'Inter', ui-sans-serif, system-ui, sans-serif;
     --font-mono: 'JetBrains Mono', ui-monospace, monospace;
     --pad-x: clamp(1.5rem, 8vw, 8rem);
 }

 body {
     background: var(--bg);
     color: var(--text);
     font-family: var(--font-heading);
     line-height: 1.5;
     -webkit-font-smoothing: antialiased;
 }

 ::selection {
     background: rgba(0, 255, 157, 0.2);
 }

 ::-webkit-scrollbar {
     width: 4px;
 }

 ::-webkit-scrollbar-track {
     background: #0d1117;
 }

 ::-webkit-scrollbar-thumb {
     background: #1e2a38;
     border-radius: 2px;
 }

 .section {
     padding: clamp(4rem, 8vw, 8rem) var(--pad-x);
 }

 .mono-xs {
     font-family: var(--font-mono);
     font-size: 0.75rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
 }

 .slide-up {
     opacity: 0;
     transform: translateY(40px);
     animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
 }

 @keyframes slideUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .slide-left {
     opacity: 0;
     transform: translateX(-30px);
     animation: slideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
 }

 @keyframes slideLeft {
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .slide-right {
     opacity: 0;
     transform: translateX(30px);
     animation: slideRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
 }

 @keyframes slideRight {
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .back-link {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     font-family: var(--font-mono);
     font-size: 0.75rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--text-muted);
     transition: color 0.2s;
     margin-bottom: 3rem;
 }

 .back-link:hover {
     color: var(--primary);
 }

 .back-link .lucide {
     width: 14px;
     height: 14px;
 }

 .hero {
     padding-top: 8rem;
     padding-bottom: 6rem;
 }

 .hero-label {
     color: var(--primary);
 }

 .hero-h1 {
     font-family: var(--font-heading);
     font-weight: 900;
     font-size: clamp(3rem, 8vw, 6rem);
     letter-spacing: -0.04em;
     line-height: 0.9;
     margin-top: 1.5rem;
 }

 @media (min-width: 768px) {
     .hero-h1 {
         font-size: clamp(4rem, 7vw, 5rem);
     }
 }

 @media (min-width: 1024px) {
     .hero-h1 {
         font-size: clamp(4.5rem, 7vw, 6rem);
     }
 }

 .hero-h1 .alt {
     color: var(--beige);
 }

 .hero-desc {
     margin-top: 2rem;
     font-size: 1.125rem;
     color: var(--text-muted);
     max-width: 36rem;
     line-height: 1.6;
 }

 .ambient {
     padding-bottom: 3rem;
 }

 .ambient-img {
     position: relative;
     overflow: hidden;
     border-radius: var(--radius);
     height: 260px;
 }

 .ambient-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.3;
 }

 .ambient-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, #0d0d0d 0%, transparent 50%, #0d0d0d 100%);
 }

 .content {
     padding-bottom: 8rem;
     display: grid;
     grid-template-columns: 1fr;
     gap: 4rem;
 }

 @media (min-width: 1024px) {
     .content {
         grid-template-columns: 1fr 1fr;
         gap: 4rem;
     }
 }

 .infos h2,
 .form-wrap h2 {
     font-family: var(--font-heading);
     font-weight: 700;
     font-size: 1.5rem;
     margin-bottom: 2.5rem;
 }

 .info-list {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     margin-bottom: 4rem;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     gap: 1.25rem;
     padding: 1.5rem;
     background: var(--card-2);
     border-radius: 12px;
 }

 .info-icon {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 8px;
     flex-shrink: 0;
     background: rgba(0, 255, 157, 0.08);
 }

 .info-icon .lucide {
     width: 20px;
     height: 20px;
     color: var(--primary);
 }

 .info-label {
     font-family: var(--font-mono);
     font-size: 0.75rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     margin-bottom: 0.25rem;
     color: var(--text-faint);
 }

 .info-value {
     font-family: var(--font-heading);
     font-weight: 600;
 }

 .callout {
     padding: 2rem;
     background: var(--card);
     border-radius: var(--radius);
     border-left: 2px solid rgba(242, 228, 204, 0.3);
 }

 .callout h3 {
     font-family: var(--font-heading);
     font-weight: 700;
     font-size: 1.125rem;
     margin-bottom: 0.75rem;
     color: var(--beige);
 }

 .callout p {
     font-size: 0.875rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.5);
 }

 .form-wrap {
     min-height: 100%;
 }

 form {
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
 }

 .field {
     display: flex;
     flex-direction: column;
 }

 .field label {
     font-family: var(--font-mono);
     font-size: 0.75rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     margin-bottom: 0.5rem;
     color: var(--text-faint);
 }

 .field input,
 .field textarea {
     width: 100%;
     padding: 1rem 1.25rem;
     font-size: 0.875rem;
     color: var(--text);
     background: var(--card-2);
     border: 1px solid var(--border-2);
     border-radius: 10px;
     outline: none;
     font-family: var(--font-heading);
     transition: border-color 0.2s;
 }

 .field input::placeholder,
 .field textarea::placeholder {
     color: rgba(255, 255, 255, 0.25);
 }

 .field input:focus,
 .field textarea:focus {
     border-color: var(--primary);
 }

 .field textarea {
     resize: none;
 }

 .submit-btn {
     margin-top: 0.5rem;
     font-family: var(--font-mono);
     font-size: 0.75rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     padding: 1.25rem 2rem;
     background: var(--primary);
     color: #0d0d0d;
     border: none;
     border-radius: 10px;
     font-weight: 700;
     cursor: pointer;
     transition: box-shadow 0.3s;
 }

 .submit-btn:hover {
     box-shadow: 0 0 40px rgba(0, 255, 157, 0.2);
 }

 .success {
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 6rem 0;
     min-height: 100%;
 }

 .success.show {
     display: flex;
 }

 .success-circle {
     width: 64px;
     height: 64px;
     border-radius: 9999px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     background: rgba(0, 255, 157, 0.1);
 }

 .success-check {
     font-size: 1.5rem;
     color: var(--primary);
 }

 .success h3 {
     font-family: var(--font-heading);
     font-weight: 900;
     font-size: 1.5rem;
     margin-bottom: 0.75rem;
 }

 .success p {
     color: var(--text-muted);
     font-size: 0.875rem;
     max-width: 24rem;
 }

 @media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
         animation-duration: 0.01ms !important;
         transition-duration: 0.01ms !important;
     }
 }