/*
Theme Name: Navance Launch
Theme URI: https://navance.ai
Author: Navance
Description: Lightweight launch theme for the Navance draft website.
Version: 0.1.15
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: navance-launch
*/

:root {
  --nv-deep: #0a0f1f;
  --nv-deep-2: #10182d;
  --nv-blue: #2765ff;
  --nv-cyan: #00d4ff;
  --nv-magenta: #ff4db5;
  --nv-coral: #ff7a3d;
  --nv-gold: #ffc857;
  --nv-white: #ffffff;
  --nv-ink: #101525;
  --nv-muted: #5f6f87;
  --nv-surface: #f6f9ff;
  --nv-line: rgba(255, 255, 255, 0.16);
  --nv-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color-scheme: dark light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--nv-deep);
  color: var(--nv-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

body.nv-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--nv-cyan);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nv-shell,
.wp-block-group__inner-container {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.wp-site-blocks {
  min-height: 100vh;
}

.nv-site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(10, 15, 31, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.nv-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nv-brand {
  display: inline-flex;
  align-items: center;
  color: var(--nv-white);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.nv-logo {
  width: 184px;
  max-width: 44vw;
  height: auto;
  display: block;
}

.nv-logo-footer {
  width: 170px;
}

.nv-mark {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    #071026;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 30px rgba(39, 101, 255, 0.28);
}

.nv-mark::before,
.nv-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  transform: rotate(-36deg);
}

.nv-mark::before {
  width: 14px;
  height: 47px;
  left: 10px;
  top: 1px;
  background: linear-gradient(180deg, var(--nv-cyan), var(--nv-blue) 52%, var(--nv-magenta));
}

.nv-mark::after {
  width: 13px;
  height: 44px;
  right: 9px;
  top: -1px;
  background: linear-gradient(180deg, var(--nv-gold), var(--nv-coral), var(--nv-magenta));
}

.nv-nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nv-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nv-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nv-nav a,
.nv-nav-list a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nv-nav a:hover,
.nv-nav a:focus-visible,
.nv-nav-list a:hover,
.nv-nav-list a:focus-visible {
  color: var(--nv-white);
}

.nv-menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--nv-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--nv-white);
}

.nv-menu-toggle span,
.nv-menu-toggle::before,
.nv-menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
}

.nv-menu-toggle span {
  margin: 5px 0;
}

.nv-button,
.wp-block-button__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nv-button:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}

.nv-button-primary,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: linear-gradient(135deg, var(--nv-blue), #1644c8);
  color: var(--nv-white);
  box-shadow: 0 12px 30px rgba(39, 101, 255, 0.3);
}

.nv-button-secondary,
.is-style-outline .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: var(--nv-white);
}

.nv-light .nv-button-secondary,
.nv-light .is-style-outline .wp-block-button__link {
  border-color: rgba(39, 101, 255, 0.26);
  background: rgba(39, 101, 255, 0.08);
  color: var(--nv-ink);
}

main {
  background: var(--nv-deep);
}

.nv-section,
.wp-block-group.nv-section {
  padding: 92px 0;
}

.nv-hero {
  min-height: 86vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 132px 0 92px;
  background:
    linear-gradient(90deg, rgba(10, 15, 31, 0.96) 0%, rgba(10, 15, 31, 0.82) 48%, rgba(10, 15, 31, 0.42) 100%),
    url("assets/navance-hero-horizon.jpg") center / cover no-repeat,
    linear-gradient(180deg, #030712 0%, var(--nv-deep) 64%, #051634 100%);
}

.nv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background-image:
    radial-gradient(circle at 4% 18%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.8px),
    radial-gradient(circle at 9% 62%, rgba(0, 212, 255, 0.42) 0 1px, transparent 1.7px),
    radial-gradient(circle at 16% 33%, rgba(255, 255, 255, 0.4) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.8px),
    radial-gradient(circle at 31% 22%, rgba(0, 212, 255, 0.32) 0 1px, transparent 1.6px),
    radial-gradient(circle at 42% 57%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.9px),
    radial-gradient(circle at 51% 13%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1.6px),
    radial-gradient(circle at 61% 35%, rgba(0, 212, 255, 0.26) 0 1px, transparent 1.7px),
    radial-gradient(circle at 74% 11%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.8px),
    radial-gradient(circle at 83% 68%, rgba(255, 255, 255, 0.38) 0 1.2px, transparent 2px),
    radial-gradient(circle at 94% 30%, rgba(0, 212, 255, 0.3) 0 1px, transparent 1.7px),
    radial-gradient(circle at 98% 76%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1.7px);
  background-repeat: no-repeat;
  z-index: -2;
}

.nv-hero-copy {
  max-width: 740px;
}

.nv-eyebrow {
  margin: 0 0 16px;
  color: var(--nv-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
.wp-block-heading {
  margin-top: 0;
  color: inherit;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

h1,
.nv-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.8rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.36rem;
  line-height: 1.24;
}

p {
  margin-top: 0;
}

.nv-lede,
.nv-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.nv-light .nv-lede,
.nv-light p,
.nv-light li {
  color: var(--nv-muted);
}

.nv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.nv-signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--nv-line);
  border-bottom: 1px solid var(--nv-line);
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.28), rgba(255, 77, 181, 0.2), rgba(255, 200, 87, 0.18)),
    rgba(255, 255, 255, 0.1);
}

.nv-signal {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 26px 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 212, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 24, 45, 0.98), rgba(7, 12, 28, 0.98));
}

.nv-signal::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--nv-cyan), var(--nv-magenta), var(--nv-gold));
  opacity: 0.86;
}

.nv-signal strong {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.08;
}

.nv-signal span {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.35;
}

.nv-light {
  background: var(--nv-surface);
  color: var(--nv-ink);
}

.nv-light .nv-eyebrow {
  color: var(--nv-blue);
}

.nv-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--nv-deep);
  color: var(--nv-white);
}

.nv-section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.nv-section-head p {
  max-width: 620px;
  margin: 0;
}

.nv-grid {
  display: grid;
  gap: 18px;
}

.nv-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nv-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nv-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nv-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.nv-light .nv-card {
  border-color: rgba(16, 21, 37, 0.12);
  background: var(--nv-white);
  color: var(--nv-ink);
  box-shadow: 0 18px 50px rgba(16, 21, 37, 0.08);
}

.nv-card-accent {
  background:
    linear-gradient(180deg, rgba(10, 15, 31, 0.16), rgba(10, 15, 31, 0.96)),
    linear-gradient(135deg, #0a0f1f, #13254b);
  color: var(--nv-white);
}

.nv-card p,
.nv-card li {
  color: rgba(255, 255, 255, 0.72);
}

.nv-light .nv-card p,
.nv-light .nv-card li {
  color: var(--nv-muted);
}

.nv-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.nv-pill-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.nv-light .nv-pill-list li {
  border-color: rgba(39, 101, 255, 0.22);
  color: var(--nv-ink);
  background: rgba(39, 101, 255, 0.07);
}

.nv-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--nv-deep);
  color: var(--nv-cyan);
  font-weight: 800;
}

.nv-gradient-rule {
  width: 74px;
  height: 4px;
  margin: 0 0 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nv-cyan), var(--nv-magenta), var(--nv-gold));
}

.nv-founder-portrait {
  position: relative;
}

.nv-founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--nv-shadow);
}

.nv-founder-credential {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(78%, 310px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(5, 9, 21, 0.84);
  color: var(--nv-white);
  backdrop-filter: blur(12px);
}

.nv-founder-credential strong {
  display: block;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.04rem;
  line-height: 1.2;
}

.nv-founder-credential span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.nv-proof-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.nv-proof-list li {
  position: relative;
  padding-left: 24px;
}

.nv-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nv-cyan), var(--nv-magenta));
}

.nv-timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 37, 0.12);
  border-radius: 8px;
  background: rgba(16, 21, 37, 0.1);
}

.nv-timeline-item {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 22px;
  padding: 22px;
  background: #ffffff;
}

.nv-timeline-item strong {
  color: var(--nv-blue);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nv-timeline-item h3 {
  margin-bottom: 6px;
}

.nv-timeline-item p {
  margin-bottom: 0;
}

.nv-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.nv-page-hero {
  padding: 118px 0 74px;
  background:
    linear-gradient(90deg, rgba(10, 15, 31, 0.96), rgba(10, 15, 31, 0.62)),
    url("assets/navance-hero-horizon.jpg") center / cover no-repeat,
    var(--nv-deep);
}

.nv-page-hero h1 {
  font-size: 4rem;
}

.nv-list {
  padding-left: 1.15rem;
}

.nv-list li + li {
  margin-top: 8px;
}

.nv-form-card {
  padding: 30px;
}

.nv-form-card .wpcf7 {
  margin-top: 18px;
}

.nv-form-card .wpcf7 p {
  margin-bottom: 18px;
}

.nv-form-card .wpcf7 label {
  display: grid;
  gap: 7px;
  color: var(--nv-ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.nv-form-card .wpcf7 input[type="text"],
.nv-form-card .wpcf7 input[type="email"],
.nv-form-card .wpcf7 select,
.nv-form-card .wpcf7 textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 21, 37, 0.18);
  border-radius: 8px;
  padding: 11px 12px;
  background: #ffffff;
  color: var(--nv-ink);
  font-size: 1rem;
  line-height: 1.35;
}

.nv-form-card .wpcf7 textarea {
  min-height: 142px;
  resize: vertical;
}

.nv-form-card .wpcf7 input[type="submit"] {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--nv-blue), #1644c8);
  color: var(--nv-white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(39, 101, 255, 0.24);
}

.nv-form-card .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b3203b;
  font-size: 0.88rem;
  font-weight: 700;
}

.nv-form-card .wpcf7-response-output {
  margin: 18px 0 0;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--nv-ink);
  font-weight: 700;
}

.nv-form-note {
  border-left: 3px solid var(--nv-coral);
  padding-left: 12px;
  color: var(--nv-muted);
  font-size: 0.9rem;
}

.nv-cta-band {
  padding: 74px 0;
  background:
    linear-gradient(135deg, rgba(39, 101, 255, 0.26), rgba(255, 77, 181, 0.12)),
    var(--nv-deep);
  border-top: 1px solid var(--nv-line);
  border-bottom: 1px solid var(--nv-line);
}

.nv-cta-band .nv-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.nv-cta-band p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.nv-site-footer {
  padding: 48px 0;
  background: #050915;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.nv-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.nv-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nv-footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.nv-footer-links a:hover {
  color: var(--nv-white);
}

@media (max-width: 980px) {
  .nv-menu-toggle {
    display: grid;
  }

  .nv-nav-wrap {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 24px 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 15, 31, 0.98);
  }

  body.nv-menu-open .nv-nav-wrap {
    display: block;
  }

  .nv-nav {
    display: grid;
    gap: 14px;
  }

  .nv-nav-list {
    display: grid;
    gap: 14px;
  }

  .nv-nav a,
  .nv-nav-list a,
  .nv-nav-wrap .nv-button {
    width: 100%;
    justify-content: flex-start;
  }

  .nv-nav-wrap .nv-button {
    margin-top: 18px;
  }

  h1,
  .nv-hero h1,
  .nv-page-hero h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .nv-section-head,
  .nv-split,
  .nv-cta-band .nv-shell,
  .nv-footer-inner {
    grid-template-columns: 1fr;
  }

  .nv-timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nv-grid-4,
  .nv-grid-3,
  .nv-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nv-signal-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .nv-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nv-shell,
  .wp-block-group__inner-container {
    width: min(100% - 28px, 1180px);
  }

  .nv-header-inner {
    min-height: 68px;
  }

  .nv-nav-wrap {
    inset: 68px 0 auto 0;
  }

  .nv-logo {
    width: 150px;
    max-width: 56vw;
  }

  .nv-mark {
    width: 36px;
    height: 36px;
  }

  .nv-hero {
    min-height: 82vh;
    padding: 112px 0 72px;
  }

  .nv-section,
  .wp-block-group.nv-section {
    padding: 68px 0;
  }

  h1,
  .nv-hero h1,
  .nv-page-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nv-grid-4,
  .nv-grid-3,
  .nv-grid-2,
  .nv-signal-row {
    grid-template-columns: 1fr;
  }

  .nv-card {
    padding: 22px;
  }

  .nv-founder-credential {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .nv-actions {
    display: grid;
  }

  .nv-button,
  .wp-block-button__link {
    width: 100%;
  }
}

/* Accessibility, responsive navigation, and form refinements. */
.nv-timeline-item {
  color: var(--nv-ink);
}

.nv-timeline-item h3 {
  color: var(--nv-ink);
}

.nv-timeline-item p {
  color: var(--nv-muted);
}

.nv-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(calc(-100% - 24px));
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--nv-white);
  color: var(--nv-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.nv-skip-link:focus,
.nv-skip-link:focus-visible {
  transform: translateY(0);
}

#navance-contact-form {
  scroll-margin-top: 96px;
}

.nv-required {
  color: #8a1734;
  font-weight: 800;
}

.nv-form-instructions,
.nv-form-privacy {
  color: var(--nv-muted);
  font-size: 0.9rem;
}

.nv-form-card .wpcf7 p > label {
  margin-bottom: 7px;
}

.nv-form-card .wpcf7 fieldset.nv-human-check {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}

.nv-form-card .wpcf7 fieldset.nv-human-check legend {
  margin: 0 0 7px;
  color: var(--nv-ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .nv-menu-toggle {
    display: grid;
  }

  .nv-nav-wrap {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 24px 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 15, 31, 0.98);
  }

  body.nv-menu-open .nv-nav-wrap {
    display: block;
  }

  .nv-nav,
  .nv-nav-list {
    display: grid;
    gap: 0;
  }

  .nv-nav-list a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 9px 0;
  }

  .nv-nav-wrap .nv-button {
    width: 100%;
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .nv-nav-wrap {
    inset: 68px 0 auto 0;
    max-height: calc(100dvh - 68px);
  }
}

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

  .nv-skip-link,
  .nv-button,
  .wp-block-button__link {
    transition: none;
  }

  .nv-button:hover,
  .wp-block-button__link:hover {
    transform: none;
  }
}

/* Claude Fable v2 review fixes: proof, resources, footer, and Contact Form 7 layout. */
.nv-proof blockquote,
.nv-proof-panel blockquote {
  margin: 0 0 14px;
}

.nv-proof blockquote p,
.nv-proof-panel blockquote p {
  margin: 0;
  color: inherit;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
}

.nv-proof-card figcaption {
  color: rgba(255, 255, 255, 0.86);
}

.nv-proof-note {
  margin-top: 16px;
  font-size: 0.86rem;
}

.nv-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
  margin-top: 36px;
  border: 1px solid rgba(16, 21, 37, 0.12);
  border-radius: 8px;
  padding: 26px;
  background: var(--nv-surface);
  color: var(--nv-ink);
}

.nv-resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.nv-footer-copy > p {
  max-width: 560px;
  margin-bottom: 0;
}

.nv-footer-legal {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.nv-footer-links {
  max-width: 680px;
}

.nv-form-card .wpcf7 p > br,
.nv-form-card .wpcf7 label > br,
.nv-form-card .wpcf7 legend > br {
  display: none;
}

.nv-form-card .wpcf7 label {
  display: block;
  gap: 0;
}

.nv-form-card .wpcf7 p > label {
  margin: 0 0 7px;
}

.nv-form-card .wpcf7 .nv-required {
  display: inline;
  margin-left: 0.2em;
}

.nv-form-card .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.nv-form-card .wpcf7 fieldset.nv-human-check legend {
  display: block;
}

.nv-form-card .wpcf7 fieldset.nv-human-check .wpcf7-form-control-wrap > label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nv-form-card .wpcf7 fieldset.nv-human-check .wpcf7-quiz-label {
  flex: 0 0 auto;
}

.nv-form-card .wpcf7 fieldset.nv-human-check input[type="text"] {
  max-width: 150px;
}

@media (max-width: 980px) {
  .nv-proof-panel,
  .nv-resource-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nv-proof-panel {
    gap: 20px;
    padding: 22px;
  }

  .nv-form-card .wpcf7 fieldset.nv-human-check .wpcf7-form-control-wrap > label {
    align-items: flex-start;
    flex-direction: column;
  }

  .nv-form-card .wpcf7 fieldset.nv-human-check input[type="text"] {
    max-width: 100%;
  }
}
