/* Gantivity Landing — built to match DashFlow / PreptixAI style */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #050713;
  color: #f3f4ff;
}

a code,
p code,
li code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(148, 163, 255, 0.1);
  border: 1px solid rgba(148, 163, 255, 0.18);
  padding: 0.08em 0.35em;
  border-radius: 8px;
}

a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #c4b5fd;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 24px;
  background: #6366f1;
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

:root {
  --bg: #050713;
  --bg-elevated: #080a18;
  --bg-card: #121327;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f9fafb;
  --text-muted: #9ca3c7;
  --accent: #8b5cf6;
  --accent-hover: #a78bfa;
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-soft: rgba(139, 92, 246, 0.16);
  --gradient-vivid: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.12), transparent 50%);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 10, 24, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo-with-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.logo-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--gradient-vivid);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.5);
}

.logo-mark {
  width: auto;
  height: 36px;
  max-height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
  color: var(--text);
}

.logo-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.nav-list a:hover {
  color: var(--text);
  background: rgba(148, 163, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.header-link:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  border-radius: 999px;
  background: #e5e7eb;
}

.nav-mobile {
  display: none;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile a {
  display: block;
  padding: 8px 0;
  color: var(--text);
}

.nav-mobile .nav-signin {
  margin-top: 12px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s, border-color 0.2s;
}

.btn-lg {
  padding: 12px 26px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(65, 88, 208, 0.55);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(65, 88, 208, 0.7);
}

.btn-gradient {
  background: linear-gradient(120deg, #4f46e5, #8b5cf6, #06b6d4);
  background-size: 180% 180%;
  box-shadow: 0 10px 32px rgba(79, 70, 229, 0.6);
}

.btn-gradient:hover {
  background-position: 100% 0;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost-border {
  border-color: rgba(148, 163, 255, 0.4);
  background: rgba(15, 23, 42, 0.5);
}

.btn-ghost:hover,
.btn-ghost-border:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

/* Hero */

.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.4), transparent 55%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.35), transparent 55%),
    radial-gradient(circle at center, rgba(15, 23, 42, 0.9), #020617 80%);
}

/* Page hero (inner pages) */

.page-hero {
  position: relative;
  padding: 84px 0 56px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 55%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.3), transparent 55%),
    #020617;
  border-bottom: 1px solid rgba(15, 23, 42, 0.7);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(129, 140, 248, 0.25), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.14), transparent 50%);
}

.page-hero .container {
  position: relative;
}

.page-hero-mini .hero-title {
  font-size: clamp(2.1rem, 3.7vw, 3rem);
  margin-bottom: 14px;
}

.page-hero-mini .hero-sub {
  max-width: 820px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-starry {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(129, 140, 248, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(96, 165, 250, 0.3), transparent 50%),
    radial-gradient(2px 2px at 20% 30%, rgba(248, 250, 252, 0.5), transparent),
    radial-gradient(2px 2px at 65% 75%, rgba(236, 252, 203, 0.5), transparent),
    #020617;
}

.hero-inner-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.hero-left {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: #c7d2fe;
  border: 1px solid rgba(129, 140, 248, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(90deg, #a855f7, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-white {
  display: inline-block;
  color: var(--text);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-platforms-mockup {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-mockup-card {
  background: radial-gradient(circle at top left, rgba(94, 234, 212, 0.15), transparent 55%),
    var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 255, 0.5);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

.platform-mockup-card-alt {
  border-color: rgba(45, 212, 191, 0.7);
}

.platform-mockup-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e5e7eb;
}

.platform-mockup-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.gantivity-mockup .platform-mockup-card:nth-child(1) {
  transform: translateX(4px);
}

.gantivity-mockup .platform-mockup-card:nth-child(2) {
  transform: translateX(16px);
}

.gantivity-mockup .platform-mockup-card:nth-child(3) {
  transform: translateX(0);
}

/* Positioning strip */

.positioning-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 10, 24, 0.9);
}

.positioning-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.positioning-strip-inner span:not(.strip-dot) {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 255, 0.25);
}

.strip-dot {
  opacity: 0.5;
}

/* Sections */

.section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.7);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.3), transparent 60%), #020617;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5b4fc;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 32px;
}

/* Product features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 255, 0.3);
  padding: 20px 18px 18px;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* How it works steps */

.steps-list {
  list-style: none;
  margin-top: 8px;
  display: grid;
  gap: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #4f46e5, #06b6d4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-inline {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Use cases */

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.usecase-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(30, 64, 175, 0.7);
  padding: 20px 18px 18px;
}

.usecase-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.usecase-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.usecase-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.usecase-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.usecase-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55, 65, 194, 0.9);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card h3 {
  font-size: 1.08rem;
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 700;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 4px 0 8px;
}

.pricing-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: 4px;
}

/* Roadmap */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.roadmap-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 255, 0.28);
  padding: 20px 18px 18px;
}

.roadmap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.check-list {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 800;
}

/* Contact cards */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 255, 0.28);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card h3 {
  font-size: 1.06rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card .btn {
  margin-top: 6px;
  align-self: flex-start;
}

/* Screenshots uploader */

.uploader {
  display: grid;
  gap: 16px;
}

.dropzone {
  border: 1px dashed rgba(148, 163, 255, 0.55);
  border-radius: var(--radius-lg);
  background: rgba(8, 10, 24, 0.6);
  padding: 22px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  outline: none;
}

.dropzone:hover {
  border-color: rgba(34, 211, 238, 0.9);
  background: rgba(8, 10, 24, 0.8);
  transform: translateY(-1px);
}

.dropzone:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.dropzone.is-dragover {
  border-color: rgba(74, 222, 128, 0.95);
  background: rgba(20, 83, 45, 0.15);
}

.dropzone-inner {
  text-align: center;
}

.dropzone-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.dropzone-sub {
  color: var(--text-muted);
  margin-top: 6px;
}

.file-input {
  position: absolute;
  left: -9999px;
}

.uploader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.callout {
  background: rgba(148, 163, 255, 0.08);
  border: 1px solid rgba(148, 163, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
}

.callout h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.callout ol {
  margin-left: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.callout-hidden {
  display: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-product {
  margin-top: 8px;
}

/* Contact — form CTA anchor section */
.form-embed-section {
  scroll-margin-top: 88px;
}

.form-embed-intro {
  max-width: 720px;
  margin-bottom: 24px;
}

.shot {
  background: var(--bg-card);
  border: 1px solid rgba(148, 163, 255, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.shot button.shot-img {
  border: none;
  background: transparent;
  padding: 0;
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.shot img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.shot-meta {
  padding: 12px 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shot-name {
  font-size: 0.88rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shot-remove {
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
}

.shot-remove:hover {
  border-color: rgba(248, 113, 113, 0.6);
  background: rgba(248, 113, 113, 0.18);
}

.shot-pill {
  border: 1px solid rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.12);
  color: #bbf7d0;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 80;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  background: rgba(8, 10, 24, 0.9);
  border: 1px solid rgba(148, 163, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.25);
  background: rgba(2, 6, 23, 0.6);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: rgba(34, 211, 238, 0.8);
}

.lightbox img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* CTA */

.section-cta {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.4), transparent 60%), #020617;
}

.cta-inner {
  max-width: 640px;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer */

.site-footer {
  background: #020617;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 36px;
}

.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-logo-img {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3c7;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.7);
  padding: 16px 0 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */

.animate-hero .hero-badge,
.animate-hero .hero-title,
.animate-hero .hero-sub,
.animate-hero .hero-ctas,
.animate-hero .hero-note,
.animate-hero .hero-visual {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-hero .hero-badge {
  animation-delay: 0.05s;
}

.animate-hero .hero-title {
  animation-delay: 0.12s;
}

.animate-hero .hero-sub {
  animation-delay: 0.2s;
}

.animate-hero .hero-ctas {
  animation-delay: 0.28s;
}

.animate-hero .hero-note {
  animation-delay: 0.36s;
}

.animate-hero .hero-visual {
  animation-delay: 0.26s;
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.visible .feature-card,
.animate-stagger.visible .usecase-card,
.animate-stagger.visible .step-item {
  transition-delay: 0.05s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner-split {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .hero-right {
    order: -1;
  }

  .header-inner {
    height: 64px;
  }

  .nav {
    display: none;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-ctas {
    justify-content: flex-start;
  }
}

