/* Novify static site styles */
:root {
  --novify-dark: #0a0a0f;
  --novify-ink: #1a1a24;
  --novify-slate: #2d2d3a;
  --novify-accent: #6366f1;
  --novify-accent-light: #818cf8;
  --novify-cream: #fafaf9;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --white-5: rgba(255, 255, 255, 0.05);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  background-color: var(--novify-dark);
  color: var(--novify-cream);
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--white-5);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
}

.site-header .inner {
  margin: 0 auto;
  max-width: 72rem;
  height: 4rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .site-header .inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header .inner {
    padding: 0 2rem;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--novify-accent-light);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-400);
  text-decoration: none;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a.active {
  color: var(--novify-accent-light);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 1.5rem;
  background: white;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--white-5);
  background: rgba(26, 26, 36, 0.95);
  backdrop-filter: blur(12px);
  display: none;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-400);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

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

.mobile-nav a.active {
  background: rgba(99, 102, 241, 0.2);
  color: var(--novify-accent-light);
}

/* Main */
main {
  flex: 1;
  padding-top: 4rem;
}

.container {
  margin: 0 auto;
  max-width: 72rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.container-narrow {
  max-width: 48rem;
}

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

/* Gradient orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.gradient-orb--accent {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
}

.gradient-orb--muted {
  background: radial-gradient(circle, rgba(45, 45, 58, 0.6) 0%, transparent 70%);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

@media (min-width: 640px) {
  .hero {
    padding: 8rem 0 7rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 0 9rem;
  }
}

.hero .gradient-orb--accent {
  top: -10rem;
  right: 0;
  height: 24rem;
  width: 24rem;
}

.hero .gradient-orb--muted {
  bottom: 0;
  left: 25%;
  height: 16rem;
  width: 16rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  margin: 0;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

.section-alt {
  border-top: 1px solid var(--white-5);
  background: rgba(26, 26, 36, 0.5);
}

.section h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

@media (min-width: 640px) {
  .section h2 {
    font-size: 2.25rem;
  }
}

.section-sub {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--zinc-400);
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary {
  background: var(--novify-accent);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.25);
}

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

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--white-20);
}

.btn-outline:hover {
  background: var(--white-10);
}

/* FAQ cards */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-card {
  border-radius: 1rem;
  border: 1px solid var(--white-10);
  background: rgba(10, 10, 15, 0.8);
  padding: 1.5rem;
}

.faq-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.faq-card p {
  margin: 0.5rem 0 0;
  color: var(--zinc-400);
}

/* Founder section */
.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .founder {
    flex-direction: row;
    align-items: flex-start;
  }
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}

.founder-bio {
  max-width: 42rem;
}

.founder-bio h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--novify-accent-light);
  margin: 0;
}

.founder-bio p {
  margin: 1rem 0 0;
  color: var(--zinc-400);
  line-height: 1.625;
}

.founder-bio p + p {
  margin-top: 1rem;
}

/* Page hero (services) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 8rem 0 5rem;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 10rem 0 6rem;
  }
}

.page-hero .gradient-orb--accent {
  top: -5rem;
  right: 0;
  height: 18rem;
  width: 18rem;
}

.page-hero .gradient-orb--accent.left {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.back-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-400);
  text-decoration: none;
  transition: color 0.2s;
}

.back-link:hover {
  color: white;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  margin: 1rem 0 0;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3.75rem;
  }
}

.page-hero .lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--zinc-400);
}

/* Service content */
.feature-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--white-10);
  background: rgba(10, 10, 15, 0.8);
}

.feature-item::before {
  content: "";
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--novify-accent);
}

.feature-item span {
  color: var(--zinc-300);
}

.section h2.section-title {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .section h2.section-title {
    font-size: 1.875rem;
  }
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--white-5);
  background: var(--novify-ink);
  padding: 3rem 0;
}

.site-footer .inner {
  margin: 0 auto;
  max-width: 72rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .site-footer .inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-footer .inner {
    padding: 0 2rem;
  }
}

.site-footer .flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 640px) {
  .site-footer .flex {
    flex-direction: row;
  }
}

.site-footer .logo {
  font-size: 1.125rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--zinc-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: white;
}

.site-footer .copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--zinc-500);
}
