@import url('https://fonts.googleapis.com/css2?family=League+Script&family=Montserrat:wght@400;600&display=swap');

:root {
  --bg: #0a0d20;
  --surface: #13183a;
  --surface-2: #1e2650;
  --primary: #5479ff;
  --primary-2: #a855f7;
  --accent: #4ade80;
  --text: #f0f1f5;
  --text-muted: #c4c5d7;
  --border: rgba(84, 121, 255, 0.15);
  --radius: 1rem;
}

* { box-sizing: border-box; }

h1, h2, h3 { font-family: 'Ultra', serif; font-weight: 400; }

body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(rgba(10, 13, 32, 0.8), rgba(10, 13, 32, 0.8)), var(--bg) url('/M4M_back_05.png') no-repeat center center fixed;
  background-size: cover, 400%;
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  background: rgba(19, 24, 58, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a { color: var(--text-muted); }
.site-nav a:hover { color: var(--text); text-decoration: none; }

.site-main { min-height: 60vh; }

.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(84, 121, 255, 0.12), transparent 60%);
}

.hero h1 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #c4c5d7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(84, 121, 255, 0.25);
}

.features {
  padding: 3rem 0;
}

.features h2 {
  text-align: center;
  font-size: 1.3125rem;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature h3 { margin: 0 0 0.5rem; color: var(--accent); font-family: 'Ultra', serif; font-size: 1.125rem; font-weight: 400; }
.feature p { margin: 0; color: var(--text-muted); }

.cta {
  text-align: center;
  padding: 4rem 0 5rem;
}

.cta h2 { margin: 0 0 1.25rem; }

.legal {
  padding: 3rem 0 5rem;
  max-width: 780px;
}

.legal h1 { font-size: 1rem; margin-bottom: 1.5rem; }
.legal h2 { font-size: 0.625rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--accent); }
.legal h3 { font-size: 0.55rem; margin-top: 1.5rem; color: var(--text); }
.legal p { color: var(--text-muted); margin: 0.75rem 0; }
.legal ul, .legal ol { color: var(--text-muted); padding-left: 1.25rem; }
.legal li { margin: 0.4rem 0; }
.legal strong { color: var(--text); }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0; color: var(--text-muted); }
.legal th, .legal td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--border); text-align: left; }
.legal hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }

.contact-page {
  max-width: 680px;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.contact-intro { text-align: center; margin-bottom: 2rem; }
.contact-intro h1 { font-size: 1.35rem; margin: 0.25rem 0 0.75rem; }
.contact-intro > p:last-child { color: var(--text-muted); margin: 0; }
.eyebrow { color: var(--accent); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin: 0; }

.contact-form {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(19, 24, 58, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row label { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.form-row input, .form-row textarea {
  width: 100%;
  border: 1px solid rgba(196, 197, 215, 0.25);
  border-radius: 0.65rem;
  background: rgba(10, 13, 32, 0.8);
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.85rem;
}
.form-row textarea { resize: vertical; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--primary); outline: 2px solid rgba(84, 121, 255, 0.2); }
.contact-form .btn { border: 0; cursor: pointer; font: inherit; }
.contact-form .btn:disabled { cursor: wait; opacity: 0.65; transform: none; }
.form-status { min-height: 1.6em; margin: 1rem 0 0; color: var(--text-muted); font-size: 0.9rem; }
.form-status[data-state="success"] { color: var(--accent); }
.form-status[data-state="error"] { color: #fda4af; }
.contact-alternative { color: var(--text-muted); font-size: 0.85rem; margin: 0.5rem 0 0; }

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--text); }

.copyright { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.0125rem; }
  .site-header .container { height: 56px; }
  .site-nav { gap: 1rem; font-size: 0.9rem; }
  .contact-page { padding-top: 2.5rem; }
  .contact-form { padding: 1.25rem; }
}
