:root {
  --bg: #f6f4f0; /* warm off-white */
  --darkBg: #16171d;
  --bg-2: #efebe2;
  --surface: #ffffff;
  --darkBox: #26262f;
  --ink: #1a1a22;
  --darkInk: #8a8b94;
  --ink-2: #3a3a45;
  --muted: #6a6a75;
  --muted-2: #a8a8b0;
  --primary: #dd0e52;
  --primary-2: #b80a43;
  --primary-soft: #ffe1ea;
  --primary-tint: #fff5f8;
  --accent-violet: #7c5cff;
  --accent-blue: #3b82f6;
  --accent-orange: #ff7849;
  --accent-green: #22c55e;
  --accent-amber: #f7b500;
  --line: rgba(26, 26, 34, 0.08);
  --line-2: rgba(26, 26, 34, 0.14);
  --shadow-sm:
    0 1px 2px rgba(26, 26, 34, 0.04), 0 4px 12px -4px rgba(26, 26, 34, 0.05);
  --shadow-md:
    0 8px 24px -8px rgba(26, 26, 34, 0.1), 0 2px 6px rgba(26, 26, 34, 0.04);
  --shadow-lg:
    0 30px 60px -20px rgba(26, 26, 34, 0.18),
    0 10px 20px -10px rgba(26, 26, 34, 0.1);
  --shadow-primary: 0 20px 50px -16px rgba(221, 14, 82, 0.45);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 42px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
body.dark-mode {
  background: var(--darkBg);
  color: white;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--primary);
  color: #fff;
}

/* ambient background blobs */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      900px 500px at 10% -5%,
      rgba(221, 14, 82, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 95% 25%,
      rgba(124, 92, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 50% 110%,
      rgba(255, 120, 73, 0.07),
      transparent 60%
    );
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
#site-header {
  background: transparent !important;
}
ul.primary-menu,
ul.primary-menu li {
  margin: 0;
  gap: 2px;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  box-shadow: var(--shadow-sm);
  margin-top: 15px;
}
.dark-mode .header_inner {
  background: rgba(255, 255, 255, 0.1);
}
.toggle-text {
  display: none;
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.header_inner .menu-item a {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2) !important;
  padding: 9px 14px;
  border-radius: 999px;
  transition: 0.18s;
  text-decoration: none !important;
}
.header_inner .menu-item a:hover {
  background: rgba(26, 26, 34, 0.05);
  color: var(--ink) !important;
}
.dark-mode .header_inner .menu-item a {
  color: #bdbdbd !important;
}
.dark-mode .header_inner .menu-item a:hover {
  color: white !important;
  background: rgba(26, 26, 34, 0.5);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: var(--shadow-primary);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
}
.nav-cta .ar {
  width: 22px;
  height: 22px;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.nav-cta .ar svg {
  width: 11px;
  height: 11px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.25s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
}
.btn-ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(26, 26, 34, 0.5);
}
.btn-ink:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.btn .ar {
  width: 24px;
  height: 24px;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.btn-ink .ar {
  background: var(--primary);
  color: #fff;
}
.btn-ghost .ar {
  background: var(--ink);
  color: #fff;
}
.btn .ar svg {
  width: 11px;
  height: 11px;
}
.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}

/* ===== Floating CTA pill ===== */
.float-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 13px 20px 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-primary);
  transition: transform 0.2s ease;
}
.float-chat:hover {
  transform: translateY(-2px) rotate(-1.5deg);
}
.float-chat .ar {
  width: 22px;
  height: 22px;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.float-chat .ar svg {
  width: 11px;
  height: 11px;
}

/* ===== Tags ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(221, 14, 82, 0.2);
}
.tag.primary {
  background: var(--primary-soft);
  color: var(--primary-2);
  border-color: rgba(221, 14, 82, 0.2);
}
.tag.primary .dot {
  background: var(--primary);
}

/* ===== HERO ===== */
.hero {
  padding: 50px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-grid.row {
  display: flex;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  /* .hero-actions, */
  /* .hero-meta, */
  .hero .tag,
  .scroll-hint {
    justify-content: center;
  }
}
.hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.h1 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: clamp(40px, 6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.dark-mode .h1 {
  color: white;
}
.h1 .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.h1 .hl svg {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -12px;
  width: 108%;
  height: 14px;
  color: var(--primary);
  opacity: 0.6;
}
.hero-sub {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 560px;
}
.hero-sub strong {
  font-weight: 700;
  color: var(--ink);
}
.dark-mode .hero-sub {
  color: var(--darkInk);
}
.dark-mode .hero-sub strong {
  color: white;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-meta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-meta .avatars {
  display: flex;
}
.hero-meta .avatars span {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 3px solid var(--bg);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}
.dark-mode .hero-meta .avatars span {
  border-color: var(--darkBg);
}
.hero-meta .avatars span:first-child {
  margin-left: 0;
}
.hero-meta .meta-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
}
.hero-meta .meta-text b {
  font-weight: 700;
  color: var(--ink);
}
.dark-mode .hero-meta .meta-text b {
  color: white;
}
.hero-meta .stars {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
}

/* HERO VISUAL — phone-style mockup centerpiece */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.hero-visual .blob-bg {
  position: absolute;
  inset: auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--primary-soft),
    transparent 70%
  );
  filter: blur(0px);
  z-index: 0;
}
.hero-visual .blob-bg::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(124, 92, 255, 0.18),
    transparent 60%
  );
}
.device {
  position: relative;
  z-index: 2;
  background: var(--ink);
  border-radius: 34px;
  padding: 8px;
  box-shadow:
    0 30px 60px -15px rgba(26, 26, 34, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  width: 268px;
}
.device .notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 3;
}
.device .screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  display: flex;
  flex-direction: column;
}
/* The "WordPress site" phone */
.device-1 {
  position: absolute;
  left: 8%;
  top: 40px;
  transform: rotate(-8deg);
  z-index: 2;
}
.device-1 .screen {
  background: linear-gradient(180deg, #fff, #fef4f6);
}
.device-1 .scr-pad {
  padding: 42px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.device-1 .scr-pad .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.device-1 .scr-pad .logo {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--primary);
}
.device-1 .scr-pad .menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.device-1 .scr-pad .menu i {
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
}
.device-1 .scr-pad .menu i:nth-child(2) {
  width: 10px;
}
.device-1 .scr-pad .h {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 8px;
  color: var(--ink);
}
.device-1 .scr-pad .h .acc {
  color: var(--primary);
}
.device-1 .scr-pad .sub {
  font-size: 9.5px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 90%;
}
.device-1 .scr-pad .cta {
  margin-top: 6px;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
}
.device-1 .scr-pad .cta::after {
  content: "→";
  font-size: 10px;
}
.device-1 .scr-pad .img-block {
  margin-top: auto;
  height: 80px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-violet), var(--primary));
  position: relative;
  overflow: hidden;
}
.device-1 .scr-pad .img-block::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    transparent 60%
  );
}
.device-1 .scr-pad .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.device-1 .scr-pad .grid .blk {
  height: 40px;
  border-radius: 10px;
  background: #fff5f8;
  border: 1px solid var(--line);
}
.device-1 .scr-pad .grid .blk:nth-child(2) {
  background: var(--ink);
}

/* The "Laravel dashboard" phone */
.device-2 {
  position: absolute;
  right: 6%;
  top: 0;
  transform: rotate(8deg);
  z-index: 1;
}
.device-2 .screen {
  background: linear-gradient(180deg, #fff, #f5f1ff);
}
.device-2 .scr-pad {
  padding: 42px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.device-2 .scr-pad .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.device-2 .scr-pad .top .avi {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
}
.device-2 .scr-pad .top .bell {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: var(--bg);
  position: relative;
}
.device-2 .scr-pad .top .bell::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 999px;
}
.device-2 .scr-pad .greet {
  font-size: 9px;
  color: var(--muted);
  margin-top: 6px;
}
.device-2 .scr-pad .h {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.device-2 .scr-pad .stat {
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 12px;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.device-2 .scr-pad .stat::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary), transparent 60%);
  opacity: 0.4;
}
.device-2 .scr-pad .stat .lbl {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  position: relative;
}
.device-2 .scr-pad .stat .v {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
  position: relative;
}
.device-2 .scr-pad .stat .delta {
  font-size: 9px;
  color: #7df7c2;
  font-weight: 600;
  margin-top: 4px;
  position: relative;
}
.device-2 .scr-pad .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}
.device-2 .scr-pad .row .t {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
}
.device-2 .scr-pad .row .b {
  font-size: 8px;
  color: var(--muted);
}
.device-2 .scr-pad .row .ic {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
}
.device-2 .scr-pad .row .ic.v2 {
  background: rgba(124, 92, 255, 0.12);
  color: var(--accent-violet);
}
.device-2 .scr-pad .row .ic.v3 {
  background: rgba(255, 120, 73, 0.12);
  color: var(--accent-orange);
}

/* Floating chips around the devices */
.float-chip {
  position: absolute;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-chip .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.float-chip .ic svg {
  width: 16px;
  height: 16px;
}
.float-chip .lbl {
  font-size: 11px;
  color: var(--muted);
  font-family: "JetBrains Mono";
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.float-chip .v {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.float-chip-1 {
  top: 14%;
  left: 0;
  animation-delay: -1s;
}
.float-chip-1 .ic {
  background: var(--primary);
}
.float-chip-2 {
  bottom: 14%;
  left: 5%;
  animation-delay: -3s;
}
.float-chip-2 .ic {
  background: var(--accent-violet);
}
.float-chip-3 {
  top: 8%;
  right: 0;
  animation-delay: -5s;
}
.float-chip-3 .ic {
  background: var(--accent-orange);
}
.float-chip-4 {
  bottom: 8%;
  right: 6%;
  animation-delay: -2s;
}
.float-chip-4 .ic {
  background: var(--accent-green);
}
@media (max-width: 980px) {
  .hero-visual {
    min-height: 520px;
  }
  .float-chip-3,
  .float-chip-4 {
    display: none;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
  position: relative;
}
.sec-head {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: flex-end;
}
.sec-head.center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
/* @media (max-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr;
  }
} */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono";
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(221, 14, 82, 0.18);
}
.dark-mode .eyebrow,
.dark-mode .flow-lbl,
.dark-mode .stack-tag-meta {
  background: rgb(255 225 234 / 10%);
}
.eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(221, 14, 82, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(221, 14, 82, 0);
  }
}
.sec-h {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
  text-wrap: balance;
  color: var(--ink);
  max-width: 780px;
}
.dark-mode .sec-h {
  color: white;
}
.sec-h .hl {
  color: var(--primary);
}
.sec-h .underline {
  position: relative;
  display: inline-block;
}
.sec-h .underline svg {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -8px;
  width: 108%;
  height: 12px;
  color: var(--primary);
  opacity: 0.6;
}
.sec-sub {
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 600px;
}
.dark-mode .sec-sub {
  color: var(--darkInk);
}
.sec-head.center .sec-h,
.sec-head.center .sec-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SECTION 1 · POSITIONING ===== */
.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .pos-grid {
    grid-template-columns: 1fr;
  }
}
.pos-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.dark-mode .pos-card {
  background: linear-gradient(135deg, #232331, var(--ink));
}
.pos-card .corner {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-soft), transparent 60%);
  opacity: 0.6;
}
.dark-mode .pos-card .corner {
  background: radial-gradient(circle, rgba(221, 14, 82, 0.45), transparent 60%);
}
.pos-card h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  position: relative;
}
.pos-card p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 24px;
  position: relative;
}
.dark-mode .pos-card p {
  color: var(--darkInk) !important;
}
.pos-list {
  display: grid;
  gap: 10px;
  position: relative;
}
.pos-list .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 14px 16px;
  align-items: center;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: 0.25s;
}
.pos-list .row:hover {
  border-color: var(--primary);
  background: var(--primary-tint);
  transform: translateX(4px);
}
.dark-mode .pos-list .row {
  background: rgb(246 244 240 / 10%);
}
.dark-mode .pos-list .row:hover {
  background: rgb(246 244 240 / 20%);
}
.pos-list .row .n {
  font-family: "JetBrains Mono";
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}
.pos-list .row .t {
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.dark-mode .pos-list .row .t {
  color: white;
}
.pos-list .row .ar {
  color: var(--muted);
  transition: 0.2s;
}
.pos-list .row:hover .ar {
  color: var(--primary);
  transform: translateX(3px);
}

/* ===== SECTION 2 · SERVICES — colorful icon cards ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.svc-grid.row {
  display: flex;
}
@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.dark-mode .svc {
  background: linear-gradient(135deg, #232331, var(--ink));
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.svc.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.svc.featured-dark {
  background: linear-gradient(135deg, #232331, var(--ink));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(26, 26, 34, 0.5);
}
@media (max-width: 900px) {
  .svc.featured {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .svc.featured {
    grid-column: span 1;
  }
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.2);
}
.svc-icon svg {
  width: 26px;
  height: 26px;
}
.svc-icon.c-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.svc-icon.c-violet {
  background: linear-gradient(135deg, #9b7cff, var(--accent-violet));
}
.svc-icon.c-blue {
  background: linear-gradient(135deg, #6aa1ff, var(--accent-blue));
}
.svc-icon.c-orange {
  background: linear-gradient(135deg, #ff9468, var(--accent-orange));
}
.svc-icon.c-green {
  background: linear-gradient(135deg, #4ade80, var(--accent-green));
}
.svc-icon.c-amber {
  background: linear-gradient(135deg, #fcd34d, var(--accent-amber));
}
.svc.featured .svc-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.svc.featured-dark .svc-icon {
  background: rgba(255, 255, 255, 0.1);
}
.svc h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.dark-mode .svc h3 {
  color: white;
}
.svc.featured h3,
.svc.featured-dark h3 {
  color: #fff;
  font-size: 26px;
}
.svc .desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.dark-mode .svc .desc {
  color: var(--darkInk);
}
.svc.featured .desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}
.svc.featured-dark .desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}
.svc .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.svc .chips span {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--bg);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.svc.featured .chips span {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.svc.featured-dark .chips span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.svc .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--primary);
}
.svc .more::after {
  content: "→";
  transition: transform 0.2s;
}
.svc:hover .more::after {
  transform: translateX(4px);
}
.svc.featured .more,
.svc.featured-dark .more {
  color: #fff;
}

/* ===== SECTION 3 · PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.dark-mode .step {
  background: linear-gradient(135deg, #232331, var(--ink));
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.step .num-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  transition: 0.25s;
}
.step:hover .num-badge {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.step .ic-bg {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  color: var(--bg-2);
  opacity: 0.7;
}
.dark-mode .step .ic-bg {
  opacity: 0.1;
}
.step h4 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.dark-mode .step h4 {
  color: white;
}
.dark-mode .step p {
  color: var(--darkInk);
}

/* ===== SECTION 4 · WHY WP / LARAVEL ===== */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .why-split {
    grid-template-columns: 1fr;
  }
}
.why-card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 440px;
  box-shadow: var(--shadow-sm);
}
.why-card .blob {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-soft), transparent 60%);
  opacity: 0.6;
}
.why-card.accent {
  background: linear-gradient(160deg, #232331, var(--ink));
  color: #fff;
  border-color: transparent;
}
.why-card.accent .blob {
  background: radial-gradient(circle, rgba(221, 14, 82, 0.5), transparent 60%);
  opacity: 0.7;
}
.why-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  border: 1px solid var(--line);
  color: var(--ink);
  position: relative;
}
.why-card.accent .badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.why-card .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}
.why-card h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  position: relative;
}
.why-card h3 .hl {
  color: var(--primary);
}
.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  position: relative;
}
.why-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: 0.25s;
}
.why-card.accent ul li {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.why-card ul li:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}
.why-card ul li .check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why-card ul li .check svg {
  width: 14px;
  height: 14px;
}

/* ===== SECTION 5 · WHY US — comparison ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .compare {
    grid-template-columns: 1fr;
  }
}
.cmp {
  border-radius: var(--r-lg);
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.cmp.good {
  background: linear-gradient(160deg, var(--primary), var(--primary-2));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.cmp .head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.cmp .head .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--muted);
  display: grid;
  place-items: center;
}
.cmp.good .head .ic {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.cmp .head .ic svg {
  width: 22px;
  height: 22px;
}
.cmp h4 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.cmp.good h4 {
  color: #fff;
}
.cmp ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cmp ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--bg);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
}
.cmp.good ul li {
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.cmp ul li .ic {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(26, 26, 34, 0.08);
  color: var(--muted);
}
.cmp.good ul li .ic {
  background: #fff;
  color: var(--primary);
}
.cmp ul li .ic svg {
  width: 13px;
  height: 13px;
}

/* ===== SECTION 6 · DIFFERENT — equation ===== */
.equation {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 18px;
  margin-top: 50px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .equation {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.eq-side {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.eq-side.accent {
  background: linear-gradient(160deg, #232331, var(--ink));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.eq-side .lbl {
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
.eq-side h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.eq-side.accent h3 {
  color: #fff;
}
.eq-side h3 .hl {
  color: var(--primary);
}
.eq-rows {
  display: grid;
  gap: 8px;
}
.eq-rows .r {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  transition: 0.25s;
}
.eq-side.accent .eq-rows .r {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.eq-rows .r:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}
.eq-rows .r .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.eq-rows .r .ic svg {
  width: 20px;
  height: 20px;
}
.eq-rows .r .t {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.eq-side.accent .eq-rows .r .t {
  color: #fff;
}
.eq-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  padding: 24px 0;
}
@media (max-width: 900px) {
  .eq-mid {
    flex-direction: row;
    padding: 8px 0;
    gap: 18px;
  }
}
.eq-mid .vline {
  flex: 1;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--line) 0 4px,
    transparent 4px 8px
  );
  min-height: 60px;
}
@media (max-width: 900px) {
  .eq-mid .vline {
    width: auto;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--line) 0 4px,
      transparent 4px 8px
    );
    min-height: 0;
  }
}
.eq-mid .glyph {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-primary);
}
.eq-mid .glyph svg {
  width: 28px;
  height: 28px;
}
.eq-mid .pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* ===== SECTION 7 · SUPPORT ===== */
.support {
  margin-top: 50px;
  background: linear-gradient(160deg, #232331, var(--ink));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 54px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .support {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
}
.support::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.support .photo {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--ink);
  opacity: 0.5;
  z-index: 0;
}
.support .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support > div {
  position: relative;
  z-index: 1;
}
.support h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.support h3 .hl {
  color: var(--primary);
}
.support .sup-lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 16px 0 20px;
  max-width: 480px;
}
.support .how {
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 14.5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.support .how b {
  color: var(--primary);
  font-weight: 700;
}
.support .who {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  margin-top: 24px;
}
.support .who h5 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 12px;
}
.support .who li {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  padding: 4px 0;
  display: flex;
  gap: 10px;
  line-height: 1.4;
  align-items: center;
}
.support .who li::before {
  content: "›";
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}
.support .who ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.support .right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: flex-start;
}
.sup-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  transition: 0.25s;
}
.sup-pill:hover {
  background: rgba(221, 14, 82, 0.15);
  border-color: rgba(221, 14, 82, 0.4);
}
.sup-pill .ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sup-pill .ic svg {
  width: 14px;
  height: 14px;
}

/* ===== SECTION 8 · PROJECTS ===== */
.projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.projects.row {
  display: flex;
}
@media (max-width: 1000px) {
  .projects {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .projects {
    grid-template-columns: 1fr;
  }
}
.proj {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s;
}
.dark-mode .proj {
  background: var(--darkBox);
}
.proj:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.proj.p1 {
  grid-column: span 7;
}
.proj.p2 {
  grid-column: span 5;
}
.proj.p3 {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
}
@media (max-width: 1000px) {
  .proj.p1,
  .proj.p2,
  .proj.p3 {
    grid-column: span 2;
  }
  .proj.p3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .proj.p1,
  .proj.p2,
  .proj.p3 {
    grid-column: span 1;
  }
}
.proj .img {
  position: relative;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  max-height: 380px;
}
.proj.p3 .img {
  aspect-ratio: auto;
  min-height: 380px;
}
.proj .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 20, 22, 0.5));
}
.proj .img .tag {
  position: absolute;
  left: 18px;
  top: 18px;
  background: var(--surface);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 1;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.proj .img .tag.primary {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}
.proj .img .tag.dark {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.proj .img .floating {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
}
.proj .img .floating .v {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  color: var(--primary);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.proj .img .floating .l {
  font-size: 10.5px;
  color: var(--muted);
  font-family: "JetBrains Mono";
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.proj .body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.proj .body img {
  max-height: 50px;
  object-fit: contain;
  object-position: left;
}
.dark-mode .proj .body img {
  filter: invert(1);
}
.proj .body p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
}
.proj.p3 .body {
  padding: 42px;
}
.proj .meta {
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.proj .meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.proj .meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary);
}
.proj h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.dark-mode .proj h3 {
  color: white;
}
.dark-mode .proj p {
  color: var(--darkInk);
}
.proj.p3 h3 {
  font-size: 30px;
}
.proj h3 .hl {
  color: var(--primary);
}
.proj .ps-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.proj.p2 .ps-block {
  grid-template-columns: 1fr;
}
.proj .ps {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.proj .ps .lbl {
  font-family: "JetBrains Mono";
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 600;
}
.proj .ps p {
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.proj .outcomes {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.proj .outcomes .k .v {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.proj .outcomes .k .v .ital {
  color: var(--primary);
}
.proj .outcomes .k .l {
  font-family: "JetBrains Mono";
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}
.proj .read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}
.proj .read::after {
  content: "→";
  transition: transform 0.2s;
}
.proj:hover .read::after {
  transform: translateX(4px);
}

/* ===== SECTION 9 · SPECIALISE STRIP — icon grid ===== */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}
.spec {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.25s;
}
.dark-mode .spec {
  background: var(--darkBox);
}
.spec:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.spec .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.2);
}
.spec .ic svg {
  width: 24px;
  height: 24px;
}
.spec .ic.c-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.spec .ic.c-violet {
  background: linear-gradient(135deg, #9b7cff, var(--accent-violet));
}
.spec .ic.c-blue {
  background: linear-gradient(135deg, #6aa1ff, var(--accent-blue));
}
.spec .ic.c-orange {
  background: linear-gradient(135deg, #ff9468, var(--accent-orange));
}
.spec .ic.c-green {
  background: linear-gradient(135deg, #4ade80, var(--accent-green));
}
.spec .ic.c-amber {
  background: linear-gradient(135deg, #fcd34d, var(--accent-amber));
}
.spec .body {
  flex: 1;
}
.spec .body .n {
  font-family: "JetBrains Mono";
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.spec .body .t {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.005em;
  margin-top: 4px;
  color: var(--ink);
}
.dark-mode .spec .body .t {
  color: white;
}
.spec .ar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--bg);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: 0.25s;
  flex-shrink: 0;
}
.spec:hover .ar {
  background: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}
.spec .ar svg {
  width: 12px;
  height: 12px;
}

/* ===== SECTION 10 · LAUNCH JOURNEY ===== */
.journey {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
@media (max-width: 900px) {
  .journey {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .journey {
    grid-template-columns: 1fr;
  }
}
.journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 6px,
    transparent 6px 14px
  );
  z-index: 0;
  opacity: 0.3;
}
@media (max-width: 900px) {
  .journey::before {
    display: none;
  }
}
.j-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.j-step .node {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 1;
  color: var(--ink);
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}
.dark-mode .j-step .node {
  background: var(--darkBox);
}
.dark-mode .j-step.now .node {
  box-shadow:
    0 0 0 6px rgb(255 225 234 / 10%),
    var(--shadow-primary);
}
.j-step .node .icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
  transition: 0.3s;
}
.dark-mode .j-step .node .icon {
  color: var(--darkInk);
}
.j-step .node .num {
  font-family: "JetBrains Mono";
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.j-step.now .node {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: var(--primary);
  color: #fff;
  box-shadow:
    0 0 0 6px var(--primary-soft),
    var(--shadow-primary);
}
.j-step.now .node .icon {
  color: #fff;
}
.j-step.now .node .num {
  color: rgba(255, 255, 255, 0.78);
}
.j-step:hover .node {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.j-step:hover .node .icon {
  color: var(--primary);
}
.j-step.now:hover .node .icon {
  color: #fff;
}
.j-step .t {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 160px;
  line-height: 1.3;
}
.j-step .t .hl {
  color: var(--primary);
}
.dark-mode .j-step .t {
  color: white;
}
/* ===== CTA ===== */
.cta-wrap {
  padding: 110px 0 70px;
}
.cta {
  background: linear-gradient(160deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 80px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}
.cta::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.08;
}
.cta::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border: 18px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.cta h2 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
  position: relative;
  text-wrap: balance;
}
.cta p {
  position: relative;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 18px auto 32px;
  line-height: 1.55;
}
.cta .row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}
.cta .btn-primary:hover {
  background: #f5f5f8;
}
.cta .btn-primary .ar {
  background: var(--primary);
  color: #fff;
}
.cta .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}
.cta .btn-ghost .ar {
  background: #fff;
  color: var(--primary);
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.foot-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
}
@media (max-width: 900px) {
  .foot-hero {
    grid-template-columns: 1fr;
  }
  .cta-wrap {
    padding: 40px 0;
  }
}
.foot-hero .word {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.foot-hero .word .hl {
  color: var(--primary);
}
.foot-hero .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.foot-hero .right a {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  padding: 6px 0;
}
.foot-hero .right a:hover {
  color: var(--primary);
}
.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
  font-family: "JetBrains Mono";
}

/* ============================================================
     ★ SECTION 4 — STACK CHAPTERS (full-width rows)
     ============================================================ */
.stack-rows {
  display: grid;
  gap: 18px;
  margin-top: 50px;
}
.stack-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 42px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.dark-mode .stack-row {
  background: var(--darkBox);
}
.stack-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stack-row.dark {
  background: linear-gradient(160deg, #232331, var(--ink));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .stack-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px;
  }
}
.stack-row::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-soft), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.stack-row.dark::before,
.dark-mode .stack-row::before {
  background: radial-gradient(circle, rgba(221, 14, 82, 0.45), transparent 60%);
  opacity: 0.5;
}
.stack-row-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stack-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.stack-num::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--primary);
}
.stack-row.dark .stack-num,
.dark-mode .stack-num {
  color: rgba(255, 255, 255, 0.5);
}
.stack-bigtype {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stack-row.dark .stack-bigtype,
.dark-mode .stack-bigtype,
.dark-mode .stack-row-lead {
  color: #fff;
}
.stack-bigtype .acc {
  color: var(--primary);
}
.stack-tag-meta {
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid rgba(221, 14, 82, 0.18);
  font-weight: 500;
}
.stack-row.dark .stack-tag-meta {
  background: rgba(221, 14, 82, 0.15);
  border-color: rgba(221, 14, 82, 0.3);
}
.stack-row-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.stack-row-lead {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 520px;
  margin: 0;
}
.stack-row.dark .stack-row-lead {
  color: #fff;
}
.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 11px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  transition: 0.25s;
}
.stack-row.dark .stack-tag {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.stack-tag:hover {
  border-color: var(--primary);
  background: var(--primary-tint);
  color: var(--primary-2);
  transform: translateY(-1px);
}
.stack-row.dark .stack-tag:hover {
  background: rgba(221, 14, 82, 0.2);
  border-color: var(--primary);
  color: #fff;
}
.stack-tag .ic {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.stack-row.dark .stack-tag .ic {
  background: linear-gradient(135deg, var(--accent-violet), #5a3fd1);
}
.stack-tag .ic svg {
  width: 12px;
  height: 12px;
}

/* ============================================================
     ★ SECTION 5 — TRANSFORMATION PANEL (single panel, 5 rows)
     ============================================================ */
.transform-panel {
  margin-top: 50px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.dark-mode .transform-panel {
  background: var(--darkBox);
}
.transform-panel::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-soft), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.transform-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.12),
    transparent 60%
  );
  opacity: 0.6;
  pointer-events: none;
}
.transform-head {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
  align-items: center;
}
@media (max-width: 760px) {
  .transform-head {
    grid-template-columns: 1fr 50px 1fr;
    gap: 10px;
  }
  .transform-panel {
    padding: 20px;
  }
}
.transform-head .h {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.transform-head .h.bad {
  color: var(--muted);
}
.transform-head .h.good {
  color: var(--primary);
  justify-content: flex-end;
}
.transform-head .h .ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.transform-head .h.bad .ic {
  background: rgba(26, 26, 34, 0.08);
  color: var(--muted);
}
.transform-head .h.good .ic {
  background: var(--primary);
  color: #fff;
}
.transform-head .h .ic svg {
  width: 14px;
  height: 14px;
}
.transform-head .vs {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  justify-self: center;
}
.transform-rows {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  position: relative;
}
.transform-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: 0.3s;
}
.dark-mode .transform-row {
  background: #16171d;
}
@media (max-width: 760px) {
  .transform-row {
    grid-template-columns: 1fr 50px 1fr;
    gap: 10px;
    padding: 14px;
  }
}
.transform-row:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  background: var(--primary-tint);
}
.dark-mode .transform-row:hover {
  background: #2c2e38;
}
.transform-row .bad-side {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
}
.dark-mode .transform-row .bad-side {
  color: var(--darkInk);
}
.transform-row .bad-side .lbl {
  text-decoration: line-through;
  text-decoration-color: rgba(26, 26, 34, 0.3);
  text-decoration-thickness: 1.5px;
}
.transform-row .bad-side .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(26, 26, 34, 0.06);
  color: var(--muted);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.transform-row .bad-side .ic svg {
  width: 14px;
  height: 14px;
}
.transform-row .arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  justify-self: center;
  box-shadow: var(--shadow-primary);
  transition: 0.3s;
}
@media (max-width: 760px) {
  .transform-row .arrow {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
}
.transform-row:hover .arrow {
  transform: scale(1.08) rotate(0deg);
}
.transform-row .arrow svg {
  width: 18px;
  height: 18px;
}
.transform-row .good-side {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  justify-content: flex-end;
}
.dark-mode .transform-row .good-side {
  color: white;
}
@media (max-width: 760px) {
  .transform-row .bad-side {
    font-size: 13.5px;
    gap: 10px;
  }
  .transform-row .good-side {
    font-size: 14px;
    gap: 6px;
    text-align: right;
  }
}
.transform-row .good-side .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  order: 2;
}
.transform-row .good-side .ic svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
     ★ SECTION 6 — FLOW DIAGRAM (inputs → converge → outputs)
     ============================================================ */
.flow {
  margin-top: 50px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 54px 44px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.dark-mode .flow {
  background: var(--darkBox);
}
@media (max-width: 760px) {
  .flow {
    padding: 36px 24px;
  }
}
.flow::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-soft), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.dark-mode .flow::before {
  background: radial-gradient(circle, rgba(221, 14, 82, 0.45), transparent 60%);
}
.flow::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.12),
    transparent 60%
  );
  opacity: 0.7;
  pointer-events: none;
}
.flow-row {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 900px) {
  .flow-row {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .flow-row .flow-lbl {
    justify-self: center;
  }
  .flow-row .flow-nodes {
    justify-content: center;
  }
}
.flow-lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  background: var(--primary-soft);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(221, 14, 82, 0.18);
  width: fit-content;
}
.flow-lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  animation: pulse 1.6s ease-in-out infinite;
}
.flow-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.flow-node {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 20px 14px 14px;
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: 0.25s;
}
.dark-mode .flow-node {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}
.flow-node:hover {
  border-color: var(--primary);
  background: var(--primary-tint);
  transform: translateY(-3px);
}
.dark-mode .flow-node:hover {
  background: rgba(255, 255, 255, 0.09);
}
.flow-node .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.2);
}
.flow-node .ic svg {
  width: 17px;
  height: 17px;
}
/* converger center */
.flow-center {
  display: grid;
  place-items: center;
  padding: 30px 0;
  position: relative;
}
/* .flow-center::before,
.flow-center::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 36px;
  background: repeating-linear-gradient(
    180deg,
    rgba(26, 26, 34, 0.2) 0 4px,
    transparent 4px 8px
  );
}
.flow-center::before {
  top: 0;
  transform: translate(-50%, 0);
}
.flow-center::after {
  bottom: 0;
  transform: translate(-50%, 0);
} */
.flow-funnel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow-primary);
  position: relative;
}
.flow-funnel .glyph {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}
.flow-funnel .glyph svg {
  width: 22px;
  height: 22px;
}
.flow-funnel .t {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.flow-funnel .t .lab {
  font-family: "JetBrains Mono";
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}
.flow-funnel .t .nm {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.015em;
}

/* reveal */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
html.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding: 30px 0 40px;
  }
  section {
    padding: 40px 0;
  }
  .float-chat {
    bottom: 14px;
    right: 14px;
  }
}
@media (min-width: 767px) and (max-width: 1100px) {
  section {
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  .h1 {
    font-size: clamp(40px, 6vw, 58px);
  }
}
@media (min-width: 1600px) {
  .h1 {
    font-size: clamp(40px, 6vw, 68px);
  }
}
.container {
  padding-inline: 15px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer-custom {
  background-color: #16171d !important;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding-top: 240px !important;
}
.dark-mode .site-footer-custom {
  background-color: #121212;
}
.cta-wrap .cta {
  margin-bottom: -220px;
}
.footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo */
.footer-logo-link {
  text-decoration: none;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-logo-img {
  max-height: 40px;
  object-fit: contain;
}
.footer-logo-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Column headings */
.footer-col-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Nav links */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  margin-bottom: 10px;
  margin-left: 0;
}
.footer-nav-list li a {
  color: var(--darkInk);
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer-nav-list li a:hover {
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  padding: 20px 0;
  font-family: "JetBrains Mono";
}
.footer-bottom .footer-copyright {
  font-size: 13px;
  color: #5a5b64;
  font-weight: 400;
}
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
.footer-bottom-links li {
  margin: 0;
}
.footer-bottom-links li a {
  font-size: 13px;
  color: #5a5b64;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.footer-bottom-links li a:hover {
  color: #fff;
}

@media (max-width: 576px) {
  .footer-main {
    padding: 48px 0 36px;
  }
  .footer-bottom-links {
    justify-content: flex-start;
  }
}

/* ── Theme toggle switch ──────────────────────────────────────── */
.theme-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.theme-toggle__track {
  position: relative;
  display: flex;
  align-items: center;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.theme-toggle__thumb {
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s;
  z-index: 1;
}
.theme-toggle__icon {
  position: absolute;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.theme-toggle__icon svg {
  width: 14px;
  height: 14px;
}
.theme-toggle__icon--sun {
  right: 6px;
  color: var(--primary);
}
.theme-toggle__icon--moon {
  left: 6px;
  color: #fff;
  opacity: 0;
}

/* dark state */
body.dark-mode .theme-toggle__track {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark-mode .theme-toggle__thumb {
  transform: translateX(24px);
  background: var(--darkInk);
}
body.dark-mode .theme-toggle__icon--sun {
  opacity: 0;
}
body.dark-mode .theme-toggle__icon--moon {
  opacity: 1;
}
.nav-toggle {
  right: 0 !important;
}
.nav-toggle .toggle-inner {
  padding: 0;
  height: auto;
}
.nav-toggle svg,
.toggle-icon {
  height: auto !important;
  width: auto !important;
}
.dark-mode .nav-toggle svg {
  color: white;
}
/* ── Header logo dark-mode swap ──────────────────────────────── */
/* Hide light logo by default; hide default logo in dark mode */
.light-logo-link {
  display: none !important;
}
body.dark-mode .custom-logo-link:not(.light-logo-link) {
  display: none;
}
body.dark-mode .light-logo-link {
  display: inline-flex !important;
}
