/* ===== Variables ===== */
:root {
    --bg: #ffffff;
    --bg-tint: #f7f5ff;
    --bg-soft: #faf9ff;
    --surface: #ffffff;
    --border: #ece8fa;
    --border-strong: #d9d0fb;
    --text: #171231;
    --text-dim: #5b5575;
    --text-faint: #8b85a3;
    --purple: #7c3aed;
    --purple-light: #8b5cf6;
    --purple-bright: #a78bfa;
    --violet-deep: #6d28d9;
    --green: #16a34a;
    --grad: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 55%, #6d28d9 100%);
    --grad-strip: linear-gradient(120deg, #7c3aed 0%, #6d28d9 55%, #5b21b6 100%);
    --grad-soft: linear-gradient(135deg, #f1ecff, #faf9ff);
    --radius: 22px;
    --radius-sm: 16px;
    --shadow-sm: 0 6px 24px -12px rgba(80, 50, 160, 0.18);
    --shadow-md: 0 24px 60px -28px rgba(80, 50, 160, 0.45);
    --shadow-lg: 0 40px 90px -40px rgba(80, 50, 160, 0.55);
    --maxw: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Onest", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2 { font-family: "Unbounded", "Onest", sans-serif; line-height: 1.1; letter-spacing: -0.035em; font-weight: 700; }
h3 { font-family: "Onest", sans-serif; line-height: 1.2; letter-spacing: -0.015em; font-weight: 700; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ===== Icons ===== */
.ico { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ico--xs { width: 14px; height: 14px; stroke-width: 2.4; }

/* ===== Header ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
    border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(16px); box-shadow: 0 4px 24px -16px rgba(80, 50, 160, 0.4); border-bottom-color: var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.logo__mark { width: 28px; height: 28px; border-radius: 9px; background: var(--grad); box-shadow: 0 8px 20px -6px rgba(124, 58, 237, 0.6); position: relative; }
.logo__mark::after { content: ""; position: absolute; inset: 7px; border-radius: 4px; background: #fff; }
.logo__text { font-family: "Unbounded"; font-size: 1.3rem; letter-spacing: 0.04em; }
.nav { display: flex; gap: 32px; margin-left: auto; }
.nav__link { color: var(--text-dim); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav__link:hover { color: var(--purple); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: "Onest"; font-weight: 700; font-size: 1rem; padding: 15px 28px; border-radius: 100px; border: 1px solid transparent; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s; white-space: nowrap; }
.btn--sm { padding: 11px 20px; font-size: 0.9rem; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 14px 34px -12px rgba(124, 58, 237, 0.7); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -12px rgba(124, 58, 237, 0.85); }
.btn--video { background: transparent; color: var(--text); padding-left: 8px; gap: 14px; }
.btn--video:hover .play-circle { transform: scale(1.08); box-shadow: 0 14px 30px -10px rgba(124, 58, 237, 0.6); }
.play-circle { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--grad); transition: transform 0.25s var(--ease), box-shadow 0.25s; box-shadow: 0 10px 24px -10px rgba(124, 58, 237, 0.55); }
.play-icon { width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.btn-video__text { display: flex; flex-direction: column; align-items: flex-start; font-size: 1rem; line-height: 1.2; }
.btn-video__text small { font-weight: 500; color: var(--text-faint); font-size: 0.82rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ===== Eyebrow ===== */
.eyebrow { display: inline-block; font-family: "Onest"; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple); margin-bottom: 18px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 150px 0 100px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(60% 50% at 80% 0%, rgba(139, 92, 246, 0.14), transparent 70%),
    radial-gradient(50% 40% at 0% 30%, rgba(167, 139, 250, 0.1), transparent 70%),
    var(--bg); }
.hero__inner { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 50px; align-items: center; }
.hero__title { font-size: clamp(2.3rem, 4.6vw, 3.8rem); font-weight: 700; margin-bottom: 22px; }
.hero__subtitle { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--text-dim); max-width: 530px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero__features { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero__features li { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; font-weight: 600; color: var(--text-dim); }
.hf-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--bg-tint); border: 1px solid var(--border); color: var(--purple); }
.hf-icon .ico { width: 18px; height: 18px; }

/* ===== Showcase (3D dashboards) ===== */
.showcase { position: relative; height: 540px; perspective: 1600px; }
.showcase__orb { position: absolute; border-radius: 50%; z-index: 0; }
.showcase__orb--1 { width: 40px; height: 40px; left: 6%; bottom: 26%; background: var(--grad); box-shadow: 0 16px 30px -10px rgba(124, 58, 237, 0.6); animation: float 5s ease-in-out infinite; }
.showcase__orb--2 { width: 20px; height: 20px; right: 10%; top: 8%; background: var(--purple-bright); animation: float 6s ease-in-out infinite reverse; }
.showcase__blob { position: absolute; inset: 8% 2% 6% 8%; z-index: -1; background: radial-gradient(circle at 60% 50%, rgba(139, 92, 246, 0.22), transparent 65%); filter: blur(40px); }

.device { position: absolute; transform-style: preserve-3d; }

/* Laptop */
.device--laptop { right: 0; top: 18%; width: 400px; transform: rotateY(-16deg) rotateX(6deg); animation: floatY 7s ease-in-out infinite; }
.laptop__screen { background: #fff; border: 1px solid var(--border); border-radius: 16px 16px 4px 4px; padding: 14px; box-shadow: var(--shadow-lg); }
.laptop__base { height: 14px; margin: 0 -22px; background: linear-gradient(#e9e4fb, #d7cffb); border-radius: 0 0 14px 14px; box-shadow: 0 16px 30px -16px rgba(80, 50, 160, 0.5); }
.laptop__base::after { content: ""; display: block; width: 70px; height: 5px; margin: 4px auto 0; border-radius: 0 0 6px 6px; background: #c4b8f2; }
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dash__title { font-family: "Unbounded"; font-weight: 600; font-size: 0.95rem; }
.dash__pill { font-size: 0.78rem; font-weight: 700; color: var(--green); background: #e9f9ef; padding: 4px 10px; border-radius: 100px; }
.line-chart { width: 100%; height: 120px; display: block; }
.dash__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.mini { background: var(--bg-tint); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; gap: 4px; }
.mini__label { font-size: 0.72rem; color: var(--text-faint); }
.mini__val { font-family: "Unbounded"; font-weight: 700; font-size: 1.1rem; }
.mini__val--up { color: var(--green); }

/* Phone */
.device--phone { left: 0; bottom: 0; width: 188px; transform: rotateY(12deg) rotateX(4deg); animation: floatY 6s ease-in-out infinite reverse; z-index: 3; }
.phone__screen { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 26px 18px 18px; box-shadow: var(--shadow-lg); }
.phone__notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 54px; height: 8px; border-radius: 100px; background: #e6e0fa; z-index: 4; }
.phone__label { font-size: 0.74rem; color: var(--text-faint); }
.phone__big { display: block; font-family: "Unbounded"; font-weight: 700; font-size: 1.7rem; margin: 2px 0; }
.phone__delta { display: inline-flex; align-items: center; gap: 3px; font-size: 0.78rem; font-weight: 700; color: var(--green); }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin: 16px 0 14px; }
.bars span { flex: 1; height: var(--h); border-radius: 6px 6px 3px 3px; background: linear-gradient(var(--purple-bright), var(--purple)); opacity: 0.9; }
.bars span:last-child { background: var(--grad); box-shadow: 0 6px 14px -4px rgba(124, 58, 237, 0.6); }
.phone__list li { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 7px 0; border-top: 1px solid var(--border); color: var(--text-dim); }
.phone__list b { color: var(--purple); }

/* Float cards */
.float-card { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 2px; z-index: 5; }
.float-card--auto { right: -6px; top: 6%; animation: float 5.5s ease-in-out infinite; }
.float-card--profit { left: 2%; top: 2%; animation: float 6.5s ease-in-out infinite reverse; }
.fc__label { font-size: 0.72rem; font-weight: 700; }
.fc__sub { font-size: 0.66rem; color: var(--text-faint); }
.fc__big { font-family: "Unbounded"; font-weight: 700; font-size: 1.3rem; color: var(--purple); }
.fc__big--green { color: var(--green); }
.fc__pill { align-self: flex-start; font-size: 0.66rem; font-weight: 700; color: var(--green); background: #e9f9ef; padding: 2px 8px; border-radius: 100px; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatY { 0%, 100% { transform: translateY(0) rotateY(-16deg) rotateX(6deg); } 50% { transform: translateY(-14px) rotateY(-16deg) rotateX(6deg); } }
.device--phone { animation-name: floatPhone; }
@keyframes floatPhone { 0%, 100% { transform: translateY(0) rotateY(12deg) rotateX(4deg); } 50% { transform: translateY(-12px) rotateY(12deg) rotateX(4deg); } }

/* ===== Cases (Stripe/Linear style) ===== */
.cases { position: relative; padding: 120px 0 82px; background: #fff; }
.cases .section__head { max-width: 860px; margin-bottom: 68px; }
.cases .section__title { font-size: clamp(2.25rem, 4vw, 3.55rem); }
.cases .section__lead { max-width: 700px; margin: 0 auto; font-size: clamp(1.05rem, 1.35vw, 1.22rem); }
.carousel { position: relative; }
.carousel__stage { position: relative; max-width: 1600px; margin: 0 auto; padding: 0 80px; }
.carousel__viewport { overflow: hidden; cursor: grab; padding: 12px; }
.carousel__viewport.dragging { cursor: grabbing; }
.carousel__track { display: flex; transition: transform 0.6s var(--ease); will-change: transform; align-items: stretch; }
.carousel__track.no-anim { transition: none; }
.slide { flex: 0 0 100%; min-width: 0; padding: 16px; box-sizing: border-box; display: flex; justify-content: center; }

/* Card */
.case { position: relative; display: grid; grid-template-columns: minmax(0, 48fr) minmax(0, 52fr); width: 100%; max-width: 1400px; min-height: 650px; background: #fff; border: 1px solid rgba(217, 208, 251, 0.6); border-radius: 32px; overflow: hidden; box-shadow: 0 30px 70px -45px rgba(23, 18, 49, 0.3), 0 10px 30px -24px rgba(124, 58, 237, 0.2); transition: box-shadow 0.4s var(--ease), border-color 0.4s, transform 0.4s var(--ease); }
.case:hover { border-color: var(--border-strong); box-shadow: 0 40px 90px -50px rgba(23, 18, 49, 0.38), 0 16px 44px -28px rgba(124, 58, 237, 0.28); transform: translateY(-2px); }

/* Photo */
.case__media { position: relative; background: #f4f1fb; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.case__media::after { content: ""; position: absolute; inset: 0; z-index: 3; background: linear-gradient(90deg, rgba(23, 18, 49, 0.06), transparent 42%), linear-gradient(180deg, transparent 62%, rgba(23, 18, 49, 0.12)); pointer-events: none; }
.case__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform 1s var(--ease), filter 1s var(--ease); }
.case:hover .case__media img { transform: scale(1.035); filter: saturate(1.04) contrast(1.03); }
.case__watermark { width: auto; height: 180px; color: rgba(124, 58, 237, 0.18); stroke-width: 1.1; position: relative; z-index: 1; }

/* Content */
.case__content { padding: clamp(40px, 3.6vw, 60px); display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.case__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.case__kicker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 100px; background: #fff; border: 1px solid var(--border); color: var(--purple); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 10px 24px -20px rgba(80, 50, 160, 0.38); }
.case__kicker .ico { width: 15px; height: 15px; }
.case__num { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: clamp(2rem, 2.8vw, 2.9rem); line-height: 1; letter-spacing: -0.05em; color: #e7e0fb; }
.case__name { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: clamp(1.8rem, 2.8vw, 2.7rem); letter-spacing: -0.045em; line-height: 1.04; }
.case__desc { color: var(--text-dim); font-size: clamp(1rem, 1.1vw, 1.12rem); line-height: 1.55; max-width: 560px; }
.case__eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--text-faint); }
.case__result-box { display: flex; flex-direction: column; gap: 18px; padding: clamp(20px, 1.8vw, 28px); border-radius: 22px; background: linear-gradient(180deg, #ffffff, #faf8ff); border: 1px solid var(--border); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 22px 52px -44px rgba(80, 50, 160, 0.45); }
.case__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.metric { display: flex; flex-direction: column; gap: 8px; }
.metric__ic { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: #fff; border: 1px solid var(--border); color: var(--purple); box-shadow: 0 8px 20px -16px rgba(80, 50, 160, 0.4); }
.metric__ic .ico { width: 18px; height: 18px; }
.metric h4 { font-size: 0.92rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
.metric p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.4; }
.case__changes { display: flex; flex-direction: column; gap: 16px; }
.case__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 26px; }
.case__grid li { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.case__check { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #f1ecff; color: var(--purple); flex-shrink: 0; }
.case__check .ico { width: 13px; height: 13px; stroke-width: 2.6; }

/* CTA card */
.case--cta { grid-template-columns: 1fr; place-items: center; background: #fff; }
.case__cta-inner { margin: 0 auto; max-width: 620px; text-align: center; padding: 56px 40px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.case__ic--lg { width: 78px; height: 78px; border-radius: 22px; background: var(--grad); color: #fff; box-shadow: 0 20px 44px -16px rgba(124, 58, 237, 0.6); border: 0; }
.case__ic--lg .ico { width: 38px; height: 38px; }
.case__cta-text { color: var(--text-dim); font-size: 1.08rem; max-width: 520px; }
.case__form { display: flex; flex-wrap: wrap; gap: 12px; width: 100%; max-width: 560px; margin-top: 10px; justify-content: center; }
.case__form input { flex: 1 1 150px; padding: 16px 22px; border-radius: 100px; border: 1.5px solid var(--border-strong); background: #fff; font-family: "Onest"; font-size: 1rem; color: var(--text); transition: border-color 0.25s, box-shadow 0.25s; }
.case__form input::placeholder { color: var(--text-faint); }
.case__form input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12); }
.case__form .btn { flex: 1 1 100%; }
.form-note { color: var(--green); font-weight: 600; min-height: 20px; margin-top: 4px; }

/* Side flippers (outside the card) */
.carousel__btn { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border-strong); color: var(--purple); cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s; box-shadow: 0 18px 40px -18px rgba(80, 50, 160, 0.45); }
.carousel__btn:hover { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 22px 48px -16px rgba(124, 58, 237, 0.6); }
.carousel__btn .ico { width: 26px; height: 26px; stroke-width: 2.2; }
.carousel__btn--side { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; }
.carousel__btn--side:hover { transform: translateY(-50%) scale(1.08); }
.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }
#carouselPrev .ico { transform: rotate(180deg); }
.carousel__dots { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 34px; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--border-strong); cursor: pointer; padding: 0; transition: width 0.3s var(--ease), background 0.3s; }
.carousel__dot.active { background: var(--purple); width: 28px; border-radius: 100px; }

@media (max-width: 1040px) {
    .carousel__stage { padding: 0 58px; }
    .carousel__btn { width: 54px; height: 54px; }
    .case { grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); min-height: 600px; }
    .case__content { padding: 40px; }
    .case__metrics { gap: 14px; }
}
@media (max-width: 820px) {
    .cases { padding: 84px 0 58px; }
    .cases .section__head { margin-bottom: 42px; }
    .carousel__stage { padding: 0 20px; }
    .carousel__btn--side { display: none; }
    .case { grid-template-columns: 1fr; min-height: 0; }
    .case__media { min-height: 360px; }
    .case__watermark { height: 110px; }
    .case__content { padding: 32px; gap: 20px; }
    .case__cta-inner { padding: 44px 28px; }
}
@media (max-width: 540px) {
    .carousel__stage { padding: 0 10px; }
    .carousel__viewport { padding: 6px; }
    .slide { padding: 8px; }
    .case { border-radius: 28px; }
    .case__media { min-height: 260px; }
    .case__content { padding: 26px; }
    .case__metrics { grid-template-columns: 1fr; gap: 14px; }
    .case__grid { grid-template-columns: 1fr; }
    .case__result-box { border-radius: 18px; padding: 20px; }
}

/* ===== Strip ===== */
.strip { background: var(--grad-strip); color: #fff; padding: 60px 0; position: relative; overflow: hidden; }
.strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 60%); }
.strip__inner { position: relative; display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 40px; align-items: center; }
.strip__title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; }
.strip__title span { display: block; opacity: 0.85; }
.strip__steps { display: flex; align-items: stretch; gap: 6px; }
.sstep { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sstep__ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; backdrop-filter: blur(6px); }
.sstep__ic .ico { width: 26px; height: 26px; }
.sstep p { font-size: 0.82rem; font-weight: 600; line-height: 1.3; max-width: 130px; }
.sstep__arrow { display: grid; place-items: center; color: #fff; opacity: 0.55; padding-bottom: 26px; }
.sstep__arrow .ico { width: 22px; height: 22px; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 700; margin-bottom: 16px; }
.section__lead { color: var(--text-dim); font-size: 1.08rem; }

/* ===== Cards ===== */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; }
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }

.problem { display: flex; flex-direction: column; gap: 14px; }
.problem__num { font-family: "Unbounded"; font-weight: 700; font-size: 1.1rem; color: var(--purple-bright); }
.problem h3 { font-size: 1.18rem; font-weight: 600; }

.feature { display: flex; flex-direction: column; gap: 14px; }
.feature__ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--bg-tint); border: 1px solid var(--border); color: var(--purple); }
.feature__ic .ico { width: 26px; height: 26px; }
.section--tint .feature__ic { background: #fff; }
.feature h3 { font-size: 1.22rem; }
.feature p { color: var(--text-dim); font-size: 0.96rem; }

/* ===== Roadmap ===== */
.roadmap { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.roadmap__line { position: absolute; top: 34px; left: 9%; right: 9%; height: 2px; background: linear-gradient(90deg, var(--border-strong), var(--purple), var(--border-strong)); z-index: 0; }
.roadmap__step { position: relative; text-align: center; }
.roadmap__dot { position: relative; display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%; background: #fff; border: 2px solid var(--border-strong); box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.05), var(--shadow-sm); color: var(--purple); z-index: 1; transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s; }
.roadmap__ic { width: 28px; height: 28px; transition: color 0.3s; }
.roadmap__num { position: absolute; top: -8px; right: -6px; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--grad); color: #fff; font-family: "Unbounded"; font-weight: 700; font-size: 0.72rem; box-shadow: 0 6px 14px -6px rgba(124, 58, 237, 0.6); }
.roadmap__step:hover .roadmap__dot { background: var(--grad); border-color: transparent; transform: scale(1.06); color: #fff; }
.roadmap__step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.roadmap__step p { font-size: 0.9rem; color: var(--text-dim); }

/* ===== CTA ===== */
.cta-section { padding: 30px 0 110px; }
.cta { position: relative; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: center; background: linear-gradient(180deg, #ffffff, #f7f4ff); border: 1px solid var(--border); border-radius: 32px; padding: 56px; overflow: hidden; box-shadow: 0 0 100px -30px rgba(124, 58, 237, 0.4), var(--shadow-md); }
.cta::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(139, 92, 246, 0.16), transparent 65%); pointer-events: none; }
.cta__art { position: relative; display: flex; align-items: flex-end; gap: 12px; height: 160px; padding: 20px; }
.cta__bar { width: 26px; height: var(--h); border-radius: 8px 8px 4px 4px; background: linear-gradient(var(--purple-bright), var(--purple)); }
.cta__bar:last-of-type { background: var(--grad); box-shadow: 0 10px 24px -8px rgba(124, 58, 237, 0.6); }
.cta__arrow { position: absolute; top: 0; right: 0; width: 110px; height: 80px; }
.cta__body { position: relative; }
.cta__title { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 14px; }
.cta__text { color: var(--text-dim); font-size: 1.08rem; margin-bottom: 30px; max-width: 520px; }
.cta__form { display: flex; gap: 12px; flex-wrap: wrap; }
.cta__form input { flex: 1 1 200px; padding: 16px 22px; border-radius: 100px; border: 1.5px solid var(--border-strong); background: #fff; font-family: "Onest"; font-size: 1rem; color: var(--text); transition: border-color 0.25s, box-shadow 0.25s; }
.cta__form input::placeholder { color: var(--text-faint); }
.cta__form input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12); }
.cta__form .btn { flex: 1 1 100%; max-width: 260px; }
.cta__note { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--text-faint); font-size: 0.88rem; font-weight: 500; min-height: 20px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 50px 0; background: var(--bg-soft); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__tagline { color: var(--text-dim); max-width: 460px; }
.footer__copy { color: var(--text-faint); font-size: 0.88rem; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: calc(var(--d, 0) * 0.07s); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Mobile nav ===== */
.nav.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: #fff; padding: 22px 24px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .showcase { height: 460px; max-width: 480px; margin: 0 auto; transform: scale(0.92); }
    .strip__inner { grid-template-columns: 1fr; gap: 30px; }
    .strip__steps { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .sstep__arrow { display: none; }
    .sstep { flex: 0 1 130px; }
    .cards--3 { grid-template-columns: repeat(2, 1fr); }
    .roadmap { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .roadmap__line { display: none; }
    .cta { grid-template-columns: 1fr; }
    .cta__art { display: none; }
}
@media (max-width: 720px) {
    .nav { display: none; }
    .burger { display: flex; }
    .header .btn--primary { display: none; }
    .hero { padding: 120px 0 70px; }
    .section { padding: 70px 0; }
}
@media (max-width: 540px) {
    .cards--3, .roadmap { grid-template-columns: 1fr; }
    .cta { padding: 36px 24px; }
    .showcase { transform: scale(0.8); height: 420px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
