:root {
  --bg: #07080d;
  --bg-elev: #0e1018;
  --surface: #141824;
  --surface-2: #1b2030;
  --text: #f3f5fb;
  --muted: #9aa3b8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #8b7cff;
  --accent-2: #5b8cff;
  --accent-soft: rgba(139, 124, 255, 0.16);
  --ok: #7dffa3;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --header-h: 76px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", sans-serif;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--accent);
  color: #0b0d14;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-kicker {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 10px;
}

h1,
h2,
.display {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.lede {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 42rem;
}

.center {
  text-align: center;
}

.center .lede {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(91, 140, 255, 0.25);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 13, 0.72);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 0.72rem;
  font-weight: 800;
}

.brand small {
  display: block;
  font-family: var(--font);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}

.hero {
  padding: 36px 0 72px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -80px auto auto 40%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(139, 124, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.checks li::before {
  content: "✓";
  color: var(--ok);
  margin-right: 8px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stage {
  position: relative;
  min-height: 420px;
}

.laptop,
.phone {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.laptop {
  width: 100%;
  border-radius: 18px 18px 10px 10px;
  aspect-ratio: 16/10;
}

.laptop-bar {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  background: #0b0d14;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a4156;
}

.screen {
  height: calc(100% - 22px);
  padding: 14px;
}

.mini-site {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, #1a1430, #10131c 40%, #0d1a24);
  padding: 12px;
}

.mini-nav {
  height: 8px;
  width: 54%;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
}

.mini-hero {
  height: 46%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 124, 255, 0.45), rgba(91, 140, 255, 0.2));
}

.mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.mini-card {
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.phone {
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 132px;
  height: 268px;
  border-radius: 22px;
  padding: 10px 8px;
}

.phone-notch {
  width: 42px;
  height: 8px;
  margin: 0 auto 8px;
  border-radius: 99px;
  background: #2a3146;
}

.float-tag {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.9);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  animation: float 5s ease-in-out infinite;
}

.float-tag:nth-child(1) {
  left: -8px;
  top: 28px;
}

.float-tag:nth-child(2) {
  right: -6px;
  top: 86px;
  animation-delay: 0.6s;
}

.float-tag:nth-child(3) {
  left: 18px;
  bottom: 54px;
  animation-delay: 1.1s;
}

.float-tag:nth-child(4) {
  right: 118px;
  bottom: 8px;
  animation-delay: 1.6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.trust {
  border-block: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 28px 0;
}

.trust p {
  margin: 0 0 18px;
  color: var(--muted);
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.trust-item {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 12px 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  margin: 0 auto 8px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
  font-family: var(--display);
}

.bad {
  opacity: 0.88;
}

.good {
  background: linear-gradient(180deg, rgba(139, 124, 255, 0.12), var(--surface));
  border-color: rgba(139, 124, 255, 0.28);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.vs {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card .btn,
.plan .btn {
  width: 100%;
  margin-top: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 28px 0 22px;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  cursor: pointer;
}

.filter.is-active,
.filter:hover {
  color: var(--text);
  border-color: rgba(139, 124, 255, 0.5);
  background: var(--accent-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 280px;
}

.project-body {
  padding: 16px 16px 18px;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  color: #d9d4ff;
  background: var(--accent-soft);
  border: 1px solid rgba(139, 124, 255, 0.3);
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 8px;
}

.project-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 8, 13, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.project:hover .project-hover,
.project:focus-within .project-hover {
  opacity: 1;
}

.mock {
  height: 168px;
  position: relative;
  overflow: hidden;
}

.mock-desk,
.mock-phone {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.mock-desk {
  inset: 16px 46px 28px 16px;
}

.mock-phone {
  width: 46px;
  height: 88px;
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
}

.jewelry .mock {
  background: #1b1220;
}
.jewelry .mock-desk,
.jewelry .mock-phone {
  background: linear-gradient(180deg, #3a2438, #f3d9e6 70%);
}

.fashion .mock {
  background: #10141c;
}
.fashion .mock-desk,
.fashion .mock-phone {
  background: linear-gradient(180deg, #111, #c9d4e8 55%, #e8eef8);
}

.bakery .mock {
  background: #241910;
}
.bakery .mock-desk,
.bakery .mock-phone {
  background: linear-gradient(180deg, #5a341c, #f2c9a0);
}

.pro .mock {
  background: #12151c;
}
.pro .mock-desk,
.pro .mock-phone {
  background: linear-gradient(180deg, #eef1f6, #8ea0c2);
}

.resto .mock {
  background: #1a120e;
}
.resto .mock-desk,
.resto .mock-phone {
  background: linear-gradient(180deg, #3b2416, #d9a15a);
}

.corp .mock {
  background: #10141f;
}
.corp .mock-desk,
.corp .mock-phone {
  background: linear-gradient(180deg, #1b2a4a, #7f9adf);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
}

.step-num {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--accent);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan {
  position: relative;
}

.plan.featured {
  transform: translateY(-8px);
  border-color: rgba(139, 124, 255, 0.45);
  background: linear-gradient(180deg, rgba(139, 124, 255, 0.16), var(--surface));
}

.plan-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
}

.price {
  font-family: var(--display);
  font-size: 1.6rem;
  margin: 8px 0 16px;
}

.fine {
  color: var(--muted);
  font-size: 0.92rem;
}

.why-grid,
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.device {
  border: 1px solid var(--line);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.device.desk {
  width: min(520px, 58%);
  aspect-ratio: 16/10;
  border-radius: 14px;
}

.device.tab {
  width: min(220px, 24%);
  aspect-ratio: 3/4;
  border-radius: 16px;
}

.device.mob {
  width: min(110px, 14%);
  aspect-ratio: 9/19;
  border-radius: 18px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 4px 16px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  min-height: 52px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin-top: 0;
}

.cta-band {
  margin: 20px 0 0;
  padding: 56px 28px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 124, 255, 0.22), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(91, 140, 255, 0.18), transparent 35%),
    var(--surface);
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.88rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #052;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.page-content {
  padding: 48px 0 80px;
  max-width: 760px;
}

.page-content a:not(.btn) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.is-landing .nav {
  display: none;
}

.reveal {
  animation: rise 0.7s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .cards-3,
  .portfolio-grid,
  .steps,
  .plans,
  .why-grid,
  .seo-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .plan.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: #10131c;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav .btn {
    width: 100%;
  }

  .hero-grid,
  .split,
  .cards-3,
  .portfolio-grid,
  .steps,
  .plans,
  .why-grid,
  .seo-grid,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .checks {
    grid-template-columns: 1fr;
  }

  .devices {
    flex-direction: column;
    align-items: center;
  }

  .device.desk,
  .device.tab,
  .device.mob {
    width: min(100%, 360px);
  }

  .phone {
    width: 104px;
    height: 214px;
  }

  .is-landing .nav-toggle,
  .is-landing .nav {
    display: none;
  }
}
