/* ===========================================================
   W3M — WhatsWrongWithMe? — Design Tokens
   =========================================================== */
:root {
  --bg: #08080d;
  --surface: #12121c;
  --surface-2: #191926;
  --border: #24243570;
  --text: #f5f5f8;
  --text-muted: #9a9ab0;

  --blue: #3b82f6;
  --violet: #8b5cf6;
  --pink: #ec4899;

  --gradient: linear-gradient(115deg, var(--blue) 0%, var(--violet) 55%, var(--pink) 100%);

  --font-display: "Poppins", "Century Gothic", Futura, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --radius: 16px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Background ambience: soft blurred brand-color blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 13, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.nav-toggle { display: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
}

/* ---------- Kicker / eyebrow ---------- */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}
.hero .glow.g1 { width: 420px; height: 420px; background: var(--blue); top: -140px; left: -120px; }
.hero .glow.g2 { width: 460px; height: 460px; background: var(--pink); bottom: -180px; right: -140px; }

.hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -2px;
  margin: 0 0 22px;
}
.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 18px;
}
.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }

/* ---------- Ghost numeral watermark (brand signature) ---------- */
.numeral-mark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 560px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffff14;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ---------- Section shell ---------- */
.section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
  margin: 0 0 14px;
}
.section-head p { color: var(--text-muted); font-size: 16px; margin: 0; }

/* ---------- Cards / grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  z-index: 1;
}
.card .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  display: block;
}
.card h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 10px; font-weight: 700; }
.card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* ---------- About page specifics ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split h2 { font-family: var(--font-display); font-size: clamp(26px,4vw,36px); font-weight: 800; letter-spacing: -1px; margin: 0 0 18px; }
.split p { color: var(--text-muted); font-size: 16px; margin: 0 0 16px; }

.value-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.value-panel .big3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 90px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info h2 { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -1px; margin: 0 0 16px;}
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-info .info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; font-size: 15px; }
.contact-info .info-item strong { display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }

form.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.field input, .field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--violet); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-muted); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
footer .foot-logo { font-family: var(--font-display); font-weight: 800; color: var(--text); margin-bottom: 8px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
