/* ============================= */
/* ParkNarc Global Styles        */
/* ============================= */

:root {
  --cyan: #00FFFF;
  --bg: #000000;
  --text: #ffffff;
  --muted: #aaaaaa;
  --border: #222222;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ============================= */
/* Header (Updated)              */
/* ============================= */

.site-header {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;
  padding: 30px 20px 12px; /* More breathing room */
  border-bottom:none;
}
.legal-nav a {
  position: relative;
  padding-bottom: 6px;
}

.legal-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 240, 255, 0.9), rgba(111, 240, 255, 0.25));
  box-shadow: 0 0 18px rgba(111, 240, 255, 0.35);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px; /* More space between logo + text */
  padding-bottom: 10px;
  text-decoration: none;
}

.logo {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(111, 240, 255, 0.18));
}

.brand {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #8bf4ff;
  text-shadow: 0 0 22px rgba(111, 240, 255, 0.25);
}

/* ============================= */
/* Container                     */
/* ============================= */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
/* ============================= */
/* Legal Navigation              */
/* ============================= */

.legal-nav {
  display: flex;
  justify-content: center;
  border-bottom: none;
  padding: 14px 16px;
}

.legal-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(100%, 820px);
  max-width: 100%;
  gap: 28px;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  font-size: clamp(1rem, 2.2vw, 1.875rem);
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.legal-nav a:hover {
  color: var(--cyan);
}

.legal-nav a:hover::after,
.legal-nav a.active::after,
.legal-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Headings */
h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
}

/* Paragraph */
p {
  margin-bottom: 16px;
}

/* Links */
a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}
/* Legal Page Layout */

.container {
  max-width: 700px;       /* Slightly narrower = cleaner */
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;       /* Keeps text left aligned */
}

.container h1 {
  text-align: center;     /* Center just the heading */
  margin-bottom: 40px;
}

.home-links {
  display: flex;
  flex-direction: column;
  align-items: center;    /* Centers the links block */
}

.home-links a {
  width: 100%;
  max-width: 320px;
  text-align: left;       /* Keeps first letters aligned */
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 12px 0;
  transition: background 0.2s ease;
}

.home-links a:hover {
  background: rgba(0,255,255,0.08);
}
/* Legal page links (homepage buttons) */
.home-links a {
  display: block;
  font-size: 18px;
  margin: 18px 0;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 60px;
  font-size: 15px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 80px;
  padding-bottom: 40px;
}

/* Support Form */
.support-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.support-form label {
  font-weight: 600;
  color: var(--text);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 10px;
  background: #111;
  color: var(--text);
  font: inherit;
  box-sizing: border-box;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: var(--muted);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.15);
}

.support-form button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.support-form button:hover {
  opacity: 0.85;
}

/* ============================= */
/* Responsive                    */
/* ============================= */

@media (max-width: 820px) {
  .legal-nav {
    padding: 12px 16px;
  }

  .legal-nav-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 520px);
    gap: 10px 12px;
  }

  .legal-nav a {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(111, 240, 255, 0.16);
    border-radius: 14px;
    background: rgba(7, 13, 24, 0.55);
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .legal-nav a::after {
    left: 14px;
    right: 14px;
    bottom: 8px;
  }

  .legal-nav a.active,
  .legal-nav a[aria-current="page"] {
    color: #d9fbff;
    border-color: rgba(111, 240, 255, 0.35);
    background: rgba(111, 240, 255, 0.1);
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 20px 0;
  }

  .logo {
    height: 50px;
  }

  .brand {
    font-size: 32px;
  }

  h1 {
    font-size: 26px;
  }

  .container {
    padding: 40px 16px;
  }
}

@media (max-width: 420px) {
  .legal-nav-inner {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .legal-nav a {
    font-size: 0.95rem;
    padding: 11px 12px;
  }
}
/* ============================= */
/* ParkNarc Marketing Carousel   */
/* (Add to bottom of styles.css) */
/* ============================= */

.carousel-wrap {
  margin-top: 18px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(0,255,255,0.35);
  box-shadow: 0 12px 26px rgba(0,0,0,0.55);
}

.slides {
  display: flex;
  width: 400%;
  transition: transform 420ms ease;
}

.slide {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 16px;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0b0b0b;
}

.slide h2 {
  margin: 0 0 8px 0;
  font-size: 22px;
  color: var(--text);
}

.slide p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.pill {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,255,255,0.16);
  border: 1px solid rgba(0,255,255,0.35);
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 12px;
}

.btn {
  cursor: pointer;
  user-select: none;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(44,44,46,0.95);
  border: 2px solid rgba(0,255,255,0.35);
  color: var(--cyan);
  font-weight: 700;
  min-width: 92px;
  text-align: center;
  transition: transform 0.08s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  opacity: 0.95;
  border-color: rgba(0,255,255,0.55);
}

.btn:active {
  transform: scale(0.99);
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex: 1;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.dot:hover {
  transform: scale(1.08);
  border-color: rgba(0,255,255,0.45);
}

.dot.active {
  background: rgba(0,255,255,0.9);
  border-color: rgba(0,255,255,0.9);
}

/* Mobile: stack screenshot above text */
@media (max-width: 860px) {
  .slide {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* ParkNarc Homepage Refresh     */
/* ============================= */

body.home-page {
  background:
    radial-gradient(circle at top left, rgba(111, 240, 255, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 122, 89, 0.16), transparent 30%),
    linear-gradient(180deg, #060b16 0%, #04070d 58%, #020305 100%);
  overflow-x: hidden;
}

.home-page .site-header,
.home-page .home-shell,
.home-page footer {
  position: relative;
  z-index: 2;
}

.chase-canvas,
.home-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.chase-canvas {
  z-index: 0;
  opacity: 0.96;
}

.home-atmosphere {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 10, 22, 0.18) 0%, rgba(5, 10, 22, 0.55) 52%, rgba(2, 3, 5, 0.92) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(2, 3, 5, 0.3) 60%, rgba(2, 3, 5, 0.75) 100%);
}

.current-page::after {
  content: "";
  position: absolute;
  left: 86px;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 240, 255, 0.9), rgba(111, 240, 255, 0.25));
  box-shadow: 0 0 18px rgba(111, 240, 255, 0.5);
}

.home-page .container.home-shell {
  max-width: 1160px;
  padding: 32px 20px 72px;
}

.hero-panel {
  display: block;
}

.hero-copy,
.home-page .carousel,
.home-page .controls {
  background: rgba(7, 13, 24, 0.66);
  border: 1px solid rgba(122, 237, 255, 0.18);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  min-height: 420px;
  border-radius: 30px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #8bf4ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(139, 244, 255, 0.7);
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-inline: auto;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 42rem;
  color: rgba(233, 244, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-inline: auto;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.hero-tag {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(139, 244, 255, 0.26);
  background: rgba(111, 240, 255, 0.08);
  color: #d9fbff;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
}

.home-carousel-wrap {
  margin-top: 30px;
}

.section-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-eyebrow {
  margin-bottom: 0;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
}

.section-copy h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.feature-grid {
  display: grid;
  gap: 22px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background: rgba(7, 13, 24, 0.66);
  border: 1px solid rgba(122, 237, 255, 0.18);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.feature-panel img {
  width: min(100%, 350px);
  display: block;
  justify-self: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(111, 240, 255, 0.06);
}

.slide-copy {
  display: grid;
  gap: 14px;
}

.slide-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 89, 0.12);
  border: 1px solid rgba(255, 122, 89, 0.18);
  color: #ffb59c;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.slide-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.slide-copy p {
  margin: 0;
  color: rgba(232, 241, 250, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.home-page .pill {
  width: fit-content;
  margin-top: 4px;
  background: rgba(111, 240, 255, 0.14);
  border-color: rgba(111, 240, 255, 0.26);
  color: #8bf4ff;
}

.home-page footer {
  margin-top: 0;
  padding: 0 20px 32px;
  color: rgba(232, 241, 250, 0.44);
}

@media (max-width: 980px) {
  .hero-panel,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-copy h2 {
    max-width: none;
  }

  .feature-panel img {
    width: min(100%, 330px);
  }
}

@media (max-width: 720px) {
  .home-page .home-header {
    padding: 24px 16px 8px;
  }

  .home-page .container.home-shell {
    padding: 22px 16px 54px;
  }

  .hero-copy,
  .feature-panel {
    padding: 22px;
  }

  .current-page::after {
    left: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-panel {
    transition: none;
  }
}
