@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono&display=swap");
body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.container-max {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-standard {
  height: 64px;
  border-bottom: 1px solid #222222;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-standard .container-max {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
}
.nav-standard .brand {
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-standard .nav-item-link {
  color: #a1a1aa;
  text-decoration: none !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s;
  line-height: 1;
}
.nav-standard .nav-item-link:hover {
  color: #fff;
}

main {
  padding-top: 64px;
}

.cta-bottom {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid #222222;
  background: linear-gradient(180deg, #000000 0%, #050505 100%);
}
.cta-bottom .container-max {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.teaser-section {
  padding: 120px 0;
  border-top: 1px solid #222222;
  background: #000000;
}

.teaser-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border: 1px solid #222222;
  border-bottom: none;
  border-right: none;
}

.teaser-item {
  background: transparent;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  padding: 48px;
}
.teaser-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.teaser-item p {
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-section {
  padding: 100px 0;
  border-bottom: 1px solid #222222;
}
.hero-section h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 32px;
}
.hero-section p {
  font-size: 1.25rem;
  color: #a1a1aa;
  max-width: 700px;
  margin-bottom: 48px;
}

.btn-main {
  background: #fff;
  color: #000;
  padding: 14px 40px;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.1s;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.btn-main:hover {
  background: #eee;
  color: #000;
  transform: translateY(-1px);
}

.text-cta {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 2px solid #6366f1;
  padding-bottom: 4px;
  transition: border-color 0.2s;
  display: inline-block;
}
.text-cta:hover {
  border-color: #fff;
  color: #fff;
}

.btn-outline {
  border: 1px solid #222222;
  color: #fff;
  padding: 14px 40px;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0;
  border: 1px solid #222222;
  border-bottom: none;
  border-right: none;
}

.card-professional {
  background: #000000;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  padding: 64px;
  border-radius: 0;
}
.card-professional h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.card-professional p {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.pricing-matrix {
  border: 1px solid #222222;
  background: #050505;
  border-radius: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.pricing-matrix .pricing-header {
  padding: 64px;
  border-bottom: 1px solid #222222;
}
.pricing-matrix .price {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 16px 0;
}
.pricing-matrix .strike {
  color: #333;
  text-decoration: line-through;
  font-size: 1.5rem;
  margin-left: 12px;
}

.text-accent {
  color: #6366f1;
}

.small-caps {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a1a1aa;
}

.border-left-accent {
  border-left: 3px solid #6366f1;
  padding-left: 24px;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 3rem;
}

.w-100 {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

/*# sourceMappingURL=main.css.map */
