/* Fonts are loaded via <link> in the document head — an @import here would
   chain an extra render-blocking request behind this stylesheet. */

:root {
  --bg: #08090c;
  --bg-soft: #0e1014;
  --panel: #12141a;
  --panel-2: #171a21;
  --text: #f4f5f7;
  --muted: #9a9faa;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.16);
  --accent: #9d8cff;
  --accent-2: #6ee7c7;
  --accent-3: #ff8fa3;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --container: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Keep anchor targets clear of the fixed header (78px tall + breathing room). */
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(157,140,255,.05), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: #09090b; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--panel-2);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus-visible { transform: translateY(0); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,140,255,.10), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity .25s ease;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.03));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(8,9,12,.78);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #6454c9);
  color: #fff;
  box-shadow: 0 10px 26px rgba(157,140,255,.22);
}

.brand-dot { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #b9bdc6;
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }
.nav a.is-current { color: #fff; }
.nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #b1a5ff, #7b68ed);
  color: #0c0c10;
  box-shadow: 0 14px 34px rgba(123,104,237,.22);
}
.btn-primary:hover { box-shadow: 0 18px 42px rgba(123,104,237,.34); }
.btn-outline { border-color: var(--line-strong); background: rgba(255,255,255,.025); }
.btn-outline:hover { background: rgba(255,255,255,.07); }
.btn-ghost { padding-inline: 8px; color: #c8cbd2; }
.btn-ghost:hover { color: #fff; }
.btn-small { min-height: 42px; padding: 0 16px; border-radius: 12px; }
.btn-block { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: .25s ease;
}

.hero {
  padding-top: 170px;
  padding-bottom: 65px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 64px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.orb-one {
  width: 460px;
  height: 460px;
  top: 2%;
  right: 8%;
  background: radial-gradient(circle, rgba(157,140,255,.15), transparent 68%);
}
.orb-two {
  width: 360px;
  height: 360px;
  left: -10%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(110,231,199,.08), transparent 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #bcc0c9;
  font: 500 11px/1 "DM Mono", monospace;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(110,231,199,.10);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 800;
}
.gradient-text {
  background: linear-gradient(95deg, #fff 5%, #b5a9ff 48%, #74e6c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 34px;
  color: #aeb2bd;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 46px;
}

.hero-proof {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 570px;
  padding-top: 24px;
}
.hero-proof div {
  min-width: 150px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line);
}
.hero-proof div:last-child { border: 0; margin-right: 0; padding-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 18px; letter-spacing: -.03em; }
.hero-proof span {
  color: #767c88;
  font: 400 10px/1.5 "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-visual { perspective: 1200px; }

.browser-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #0e1015;
  box-shadow: var(--shadow), 0 0 0 1px rgba(157,140,255,.04) inset;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform .12s ease-out;
}

.browser-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i {
  width: 7px; height: 7px; border-radius: 50%; background: #3f434d;
}
.browser-url {
  justify-self: center;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  color: #6d7280;
  background: rgba(255,255,255,.025);
  font: 400 9px "DM Mono", monospace;
}
.browser-icon { justify-self: end; color: #565b67; }

.mock-site {
  min-height: 510px;
  padding: 26px;
  border-radius: 0 0 23px 23px;
  background:
    radial-gradient(circle at 80% 25%, rgba(157,140,255,.15), transparent 36%),
    linear-gradient(145deg, #0f1117, #0a0b0f);
  overflow: hidden;
}
.mock-nav { display: flex; align-items: center; gap: 18px; }
.mock-logo { width: 48px; height: 9px; border-radius: 20px; background: #f4f4f5; }
.mock-links { display: flex; gap: 12px; margin-left: auto; }
.mock-links span { width: 30px; height: 5px; border-radius: 20px; background: #494d57; }
.mock-button { width: 48px; height: 18px; border-radius: 6px; background: #8170ed; }

.mock-hero { margin-top: 80px; width: 72%; }
.mock-kicker { width: 70px; height: 5px; margin-bottom: 16px; border-radius: 20px; background: #8e7df3; }
.mock-title { width: 100%; height: 24px; margin-bottom: 8px; border-radius: 8px; background: #eff0f2; }
.mock-title.short { width: 72%; }
.mock-copy { width: 78%; height: 6px; margin-top: 20px; border-radius: 10px; background: #484d58; }
.mock-copy.short { width: 58%; margin-top: 7px; }
.mock-actions { display: flex; gap: 8px; margin-top: 22px; }
.mock-actions span:first-child { width: 82px; height: 29px; border-radius: 8px; background: #8f7cff; }
.mock-actions span:last-child { width: 66px; height: 29px; border: 1px solid #3c4049; border-radius: 8px; }

.mock-dashboard {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 10px;
  margin-top: 56px;
}
.chart-card, .score-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
}
.chart-card { padding: 15px 15px 8px; color: var(--accent); }
.chart-card .chart-label { display: block; color: #777d89; font: 400 8px "DM Mono"; text-transform: uppercase; }
.chart-card strong { display: block; margin: 3px 0 2px; color: #f5f5f5; font-size: 21px; }
.chart-card svg { width: 100%; height: 74px; }
.score-card { display: grid; place-items: center; align-content: center; gap: 8px; }
.score-ring {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: conic-gradient(var(--accent-2) 98%, #2c3038 0);
  position: relative;
}
.score-ring::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #15171d; }
.score-ring span { position: relative; z-index: 1; font-weight: 800; font-size: 17px; }
.score-card small { color: #717682; font: 400 8px "DM Mono"; text-transform: uppercase; }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 145px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(20,22,29,.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0,0,0,.26);
}
.floating-badge strong, .floating-badge small { display: block; }
.floating-badge strong { font-size: 11px; }
.floating-badge small { color: #727884; font: 400 8px "DM Mono"; text-transform: uppercase; }
.mini-icon {
  display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; background: rgba(157,140,255,.12); color: var(--accent);
}
.badge-speed { right: -34px; top: 21%; animation: float 5s ease-in-out infinite; }
.badge-mobile { left: -40px; bottom: 14%; animation: float 5.8s ease-in-out infinite reverse; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 100px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.logo-strip-label {
  color: #5f646f;
  white-space: nowrap;
  font: 500 9px "DM Mono";
  text-transform: uppercase;
  letter-spacing: .1em;
}
.logo-list { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; width: 100%; }
.logo-list span {
  color: #656a74;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}
.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #8172e7;
  font: 500 10px "DM Mono";
  letter-spacing: .11em;
}
.section-heading h2, .pricing-header h2, .process-sticky h2, .faq-copy h2, .contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.section-heading p {
  max-width: 450px;
  margin-bottom: 8px;
  color: #8f949f;
  font-size: 15px;
}
.muted { color: #6f747e; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
  transition: background .25s ease;
}
.service-card:hover { background: rgba(255,255,255,.035); }
.service-card.featured {
  background: linear-gradient(140deg, rgba(157,140,255,.07), rgba(255,255,255,.015));
}
.service-number {
  color: #555a64;
  font: 400 10px "DM Mono";
}
.service-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin: 28px 0 24px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--accent);
  background: #11131a;
  font-size: 20px;
}
.service-card h3 { margin-bottom: 11px; font-size: 26px; letter-spacing: -.04em; }
.service-card p { max-width: 510px; color: #8f949f; font-size: 14px; }
.service-card ul, .price-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  padding: 5px 0;
  color: #686e79;
  font: 400 10px "DM Mono";
}
.service-card li::before { content: "— "; color: #4f5560; }
.service-pill {
  position: absolute;
  top: 24px; right: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #c7bfff;
  background: rgba(157,140,255,.10);
  font: 500 9px "DM Mono";
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 46px 26px;
}
.project-large { grid-row: span 1; }
.project-wide { grid-column: span 1; }

.project-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  transition: transform .35s ease, border-color .35s ease;
}
.project:hover .project-preview { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }

.preview-one { background: linear-gradient(140deg, #d7d1c6, #8e897f); }
.project-window {
  width: 78%;
  border-radius: 12px;
  background: #f1ede6;
  box-shadow: 0 30px 60px rgba(33,28,20,.22);
  transform: rotate(-3deg);
}
.mini-topbar { display: flex; gap: 5px; padding: 9px 11px; border-bottom: 1px solid rgba(0,0,0,.1); }
.mini-topbar span { width: 5px; height: 5px; border-radius: 50%; background: #999184; }
.project-inner { padding: 36px 34px 46px; color: #1b1a18; }
.project-brand { margin-bottom: 52px; font: 500 8px "DM Mono"; }
.project-big-type { font-size: clamp(27px,3vw,44px); line-height: .96; letter-spacing: -.06em; font-weight: 800; }
.project-line { width: 30%; height: 2px; margin-top: 26px; background: #26231f; }

.preview-two {
  background:
    radial-gradient(circle at 70% 20%, rgba(222,255,95,.23), transparent 30%),
    linear-gradient(150deg, #14180e, #090b08);
}
.phone {
  width: 220px; height: 388px; padding: 12px;
  border: 2px solid #3a4130;
  border-radius: 34px;
  background: #050604;
  box-shadow: 0 28px 55px rgba(0,0,0,.44);
  transform: rotate(5deg);
}
.phone-content {
  position: relative;
  height: 100%;
  padding: 36px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(183,255,65,.10), transparent 42%),
    #11150c;
  overflow: hidden;
}
.phone-notch { position: absolute; z-index: 2; width: 68px; height: 17px; left: 50%; transform: translateX(-50%); border-radius: 0 0 12px 12px; background: #050604; }
.fitness-logo { color: #c9f564; font: 700 10px "DM Mono"; letter-spacing: .13em; }
.phone-content strong { display: block; margin-top: 76px; color: #edf6dd; font-size: 36px; line-height: .88; letter-spacing: -.07em; }
.fitness-btn { position: absolute; bottom: 28px; left: 20px; right: 20px; padding: 12px; text-align: center; border-radius: 9px; background: #c9f564; color: #11150c; font: 700 9px "DM Mono"; }
.work-bubble {
  position: absolute; right: 12%; bottom: 14%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 78px; height: 78px; border-radius: 50%;
  background: #c9f564; color: #13150f; font-size: 18px; font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.work-bubble span { font: 500 8px "DM Mono"; text-transform: uppercase; }

.preview-three { background: linear-gradient(150deg, #653328, #1d1010); }
.food-card {
  width: 78%; padding: 24px; border-radius: 4px; background: #f0e4d1; color: #251c17; transform: rotate(2.5deg); box-shadow: 0 25px 55px rgba(0,0,0,.3);
}
.food-top { display: flex; justify-content: space-between; font: 600 8px "DM Mono"; }
.plate {
  display: grid; place-items: center; width: 170px; height: 170px; margin: 24px auto;
  border-radius: 50%; background: radial-gradient(circle at 40% 35%, #f8f3ea, #c9b8a2);
  box-shadow: 0 12px 22px rgba(65,40,29,.15);
}
.plate-center {
  width: 78px; height: 78px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f0b76e 0 8%, transparent 9%),
    radial-gradient(circle at 68% 50%, #7f8d45 0 7%, transparent 8%),
    radial-gradient(circle at 42% 70%, #b25a3c 0 8%, transparent 9%),
    #b9824d;
}
.food-copy small { display: block; color: #765f52; font: 500 7px "DM Mono"; }
.food-copy strong { display: block; margin-top: 4px; font: 800 24px/1 Manrope; letter-spacing: -.06em; }

.preview-four { background: linear-gradient(135deg, #181634, #251b4e); }
.saas-panel {
  width: 88%;
  min-height: 300px;
  padding: 25px 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(9,8,19,.62);
  box-shadow: 0 30px 60px rgba(0,0,0,.30);
  transform: rotate(-1.5deg);
}
.saas-nav { display: flex; align-items: center; gap: 26px; }
.saas-nav b { font-size: 12px; letter-spacing: -.04em; }
.saas-nav > div { display: flex; gap: 15px; margin-left: auto; color: #817c9b; font: 400 7px "DM Mono"; }
.saas-nav button { border: 0; border-radius: 8px; padding: 8px 12px; background: #b8a7ff; color: #19142a; font: 700 7px "DM Mono"; }
.saas-main { display: grid; grid-template-columns: 1fr .8fr; gap: 25px; align-items: end; margin-top: 62px; }
.saas-main small { color: #8877df; font: 500 7px "DM Mono"; letter-spacing: .12em; }
.saas-main strong { display: block; margin-top: 10px; font-size: clamp(25px,3vw,40px); line-height: .95; letter-spacing: -.06em; }
.saas-widget { padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.035); }
.widget-head { display: flex; justify-content: space-between; align-items: center; color: #777289; font: 400 7px "DM Mono"; }
.widget-head b { color: #87e2c7; }
.bars { display: flex; align-items: end; gap: 7px; height: 84px; margin-top: 13px; }
.bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(#9a89f5, #5d4ab5); }
.bars i:nth-child(1) { height: 35%; } .bars i:nth-child(2) { height: 48%; } .bars i:nth-child(3) { height: 42%; } .bars i:nth-child(4) { height: 66%; } .bars i:nth-child(5) { height: 57%; } .bars i:nth-child(6) { height: 82%; } .bars i:nth-child(7) { height: 96%; }

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 18px 4px 0;
}
.project-meta span:not(.project-arrow) { color: #686e79; font: 500 9px "DM Mono"; letter-spacing: .10em; }
.project-meta h3 { margin: 4px 0 0; font-size: 20px; letter-spacing: -.04em; }
.project-arrow {
  display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: #9ca1ab;
  transition: transform .25s ease, background .25s ease;
}
.project:hover .project-arrow { transform: rotate(45deg); background: rgba(255,255,255,.06); }

.process-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.process-sticky { align-self: start; position: sticky; top: 130px; }
.process-sticky p { max-width: 400px; margin: 24px 0; color: #8d929e; }
.text-link {
  display: inline-flex; gap: 9px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid #656a75;
  font-size: 13px; font-weight: 700;
}
.process-list { border-top: 1px solid var(--line); }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 34px 0 40px;
  border-bottom: 1px solid var(--line);
}
.process-step > span { color: #5e6470; font: 500 10px "DM Mono"; }
.process-step h3 { margin-bottom: 9px; font-size: 25px; letter-spacing: -.04em; }
.process-step p { max-width: 600px; margin: 0; color: #8d929e; font-size: 14px; }

.pricing-header { max-width: 780px; margin-bottom: 56px; }
.pricing-header p { max-width: 600px; margin: 24px 0 0; color: #8f949f; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pricing-grid-single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.pricing-grid-single .price-featured { transform: none; }
.price-card {
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0d0f13;
}
.price-featured {
  border-color: rgba(157,140,255,.34);
  background:
    radial-gradient(circle at 75% 8%, rgba(157,140,255,.13), transparent 30%),
    #11121a;
  transform: translateY(-10px);
}
.price-label { color: #6d727c; font: 500 9px "DM Mono"; letter-spacing: .12em; }
.price-card h3 { margin: 15px 0 7px; font-size: 27px; letter-spacing: -.04em; }
.price-card > p { min-height: 52px; color: #838995; font-size: 13px; }
.price { margin: 28px 0; font-size: 30px; font-weight: 800; letter-spacing: -.05em; }
.price small { margin-right: 5px; color: #626873; font: 400 9px "DM Mono"; text-transform: uppercase; }
.price-card ul { padding-top: 22px; border-top: 1px solid var(--line); }
.price-card li { padding: 8px 0; color: #8f949e; font-size: 12px; }
.price-card li::before { content: "✓"; margin-right: 10px; color: var(--accent-2); }
.popular-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 7px 9px; border-radius: 999px; background: rgba(157,140,255,.11); color: #c2b9ff;
  font: 500 8px "DM Mono";
}
.pricing-note {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
  color: #656b77;
  font-size: 11px;
}

.testimonials-section { padding-top: 80px; }
.testimonial-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 70px 54px;
  border: 1px solid var(--line);
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(157,140,255,.11), transparent 42%),
    #0d0f13;
}
.quote-mark { color: var(--accent); font-family: Georgia, serif; font-size: 70px; line-height: .8; }
blockquote {
  max-width: 820px;
  margin: 18px auto 32px;
  font-size: clamp(25px,3.2vw,42px);
  line-height: 1.25;
  letter-spacing: -.045em;
  font-weight: 650;
}
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #7263d2, #39425c); font-size: 11px; font-weight: 800; }
.testimonial-person strong, .testimonial-person span { display: block; text-align: left; }
.testimonial-person strong { font-size: 12px; }
.testimonial-person span { color: #6e7480; font: 400 8px "DM Mono"; text-transform: uppercase; }
.demo-note { display: block; margin-top: 18px; color: #4d525d; font: 400 8px "DM Mono"; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-copy { align-self: start; position: sticky; top: 130px; }
.faq-copy p { max-width: 340px; margin-top: 22px; color: #838995; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-toggle-icon {
  display: inline-block;
  flex: 0 0 auto;
  color: #6b7080;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item[open] summary .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 50px 26px 0; color: #818692; font-size: 13px; line-height: 1.8; }

.contact-section { overflow: hidden; }
.contact-glow {
  position: absolute;
  width: 680px; height: 680px; right: -180px; top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,140,255,.11), transparent 68%);
}
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy p { max-width: 500px; margin: 26px 0 48px; color: #8f949f; }
.contact-direct span { display: block; margin-bottom: 7px; color: #5f6570; font: 400 9px "DM Mono"; text-transform: uppercase; }
.contact-direct .contact-subtitle { margin-top: 26px; }
.contact-direct a {
  display: table;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #656a75;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16,18,23,.82);
  backdrop-filter: blur(18px);
}
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: #818692; font: 500 9px "DM Mono"; text-transform: uppercase; letter-spacing: .06em; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: #0b0d11;
  color: #eff0f2;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input, .contact-form select { height: 48px; padding: 0 14px; }
.contact-form textarea { padding: 14px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: rgba(157,140,255,.6);
  box-shadow: 0 0 0 4px rgba(157,140,255,.08);
}
.contact-form ::placeholder { color: #4d525c; }

.site-footer {
  padding: 68px 0 24px;
  border-top: 1px solid var(--line);
  background: #07080a;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.footer-grid > div:first-child p { max-width: 350px; margin: 20px 0 0; color: #6e7480; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links span { margin-bottom: 7px; color: #4f5560; font: 500 9px "DM Mono"; text-transform: uppercase; }
.footer-links a { color: #8a8f99; font-size: 12px; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 60px; padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #4f5560;
  font: 400 9px "DM Mono";
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  text-align: center;
}
.error-page h1 { margin-inline: auto; font-size: clamp(54px, 10vw, 110px); }
.error-page .hero-subtitle { margin-inline: auto; }
.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(18,20,26,.94);
  color: #dfe1e6;
  font-size: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%,0); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .nav, .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px 26px;
    background: rgba(8,9,12,.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .28s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav a.is-current::after { left: -12px; right: auto; top: 15px; bottom: 15px; width: 2px; height: auto; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 800px; }
  .browser-card { margin-inline: auto; }
  .logo-strip { margin-top: 76px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .work-grid { gap: 36px 18px; }
  .project-preview { min-height: 360px; }
  .process-layout, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-sticky, .faq-copy, .contact-copy { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
  .price-featured { transform: none; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }

  h1 { font-size: clamp(47px, 15vw, 70px); }
  .hero-subtitle { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-proof div { min-width: 0; margin-right: 12px; padding-right: 12px; }
  .hero-proof strong { font-size: 15px; }
  .hero-proof span { font-size: 7px; }
  .browser-card { transform: none !important; }
  .mock-site { min-height: 400px; padding: 18px; }
  .mock-hero { margin-top: 56px; }
  .mock-dashboard { margin-top: 42px; }
  .badge-speed { right: -8px; }
  .badge-mobile { left: -7px; }
  .floating-badge { min-width: 124px; padding: 9px 10px; }
  .logo-strip { align-items: flex-start; flex-direction: column; gap: 18px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; padding: 28px; }

  .work-grid { grid-template-columns: 1fr; }
  .project-preview { min-height: 380px; }
  .saas-main { grid-template-columns: 1fr; margin-top: 44px; }
  .saas-widget { display: none; }

  .process-step { grid-template-columns: 52px 1fr; }
  .testimonial-card { padding: 50px 24px 38px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Automatic testimonial slider */
.testimonials-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.testimonial-track {
  position: relative;
  min-height: 390px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.985);
  transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
  pointer-events: none;
}
.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.testimonial-arrow,
.testimonial-dot {
  border: 1px solid var(--line);
  background: #0d0f13;
  color: #a6adbb;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.testimonial-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 15px;
}
.testimonial-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(157,140,255,.5);
  color: #fff;
}
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.testimonial-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
}
.testimonial-dot.is-active {
  width: 24px;
  background: var(--accent);
  border-color: var(--accent);
}
.testimonials-slider > .demo-note {
  text-align: center;
  margin-top: 14px;
}
@media (max-width: 700px) {
  .testimonial-track { min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide { transition: none; }
}


/* Netlify contact form */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.submit-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #78e6a1;
}

.form-status.is-error {
  color: #ff8d8d;
}


/* Language selector */
.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 10px 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: #c8cbd2;
  transition: background .2s ease, border-color .2s ease;
}
.language-switcher:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.24);
}
.language-switcher::after {
  content: "⌄";
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-54%);
  color: #8f95a1;
  font-size: 11px;
  pointer-events: none;
}
.language-symbol {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(157,140,255,.5);
  border-radius: 50%;
  color: #b9adff;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}
.language-switcher select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 42px;
  padding: 0 16px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  cursor: pointer;
}
.language-switcher select option {
  background: #12141a;
  color: #f4f5f7;
}

@media (max-width: 980px) {
  .nav-wrap { gap: 12px; }
  .language-switcher { margin-left: auto; }
}

@media (max-width: 430px) {
  .brand { font-size: 15px; }
  .brand-mark { width: 31px; height: 31px; }
  .language-switcher { min-height: 40px; padding-left: 9px; }
  .language-symbol { display: none; }
}

.error-language {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 20;
}
