﻿:root {
  --bg: #090b11;
  --bg-alt: #0f1420;
  --ink: #f5f2ea;
  --muted: #b9b4ab;
  --accent: #ff7a2f;
  --accent-2: #22d3ee;
  --stroke: rgba(245, 242, 234, 0.1);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

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

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1a1f2d, #090b11 55%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Newsreader", serif;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-gradient {
  position: fixed;
  inset: -20% 0 auto auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.35), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.bg-grid {
  position: fixed;
  inset: auto auto 0 0;
  width: 50vw;
  height: 60vh;
  background-image: linear-gradient(rgba(245, 242, 234, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 234, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
  background: rgba(9, 11, 17, 0.75);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-name {
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  color: var(--muted);
}

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(12, 16, 26, 0.8);
  color: var(--ink);
  font-weight: 600;
}

.menu-icon {
  width: 18px;
  height: 12px;
  display: inline-block;
  background: linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 5px / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 10px / 100% 2px no-repeat;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 4vw 20px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(9, 11, 17, 0.92);
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--muted);
}

.mobile-nav a:hover {
  color: var(--ink);
  border-color: var(--stroke);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lede {
  color: var(--muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0 18px;
}

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

.btn.primary {
  background: var(--accent);
  color: #090b11;
  box-shadow: 0 14px 30px rgba(255, 122, 47, 0.3);
}

.btn.ghost {
  border: 1px solid var(--stroke);
  color: var(--ink);
}

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

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

.hero-card {
  padding: 28px;
  background: rgba(15, 20, 32, 0.85);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card ul {
  list-style: none;
  margin-top: 16px;
}

.hero-card li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}

.hero-card li::before {
  content: "•";
  color: var(--accent-2);
  position: absolute;
  left: 0;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.2);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

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

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.section-title {
  max-width: 720px;
  margin-bottom: 32px;
}

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

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

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tile {
  padding: 22px;
  background: rgba(12, 16, 26, 0.8);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  min-height: 160px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  padding: 24px;
  background: rgba(12, 16, 26, 0.85);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  display: grid;
  gap: 16px;
  min-height: 320px;
}

.price-card.featured {
  border-color: rgba(255, 122, 47, 0.5);
  box-shadow: 0 22px 50px rgba(255, 122, 47, 0.18);
  background: linear-gradient(160deg, rgba(255, 122, 47, 0.12), rgba(12, 16, 26, 0.9));
}

.price-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

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

.price-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.price-amount {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.price-list li {
  position: relative;
  padding-left: 18px;
}

.price-list li::before {
  content: "•";
  color: var(--accent-2);
  position: absolute;
  left: 0;
}

.price-card .btn {
  width: fit-content;
}

.cta-strip {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(120deg, rgba(255, 122, 47, 0.16), rgba(34, 211, 238, 0.08));
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.form-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(12, 16, 26, 0.85);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 16px;
}

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card input,
.form-card textarea {
  width: 100%;
  background: rgba(9, 11, 17, 0.7);
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.span-two {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-success {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--accent-2);
  font-weight: 600;
  display: none;
}

.form-success.show {
  display: block;
}

.price-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-footnote {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.step {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(12, 16, 26, 0.7);
}

.step span {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact {
  padding-bottom: 100px;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(255, 122, 47, 0.18), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form {
  display: grid;
  gap: 12px;
  min-width: min(360px, 100%);
  flex: 1 1 320px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(9, 11, 17, 0.7);
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 820px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

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

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

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
