:root {
  --excel-green: #217346;
  --excel-green-dark: #14502f;
  --ink: #0a0f0c;
  --paper: #000000;
  --line: rgba(10, 15, 12, 0.1);
  --accent: #d6f5a5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

ul {
  list-style: none;
}

.site-nav-logo-icon {
  display: block;
  flex-shrink: 0;
}

.site-nav-logo-icon--dark {
  filter: brightness(0);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.site-nav.scrolled {
  padding: 10px 0;
}

.site-nav-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 100%;
  padding: 10px clamp(40px, 12vw, 220px);
  border-radius: 22px;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    max-width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav.scrolled .site-nav-inner {
  max-width: min(1180px, calc(100vw - 32px));
  padding: 8px 12px;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.site-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #f5f5f4;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.site-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 22px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.14px;
  background: #fff;
  color: rgb(10, 10, 11);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease;
}

.site-nav-cta:hover {
  transform: translateY(-1px);
}

.site-nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.burger-line-1 {
  margin-bottom: 5px;
}

.site-nav-burger[aria-expanded="true"] .burger-line-1 {
  transform: translateY(3.25px) rotate(45deg);
}

.site-nav-burger[aria-expanded="true"] .burger-line-2 {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: #fff;
  display: none;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
  animation: mobileMenuIn 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes mobileMenuIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  flex-shrink: 0;
}

.mobile-menu-logo {
  color: var(--ink);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  background: transparent;
  color: rgba(10, 15, 12, 0.6);
  cursor: pointer;
}

.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-menu-links a {
  display: block;
  text-align: center;
  padding: 10px 32px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.2px;
  color: rgba(10, 15, 12, 0.7);
}

.mobile-menu-divider {
  width: calc(100% - 48px);
  height: 1px;
  background: rgba(10, 15, 12, 0.08);
  margin: 16px 0;
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  color: #fff;
}

.btn-arrow {
  background: var(--accent);
  color: var(--ink);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  padding: 0;
}

.hero-sticky {
  position: relative;
  height: 160vh;
}

.hero {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  align-items: center;
  will-change: opacity, transform;
}

.hero-canvas-holder {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-canvas-holder canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #f5f5f4;
  text-transform: capitalize;
  margin: 0;
  width: 850px;
  max-width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-sub {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: rgba(245, 245, 244, 0.75);
  width: 850px;
  max-width: 100%;
}

.prompt-box {
  margin-top: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 18px 18px 14px;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  width: 1000px;
  max-width: 100%;
  transition: border-color 0.15s ease;
}

.prompt-box:focus-within {
  border-color: rgba(33, 115, 70, 0.45);
}

.prompt-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  resize: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #f5f5f4;
}

.prompt-input::placeholder {
  color: rgba(245, 245, 244, 0.45);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.prompt-input.shake {
  animation: shake 0.35s ease;
}

.file-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.file-chips:not(:empty) {
  margin-top: 10px;
}

.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33, 115, 70, 0.18);
  color: #9be6ae;
  padding: 6px 8px 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  max-width: 220px;
}

.file-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-chip-remove {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #f5f5f4;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.prompt-toolbar {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.attach-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f4;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease;
}

.attach-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.attach-icon {
  font-size: 14px;
}

.generate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: var(--excel-green-dark);
  color: #fff;
  padding: 10px 8px 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.generate-btn:hover {
  opacity: 0.9;
}

.generate-btn.loading {
  opacity: 0.75;
  cursor: progress;
  padding: 10px 20px;
}

.usecase-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 1000px;
  max-width: 100%;
}

.usecase-item {
  position: relative;
}

.usecase-chip {
  border: 1px solid rgba(10, 15, 12, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.usecase-chip:hover {
  background: rgba(214, 245, 165, 0.85);
  border-color: rgba(33, 115, 70, 0.4);
  color: var(--excel-green-dark);
}

.usecase-item.open .usecase-chip {
  background: var(--excel-green-dark);
  border-color: var(--excel-green-dark);
  color: #fff;
}

.usecase-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(10, 15, 12, 0.1);
  border-radius: 14px;
  box-shadow: 0 20px 45px -18px rgba(10, 40, 25, 0.4);
  padding: 8px;
  flex-direction: column;
  gap: 2px;
}

.usecase-item.open .usecase-dropdown {
  display: flex;
}

.idea-item {
  text-align: left;
  border: none;
  background: transparent;
  color: #1c2620;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.4;
  cursor: pointer;
}

.idea-item:hover {
  background: rgba(33, 115, 70, 0.08);
}

.painpoints-section,
.audience-section {
  background-image:
    radial-gradient(ellipse 1000px 520px at 50% 0%, rgba(110, 122, 115, 0.1), rgba(110, 122, 115, 0) 70%),
    radial-gradient(circle, rgba(130, 140, 134, 0.12) 1px, transparent 1px);
  background-position: 0 0, 0 0;
  background-size: auto, 30px 30px;
}

.templates {
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  padding: 110px 40px;
}

.templates-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.templates-head {
  max-width: 640px;
}

.templates-head h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--ink);
  text-transform: capitalize;
}

.templates-head p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: #4a544e;
}

.templates-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.template-card {
  background: #ffffff;
  border: 1px solid rgba(10, 15, 12, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -22px rgba(10, 40, 25, 0.3);
}

.template-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}

.template-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.favorite-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(10, 15, 12, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.template-card:hover .favorite-btn {
  opacity: 1;
  transform: scale(1);
}

.card-body {
  padding: 14px 16px 16px;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.template-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pro-badge {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, #7c6cf6, #4f7cf6);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.templates-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.templates-cta .cta-btn {
  background: var(--ink);
  color: #fff;
}

.templates-cta .cta-btn:hover {
  background: #1c211d;
}

.workflow-section {
  --wf-bg: #ffffff;
  --wf-card-bg: #ffffff;
  --wf-card-border: rgba(10, 15, 12, 0.1);
  --wf-text-primary: var(--ink);
  --wf-text-secondary: #4a544e;
  --wf-text-muted: #8a8f88;
  background-color: var(--wf-bg);
  padding: 110px 40px;
}

.workflow-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.workflow-head {
  max-width: 680px;
}

.workflow-head h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--wf-text-primary);
}

.workflow-head p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: var(--wf-text-secondary);
}

.workflow-columns {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wf-col {
  display: flex;
  flex-direction: column;
}

.wf-card {
  background: var(--wf-card-bg);
  border: 1px solid var(--wf-card-border);
  border-radius: 18px;
  padding: 24px 20px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wf-card .card-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.wf-card .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--wf-text-muted);
}

.wf-card .title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--wf-text-primary);
}

.wf-card .card-body {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}

.wf-card .card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.workflow-section .col-caption {
  margin-top: 24px;
  padding: 0 2px;
}

.workflow-section .col-caption p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--wf-text-secondary);
}

.painpoints-section {
  --pp-text-secondary: #4a544e;
  --pp-text-muted: #8a8f88;
  --pp-border: #e6e5de;
  --pp-mock-bg: #f7f6f2;
  --pp-accent: var(--excel-green);
  --pp-accent-dark: var(--excel-green-dark);
  --pp-accent-bg: #e7f3ec;
  --pp-accent-border: #b9dcc7;
  background-color: var(--paper);
  padding: 110px 40px;
}

.pp-header {
  max-width: 1440px;
  margin: 0 auto 88px;
}

.pp-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #f5f5f4;
  max-width: 680px;
}

.pp-header p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: rgba(245, 245, 244, 0.75);
  max-width: 680px;
}

.pp-steps {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.pp-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pp-step.reverse .pp-text {
  order: 2;
}

.pp-step.reverse .pp-visual {
  order: 1;
}

.pp-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: rgba(245, 245, 244, 0.15);
  margin-bottom: 8px;
}

.pp-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #f5f5f4;
  margin-bottom: 14px;
}

.pp-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 245, 244, 0.7);
  max-width: 460px;
}

.pp-cta {
  margin-top: 18px;
}

.pp-panel {
  background: #ffffff;
  border: 1px solid var(--pp-border);
  border-radius: 16px;
  box-shadow: 0 20px 45px -30px rgba(10, 40, 25, 0.25);
  aspect-ratio: 1 / 1;
  display: flex;
  overflow: hidden;
}

.pp-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-section {
  background-color: #ffffff;
}

.compare-inner {
  max-width: 640px;
  margin: 0 auto 28px;
}

.compare-kicker {
  text-align: center;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8a8f88;
  margin: 0 auto 12px;
}

.compare-section h2 {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto;
}

.compare-subtext {
  text-align: center;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: #202a24;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Old-way-vs-new-way scroll morph ===== */

.compare-track {
  position: relative;
  height: 300vh;
}

.compare-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-stage {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.compare-toprow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.compare-label {
  font-size: 14px;
  font-weight: 500;
  color: #8a8f88;
  transition: color 0.5s ease;
  text-align: center;
}

.compare-label.before {
  color: var(--ink);
}

.compare-stage.is-after .compare-label.before {
  color: #8a8f88;
}

.compare-stage.is-after .compare-label.after {
  color: var(--ink);
}

.compare-dial-wrap {
  position: relative;
  flex-shrink: 0;
  width: 156px;
  height: 156px;
}

.compare-dial-arc {
  position: absolute;
  inset: 0;
  transform: rotate(-165deg);
}

.compare-knob {
  position: absolute;
  width: 76px;
  height: 76px;
  left: 50%;
  top: 50%;
  margin-left: -38px;
  margin-top: -38px;
  border-radius: 50%;
  transform: rotate(-55deg);
  transition: transform 0.1s linear;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.compare-knob-needle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 41px;
  border-radius: 2px;
  background: #8a8f88;
  transform: translate(-50%, -100%);
}

.compare-knob-dot {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a544e;
  top: calc(50% - 44px);
  transform: translateX(-50%);
}

.compare-knob-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 2px solid rgba(10, 15, 12, 0.12);
}

.compare-knob-sheen {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  opacity: 0.7;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), transparent 60%);
}

.compare-knob-icon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.compare-knob-before {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 22px;
  font-weight: 700;
  color: #4a544e;
}

.compare-knob-after {
  opacity: 0;
  background: linear-gradient(135deg, var(--excel-green), var(--excel-green-dark));
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.compare-stage.is-after .compare-knob-after {
  opacity: 1;
}

.compare-knob-after img {
  width: 28px;
  height: 28px;
}

.compare-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 15, 12, 0.1);
  background: #ffffff;
  padding: 40px;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.compare-stage.is-after .compare-card {
  background: #0d0d0d;
  border-color: rgba(255, 255, 255, 0.1);
}

.compare-card-glow {
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  background: radial-gradient(circle, var(--excel-green) 0%, var(--excel-green-dark) 55%, transparent 75%);
}

.compare-stage.is-after .compare-card-glow {
  opacity: 1;
}

.compare-layers {
  position: relative;
  display: grid;
}

.compare-layer {
  grid-column: 1;
  grid-row: 1;
  transition: opacity 0.5s ease;
}

.compare-layer-before {
  opacity: 1;
}

.compare-layer-after {
  opacity: 0;
}

.compare-stage.is-after .compare-layer-before {
  opacity: 0;
}

.compare-stage.is-after .compare-layer-after {
  opacity: 1;
}

.compare-layer h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
  transition: color 0.5s ease;
}

.compare-stage.is-after .compare-layer h3 {
  color: #fff;
}

.compare-tagline {
  font-style: italic;
  font-size: 13.5px;
  color: #8a8f88;
  margin: 0 0 24px;
  transition: color 0.5s ease;
}

.compare-stage.is-after .compare-tagline {
  color: rgba(255, 255, 255, 0.5);
}

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

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #4a544e;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease;
}

.compare-layer-before .compare-row {
  opacity: 1;
  transform: none;
}

.compare-stage.is-after .compare-layer-before .compare-row {
  opacity: 0;
  transform: translateY(8px);
}

.compare-stage.is-after .compare-layer-after .compare-row {
  opacity: 1;
  transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.compare-x,
.compare-check {
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.compare-x {
  background: rgba(10, 15, 12, 0.06);
  color: #8a8f88;
}

.compare-check {
  background: var(--excel-green);
  color: #fff;
}

.bento-section {
  background-color: #ffffff;
  padding: 110px 40px;
}

.bento-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.bento-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--ink);
  text-transform: capitalize;
}

.bento-header p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: #202a24;
}

.bento-card {
  position: relative;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10, 15, 12, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -22px rgba(0, 0, 0, 0.6);
}

.bento-icon-wrap {
  background: #f4f4f2;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon-svg {
  width: 96px;
  height: 96px;
}

.bento-card-body {
  padding: 18px 20px 22px;
}

.bento-tip-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}

.bento-tip-text {
  font-size: 14px;
  line-height: 1.55;
  color: #4a544e;
  margin: 0;
}

.audience-section {
  --aud-bg: #000000;
  --aud-card-bg: #0d0d0d;
  --aud-card-border: #232323;
  --aud-panel-bg: #161718;
  --aud-panel-border: #2a2b2e;
  --aud-text-primary: #f5f5f5;
  --aud-text-secondary: #9a9a9a;
  --aud-text-muted: #5f5f5f;
  background-color: var(--aud-bg);
  padding: 110px 40px;
}

.audience-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.audience-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.audience-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--aud-text-primary);
}

.audience-header p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--aud-text-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.aud-span-6 {
  grid-column: span 6;
}

.aud-span-3 {
  grid-column: span 3;
}

.aud-card {
  position: relative;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--aud-card-bg);
  border: 1px solid var(--aud-card-border);
  min-height: 420px;
}

.aud-span-3 {
  min-height: 380px;
}


.aud-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--aud-text-primary);
}

.aud-body p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--aud-text-secondary);
}

.aud-visual {
  border-radius: 14px;
  background: var(--aud-panel-bg);
  border: 1px solid var(--aud-panel-border);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.aud-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aud-span-6 .aud-visual {
  aspect-ratio: 2 / 1;
}

.aud-span-3 .aud-visual {
  aspect-ratio: 5 / 4;
}

.integrations-section {
  background-color: #ffffff;
  padding: 110px 40px;
}

.integrations-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.integrations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.integrations-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--ink);
  text-transform: capitalize;
  max-width: 620px;
}

.integrations-header p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: #202a24;
  max-width: 560px;
}

.integrations-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
  white-space: nowrap;
}

.integrations-link:hover {
  border-bottom-color: var(--ink);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pp-border, #e6e5de);
}

.integrations-card {
  padding: 40px 28px;
  border-right: 1px solid var(--pp-border, #e6e5de);
  border-bottom: 1px solid var(--pp-border, #e6e5de);
}

.integrations-card:nth-child(4n) {
  border-right: none;
}

.integrations-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.integrations-icon img {
  width: 28px;
  height: 28px;
}

.integrations-icon--tile {
  background: #ffffff;
  border: 1px solid rgba(10, 15, 12, 0.08);
}

.integrations-icon--tile img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.integrations-icon--wordmark {
  width: auto;
  height: 56px;
  background: none;
  justify-content: flex-start;
}

.integrations-icon--wordmark img {
  width: auto;
  height: 26px;
  object-fit: contain;
}

.integrations-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.integrations-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #4a544e;
}

@media (max-width: 900px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrations-card:nth-child(4n) {
    border-right: 1px solid var(--pp-border, #e6e5de);
  }

  .integrations-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 540px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .integrations-card {
    border-right: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-section {
  background-color: #ffffff;
  border-top: 1px solid rgba(10, 15, 12, 0.1);
  padding: 100px 40px;
}

.faq-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.faq-left {
  width: 360px;
  flex-shrink: 0;
}

.faq-left h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
}

.faq-muted {
  color: rgba(10, 15, 12, 0.35);
}

.faq-left p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: #202a24;
  max-width: 34ch;
}

.faq-right {
  flex: 1;
  min-width: 0;
  border-top: 1px solid rgba(10, 15, 12, 0.1);
}

.faq-row {
  border-bottom: 1px solid rgba(10, 15, 12, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}

.faq-question h3 {
  margin: 0;
  font: inherit;
  color: inherit;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 15, 12, 0.06);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-h {
  transform-origin: center;
}

.faq-icon-v {
  transform-origin: center;
  transition: transform 0.24s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.2s ease;
}

.faq-row.open .faq-icon-v {
  transform: scaleY(0);
  opacity: 0;
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faq-row.open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a544e;
  padding-bottom: 26px;
  max-width: 72ch;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-inner {
    flex-direction: column;
    gap: 40px;
  }

  .faq-left {
    width: 100%;
  }

  .faq-section {
    padding: 80px 24px;
  }

  .faq-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 980px) {
  .site-nav-links,
  .site-nav-actions {
    display: none;
  }

  .site-nav-burger {
    display: flex;
  }

  .site-nav-inner {
    padding: 10px clamp(16px, 6vw, 40px);
  }

  .site-nav.scrolled .site-nav-inner {
    padding: 8px 12px;
  }

  .hero-inner {
    padding: 50px 24px 60px;
  }

  h1 {
    font-size: 40px;
  }

  .nav-inner {
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 20px;
  }

  .templates {
    padding: 80px 24px;
  }

  .templates-head h2 {
    font-size: 32px;
  }

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

  .workflow-section {
    padding: 80px 24px;
  }

  .workflow-head h2 {
    font-size: 32px;
  }

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

  .wf-card {
    min-height: 420px;
  }

  .painpoints-section {
    padding: 80px 24px;
  }

  .pp-header h2 {
    font-size: 32px;
  }

  .pp-step {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pp-step.reverse .pp-text {
    order: 1;
  }

  .pp-step.reverse .pp-visual {
    order: 2;
  }

  .pp-steps {
    gap: 64px;
  }

  .compare-section h2 {
    font-size: 26px;
  }

  .compare-toprow {
    gap: 14px;
  }

  .compare-label {
    font-size: 12px;
    max-width: 80px;
  }

  .compare-dial-wrap {
    width: 120px;
    height: 120px;
  }

  .compare-knob {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
  }

  .compare-card {
    padding: 28px 24px;
  }

  .bento-section {
    padding: 80px 24px;
  }

  .bento-header h2 {
    font-size: 32px;
  }

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

  .audience-header h2 {
    font-size: 32px;
  }

  .audience-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .aud-span-6,
  .aud-span-3 {
    grid-column: span 6;
  }

  .integrations-section {
    padding: 80px 24px;
  }

  .integrations-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 620px) {
  .templates-grid {
    grid-template-columns: 1fr;
  }

  .workflow-columns {
    grid-template-columns: 1fr;
  }

  .wf-card {
    height: auto;
    min-height: 400px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .aud-span-6,
  .aud-span-3 {
    grid-column: span 1;
  }

  .aud-card {
    min-height: auto;
  }

  .aud-span-3 {
    min-height: auto;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-card {
    min-height: 180px;
  }
}

.site-footer {
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: hidden;
}

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 40px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 160px;
  flex-shrink: 0;
}

.footer-brand img {
  display: block;
}

.footer-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 4px;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-store-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-store-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.footer-heading {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-watermark {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 40px 0;
  text-align: center;
  line-height: 0;
  pointer-events: none;
  user-select: none;
}

.footer-watermark img {
  width: 100%;
  max-width: 1240px;
  height: auto;
  display: inline-block;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-copyright strong {
  font-weight: 600;
}

.footer-cookie-btn {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  padding: 0 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease;
}

.footer-cookie-btn:hover {
  color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s ease, background 0.15s ease;
}

.footer-social-btn svg {
  width: 15px;
  height: 15px;
}

.footer-social-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    padding: 40px 24px 24px;
  }

  .footer-brand {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .footer-watermark {
    padding: 16px 24px 0;
  }

  .footer-bottom {
    padding: 20px 24px 24px;
  }
}

.cta-banner {
  background-color: #ffffff;
  padding: 80px 40px 100px;
}

.cta-card {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: #0a0a0a;
}

.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 10%, rgba(0, 0, 0, 0.6), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: normal;
  color: rgba(245, 245, 244, 0.75);
  text-transform: capitalize;
}

.cta-highlight {
  color: #fff;
  font-weight: 600;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 245, 244, 0.7);
  max-width: 520px;
}

.cta-btn-wrap {
  position: relative;
  margin-top: 8px;
}

.cta-btn-glow {
  position: absolute;
  inset: -16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(32px);
  z-index: -1;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  background: #f5f5f4;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s ease;
}

.cta-btn-arrow {
  font-size: 15px;
  line-height: 1;
}

.cta-btn:hover {
  background: #fff;
}

@media (max-width: 620px) {
  .cta-banner {
    padding: 60px 24px 70px;
  }

  .cta-content {
    padding: 70px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}
