/* MyVoice LLC — home styles (no build chain) */
:root {
  --bg-deep: #0B0F1A;
  --bg-panel: #12182B;
  --bg-card-a: #151B33;
  --bg-card-b: #14162E;
  --bg-muted: #0F1424;
  --stroke: #243056;
  --stroke-a: #2A3560;
  --stroke-b: #3A2F6E;
  --stroke-dash: #2A3148;
  --text: #FFFFFF;
  --text-muted: #A8B3CC;
  --text-soft: #B8C0D9;
  --text-faint: #6B7899;
  --violet: #7C5CFF;
  --cyan: #2EC5FF;
  --eyebrow: #8EA0FF;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-glow: 0 0 80px rgba(124, 92, 255, 0.18);
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(46, 197, 255, 0.08), transparent 55%),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-panel) 55%, #0A1628 100%);
  background-attachment: fixed;
  color-scheme: dark;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--bg-panel);
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 15, 26, 0.78);
  border-bottom: 1px solid rgba(36, 48, 86, 0.65);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

.wordmark:hover {
  text-decoration: none;
  color: var(--text);
}

.wordmark-sm {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  color: var(--text-soft);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: var(--text);
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.28);
}

.btn-primary:hover {
  color: var(--text);
  box-shadow: 0 10px 32px rgba(46, 197, 255, 0.3);
}

.btn-outline-cyan {
  color: var(--cyan);
  background: transparent;
  border-color: var(--cyan);
}

.btn-outline-cyan:hover {
  color: var(--text);
  background: rgba(46, 197, 255, 0.12);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-nav {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  text-align: center;
}

.hero-wave {
  position: absolute;
  inset: 12% 0 auto;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.hero-wave img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.epigraph {
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--text);
  text-wrap: balance;
}

.lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
}

/* About */
.about-strip {
  padding: 1rem 0 3rem;
}

.about-card {
  padding: 1.75rem 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
}

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}

.about-body {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52rem;
}

/* Entrances */
.entrances {
  padding: 2rem 0 3.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2,
.closing h2,
.marketing-placeholder h2,
.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
}

.entrance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.entrance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  overflow: hidden;
  min-height: 100%;
}

.entrance-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.entrance-a {
  background: linear-gradient(160deg, #1A2140 0%, var(--bg-card-a) 100%);
  border-color: var(--stroke-a);
}

.entrance-a .entrance-accent {
  background: var(--cyan);
}

.entrance-a .entrance-badge {
  background: #1E3A55;
  color: #C9D2FF;
}

.entrance-b {
  background: linear-gradient(160deg, #1A1838 0%, var(--bg-card-b) 100%);
  border-color: var(--stroke-b);
}

.entrance-b .entrance-accent {
  background: var(--violet);
}

.entrance-b .entrance-badge {
  background: #2A2255;
  color: #C9D2FF;
}

.entrance-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entrance-title {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
}

.entrance-body {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.entrance-list {
  margin: 0 0 1.75rem;
  padding: 0 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.entrance-list li {
  margin-bottom: 0.45rem;
}

.entrance-list li::marker {
  color: var(--text-faint);
}

.entrance-card .btn {
  margin-top: auto;
}

/* Marketing placeholder */
.marketing {
  padding: 0 0 3.5rem;
}

.marketing-placeholder {
  padding: 2.25rem 2rem;
  border: 1.5px dashed var(--stroke-dash);
  border-radius: var(--radius-lg);
  background: var(--bg-muted);
}

.marketing-note {
  margin: 0 0 1.25rem;
  font-style: italic;
  color: var(--text-faint);
}

.pending-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  background: #1A2035;
  color: #C9D2FF;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Closing */
.closing {
  padding: 0 0 3.5rem;
}

.closing-inner {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
}

.closing-body {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--text-muted);
}

/* Contact */
.contact {
  padding: 0 0 4rem;
}

.contact-card {
  padding: 2rem;
  background: rgba(18, 24, 43, 0.7);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-card p {
  margin: 0;
  color: var(--text-faint);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 2.5rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand p {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  color: var(--text-faint);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-faint);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--text-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .entrance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(11, 15, 26, 0.96);
    border-bottom: 1px solid var(--stroke);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .btn-nav {
    width: 100%;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .about-card,
  .entrance-card,
  .marketing-placeholder,
  .closing-inner,
  .contact-card {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .epigraph {
    font-size: 1.75rem;
  }
}
