/* =====================
   CSS Variables / Tokens
   ===================== */
:root {
  --surface-primary:    #0A0A10;
  --surface-secondary:  #12121A;
  --surface-tertiary:   #1A1A24;
  --surface-hover:      #252535;
  --surface-card:       rgba(255, 255, 255, 0.03);
  --surface-card-hover: rgba(255, 255, 255, 0.05);

  --fg-primary:         #EEEEF0;
  --fg-secondary:       #9898A6;
  --fg-muted:           #65657A;

  --accent:             #7d64f2;
  --accent-light:       #9b82f5;
  --accent-dark:        #6b52e0;
  --accent-subtle:      rgba(125, 100, 242, 0.125);
  --accent-glow:        rgba(125, 100, 242, 0.35);
  --accent-glow-soft:   rgba(125, 100, 242, 0.18);

  --border:             rgba(255, 255, 255, 0.08);
  --border-light:       rgba(255, 255, 255, 0.14);

  --info:               #60A5FA;
  --info-subtle:        rgba(96, 165, 250, 0.125);
  --success:            #34D399;
  --success-subtle:     rgba(52, 211, 153, 0.125);
  --error:              #F87171;
  --warning:            #FBBF24;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --font-display: 'Ubuntu', system-ui, -apple-system, sans-serif;
  --font-body:    'Geologica', system-ui, -apple-system, sans-serif;
  --font-mono:    'Geist Mono', 'Fira Code', monospace;

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--surface-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Global hero-driven gradient wash */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% -10%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 5%, rgba(125, 100, 242, 0.12), transparent 60%);
}

header,
section,
footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* =====================
   Eyebrow Label
   ===================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

/* =====================
   Buttons
   ===================== */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 8px 24px -10px rgba(125, 100, 242, 0.5);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 12px 32px -8px rgba(125, 100, 242, 0.6);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: var(--border-light);
  color: var(--fg-primary);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
}

.btn-icon {
  font-size: 18px;
  display: block;
  flex-shrink: 0;
  line-height: 1;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =====================
   Navbar
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 10, 16, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out);
}

.navbar.is-scrolled {
  background-color: rgba(10, 10, 16, 0.82);
  border-bottom-color: var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 28px;
  height: 28px;
  background: url('/assets/logo.svg') center/contain no-repeat;
  flex-shrink: 0;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-center a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-secondary);
  transition: color 200ms var(--ease-out);
}

.nav-center a:hover {
  color: var(--fg-primary);
}

/* =====================
   Hamburger Button
   ===================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color 200ms var(--ease-out);
  flex-shrink: 0;
}

.nav-hamburger:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--fg-primary);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 250ms var(--ease-out),
    opacity 200ms var(--ease-out),
    width 200ms var(--ease-out);
}

.nav-menu-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   Mobile Menu
   ===================== */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 28px;
  background-color: rgba(10, 10, 16, 0.97);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-menu-open .nav-mobile-menu {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 150ms var(--ease-out);
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--fg-primary);
}

.mobile-nav-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 24px;
}

/* =====================
   Hero Section — split layout
   ===================== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 100px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--fg-primary);
}

.hero-title .accent {
  color: var(--accent-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-secondary);
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-right {
  position: relative;
}

/* Screenshot frame — premium bezel + purple glow */
.hero-preview {
  width: 100%;
}

.screenshot-frame,
.hero-preview,
.highlight-preview {
  padding: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow:
    0 40px 120px -40px rgba(125, 100, 242, 0.35),
    0 20px 60px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.screenshot-img,
.hero-preview-img,
.highlight-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background-color: var(--surface-secondary);
}

.hero-preview-img {
  min-height: 320px;
}

/* =====================
   Section Primitives
   ===================== */
.section {
  padding: 120px 80px;
  position: relative;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-header .eyebrow {
  margin-bottom: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-secondary);
  max-width: 560px;
}

/* Optional per-section radial glow */
.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at var(--glow-x, 90%) var(--glow-y, 10%), var(--accent-glow-soft), transparent 60%);
  z-index: -1;
}

/* =====================
   Features Section
   ===================== */
.features-section {
  --glow-x: 85%;
  --glow-y: 0%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 250ms var(--ease-out);
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px var(--accent-subtle),
    0 20px 40px -20px var(--accent-glow-soft);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 8px 24px -10px rgba(125, 100, 242, 0.5);
}

.feature-icon {
  font-size: 24px;
  display: block;
  line-height: 1;
  color: #fff;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-secondary);
}

/* =====================
   Download Section
   ===================== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.download-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: all 250ms var(--ease-out);
}

.download-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px var(--accent-glow-soft);
}

.dl-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  margin-bottom: 4px;
  box-shadow: 0 8px 24px -10px rgba(125, 100, 242, 0.5);
}

.dl-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.download-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.download-card .req {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: -6px;
}

.download-card .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* =====================
   Docs Section
   ===================== */
.docs-section {
  --glow-x: 10%;
  --glow-y: 90%;
}

.docs-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.docs-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.docs-left .eyebrow {
  margin-bottom: 0;
}

.docs-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
}

.docs-left p {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-secondary);
}

.docs-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Code Block — VS Code Dark+ theme */
.code-block {
  flex: 0 0 540px;
  background-color: #1E1E1E;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -40px var(--accent-glow-soft),
    0 20px 50px -30px rgba(0, 0, 0, 0.8);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #252526;
  border-bottom: 1px solid #1B1B1B;
  padding: 12px 18px;
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dot.red    { background-color: #FF5F57; }
.code-dot.yellow { background-color: #FEBC2E; }
.code-dot.green  { background-color: #28C840; }

.code-filename {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #CCCCCC;
  margin-left: 6px;
}

.code-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #D4D4D4;
}

.code-body code {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  display: block;
  white-space: pre;
  color: #D4D4D4;
}

/* Token palette */
.tok-keyword  { color: #C586C0; }
.tok-control  { color: #569CD6; }
.tok-string   { color: #CE9178; }
.tok-number   { color: #B5CEA8; }
.tok-type     { color: #4EC9B0; }
.tok-var      { color: #9CDCFE; }
.tok-fn       { color: #DCDCAA; }
.tok-comment  { color: #6A9955; font-style: italic; }
.tok-punct    { color: #D4D4D4; }
.tok-success  { color: #34D399; }
.tok-warning  { color: #FBBF24; }

/* =====================
   Footer
   ===================== */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-logo {
  width: 22px;
  height: 22px;
  background: url('/assets/logo.svg') center/contain no-repeat;
  flex-shrink: 0;
}

.foot-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-primary);
}

.foot-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
}

.foot-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.foot-right a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 200ms var(--ease-out);
}

.foot-right a:hover {
  color: var(--fg-primary);
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {
  .navbar-inner,
  .hero-section,
  .section,
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 48px;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-inner {
    gap: 48px;
  }

  .highlight-image-wrap {
    flex: 0 0 46%;
  }

  .project-inner {
    gap: 48px;
  }

  .feature-highlight-section {
    padding: 80px 40px;
  }

}

@media (max-width: 768px) {
  /* Navbar */
  .navbar-inner {
    padding: 14px 24px;
  }

  .nav-center {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Padding */
  .hero-section,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 48px;
    gap: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* Feature grid */
  .features-grid,
  .download-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  /* Feature highlight */
  .feature-highlight-section {
    padding: 72px 24px;
  }

  .highlight-inner,
  .highlight-inner-reversed {
    flex-direction: column;
    gap: 36px;
  }

  .highlight-image-wrap {
    flex: 0 0 auto;
    width: 100%;
  }

  /* Project management */
  .project-inner {
    flex-direction: column;
    gap: 36px;
  }

  .project-left {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-buttons .btn-cta-primary,
  .cta-buttons .btn-cta-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  footer {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .foot-right {
    gap: 20px;
    flex-wrap: wrap;
  }
}

/* =====================
   Trusted By Section
   ===================== */
.trusted-by-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.trusted-by-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  height: 24px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 200ms var(--ease-out);
}

.trusted-by-logos a:hover .trusted-logo {
  opacity: 1;
}

/* =====================
   Feature Highlight Section
   ===================== */
.feature-highlight-section {
  padding: 120px 80px;
}

.highlight-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.highlight-inner-reversed {
  flex-direction: row-reverse;
}

.highlight-image-wrap {
  flex: 0 0 540px;
}


.highlight-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg-primary);
}

.highlight-description {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-secondary);
}

.highlight-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.highlight-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-primary);
  line-height: 1.5;
}

.bullet-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon {
  font-size: 20px;
  display: block;
  line-height: 1;
  color: var(--accent-light);
}

/* =====================
   Testimonials Section
   ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 250ms var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px var(--accent-glow-soft);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.star-icon {
  font-size: 16px;
  display: block;
  line-height: 1;
  color: var(--warning);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fg-secondary);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-primary);
}

.author-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-muted);
}

/* =====================
   Project Management Section
   ===================== */
.project-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.project-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg-primary);
}

.project-description {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fg-secondary);
}

.project-right {
  flex: 1;
  min-width: 0;
}


/* =====================
   Pricing Section
   ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(60, 40, 120, 0.7) 0%, rgba(80, 50, 160, 0.5) 100%);
  box-shadow: 0 0 0 1px var(--accent-subtle), 0 24px 60px -20px var(--accent-glow-soft);
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
}

.pricing-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.pricing-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-secondary);
}

.pricing-feature-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}

.pricing-icon-yes {
  color: var(--success);
}

.pricing-icon-no {
  color: var(--error);
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* =====================
   Download Section
   ===================== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.download-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.download-card-featured {
  border-color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(60, 40, 120, 0.7) 0%,
    rgba(80, 50, 160, 0.5) 100%
  );
  box-shadow: 0 0 0 1px var(--accent-subtle),
    0 24px 60px -20px var(--accent-glow-soft);
}

.download-platform-icon {
  font-size: 40px;
  display: block;
  line-height: 1;
  color: var(--fg-primary);
  margin-bottom: 4px;
}

.download-platform-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-primary);
}

.download-platform-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.download-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.download-soon-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-top: auto;
}

/* =====================
   Get Started / FAQ Section
   ===================== */
.faq-grid {
  display: flex;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.faq-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-card[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-primary);
  line-height: 1.35;
}

.faq-chevron {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-body {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--fg-secondary);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-body p {
  margin: 0;
}

.faq-link {
  color: var(--accent-light);
  text-decoration: none;
}

.faq-link:hover {
  text-decoration: underline;
}

.faq-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.faq-contact-btn {
  min-width: 180px;
  text-align: center;
}

/* =====================
   CTA Section
   ===================== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4c3ab8 0%, var(--accent) 50%, #9b6ef5 100%);
  padding: 120px 80px;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 0, 0, 0.2), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.cta-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
}

.accent-light-text {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: 540px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  background-color: #fff;
  color: var(--accent-dark);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
  transition: all 200ms var(--ease-out);
}

.btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4);
}

.btn-cta-primary .btn-icon {
  color: var(--accent-dark);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 200ms var(--ease-out);
}

.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* =====================
   Responsive — new sections
   ===================== */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 40px 60px;
    max-width: none;
  }

  .hero-subtitle {
    max-width: none;
  }

  .highlight-inner,
  .highlight-inner-reversed,
  .project-inner {
    flex-direction: column !important;
    gap: 48px;
  }

  .highlight-image-wrap {
    flex: none;
    width: 100%;
  }

  .project-right {
    flex: none;
    width: 100%;
  }

  .feature-highlight-section {
    padding: 80px 40px;
  }

  .trusted-by-section {
    padding: 28px 40px;
  }

  .pricing-grid {
    max-width: 560px;
  }

  .faq-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section {
    padding: 96px 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 24px 48px;
  }

  .trusted-by-section {
    padding: 24px;
    gap: 24px;
  }

  .trusted-by-logos {
    gap: 28px;
  }

  .feature-highlight-section {
    padding: 72px 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .download-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-features-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section {
    padding: 72px 24px;
  }

  .cta-title {
    font-size: clamp(32px, 8vw, 48px);
  }
}

/* =====================
   Reduce motion
   ===================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
