:root {
  --bg: #0a0b0c;
  --bg-2: #111418;
  --surface: rgba(18, 22, 27, 0.92);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f6f8f9;
  --muted: #b9c3cc;
  --accent: #2fbf71;
  --accent-2: #9be6b5;
  --shadow: rgba(0, 0, 0, 0.45);
  --max-width: 1140px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

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

body {
  font-family: "Sora", system-ui, sans-serif;
  background: radial-gradient(circle at top, #1a1e22 0%, #0d1013 55%, #07090b 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

img {
  max-width: 100%;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(8, 12, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.logo-mark {
  display: flex;
  align-items: center;
}

.logo img {
  height: 68px;
  width: auto;
  margin-right: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.95;
  font-family: 'Anton', 'Arial Black', sans-serif;
}
.logo-text .correct {
  display: block;
  font-size: 2.15em;
  font-weight: 400;
  color: #228B22;
}

.logo-text .house-watch {
  display: block;
  font-size: 1.3em;
  font-weight: 400;
  color: #ffffff;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  gap: 6px;
  flex-direction: column;
}

.nav-toggle .bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 0 64px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #68e39b);
  color: #0a0b0c;
  box-shadow: 0 12px 30px rgba(47, 191, 113, 0.25);
}

.btn.secondary {
  background: var(--surface-2);
  border-color: var(--border);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta-title {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  color: #7f8ba0;
}

.meta-value {
  font-weight: 600;
  color: var(--text);
}

.hero-preview {
  background: linear-gradient(160deg, rgba(26, 32, 40, 0.9), rgba(7, 9, 11, 0.95));
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px var(--shadow);
}

.hero-preview h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.preview-media {
  position: relative;
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b1016;
}

.preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 14, 0.16) 0%,
    rgba(6, 10, 14, 0.3) 58%,
    rgba(6, 10, 14, 0.52) 100%
  );
}

.preview-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-preview p {
  color: var(--muted);
  margin-bottom: 14px;
}

.preview-note {
  font-size: 0.95rem;
}

.logos {
  padding: 0 0 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section.alt {
  background: linear-gradient(180deg, rgba(16, 20, 26, 0.95), rgba(8, 10, 12, 0.98));
}

.section-head {
  margin-bottom: 40px;
  max-width: 640px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 180px;
  box-shadow: 0 16px 40px var(--shadow);
}

.feature h3 {
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 24px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}

.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-card.featured {
  background: linear-gradient(160deg, rgba(47, 191, 113, 0.18), rgba(16, 22, 28, 0.9));
  border-color: rgba(47, 191, 113, 0.55);
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0a0b0c;
  background: linear-gradient(135deg, var(--accent), #68e39b);
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 10px;
}

.price-card h3 {
  margin: 0 0 2px;
}

.plan-range {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #68e39b;
  margin: 0 0 10px;
}

.price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 12px;
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin: 0 0 16px;
  padding: 0;
}

.price-card .btn {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.panel {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}

.panel p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.contact-cards {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7f8ba0;
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 14, 0.7);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(110, 231, 255, 0.5);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 40px 0 24px;
  background: #0b1016;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-brand {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 24px;
  color: #6f7a8c;
  font-size: 0.85rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 960px) {
  .logo img {
    height: 54px;
  }

  .logo-text .correct {
    font-size: 1.6em;
  }

  .logo-text .house-watch {
    font-size: 0.98em;
  }

  .hero-grid,
  .grid-3,
  .pricing,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: 60px;
    right: 24px;
    background: rgba(10, 14, 19, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

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