:root {
  color-scheme: dark;
  --bg: #020806;
  --bg-deep: #000403;
  --surface: #07130f;
  --surface-2: #0b1b15;
  --surface-3: #10231c;
  --fg: #f4f7f2;
  --muted: #8a9990;
  --muted-2: #65746c;
  --border: rgb(94 255 194 / .11);
  --border-strong: rgb(64 238 176 / .24);
  --accent: #31d996;
  --accent-2: #19a5c8;
  --accent-3: #78f2c3;
  --danger-glow: rgb(49 217 150 / .28);
  --shadow: 0 24px 80px rgb(0 0 0 / .52);
  --glow: 0 0 40px rgb(47 226 143 / .24), 0 0 90px rgb(25 165 200 / .12);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1010px;
  --font-body: "Manrope", "Montserrat", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 4%, rgb(35 207 155 / .13), transparent 26rem),
    radial-gradient(circle at 0% 45%, rgb(17 89 63 / .18), transparent 32rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 28%, #010604 100%);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / .025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgb(0 0 0 / .65), transparent 82%);
}

a { color: inherit; text-decoration: none; }
button, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; width: 100%; height: 100%; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--accent);
  color: #03100b;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus-visible { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--accent-3); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgb(2 8 6 / .92), rgb(2 8 6 / .75));
  border-bottom: 1px solid rgb(111 255 208 / .08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1010px, calc(100% - 42px));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  gap: 20px;
}

.brand-only {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 920;
  letter-spacing: -.04em;
  font-size: 20px;
}

.criaffy-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  filter: drop-shadow(0 0 14px rgb(49 217 150 / .26));
}
.criaffy-mark i {
  display: block;
  border-radius: 6px;
  background: var(--accent);
}
.criaffy-mark i:nth-child(2) { background: var(--accent-2); }
.criaffy-mark i:nth-child(3) { background: var(--accent-3); }
.criaffy-mark i:nth-child(4) {
  background: transparent;
  border: 3px solid var(--accent);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  font-size: 13px;
  color: #9aa9a1;
}
.nav-links a, .login-link { transition: color .18s ease; }
.nav-links a:hover, .login-link:hover { color: var(--fg); }

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 13px;
}
.login-link { color: #a7b6ad; font-size: 13px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  padding: 13px 24px;
  background: rgb(255 255 255 / .04);
  color: var(--fg);
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgb(92 255 204 / .42); }
.btn:active { transform: translateY(0); }
.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #2faa72, #1ca8bb);
  color: white;
  box-shadow: 0 14px 36px rgb(26 167 146 / .26), inset 0 1px 0 rgb(255 255 255 / .22);
}
.btn-primary:hover { box-shadow: 0 18px 46px rgb(26 167 146 / .36), inset 0 1px 0 rgb(255 255 255 / .24); }
.btn-small { min-height: 40px; padding: 10px 20px; border-radius: 10px; font-size: 13px; }
.btn-hero { min-width: 150px; }
.btn-ghost {
  background: rgb(255 255 255 / .025);
  color: #dce6df;
  border-color: rgb(255 255 255 / .12);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .06);
}
.btn-dark { background: rgb(255 255 255 / .075); border-color: rgb(255 255 255 / .06); color: #e8efe9; }
.btn-wide { min-width: min(100%, 410px); min-height: 58px; border-radius: 13px; text-transform: uppercase; font-size: 14px; }

.section-glow { position: relative; isolation: isolate; }
.section-glow::before {
  content: "";
  position: absolute;
  inset: auto 0 8% 0;
  z-index: -1;
  height: 55%;
  background: radial-gradient(circle at 50% 60%, rgb(31 158 105 / .16), transparent 34rem);
  pointer-events: none;
}

.hero { padding: clamp(56px, 7vw, 94px) 0 clamp(70px, 9vw, 120px); overflow: clip; }
.hero-inner {
  width: min(var(--container), calc(100% - 42px));
  margin-inline: auto;
  display: grid;
  place-items: center;
  gap: 52px;
}
.hero-copy { max-width: 790px; text-align: center; display: grid; justify-items: center; gap: 22px; }

.eyebrow, .section-kicker {
  margin: 0;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border: 1px solid rgb(85 255 192 / .2);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgb(8 31 23 / .72);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .05);
}
.pill.thin { justify-self: center; padding-inline: 20px; background: rgb(255 255 255 / .025); }
.bolt-dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgb(49 217 150 / .35);
  position: relative;
}
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  color: var(--fg);
  font-size: clamp(43px, 5.8vw, 74px);
  line-height: .98;
  font-weight: 850;
  letter-spacing: -.055em;
}
h1 span, h2 span, .final-copy h2 span {
  display: inline-block;
  background: linear-gradient(105deg, #46efa4 10%, #1a9ebd 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { max-width: 710px; color: #a0afa6; font-size: clamp(16px, 1.55vw, 20px); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 4px; }

.integrations { display: grid; justify-items: center; gap: 13px; margin-top: 4px; }
.integrations p { color: #6f8077; font-size: 13px; }
.chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgb(255 255 255 / .08);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgb(255 255 255 / .035);
  color: #c6d0ca;
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .04);
}
.chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.product-preview { width: min(980px, 100%); position: relative; }
.product-preview::before {
  content: "";
  position: absolute;
  inset: 16% 10% auto;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(47 226 143 / .18), transparent 62%);
  filter: blur(18px);
}
.browser-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(100 255 196 / .16);
  border-radius: 19px;
  background: #06100c;
  box-shadow: var(--shadow), var(--glow);
}
.browser-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-bottom: 1px solid rgb(255 255 255 / .07);
  background: linear-gradient(180deg, rgb(255 255 255 / .045), rgb(255 255 255 / .015));
}
.browser-top span { width: 10px; height: 10px; border-radius: 50%; background: rgb(255 255 255 / .2); }
.browser-top span:first-child { background: #49e09d; }
.browser-top strong { margin-left: 8px; color: #91a099; font-size: 12px; font-weight: 700; }

.app-shell {
  min-height: 480px;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: radial-gradient(circle at 76% 16%, rgb(31 203 145 / .14), transparent 22rem), #050c09;
}
.app-sidebar {
  border-right: 1px solid rgb(255 255 255 / .06);
  padding: 22px 16px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgb(255 255 255 / .018);
}
.mini-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-weight: 800; color: #e9f4ee; }
.side-item, .tool-tabs button, .niche-grid button {
  border: 1px solid rgb(255 255 255 / .06);
  border-radius: 11px;
  background: rgb(255 255 255 / .035);
  color: #91a29a;
  min-height: 38px;
  padding: 9px 12px;
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.side-item:hover, .side-item.active, .tool-tabs button.active, .niche-grid button:hover {
  border-color: rgb(60 239 174 / .28);
  background: rgb(46 220 150 / .1);
  color: #e9fff5;
}
.tool-panel { padding: 26px; display: grid; align-content: start; gap: 22px; }
.tool-tabs { display: flex; flex-wrap: wrap; gap: 9px; }
.tool-tabs button { text-align: center; min-height: 34px; font-size: 12px; }
.tool-card {
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
  border: 1px solid rgb(255 255 255 / .08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / .055), rgb(255 255 255 / .02));
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: 0 24px 60px rgb(0 0 0 / .32);
}
.tool-kicker { color: var(--accent-3); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.tool-card h2 { font-size: 32px; letter-spacing: -.04em; }
.tool-card label { color: #bac7c0; font-size: 13px; font-weight: 700; }
.niche-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.niche-grid button { text-align: center; }
.tool-card textarea {
  resize: none;
  min-height: 92px;
  width: 100%;
  border: 1px solid rgb(255 255 255 / .08);
  border-radius: 12px;
  background: rgb(0 0 0 / .22);
  color: #cddbd3;
  padding: 14px;
}
.generate-btn {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #2ebf7e, #1b9eb5);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.section {
  width: min(var(--container), calc(100% - 42px));
  margin-inline: auto;
  padding: clamp(74px, 9vw, 126px) 0;
}
.section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  margin: 0 auto 46px;
  max-width: 830px;
}
.section-head h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.03; font-weight: 850; letter-spacing: -.055em; }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 790px; margin-inline: auto; }
.step-card, .price-card, .faq-item, .guarantee-card, .stats-panel, .module-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgb(255 255 255 / .045), rgb(255 255 255 / .018));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .035);
}
.step-card { min-height: 335px; border-radius: 17px; padding: 23px; display: grid; align-content: start; gap: 18px; }
.step-card:nth-child(2) { transform: translateY(18px); }
.step-label { color: var(--accent-3); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  padding: 12px;
  background: linear-gradient(135deg, rgb(46 220 150 / .96), rgb(22 155 182 / .92));
  box-shadow: 0 12px 32px rgb(36 191 145 / .18);
}
.icon-box svg, .shield-icon svg { fill: none; stroke: white; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { font-size: 22px; line-height: 1.15; letter-spacing: -.035em; }
.step-card p:last-child { color: #8f9e96; font-size: 14px; }

.modules-section { width: 100%; padding-inline: 0; overflow: clip; }
.modules-section .section-head { width: min(var(--container), calc(100% - 42px)); }
.module-carousel { width: min(1240px, calc(100% - 26px)); margin-inline: auto; position: relative; }
.module-carousel::before, .module-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 10px;
  z-index: 2;
  width: clamp(42px, 8vw, 110px);
  pointer-events: none;
}
.module-carousel::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, rgb(2 8 6 / .72) 42%, transparent 100%); }
.module-carousel::after { right: 0; background: linear-gradient(270deg, var(--bg) 0%, rgb(2 8 6 / .72) 42%, transparent 100%); }

.module-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 62px;
  padding: 8px 62px 28px;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.module-track::-webkit-scrollbar { display: none; }
.module-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.module-track:focus-visible { outline: 2px solid var(--accent-3); outline-offset: 8px; border-radius: 24px; }

.module-card {
  flex: 0 0 clamp(220px, 22vw, 268px);
  min-height: 270px;
  border-radius: 21px;
  padding: 26px;
  display: grid;
  align-content: end;
  gap: 34px;
  background: radial-gradient(circle at 40% 18%, rgb(49 217 150 / .16), transparent 9rem), linear-gradient(180deg, #0b1712, #050a08);
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.module-card:hover { transform: translateY(-6px) scale(1.018); border-color: rgb(92 255 202 / .36); box-shadow: 0 26px 80px rgb(0 0 0 / .46), 0 0 42px rgb(45 224 154 / .12); }
.module-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, transparent 0 52%, rgb(255 255 255 / .045) 52% 53%, transparent 53%); opacity: .6; }
.module-card h3 { position: relative; z-index: 1; max-width: 14ch; color: #f0fff7; font-size: 18px; line-height: 1.1; letter-spacing: .02em; text-transform: uppercase; }

.module-card.video-card {
  min-height: 315px;
  padding: 0;
  align-content: stretch;
  gap: 0;
  border-color: rgb(77 255 190 / .2);
  background: #06100c;
  box-shadow: 0 18px 60px rgb(0 0 0 / .38), 0 0 30px rgb(45 224 154 / .08);
}
.module-card.video-card::after { display: none; }
.module-card.video-card img { width: 100%; height: 100%; min-height: 315px; object-fit: cover; display: block; filter: saturate(1.06) contrast(1.04); pointer-events: none; }
.module-card.video-card h3 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 62px;
  border: 1px solid rgb(125 255 210 / .18);
  border-radius: 999px;
  background: rgb(3 14 10 / .78);
  color: #e9fff5;
  box-shadow: 0 18px 42px rgb(0 0 0 / .38), inset 0 1px 0 rgb(255 255 255 / .07);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.06); border-color: rgb(125 255 210 / .38); background: rgb(7 28 20 / .9); }
.carousel-btn span { transform: translateY(-2px); font-size: 38px; line-height: 1; }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.stats-panel {
  width: min(800px, calc(100% - 42px));
  margin: 54px auto 0;
  border-radius: 22px;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 24px;
  background: radial-gradient(circle at 80% 20%, rgb(27 167 146 / .18), transparent 16rem), linear-gradient(180deg, #0a1712, #050a08);
}
.stat-item { display: grid; gap: 4px; }
.stat-item strong { font-size: clamp(30px, 4vw, 46px); line-height: 1; letter-spacing: -.045em; }
.stat-item span { color: var(--muted); font-size: 12px; }

.pricing-section { padding-top: clamp(88px, 10vw, 144px); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(280px, 1fr)); gap: 24px; max-width: 760px; margin-inline: auto; align-items: stretch; }
.price-card {
  position: relative;
  border-radius: 20px;
  padding: 34px 30px 28px;
  display: grid;
  gap: 22px;
  min-height: 520px;
  background: radial-gradient(circle at 80% 35%, rgb(44 217 149 / .08), transparent 13rem), linear-gradient(180deg, rgb(255 255 255 / .038), rgb(255 255 255 / .014));
}
.price-card.featured { border-color: rgb(62 241 178 / .34); box-shadow: 0 0 0 1px rgb(37 217 148 / .08), 0 0 52px rgb(32 198 143 / .16); }
.popular-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 132px;
  text-align: center;
  border-radius: 999px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #3bdc98, #1aa7bd);
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgb(32 198 143 / .22);
}
.price-card h3 { font-size: 23px; letter-spacing: -.035em; }
.price-card p { color: #8b9a92; }
.price-line { display: flex; align-items: baseline; gap: 6px; }
.price-line small, .price-line span { color: #8d9b93; font-size: 12px; }
.price-line strong { color: white; font-size: clamp(45px, 5vw, 58px); line-height: .9; letter-spacing: -.06em; }
.installments { margin-top: -20px; font-size: 12px; color: #8b9a92; }
.price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; color: #97a69e; font-size: 13px; }
.price-card li { display: grid; grid-template-columns: 17px 1fr; gap: 8px; }
.price-card li::before { content: "✓"; color: var(--accent); font-weight: 900; }
.price-card .btn { align-self: end; width: 100%; min-height: 48px; font-size: 12px; letter-spacing: .04em; }
.payment-line { color: #5f6d66; font-size: 10px; letter-spacing: .06em; text-align: center; }

.coming-soon-note {
  max-width: 640px;
  margin: 28px auto 0;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 18px;
  background: rgb(255 255 255 / .025);
  text-align: center;
  color: #7e8d85;
  font-size: 13px;
}
.coming-soon-note strong { color: var(--accent-3); }

.faq-section { max-width: 760px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 14px; overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-trigger {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: #f0f6f2;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-trigger span {
  width: 10px;
  height: 10px;
  border-right: 1.8px solid #8da098;
  border-bottom: 1.8px solid #8da098;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item.is-open .faq-trigger span { transform: rotate(225deg) translate(-2px, -2px); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-panel > p { overflow: hidden; color: #8e9d95; line-height: 1.65; padding: 0 22px; }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-item.is-open .faq-panel > p { padding-bottom: 20px; }

.guarantee-card {
  margin: 54px auto 0;
  max-width: 630px;
  border-radius: 18px;
  padding: clamp(30px, 5vw, 44px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 15px;
}
.shield-icon { width: 52px; height: 52px; border-radius: 14px; padding: 13px; background: linear-gradient(135deg, #2dbd82, #199cb4); box-shadow: 0 16px 38px rgb(32 198 143 / .24); }
.guarantee-card h2 { font-size: 22px; letter-spacing: -.035em; }
.guarantee-card p { max-width: 480px; color: #8d9c94; font-size: 14px; line-height: 1.6; }
.guarantee-card strong { color: white; }

.final-section {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vw, 150px) 20px;
  text-align: center;
  border-top: 1px solid rgb(255 255 255 / .025);
}
.final-copy { display: grid; justify-items: center; gap: 22px; }
.final-copy h2 { font-size: clamp(48px, 6vw, 76px); line-height: .92; letter-spacing: -.06em; }
.final-copy h2 span { display: block; }
.final-copy p { color: #8f9d96; }

.footer { border-top: 1px solid rgb(255 255 255 / .06); padding: 44px 0; }
.footer-inner {
  width: min(var(--container), calc(100% - 42px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7e8d85;
  font-size: 13px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: #f0f8f3; }

.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .product-preview { animation: floatPreview 5.6s ease-in-out infinite; }
  .bolt-dot { animation: pulseGlow 2.8s ease-in-out infinite; }
}
@keyframes floatPreview {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 16px rgb(49 217 150 / .24); }
  50% { box-shadow: 0 0 28px rgb(49 217 150 / .46); }
}

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .app-shell { grid-template-columns: 180px 1fr; }
  .module-carousel { width: min(100%, calc(100% - 18px)); }
  .module-track { padding-inline: 46px; scroll-padding-inline: 46px; }
  .stats-panel { grid-template-columns: repeat(3, 1fr); }
  .stats-panel .btn { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .site-header { position: sticky; }
  .nav-shell { min-height: 68px; width: min(100% - 28px, 720px); grid-template-columns: auto auto; }
  .nav-links { order: 3; grid-column: 1 / -1; width: 100%; justify-content: center; padding-bottom: 12px; overflow-x: auto; }
  .nav-actions { gap: 8px; }
  .login-link { display: none; }
  .hero { padding-top: 44px; }
  .hero-inner, .section, .footer-inner { width: min(100% - 28px, 680px); }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-lead { font-size: 16px; }
  .browser-frame { border-radius: 16px; }
  .app-shell { grid-template-columns: 1fr; min-height: auto; }
  .module-carousel::before, .module-carousel::after { width: 42px; }
  .module-track { padding-inline: 26px; scroll-padding-inline: 26px; }
  .module-card { flex-basis: min(74vw, 260px); }
  .carousel-btn { width: 38px; height: 52px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .app-sidebar { display: none; }
  .tool-panel { padding: 18px; }
  .steps-grid, .pricing-grid { grid-template-columns: 1fr; }
  .step-card:nth-child(2) { transform: none; }
  .stats-panel { grid-template-columns: 1fr; }
  .section-head h2 { font-size: clamp(34px, 10vw, 52px); }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 540px) {
  .nav-links { justify-content: flex-start; gap: 18px; font-size: 12px; }
  .btn-small { padding-inline: 16px; }
  .hero-actions, .hero-actions .btn, .btn-wide { width: 100%; }
  .chip-row { justify-content: flex-start; }
  .integrations { justify-items: stretch; width: 100%; }
  .tool-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .module-carousel { width: 100%; }
  .module-track { gap: 14px; padding-inline: 18px; scroll-padding-inline: 18px; }
  .module-card { flex-basis: 78vw; }
  .niche-grid { grid-template-columns: 1fr; }
  .price-card { padding-inline: 22px; }
  .faq-trigger { font-size: 14px; padding-inline: 18px; }
}
