* {
  box-sizing: border-box;
}

:root {
  --bg: #08121a;
  --surface: #0f1d28;
  --surface-2: #132634;
  --text: #eef6fb;
  --muted: #9db0bc;
  --line: #253945;
  --accent: #47d7c8;
  --accent-2: #9af2e7;
  --dark: #061016;
  --white: #ffffff;
  --warning: #f4c95d;
  --critical: #f26b6b;
  --healthy: #56d38b;
  --shadow: 0 16px 45px rgba(0,0,0,.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 18, 26, .9);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: var(--dark);
  font-size: .86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c9d6dd;
  font-weight: 600;
  font-size: .94rem;
}

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

.nav-cta {
  border: 1px solid var(--line);
  padding: 10px 15px;
  border-radius: 10px;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.2rem;
}

.hero {
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 85% 20%, rgba(71,215,200,.14), transparent 35%),
    linear-gradient(180deg, #08121a 0%, #0a1620 100%);
}

.hero-grid,
.assessment-grid,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  letter-spacing: -.055em;
  max-width: 930px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  letter-spacing: -.04em;
}

h3 {
  font-size: 1.32rem;
  letter-spacing: -.02em;
}

.hero-copy,
.section-head p,
.about-grid p,
.contact p,
.assessment p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 11px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: .95rem;
}

.btn.primary {
  background: var(--accent);
  color: var(--dark);
}

.btn.primary:hover {
  background: var(--accent-2);
}

.btn.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.02);
}

.btn.secondary:hover {
  background: rgba(255,255,255,.05);
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
  color: #b9c9d2;
  font-size: .88rem;
  font-weight: 600;
}

.hero-card,
.card,
.price-card,
.check-card,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 22px;
  padding: 30px;
}

.hero-card ul,
.price-card ul,
.checklist {
  padding-left: 20px;
  color: #c3d0d8;
}

.hero-card li,
.price-card li,
.checklist li {
  margin: 10px 0;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--healthy);
  box-shadow: 0 0 0 6px rgba(86,211,139,.12);
  margin-bottom: 22px;
}

.small-label {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--muted);
}

.problem-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: #0b1821;
}

.problem-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.problem-strip p {
  margin: 0;
  color: var(--muted);
}

.problem-strip strong {
  color: var(--accent-2);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: #0a1720;
}

.section-head {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-head.compact {
  margin-bottom: 30px;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 28px;
  border-radius: 18px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  font-size: 1.65rem;
  margin-bottom: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.price-card ul {
  flex: 1;
}

.price-card.featured {
  border-color: rgba(71,215,200,.6);
  transform: translateY(-8px);
}

.popular {
  position: absolute;
  top: -14px;
  right: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
  font-size: .75rem;
  padding: 7px 11px;
}

.plan-label {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .12em;
}

.plan-desc {
  color: var(--muted);
  min-height: 82px;
}

.assessment {
  background:
    radial-gradient(circle at 10% 40%, rgba(71,215,200,.10), transparent 35%),
    #09151e;
}

.score-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.score-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
}

.score-list p {
  margin: 0;
  font-size: .95rem;
}

.score {
  font-size: .74rem;
  font-weight: 800;
  text-align: center;
  padding: 6px 8px;
  border-radius: 999px;
  color: #041017;
}

.score.healthy { background: var(--healthy); }
.score.warning { background: var(--warning); }
.score.critical { background: var(--critical); }

.check-card {
  border-radius: 20px;
  padding: 30px;
}

.checklist {
  columns: 2;
  column-gap: 28px;
  margin-bottom: 28px;
}

.about-grid {
  align-items: start;
}

.about-grid p:first-child {
  margin-top: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  border-radius: 999px;
  padding: 11px 16px;
  color: #cad7de;
  font-weight: 700;
  font-size: .9rem;
}

.contact {
  background:
    radial-gradient(circle at 80% 20%, rgba(71,215,200,.12), transparent 34%),
    #08131b;
}

.contact-grid {
  align-items: start;
}

.contact-note {
  margin-top: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 17px;
  background: rgba(71,215,200,.08);
  border: 1px solid rgba(71,215,200,.25);
  border-radius: 12px;
}

.contact-note span {
  color: var(--accent-2);
}

.contact-form {
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 17px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: .84rem;
  font-weight: 700;
  color: #dce8ee;
}

input, textarea, select {
  width: 100%;
  color: var(--text);
  background: #0a1720;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(71,215,200,.08);
}

.form-message {
  margin: 0;
  min-height: 24px;
  font-size: .9rem;
}

footer {
  border-top: 1px solid var(--line);
  background: #061017;
  padding: 42px 0 25px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #b9c7cf;
  font-size: .9rem;
  font-weight: 600;
}

.legal {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #778b97;
  font-size: .8rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .assessment-grid,
  .contact-grid,
  .about-grid,
  .pricing-grid,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    background: #0b1821;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1160px);
  }

  .hero {
    padding-top: 64px;
  }

  .section {
    padding: 70px 0;
  }

  .checklist {
    columns: 1;
  }

  .score-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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


.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 6px 0 2px;
}

.price .amount {
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--white);
}

.price .unit {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}

.minimum {
  margin: 7px 0 18px;
  color: var(--accent-2);
  font-size: .82rem;
  font-weight: 700;
}

.pricing-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
  font-size: .88rem;
}

.pricing-note strong {
  color: var(--text);
}


.bot-field {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.form-message.success {
  color: var(--healthy);
}

.form-message.error {
  color: var(--critical);
}

#contact-submit:disabled {
  opacity: .65;
  cursor: wait;
}




.contact-phone {
  margin-top: 16px;
  font-weight: 700;
  color: var(--text) !important;
}

.contact-phone a,
.contact-note a,
.footer-phone a {
  color: var(--accent-2);
  font-weight: 800;
}

.contact-phone a:hover,
.contact-note a:hover,
.footer-phone a:hover {
  text-decoration: underline;
}

.footer-phone {
  margin-top: 6px !important;
}

.contact-note a {
  color: var(--accent-2);
  font-weight: 800;
}

.contact-note a:hover {
  text-decoration: underline;
}

.footer-email {
  margin-top: 4px !important;
}

.footer-email a {
  color: var(--accent-2);
  font-weight: 700;
}

.footer-email a:hover {
  text-decoration: underline;
}











@media (prefers-reduced-motion: reduce) {
  
}


/* FishNet Tech animated logo: stable header/footer alignment */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  line-height: 1;
}

.brand-logo-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  line-height: 0;
  vertical-align: middle;
}

.header-brand-logo {
  align-self: center;
}

.footer-brand-logo {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.brand-logo-base {
  z-index: 1;
}

.brand-logo-circuit {
  z-index: 2;
  opacity: .18;
  mix-blend-mode: screen;
  animation: fishnetCircuitPulse 1.65s ease-in-out infinite;
  will-change: opacity, filter;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  margin-bottom: 10px;
}

@keyframes fishnetCircuitPulse {
  0%, 100% {
    opacity: .18;
    filter: brightness(1) drop-shadow(0 0 0 rgba(110,255,220,0));
  }
  40% {
    opacity: .72;
    filter: brightness(1.55) drop-shadow(0 0 5px rgba(110,255,220,.65));
  }
  55% {
    opacity: 1;
    filter: brightness(2) drop-shadow(0 0 9px rgba(110,255,220,.95));
  }
  70% {
    opacity: .55;
    filter: brightness(1.35) drop-shadow(0 0 4px rgba(110,255,220,.5));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo-circuit {
    animation: none;
    opacity: .45;
  }
}
