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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #faf6f0;
  color: #1a1410;
  overflow-x: hidden;
}

#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  background: rgba(250, 246, 240, 0.7);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo span {
  font-weight: 300;
  color: #ff5a00;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #ff5a00;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.badge {
  display: inline-block;
  background: rgba(255, 90, 0, 0.1);
  color: #ff5a00;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-content > p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: #7a7068;
  margin: 0 auto 32px;
}

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

.btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #ff5a00;
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 90, 0, 0.3);
}
.btn-primary:hover {
  background: #e04f00;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 90, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: #1a1410;
  border: 2px solid #1a1410;
}
.btn-outline:hover {
  border-color: #ff5a00;
  color: #ff5a00;
}

.btn-full {
  width: 100%;
  margin-top: 16px;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #f8f9fb;
  margin-left: -8px;
  background: #e0e0e0;
}
.avatars span:first-child {
  margin-left: 0;
  background: #ff5a00;
}
.avatars span:nth-child(2) {
  background: #ff9f00;
}
.avatars span:nth-child(3) {
  background: #1a1410;
}
.avatars span:nth-child(4) {
  background: #e04f00;
}
.avatars span:nth-child(5) {
  background: #ffb347;
}
.social-proof p {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.workflows {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.workflows h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}

.workflows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.wf-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 28px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.wf-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.wf-card-wide {
  grid-column: 1 / -1;
  text-align: center;
}

.wf-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.wf-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wf-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.integrations {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.integrations h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}
.integrations-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.integrations-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.int-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #1a1410;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s;
}
.int-logo:hover {
  background: #1a1410;
  color: #fff;
  transform: translateY(-2px);
}
.integrations-sub {
  margin-top: 32px;
  font-size: 14px;
  color: #7a7068;
  font-weight: 500;
}

.what-you-get {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.what-you-get h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.wyg-card {
  background: #fff;
  border: 2px solid #1a1410;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}
.wyg-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 #1a1410;
}

.wyg-num {
  font-size: 12px;
  font-weight: 800;
  color: #ff5a00;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.wyg-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wyg-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.why-love {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-love h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.love-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.love-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.love-stat {
  font-size: 32px;
  margin-bottom: 10px;
}

.love-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.love-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.who-for {
  padding: 100px 24px;
}
.who-for-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.who-for h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 36px;
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.who-grid span {
  background: rgba(255,255,255,0.7);
  border: 1.5px solid #1a1410;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.who-grid span:hover {
  background: #1a1410;
  color: #fff;
}

.vision {
  padding: 100px 24px;
}
.vision-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.vision h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}

.vision-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.vision-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
}

.vision-check {
  color: #ff5a00;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.vision-tagline {
  margin-top: 32px;
  font-size: 22px;
  font-weight: 700;
  color: #ff5a00;
  letter-spacing: -0.5px;
}

.bonus {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bonus h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.bonus-sub {
  font-size: 16px;
  color: #7a7068;
  margin-bottom: 36px;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bonus-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #1a1410;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.bonus-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 #1a1410;
}

.bonus-icon {
  font-size: 18px;
}

.cta-section {
  padding: 100px 24px;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #1a1410;
  color: #fff;
  padding: 60px 40px;
  border-radius: 28px;
}

.cta-inner h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}



.faq {
  padding: 100px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}

.faq-list details {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
}
.faq-list summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::after {
  content: "+";
  font-size: 20px;
  color: #999;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-inner p {
  font-size: 13px;
  color: #aaa;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 20, 16, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: #fff;
  border: 2px solid #1a1410;
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 12px 12px 0 #1a1410;
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f3ef;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.2s;
}
.modal-close:hover {
  background: #1a1410;
  color: #fff;
}
.modal-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.modal-card h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 14px;
  color: #7a7068;
  line-height: 1.6;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  outline: none;
  background: #faf6f0;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: #ff5a00;
}
.form-group input.error {
  border-color: #e04f00;
}
.form-group .field-error {
  font-size: 12px;
  color: #e04f00;
  margin-top: 4px;
  display: none;
}
.form-group input.error ~ .field-error {
  display: block;
}
.modal-footnote {
  font-size: 12px;
  color: #bbb;
  margin-top: 16px;
}
.btn-loader {
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .nav {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
