:root {
  --accent: #5B4FBC;
  --accent-light: #EEEDFE;
  --accent-hover: #4A3FA6;
  --accent-glow: rgba(91,79,188,0.18);

  --coral: #E8603A;
  --coral-light: #FFF0EB;
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  --green: #059669;
  --green-light: #ECFDF5;
  --amber: #D97706;
  --amber-light: #FFFBEB;
  --pink: #DB2777;
  --pink-light: #FDF2F8;

  --text: #191919;
  --text-secondary: #5F6368;
  --text-tertiary: #9CA3AF;
  --bg: #FFFFFF;
  --bg-warm: #FAF8F5;
  --border: #E3E0D8;
  --border-light: #EDEAE3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.serif { font-family: 'Newsreader', serif; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ─── SCROLL PROGRESS ─── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--coral)); width: 0%; z-index: 200; }

/* ─── NAV ─── */
nav { position: sticky; top: 3px; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
nav .inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); text-decoration: none; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px;
  background: var(--accent); color: #fff; border: none; border-radius: 100px;
  font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 24px var(--accent-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
  background: transparent; color: var(--text); border: 2px solid var(--border);
  border-radius: 100px; font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

.mobile-menu { display: none; background: none; border: none; cursor: pointer; }

/* ─── SECTIONS ─── */
section { padding: 100px 0; }
section:first-of-type { padding-top: 80px; }

.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: ''; width: 24px; height: 3px; border-radius: 2px; background: var(--accent);
}

h1 { font-size: clamp(40px, 5.5vw, 62px); font-weight: 700; line-height: 1.06; letter-spacing: -2px; }
h2 { font-size: clamp(30px, 3.5vw, 44px); font-weight: 700; line-height: 1.12; letter-spacing: -1px; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.3; }
p.body-text { font-size: 17px; line-height: 1.7; color: var(--text-secondary); }

.underline-accent {
  position: relative; display: inline;
  background-image: linear-gradient(120deg, var(--coral) 0%, var(--coral) 100%);
  background-repeat: no-repeat; background-size: 100% 6px; background-position: 0 88%;
}

/* ─── HERO ─── */
.hero-section { position: relative; overflow: hidden; }
.hero-bg-pattern {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(150deg, #EEEDFE 0%, #D4D0F9 40%, #C4BEFA 100%);
  border-radius: 0 0 0 60px;
}
.hero-dots {
  position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px; opacity: 0.35; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-subtitle { font-size: 18px; line-height: 1.65; color: var(--text-secondary); margin: 24px 0 12px; max-width: 480px; }
.hero-micro { font-size: 13px; color: var(--text-tertiary); margin-bottom: 32px; display: flex; align-items: center; gap: 6px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mockup {
  width: 100%; max-width: 480px; aspect-ratio: 4/3;
  background: var(--bg); border: 2px solid var(--border);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: 0 12px 48px rgba(91,79,188,0.12), 0 2px 4px rgba(0,0,0,0.04);
}
.hero-mockup-inner { width: 90%; display: flex; flex-direction: column; gap: 10px; }
.mockup-bar { height: 8px; border-radius: 4px; background: var(--border); }
.mockup-bar.accent { background: var(--accent-light); width: 60%; }
.mockup-card { background: var(--bg); border: 2px solid var(--border); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.mockup-score { width: 38px; height: 38px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 700; }

.hero-float-badge {
  position: absolute; background: var(--bg); border: 2px solid var(--border);
  border-radius: 14px; padding: 10px 16px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: float 3s ease-in-out infinite;
}
.hero-float-badge.top-left { top: -16px; left: -24px; border-left: 4px solid var(--green); }
.hero-float-badge.bottom-right { bottom: -16px; right: -24px; border-left: 4px solid var(--coral); animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── METRICS ─── */
.metrics { background: var(--bg); padding: 60px 0; border-top: 2px solid var(--border-light); border-bottom: 2px solid var(--border-light); }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.metric-item { text-align: center; }
.metric-number { font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -2px; }
.metric-item:nth-child(1) .metric-number { color: var(--accent); }
.metric-item:nth-child(2) .metric-number { color: var(--coral); }
.metric-item:nth-child(3) .metric-number { color: var(--green); }
.metric-label { font-size: 14px; color: var(--text-secondary); margin-top: 10px; font-weight: 500; }

/* ─── PROBLEM/SOLUTION ─── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-grid.reversed { direction: rtl; }
.problem-grid.reversed > * { direction: ltr; }
.illustration-box { background: var(--bg-warm); border-radius: 24px; padding: 48px; display: flex; align-items: center; justify-content: center; min-height: 320px; border: 2px solid var(--border-light); }

/* ─── STEPS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.step-card {
  text-align: center; background: var(--bg); border: 2px solid var(--border);
  border-radius: 20px; padding: 36px 24px; transition: all 0.25s; position: relative;
}
.step-card:nth-child(1) { border-top: 5px solid var(--coral); }
.step-card:nth-child(2) { border-top: 5px solid var(--accent); }
.step-card:nth-child(3) { border-top: 5px solid var(--green); }
.step-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.step-number { width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.step-card:nth-child(1) .step-number { background: var(--coral-light); color: var(--coral); }
.step-card:nth-child(2) .step-number { background: var(--accent-light); color: var(--accent); }
.step-card:nth-child(3) .step-number { background: var(--green-light); color: var(--green); }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; }

/* ─── CASES ─── */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.case-card {
  background: var(--bg); border: 2px solid var(--border); border-radius: 20px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: all 0.25s;
}
.case-card:nth-child(1) { border-left: 5px solid var(--coral); }
.case-card:nth-child(2) { border-left: 5px solid var(--green); }
.case-card:nth-child(3) { border-left: 5px solid var(--blue); }
.case-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.case-metric { font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -1px; }
.case-card:nth-child(1) .case-metric { color: var(--coral); }
.case-card:nth-child(2) .case-metric { color: var(--green); }
.case-card:nth-child(3) .case-metric { color: var(--blue); }
.case-card h3 { font-size: 16px; }
.case-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ─── TESTIMONIAL ─── */
.testimonial-section { text-align: center; }
.quote-mark { font-family: 'Newsreader', serif; font-size: 88px; color: var(--accent); line-height: 0.5; margin-bottom: 24px; opacity: 0.3; }
.quote-text { font-family: 'Newsreader', serif; font-size: clamp(20px, 2.5vw, 28px); font-style: italic; line-height: 1.5; color: var(--text); max-width: 720px; margin: 0 auto 32px; }
.quote-author { font-size: 15px; color: var(--text-secondary); }
.quote-author strong { color: var(--text); font-weight: 600; }

/* ─── VALUE ─── */
.value-equation { display: flex; align-items: center; justify-content: center; gap: 24px; margin: 48px 0 40px; flex-wrap: wrap; }
.value-card { background: var(--bg); border: 2px solid var(--border); border-radius: 20px; padding: 32px 40px; text-align: center; }
.value-card .number { font-size: 32px; font-weight: 700; line-height: 1; }
.value-card .label { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }
.value-sign { font-size: 36px; color: var(--text-tertiary); font-weight: 300; }
.value-result { background: var(--accent-light); border: 3px solid var(--accent); border-radius: 20px; padding: 32px 40px; text-align: center; }
.value-result .number { font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; }
.value-result .label { font-size: 14px; color: var(--accent); margin-top: 8px; font-weight: 500; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-card {
  background: var(--bg); border: 2px solid var(--border); border-radius: 20px;
  padding: 36px 28px; display: flex; flex-direction: column; text-align: left; transition: all 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.pricing-card.featured { border: 3px solid var(--accent); box-shadow: 0 6px 28px var(--accent-glow); position: relative; }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 18px; border-radius: 100px; }
.pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 42px; font-weight: 700; line-height: 1; margin-bottom: 4px; letter-spacing: -1px; }
.pricing-card.featured .pricing-price { color: var(--accent); }
.pricing-period { font-size: 14px; color: var(--text-tertiary); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.pricing-features li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.pricing-check { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── FAQ ─── */
.faq-list { max-width: 700px; margin: 48px auto 0; }
.faq-item { border-bottom: 2px solid var(--border-light); }
.faq-question { width: 100%; background: none; border: none; padding: 24px 0; font-size: 16px; font-weight: 600; color: var(--text); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; transition: color 0.2s; }
.faq-question:hover { color: var(--accent); }
.faq-chevron { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.34, 1, 0.64, 1); }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 900px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 2px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-consent { font-size: 13px; color: var(--text-tertiary); line-height: 1.5; }
.form-consent a { color: var(--accent); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-method p { font-size: 14px; color: var(--text-secondary); }

/* ─── CTA / FOOTER ─── */
.final-cta { background: var(--bg-warm); text-align: center; border-top: 2px solid var(--border-light); }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
footer { padding: 48px 0; border-top: 1px solid var(--border-light); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-tertiary); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy { font-size: 13px; color: var(--text-tertiary); }

/* ─── PLATFORM PAGE ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card { padding: 32px 28px; border-radius: 20px; background: var(--bg); border: 2px solid var(--border); transition: all 0.25s; }
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.feature-icon { width: 48px; height: 48px; margin-bottom: 20px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.feature-card:nth-child(1) .feature-icon { background: var(--accent-light); }
.feature-card:nth-child(2) .feature-icon { background: var(--coral-light); }
.feature-card:nth-child(3) .feature-icon { background: var(--blue-light); }
.feature-card:nth-child(4) .feature-icon { background: var(--green-light); }
.feature-card:nth-child(5) .feature-icon { background: var(--amber-light); }
.feature-card:nth-child(6) .feature-icon { background: var(--pink-light); }
.feature-card h3 { margin-bottom: 10px; font-size: 16px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

.integrations-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 48px; }
.integration-item { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 100px; }
.integration-icon { width: 68px; height: 68px; border-radius: 18px; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.integration-icon:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.integration-item span { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.integration-badge { font-size: 11px; color: var(--accent); background: var(--accent-light); padding: 3px 10px; border-radius: 100px; font-weight: 600; }

.video-container { max-width: 800px; margin: 48px auto 0; aspect-ratio: 16/9; background: var(--bg-warm); border: 2px solid var(--border); border-radius: 20px; display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; overflow: hidden; transition: all 0.3s; }
.video-container:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: var(--accent); }
.play-btn { width: 76px; height: 76px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; box-shadow: 0 6px 24px var(--accent-glow); }
.video-container:hover .play-btn { transform: scale(1.1); }
.screenshot-placeholder { width: 100%; aspect-ratio: 16/10; background: var(--bg-warm); border: 2px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); font-size: 14px; }
.page-hero { padding: 72px 0 56px; text-align: center; background: linear-gradient(180deg, var(--accent-light) 0%, var(--bg) 100%); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* ─── SVG ILLUSTRATIONS ─── */
.notion-illustration svg { width: 100%; height: auto; }
.notion-illustration path, .notion-illustration circle, .notion-illustration line, .notion-illustration rect, .notion-illustration ellipse, .notion-illustration polyline { stroke: var(--text); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.notion-illustration .filled { fill: var(--text); stroke: none; }
.notion-illustration .accent-stroke { stroke: var(--accent); }
.notion-illustration .accent-fill { fill: var(--accent); stroke: none; }
.notion-illustration .light-fill { fill: var(--bg-warm); }
.notion-illustration .white-fill { fill: #fff; }
.notion-illustration .border-fill { fill: var(--border); }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
@keyframes pulse-shadow { 0%,100% { box-shadow: 0 2px 12px var(--accent-glow); } 50% { box-shadow: 0 6px 28px rgba(91,79,188,0.35); } }
.btn-pulse { animation: pulse-shadow 3s ease-in-out infinite; }

/* ─── MOBILE ─── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 20px; background: var(--bg); border-top: 2px solid var(--border); z-index: 99; }
.mobile-cta-bar .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

/* ─── NOTION BENTO CARDS (colored background frames for screenshots) ─── */
.bento-card {
  border-radius: 24px; overflow: hidden; transition: all 0.3s cubic-bezier(0.34, 1, 0.64, 1);
  position: relative;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.bento-card .bento-header { padding: 28px 28px 0; }
.bento-card .bento-header .section-label { margin-bottom: 8px; }
.bento-card .bento-header h3 { font-size: 22px; font-weight: 700; }
.bento-card .bento-content {
  padding: 24px; margin-top: 20px; border-radius: 16px 16px 0 0;
  min-height: 240px; display: flex; align-items: center; justify-content: center;
}
.bento-accent { background: var(--accent-light); border: 2px solid #D4D0F9; }
.bento-accent .bento-content { background: linear-gradient(180deg, #D4D0F9 0%, #EEEDFE 100%); }
.bento-coral { background: var(--coral-light); border: 2px solid #F5C4B3; }
.bento-accent { background: #E0DCFA; border: 2px solid #C4BEFA; }
.bento-accent .bento-content { background: linear-gradient(180deg, #C4BEFA 0%, #DDD8F8 100%); }
.bento-coral { background: #F9D4C6; border: 2px solid #F0997B; }
.bento-coral .bento-content { background: linear-gradient(180deg, #F0997B 0%, #F9D4C6 100%); }
.bento-blue { background: #C8DFFA; border: 2px solid #85B7EB; }
.bento-blue .bento-content { background: linear-gradient(180deg, #85B7EB 0%, #C8DFFA 100%); }
.bento-green { background: #B5E8D5; border: 2px solid #5DCAA5; }
.bento-green .bento-content { background: linear-gradient(180deg, #5DCAA5 0%, #B5E8D5 100%); }
.bento-amber { background: #FAD68A; border: 2px solid #EF9F27; }
.bento-amber .bento-content { background: linear-gradient(180deg, #EF9F27 0%, #FAD68A 100%); }
.bento-card .screenshot-placeholder {
  border: none; background: rgba(255,255,255,0.92); border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

/* ─── BENTO GRID LAYOUT (for platform page) ─── */
.bento-grid {
  display: grid; gap: 24px; margin-top: 56px;
}
.bento-grid-2 { grid-template-columns: 1fr 1fr; }
.bento-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.bento-grid .bento-wide { grid-column: span 2; }

/* ─── ENHANCED MICRO-ANIMATIONS ─── */
@keyframes slide-up { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in-scale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes bounce-subtle { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.hover-lift { transition: transform 0.25s cubic-bezier(0.34, 1, 0.64, 1), box-shadow 0.25s; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.hover-icon-bounce:hover .feature-icon { animation: bounce-subtle 0.4s ease; }

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* icon hover glow for feature cards */
.feature-card:hover .feature-icon { box-shadow: 0 4px 16px rgba(91,79,188,0.12); }

/* step card connecting arrows (desktop only) */
.steps-connector-line {
  display: flex; align-items: center; justify-content: center; margin-top: -14px; margin-bottom: -14px;
  position: relative; z-index: 0;
}
.steps-connector-line::before {
  content: ''; position: absolute; top: 50%; left: 15%; right: 15%;
  height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

/* smooth scroll indicator in hero */
.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: absolute; bottom: -48px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: var(--text-tertiary); font-weight: 500;
  animation: bounce-subtle 2s ease-in-out infinite;
}
.scroll-hint svg { opacity: 0.5; }

/* colorful pill tags used in hero mockup and platform */
.pill { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.pill-green { background: var(--green-light); color: var(--green); }
.pill-coral { background: var(--coral-light); color: var(--coral); }
.pill-accent { background: var(--accent-light); color: var(--accent); }
.pill-amber { background: var(--amber-light); color: var(--amber); }
.pill-blue { background: var(--blue-light); color: var(--blue); }

@media (max-width: 768px) {
  .bento-grid-2, .bento-grid-3 { grid-template-columns: 1fr; }
  .bento-grid .bento-wide { grid-column: span 1; }
  .steps-connector-line { display: none; }
  .scroll-hint { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-grid, .problem-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid.reversed { direction: ltr; }
  .steps-grid, .features-grid, .pricing-grid, .cases-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; gap: 32px; }
  .value-equation { flex-direction: column; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .hero-visual { order: -1; }
  .integrations-row { gap: 24px; }
  .hero-bg-pattern { width: 100%; height: 40%; border-radius: 0; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}
