/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  background: #0a0a0b;
  color: #e4e4e7;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
body input,
body textarea,
body [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto;
}

/* ===== Toolbar ===== */
.toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: transparent;
  transition: background 0.4s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.toolbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.toolbar--scrolled {
  background: rgba(10, 10, 11, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1.5rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.toolbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.toolbar-logo:hover { opacity: 0.9; }
.toolbar-logo-img {
  height: 36px;
  width: 36px;
  min-width: 36px;
  min-height: 36px;
  display: block;
  object-fit: contain;
  vertical-align: middle;
  opacity: 1;
  align-self: center;
  position: relative;
  top: 3px;
}
.toolbar-logo-text span { color: #a78bfa; }

.toolbar-logo {
  animation: toolbar-walk-in 0.6s ease-out;
}
@keyframes toolbar-walk-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toolbar-nav {
  display: flex;
  gap: 2rem;
}
.toolbar-nav a {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s;
}
.toolbar-nav a:hover {
  color: #e4e4e7;
  transform: translateY(-1px);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toolbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #a1a1aa;
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.toolbar-btn:hover {
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.05);
}
/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-image-intro 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             hero-image-zoom 20s ease-in-out 1.4s infinite alternate;
}
@keyframes hero-image-intro {
  from {
    opacity: 0;
    transform: scale(1.12);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hero-image-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-overlay-in 1s ease-out 0.4s forwards;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.4) 0%,
    rgba(10, 10, 11, 0.2) 40%,
    rgba(10, 10, 11, 0.7) 100%
  );
  pointer-events: none;
}
@keyframes hero-overlay-in {
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  text-align: center;
}
.hero-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a78bfa;
  margin: 0 0 0.75rem;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(167, 139, 250, 0.2);
}
.hero-desc {
  font-size: 1.1rem;
  color: #e4e4e7;
  margin: 0 0 2rem;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Hero walk-in animation (from left, staggered) */
.animate-in {
  opacity: 0;
  transform: translateX(-48px);
  animation: walk-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-label.animate-in { animation-delay: 0.15s; }
.hero-title.animate-in { animation-delay: 0.3s; }
.hero-desc.animate-in { animation-delay: 0.5s; }
.hero-cta.animate-in { animation-delay: 0.65s; }
@keyframes walk-in {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, color 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #7c3aed;
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover {
  background: #8b5cf6;
  box-shadow: 0 6px 32px rgba(124, 58, 237, 0.5);
  animation: btn-glow 2s ease-in-out infinite;
}
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 6px 32px rgba(124, 58, 237, 0.5); }
  50% { box-shadow: 0 6px 40px rgba(167, 139, 250, 0.6); }
}
.btn-ghost {
  background: transparent;
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(167, 139, 250, 0.8), transparent);
  border-radius: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===== Sections ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: #fff;
}
.section-subtitle {
  color: #a1a1aa;
  margin: -1rem 0 2.5rem;
  font-size: 1.05rem;
}

/* Pricing / Services – two boxes horizontal: gray (Basic+) and purple (Limitless) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.pricing-box {
  border-radius: 20px;
  padding: 0;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.pricing-box:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}
/* First box: gray */
.pricing-box:first-child {
  background: linear-gradient(180deg, rgba(75, 85, 99, 0.5) 0%, rgba(55, 65, 81, 0.6) 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.pricing-box:first-child .pricing-card {
  background: transparent;
  border: none;
}
.pricing-box:first-child .pricing-features li::before {
  background: #94a3b8;
}
/* Second box: purple */
.pricing-box:last-child {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.35) 0%, rgba(88, 28, 135, 0.4) 100%);
  border: 1px solid rgba(167, 139, 250, 0.4);
}
.pricing-box:last-child .pricing-card {
  background: transparent;
  border: none;
}
.pricing-box:last-child .pricing-features li::before {
  background: #c4b5fd;
}
.pricing-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s;
}
.pricing-card:hover {
  box-shadow: none;
  transform: none;
}
.pricing-card-limitless:hover {
  box-shadow: none;
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a78bfa;
  background: rgba(124, 58, 237, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}
.pricing-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: #fff;
}
.pricing-price {
  margin-bottom: 1.5rem;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
.pricing-note {
  display: block;
  font-size: 0.8rem;
  color: #71717a;
  margin-top: 0.25rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.pricing-features li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: #e4e4e7;
  font-size: 0.95rem;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: #a78bfa;
  border-radius: 50%;
}
.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-decoration: none;
  color: #e4e4e7;
  font-weight: 500;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.category-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.category-arrow {
  color: #a78bfa;
  transition: transform 0.25s;
}
.category-card:hover .category-arrow { transform: translateX(4px); }

/* CTA section */
.section-cta {
  padding: 5rem 1.5rem;
}
.cta-box {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: #fff;
}
.cta-text {
  color: #a1a1aa;
  margin: 0 0 1.5rem;
}
.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
}
.cta-form-label {
  flex: 1;
  min-width: 200px;
  display: block;
}
.cta-form-label input {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.cta-form input::placeholder { color: #71717a; }
.cta-form input:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
}
.cta-form-submit {
  flex-shrink: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
}
.footer-logo span { color: #a78bfa; }
.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  color: #71717a;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #a1a1aa; }
.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #52525b;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .toolbar-nav { display: none; }
  .hero { padding: 5rem 1rem 3rem; }
  .hero-cta { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .cta-form-label { min-width: 100%; }
}
