:root {
  --bg: #0b0f17;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.48);
  --border: rgba(255, 255, 255, 0.12);

  --brand: #6d5efc;
  --brand2: #22d3ee;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 15% -10%, rgba(109, 94, 252, 0.45),
        rgba(11, 15, 23, 0) 55%),
    radial-gradient(900px 700px at 95% 5%, rgba(34, 211, 238, 0.25),
        rgba(11, 15, 23, 0) 55%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border);
  transform: translateY(-150%);
  transition: transform 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 15, 23, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-image: url("assets/neto-logo.png"),
    linear-gradient(135deg, var(--brand), var(--brand2));
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: 0 0 0 6px rgba(109, 94, 252, 0.12);
}

.brand-name {
  font-size: 15px;
}

.brand-sub {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  color: var(--text);
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.95), rgba(34, 211, 238, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(109, 94, 252, 1), rgba(34, 211, 238, 0.92));
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle-lines {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.9), rgba(109, 94, 252, 0.9));
}

.hero-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
  will-change: transform;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}

.button.primary {
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.95), rgba(34, 211, 238, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.button.primary:hover {
  background: linear-gradient(135deg, rgba(109, 94, 252, 1), rgba(34, 211, 238, 0.92));
}

.button.secondary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
}

.metric {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.metric-value {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.metric-label {
  color: var(--faint);
  font-size: 12px;
  margin-top: 4px;
}

.hero-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(0);
  animation: floatIn 700ms ease both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-red {
  background: rgba(239, 68, 68, 0.9);
}

.dot-yellow {
  background: rgba(245, 158, 11, 0.9);
}

.dot-green {
  background: rgba(34, 197, 94, 0.9);
}

.hero-card-title {
  margin-left: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero-card-body {
  padding: 16px 16px 18px;
}

.skeleton-row {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12));
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  margin-bottom: 12px;
}

.skeleton-row.short {
  width: 70%;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.skeleton-tile {
  height: 74px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 40px;
}

.hero-logos-label {
  color: var(--faint);
  font-size: 13px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.logo {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: radial-gradient(1000px 900px at 30% 10%, rgba(109, 94, 252, 0.15), rgba(11, 15, 23, 0) 60%),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.panel {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 14px;
}

.panel-row {
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

.panel-row + .panel-row {
  margin-top: 10px;
}

.panel-k {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 650;
}

.panel-v {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.card-title {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.card-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.card-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.card-link::after {
  content: "→";
  opacity: 0.8;
}

.card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.step-number {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.55);
}

.step-title {
  margin: 10px 0 6px;
  letter-spacing: -0.02em;
}

.step-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.callout {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.18), rgba(34, 211, 238, 0.09));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.callout-title {
  margin: 0 0 4px;
}

.callout-text {
  margin: 0;
  color: var(--muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quote {
  margin: 0;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.quote blockquote {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.quote-name {
  display: block;
  font-weight: 700;
}

.quote-role {
  display: block;
  color: var(--faint);
  font-size: 13px;
  margin-top: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.feature-title {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.feature-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.post {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 16px;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.post:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.post-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.post-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.post-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.post-title {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.post-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.post-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.post-link::after {
  content: "→";
  opacity: 0.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 16px;
}

.price-card.featured {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(109, 94, 252, 0.22);
  border: 1px solid rgba(109, 94, 252, 0.3);
  color: rgba(255, 255, 255, 0.88);
}

.price-head {
  display: grid;
  gap: 4px;
}

.price-title {
  margin: 0;
}

.price-tag {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0;
}

.price-list {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 650;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.contact-title {
  margin: 0 0 6px;
}

.contact-text {
  margin: 0 0 14px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-detail {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.contact-k {
  font-size: 12px;
  color: var(--faint);
}

.contact-v {
  font-weight: 600;
}

.form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  outline: none;
  transition: border 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus {
  border: 1px solid rgba(34, 211, 238, 0.45);
  background: rgba(0, 0, 0, 0.28);
}

.form-note {
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.site-footer {
  padding: 34px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 14px;
  align-items: start;
}

.footer-brand-row {
  margin-bottom: 10px;
}

.footer-text {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.footer-small {
  color: var(--faint);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .hero {
    padding: 58px 0 36px;
  }

  .hero-logos {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .card,
  .hero-card {
    transition: none;
    animation: none;
  }
}
