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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: var(--body);
  background: var(--canvas);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.08s;
}

.stagger-2 {
  transition-delay: 0.16s;
}

.stagger-3 {
  transition-delay: 0.24s;
}

.stagger-4 {
  transition-delay: 0.32s;
}

.stagger-5 {
  transition-delay: 0.4s;
}

.stagger-6 {
  transition-delay: 0.48s;
}

.promo-banner {
  background: var(--surface-dark);
  border-bottom: 1px solid rgba(var(--on-dark-rgb), 0.08);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  text-align: center;
  color: var(--on-dark-soft);
  position: relative;
  z-index: 10;
}
.promo-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-banner .badge-promo {
  display: inline-block;
  background: rgba(var(--on-dark-rgb), 0.1);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  line-height: 1.4;
  border-radius: 9999px;
  padding: 3px 10px;
}

.header {
  background: rgba(var(--canvas-rgb), 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--hairline-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-primary);
}
.logo .logo-icon svg {
  width: 20px;
  height: 20px;
}
.logo .logo-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 9999px;
  color: var(--muted);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover {
  background: var(--surface-strong);
  color: var(--ink);
}
.nav-link.active {
  background: var(--ink);
  color: var(--on-primary);
}

.hero {
  position: relative;
  background: var(--canvas);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 2;
}
.hero .orb-mint {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-mint), 0.35) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  top: -180px;
  left: -5%;
}
.hero .orb-peach {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-peach), 0.3) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  bottom: -120px;
  right: -8%;
}
.hero .orb-lavender {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-lavender), 0.25) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  top: 30%;
  right: 10%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-text .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-text .hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--muted-soft);
}
.hero-text h1 {
  font-family: "Waldenburg", "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-text h1 .highlight {
  display: block;
  font-style: italic;
  color: var(--muted);
  letter-spacing: -2px;
}
.hero-text p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.18px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  height: 44px;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--ink);
  color: var(--on-primary);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--primary-active);
  border-color: var(--primary-active);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(var(--ink-rgb), 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-secondary:hover {
  background: var(--surface-strong);
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  height: 52px;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--hairline-strong);
}

.section-title {
  font-family: "Waldenburg", "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

.features-section {
  background: var(--canvas-soft);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.features-section .orb-sky {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-sky), 0.25) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  top: 5%;
  left: -10%;
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 96px;
  padding: 48px;
  background: rgba(var(--surface-card-rgb), 0.5);
  border-radius: 16px;
  border: 1px solid var(--hairline-soft);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.features-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.features-header > div:first-child {
  position: relative;
  z-index: 1;
}
.features-header .section-subtitle {
  max-width: 600px;
  margin-top: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface-card);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--hairline);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(var(--ink-rgb), 0.08);
  border-color: var(--hairline-strong);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover .feature-icon {
  background: var(--ink);
  color: var(--on-primary);
  transform: scale(1.05);
}
.feature-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--muted);
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-icon svg {
  width: 20px;
  height: 20px;
}

.dark-band {
  background: var(--surface-dark);
  color: var(--on-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 2;
}
.dark-band .orb-mint {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-mint), 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  top: -200px;
  right: -10%;
}
.dark-band .section-label {
  color: rgba(var(--on-dark-rgb), 0.4);
}
.dark-band .section-label::before {
  background: rgba(var(--on-dark-rgb), 0.2);
}
.dark-band .section-title {
  color: var(--on-dark);
}
.dark-band .section-subtitle {
  color: rgba(var(--on-dark-rgb), 0.55);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 96px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  padding: 32px 0 0;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--on-dark-rgb), 0.3), transparent);
}
.step-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  margin-bottom: 8px;
  color: var(--on-dark);
}
.step-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(var(--on-dark-rgb), 0.5);
}

.step-number {
  font-family: "Waldenburg", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: rgba(var(--on-dark-rgb), 0.12);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.use-cases {
  background: var(--canvas);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.use-cases .orb-rose {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-rose), 0.25) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  bottom: -10%;
  right: -5%;
}

.cases-header {
  text-align: center;
  margin-bottom: 96px;
}
.cases-header .section-subtitle {
  margin: 20px auto 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  padding: 48px;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(var(--ink-rgb), 0.08);
  border-color: var(--hairline-strong);
}
.case-card:hover .case-icon {
  background: var(--ink);
  color: var(--on-primary);
}
.case-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  margin-bottom: 8px;
  color: var(--ink);
}
.case-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.case-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-icon svg {
  width: 22px;
  height: 22px;
}

.stats-section {
  background: var(--canvas-soft);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.stats-section .orb-lavender {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-lavender), 0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(var(--ink-rgb), 0.08);
  border-color: var(--hairline-strong);
}

.stat-number {
  font-family: "Waldenburg", "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: 12px;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-section {
  padding: 96px 32px;
  background: var(--canvas);
}

.cta-band {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band .orb-mint-inner {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gradient-mint), 0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-band h2 {
  font-family: "Waldenburg", "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.cta-band p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.tools-section {
  background: var(--canvas-soft);
  padding: 96px 0;
}

.tools-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 96px;
}
@media (max-width: 768px) {
  .tools-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tools-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 48px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: 0 24px 48px -12px rgba(var(--ink-rgb), 0.08);
}
.tool-card:hover::before {
  opacity: 1;
}
.tool-card:hover .tool-icon {
  background: var(--ink);
  color: var(--on-primary);
}
.tool-card:hover .tool-arrow {
  transform: translateX(4px);
}
.tool-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--ink);
}
.tool-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.tool-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tool-icon svg {
  width: 24px;
  height: 24px;
}

.tool-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tool-arrow svg {
  width: 14px;
  height: 14px;
}

.faq-section {
  background: var(--canvas);
  padding: 96px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 96px;
}
.faq-header .section-subtitle {
  margin: 20px auto 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  padding: 32px;
  background: var(--surface-card);
  border-radius: 16px;
  border: 1px solid var(--hairline);
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--hairline-strong);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.faq-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  margin-bottom: 12px;
  color: var(--ink);
}
.faq-item p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.footer {
  background: var(--surface-dark);
  color: rgba(var(--on-dark-rgb), 0.5);
  padding: 80px 48px 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 2;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.footer-brand .logo-icon svg {
  width: 20px;
  height: 20px;
}
.footer-brand p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(var(--on-dark-rgb), 0.4);
  max-width: 280px;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: rgba(var(--on-dark-rgb), 0.35);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(var(--on-dark-rgb), 0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--on-dark);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(var(--on-dark-rgb), 0.08);
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--on-dark-rgb), 0.25);
  position: relative;
  z-index: 3;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--hairline-strong);
  border-radius: 9999px;
  padding: 6px 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-toggle:hover {
  background: var(--surface-strong);
  color: var(--ink);
}
.theme-toggle .toggle-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle .toggle-icon svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .features-grid,
  .cases-grid,
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header-content {
    padding: 0 16px;
  }
  .hero {
    padding: 80px 20px 100px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .features-header,
  .tools-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .features-grid,
  .cases-grid,
  .tools-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 16px;
  }
  .cta-band {
    padding: 60px 24px;
  }
}
@media (max-width: 480px) {
  .nav-link {
    padding: 6px 12px;
    font-size: 13px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

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