:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --panel: #111821;
  --panel-2: #0e141c;
  --text: #e9eef6;
  --muted: #a5b2c2;
  --line: #243042;
  --accent: #4f8cff;
  --accent-hover: #6ba0ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 75% -10%, #1a2a42, var(--bg));
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(960px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero {
  padding: 3.5rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent-hover);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
  max-width: 18ch;
}

.subhead {
  color: var(--muted);
  max-width: 56ch;
  margin: 1rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.hero-card {
  margin-top: 1.6rem;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  max-width: 620px;
}

.hero-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.card-title {
  font-weight: 600;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(330px, 86vw);
  border-radius:  20px;

}


.features {
  padding: 1.2rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.feature h2 {
  margin: 0;
  font-size: 1.05rem;
}

.feature p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.waitlist {
  padding: 1rem 0 3rem;
}

.waitlist h2 {
  margin-bottom: 0.35rem;
}

.waitlist p {
  color: var(--muted);
}

.waitlist-form {
  margin-top: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.38rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0b121b;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(79, 140, 255, 0.35);
  border-color: var(--accent);
}

.btn {
  display: inline-block;
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: #182334;
  color: var(--text);
}

.btn-secondary:hover {
  background: #223049;
}

.btn-small {
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
}

.hidden {
  position: absolute;
  left: -9999px;
}

.success {
  margin-top: 0.85rem;
  color: #9bddae;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.93rem;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    justify-content: flex-start;
  }
}

/* Color Palette from Discussion */
:root {
  --ma-red: #ef4444;
  --rw-blue: #3b82f6;
  --rec-green: #22c55e;
  --bg-dark: #111827;
}

.phone-screen {
  background: var(--bg-dark);
  color: white;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.mock-item {
  background: #1f2937;
  border-left: 4px solid #9ca3af;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
}

/* Color Coding the 3 Pillars */
.mock-item.martial-arts { border-left-color: var(--ma-red); }
.mock-item.roadwork { border-left-color: var(--rw-blue); }
.mock-item.recovery { border-left-color: var(--rec-green); }

.mock-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 4px;
  opacity: 0.8;
}

.readiness-pill {
  background: rgba(34, 197, 94, 0.2);
  color: var(--rec-green);
  border: 1px solid var(--rec-green);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.fit {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: rgba(79, 140, 255, 0.35)  0px 8px 24px;
}