:root {
  --cyan: #2eb8d1;
  --cyan-deep: #1a7f96;
  --navy: #0b1f2e;
  --ink: #12202c;
  --muted: #5b6b78;
  --red: #e63b51;
  --surface: #f4f8fa;
  --white: #ffffff;
  --line: rgba(18, 32, 44, 0.08);
  --shadow: 0 24px 60px rgba(11, 31, 46, 0.12);
  --radius: 14px;
  --font: "Vazirmatn", system-ui, sans-serif;
  --font-display: "Lalezar", "Vazirmatn", system-ui, sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fafbfc;
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  --hero-app-bar-height: 72px;
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.75rem 0 0;
  background: transparent;
  transition: padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 0.45rem;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.45rem 0.55rem 0.45rem 0.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 32, 44, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(11, 31, 46, 0.05);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(46, 184, 209, 0.18);
  box-shadow: 0 14px 36px rgba(11, 31, 46, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.15rem 0.35rem;
  color: var(--navy);
}

.brand img {
  height: 36px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  left: 0.7rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a:hover {
  color: var(--navy);
  background: rgba(46, 184, 209, 0.06);
}

.nav a.is-active {
  color: var(--cyan-deep);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-mobile-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-ghost {
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-ghost:hover {
  color: var(--navy);
  background: rgba(18, 32, 44, 0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0.7rem 1.15rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

.btn-primary:hover {
  background: var(--cyan-deep);
  border-color: var(--cyan-deep);
}

.btn-outline {
  background: var(--white);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-outline:hover {
  background: rgba(46, 184, 209, 0.06);
}

.btn-header-cta {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-radius: 12px;
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(11, 31, 46, 0.18);
}

.btn-header-cta:hover {
  background: var(--cyan-deep);
  border-color: var(--cyan-deep);
  box-shadow: 0 10px 22px rgba(26, 127, 150, 0.28);
}

.btn-hero {
  width: 100%;
  min-height: 48px;
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-lg {
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: #f3f6f8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 11px;
  background: rgba(18, 32, 44, 0.04);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(46, 184, 209, 0.12);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero-pulse {
  --hero-app-bar-height: 80px;
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  overflow: clip;
  background: #fafbfc;
  min-height: calc(100dvh - var(--hero-app-bar-height));
  border-bottom: 1px solid rgba(18, 32, 44, 0.06);
}

.pulse-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pulse-backdrop,
.pulse-inner {
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-backdrop {
  opacity: 0;
}

.hero-pulse.is-visible .pulse-backdrop {
  animation: pulse-in 0.85s cubic-bezier(0.28, 1.22, 0.42, 1) forwards;
}

@keyframes pulse-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.pulse-inner {
  width: min(132vmin, 104vw);
  max-width: min(1800px, 100%);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  height: auto;
}

.solar-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: auto;
}

.solar-ring {
  fill: none;
  stroke: #c5ced6;
  stroke-width: 1.25;
  pointer-events: none;
}

.solar-hit {
  fill: none;
  stroke: transparent;
  stroke-width: 22;
  pointer-events: stroke;
  cursor: pointer;
}

.solar-orbiter {
  transform-origin: 380px 380px;
  pointer-events: none;
  animation: solar-spin-cw var(--spin, 40s) linear infinite;
}

.solar-orbiter.is-rev {
  animation-name: solar-spin-ccw;
}

.solar-arc {
  fill: none;
  stroke: #a8b4bf;
  stroke-width: 1.5;
  stroke-linecap: round;
  pointer-events: none;
}

.solar-fx {
  pointer-events: none;
}

.solar-click-shape {
  transform-origin: 380px 380px;
  animation: solar-click-shape 1s ease-out forwards;
}

.solar-click-shape .solar-arc {
  stroke: #7b8a96;
  stroke-width: 2;
}

.solar-click-shape .solar-dot {
  fill: #7b8a96;
  stroke: #7b8a96;
  pointer-events: none;
}

.solar-dot {
  fill: #8b99a5;
  stroke: #8b99a5;
  stroke-width: 0.5;
  pointer-events: auto;
  cursor: pointer;
  transition: fill 0.15s ease, filter 0.15s ease;
}

.solar-dot:hover {
  fill: var(--cyan);
  stroke: var(--cyan);
  filter: drop-shadow(0 0 5px rgba(46, 184, 209, 0.55));
}

@keyframes solar-spin-cw {
  from { transform: rotate(var(--start, 0deg)); }
  to { transform: rotate(calc(var(--start, 0deg) + 360deg)); }
}

@keyframes solar-spin-ccw {
  from { transform: rotate(var(--start, 0deg)); }
  to { transform: rotate(calc(var(--start, 0deg) - 360deg)); }
}

@keyframes solar-click-shape {
  0% {
    transform: rotate(var(--click-start-rot));
    opacity: 1;
  }
  100% {
    transform: rotate(var(--click-end-rot));
    opacity: 0;
  }
}

.hero-content-layer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--hero-app-bar-height));
  padding: 2rem 1rem 3rem;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 40%;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(250, 251, 252, 0.85) 0%, rgba(250, 251, 252, 0) 100%);
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  pointer-events: none;
}

.hero-centred {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  pointer-events: none;
}

.hero-copy-fg,
.hero-stats-row {
  pointer-events: none;
}

.hero-cta-row,
.hero-cta-row .btn,
.orbit-card {
  pointer-events: auto;
}

.orbit-layer {
  position: absolute;
  inset: -1.5rem 0;
  pointer-events: none;
  z-index: 0;
}

.orbit-card {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 20px;
  width: fit-content;
  max-width: min(42vw, 240px);
  border-radius: 12px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.12) -4px 8px 18px 0;
  pointer-events: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  animation: orbit-float 3.5s ease-in-out infinite;
  will-change: top, left, opacity, transform;
}

.orbit-card.is-exit {
  animation: orbit-exit 0.35s ease forwards;
}

.orbit-card.is-enter {
  animation: orbit-enter 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

@keyframes orbit-enter {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 10px)) scale(0.96); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes orbit-exit {
  to { opacity: 0; transform: translate(-50%, calc(-50% - 8px)) scale(0.96); }
}

.orbit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.orbit-icon svg {
  width: 22px;
  height: 22px;
}

.orbit-card:hover .orbit-icon {
  transform: rotate(-8deg) translateY(-3px);
}

.orbit-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
}

.orbit-text strong {
  font-size: 1rem;
  font-weight: 500;
  color: #091e42;
  line-height: 1.4;
}

.orbit-text span {
  font-size: 0.875rem;
  color: #5b6b78;
  line-height: 1.4;
}

.hero-copy-fg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 766px;
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}

.hero-whisper {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--cyan-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-pulse.is-visible .hero-copy-fg {
  animation: copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

@keyframes copy-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0 0 1rem;
  font: inherit;
}

.hero-title-line {
  display: block;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.2;
  text-align: center;
  color: #091e42;
}

.hero-title-line .accent {
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.08em;
}

.hero-scribble {
  width: min(220px, 55%);
  height: auto;
  margin-top: -0.15rem;
  color: var(--red);
  opacity: 0.85;
  transform: rotate(-1.5deg);
}

.hero-desc {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.9;
  text-align: center;
  color: #5b6b78;
}

.hero-sticky {
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  width: 148px;
  padding: 0.85rem 0.75rem;
  background: #fff6a8;
  color: #3d3418;
  box-shadow: 3px 5px 0 rgba(11, 31, 46, 0.08);
  transform: rotate(-7deg);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: right;
  pointer-events: none;
}

.hero-sticky p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-sticky {
    display: none;
  }
}

.hero-cta-row {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 482px;
  margin-inline: auto;
}

.hero-stats-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
  width: 100%;
  max-width: 766px;
  opacity: 0;
  transform: translateY(12px);
}

.hero-pulse.is-visible .hero-stats-row {
  animation: copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #091e42;
  line-height: 1.2;
}

.hero-stat-num span {
  color: var(--cyan);
  font-weight: 500;
}

.hero-stat > span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #5b6b78;
}

.section-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--red);
  letter-spacing: 0.01em;
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.services-head {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}

.section-head h2,
.why-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.section-head p,
.why-copy > p {
  margin: 0;
  color: var(--muted);
}


.services {
  padding: 5rem 0 0;
}

.assist-shell {
  width: min(1680px, calc(100% - 1rem));
  margin: 2.75rem auto 0;
  padding: 0.5rem 0 1rem;
}

.assist-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 1.5rem clamp(3.5rem, 9vw, 7.5rem);
  padding: 1.25rem 0.75rem 0.75rem;
  min-height: 540px;
  direction: ltr;
}

.assist-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.assist-lines .fiber-track {
  fill: none;
  stroke: rgba(46, 184, 209, 0.18);
  stroke-width: 1.15;
  stroke-linecap: round;
}

.assist-lines .fiber-glow {
  fill: none;
  stroke: rgba(46, 184, 209, 0.22);
  stroke-width: 6;
  stroke-linecap: round;
  filter: blur(4px);
  opacity: 0.55;
}

.assist-lines .fiber-core {
  fill: none;
  stroke: rgba(127, 216, 232, 0.55);
  stroke-width: 1.35;
  stroke-linecap: round;
}

.assist-lines .fiber-node {
  fill: #7fd8e8;
  filter: drop-shadow(0 0 4px rgba(46, 184, 209, 0.65));
}

.assist-lines .optic-pulse {
  fill: #e8fbff;
  filter: url(#assist-optic-glow);
  opacity: 0.95;
  pointer-events: none;
}

.assist-lines .optic-pulse.is-warm {
  fill: #ffe8ee;
  filter: url(#assist-optic-glow-warm);
}

.assist-lines .optic-streak {
  fill: none;
  stroke: url(#assist-optic-grad);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 14 220;
  filter: url(#assist-optic-glow);
  opacity: 0.8;
  animation: assist-optic-streak var(--optic-dur, 2.4s) linear infinite;
  animation-delay: var(--optic-delay, 0s);
}

.assist-col,
.assist-hub {
  position: relative;
  z-index: 1;
}

.assist-hub {
  align-self: center;
}

.assist-col-label {
  margin: 0 0 2.85rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cyan-deep);
  direction: rtl;
}

.assist-col-personal .assist-col-label {
  text-align: start;
}

.assist-col-business .assist-col-label {
  text-align: end;
}

.assist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.assist-col-personal .assist-list {
  align-items: flex-end;
}

.assist-col-business .assist-list {
  align-items: flex-start;
}

.assist-pill {
  appearance: none;
  border: 1.5px solid rgba(46, 184, 209, 0.45);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
  direction: rtl;
  box-shadow: 0 8px 22px rgba(11, 31, 46, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.assist-pill:hover,
.assist-pill.is-hot {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 14px 28px rgba(46, 184, 209, 0.16);
  color: var(--cyan-deep);
}

.assist-hub {
  display: grid;
  place-items: center;
  padding: 0.5rem;
}

.assist-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: clamp(148px, 18vw, 190px);
  min-height: clamp(148px, 18vw, 190px);
  padding: 1.25rem 1.1rem;
  border-radius: 26px;
  direction: rtl;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 250, 0.92)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 11px,
      rgba(46, 184, 209, 0.07) 11px,
      rgba(46, 184, 209, 0.07) 12px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(46, 184, 209, 0.07) 11px,
      rgba(46, 184, 209, 0.07) 12px
    );
  border: 1px solid rgba(46, 184, 209, 0.28);
  box-shadow:
    0 18px 40px rgba(11, 31, 46, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
  animation: assist-hub-pulse 4.5s ease-in-out infinite;
}

.assist-hub-card img {
  height: 42px;
  width: auto;
  margin-bottom: 0.25rem;
}

.assist-hub-card strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.assist-hub-card span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

@keyframes assist-hub-pulse {
  0%,
  100% {
    box-shadow:
      0 18px 40px rgba(11, 31, 46, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  50% {
    box-shadow:
      0 22px 48px rgba(46, 184, 209, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
}

@keyframes assist-optic-streak {
  to {
    stroke-dashoffset: -234;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assist-hub-card {
    animation: none;
  }

  .assist-lines .optic-streak {
    animation: none;
    opacity: 0.35;
  }
}

.showcase {
  margin-top: 4rem;
  padding: 3.5rem 0 5rem;
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(46, 184, 209, 0.1), transparent 60%),
    linear-gradient(180deg, #f3f7f9 0%, #fafbfc 100%);
  border-top: 1px solid var(--line);
}

.showcase-head h2 span {
  color: var(--cyan);
}

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  margin: 0 auto 1.75rem;
  max-width: 820px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}

.showcase-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 0;
  padding: 0.7rem 0.15rem 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.showcase-tab::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: transparent;
  transition: background 0.2s ease;
}

.showcase-tab:hover {
  color: var(--cyan-deep);
}

.showcase-tab.is-active {
  color: var(--cyan-deep);
}

.showcase-tab.is-active::after {
  background: var(--cyan);
}

.app-shell {
  --app-bg: #fafafa;
  --app-line: #ecedf1;
  --app-ink: #1f2937;
  --app-muted: #9aa3af;
  --app-soft: #f6f7f9;
  --app-amber: #f59e0b;

  display: grid;
  grid-template-columns: 54px 198px 1fr;
  min-height: 620px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--app-bg);
  border: 1px solid #e4e7eb;
  box-shadow: 0 24px 60px rgba(11, 31, 46, 0.13);
}

.app-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.55rem 0.22rem;
  background: #fff;
  border-inline-end: 1px solid var(--app-line);
}

.rail-avatar {
  width: 26px;
  height: 26px;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fda4af, #f43f5e);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
}

.rail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  padding: 0.4rem 0.1rem;
  border-radius: 8px;
  color: #a6adb8;
}

.rail-item svg {
  width: 17px;
  height: 17px;
}

.rail-item i {
  font-style: normal;
  font-size: 0.5rem;
  line-height: 1.2;
}

.rail-item.is-active {
  color: var(--cyan-deep);
  background: rgba(46, 184, 209, 0.1);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.5rem 0.55rem;
  background: #fff;
  border-inline-end: 1px solid var(--app-line);
}

.app-workspace {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.35rem 0.65rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--app-line);
}

.ws-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #10b981;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  flex-shrink: 0;
}

.app-workspace strong {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--app-ink);
}

.ws-chevron {
  width: 14px;
  height: 14px;
  margin-inline-start: auto;
  color: #c8cdd5;
}

.app-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0.48rem 0.4rem;
  background: transparent;
  color: #5c6672;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: right;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.app-nav-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #a6adb8;
  transition: color 0.18s ease;
}

.app-nav-item:hover {
  background: var(--app-soft);
  color: var(--app-ink);
}

.app-nav-item.is-active {
  background: rgba(46, 184, 209, 0.1);
  color: var(--cyan-deep);
  font-weight: 700;
}

.app-nav-item.is-active svg {
  color: var(--cyan-deep);
}

.nav-badge {
  margin-inline-start: auto;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 700;
  color: #fff;
  background: #3b82f6;
}

.nav-badge.alt {
  background: #8b5cf6;
}

.app-nav-extra {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--app-line);
}

.app-nav-extra span {
  padding: 0.4rem;
  font-size: 0.72rem;
  color: #8a929c;
}

.app-collapse {
  margin-top: auto;
  padding: 0.35rem;
  color: #b8bec7;
}

.app-collapse svg {
  width: 15px;
  height: 15px;
}

.app-main {
  position: relative;
  background: var(--app-bg);
  min-width: 0;
}

.panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.panel[hidden] {
  display: none;
}

.panel.is-entering .panel-body {
  animation: panel-enter 0.35s ease;
}

.panel.is-entering .chart-line {
  animation: chart-draw 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.panel.is-entering .chart-area {
  animation: chart-fade 0.8s ease 0.25s both;
}

.panel.is-entering .eval-meters i::after {
  animation: meter-grow 0.55s ease both;
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chart-draw {
  from { stroke-dasharray: 1100; stroke-dashoffset: 1100; }
  to { stroke-dasharray: 1100; stroke-dashoffset: 0; }
}

@keyframes chart-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes meter-grow {
  from { width: 0; }
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  background: #fff;
  border-bottom: 1px solid var(--app-line);
}

.tb-back {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: #8a929c;
  flex-shrink: 0;
}

.tb-back svg {
  width: 15px;
  height: 15px;
}

.tb-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  flex-shrink: 0;
}

.tb-avatar-green { background: linear-gradient(135deg, #6ee7b7, #10b981); }
.tb-avatar-violet { background: linear-gradient(135deg, #c4b5fd, #8b5cf6); }
.tb-avatar-rose { background: linear-gradient(135deg, #fda4af, #f43f5e); }

.tb-heading h3 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--app-ink);
  line-height: 1.4;
}

.tb-heading p {
  margin: 0;
  font-size: 0.64rem;
  color: var(--app-muted);
  line-height: 1.4;
}

.tb-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-inline-start: auto;
  flex-shrink: 0;
}

.tb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.32rem 0.6rem;
  border-radius: 8px;
  background: var(--app-amber);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  white-space: nowrap;
}

.tb-pill svg {
  width: 13px;
  height: 13px;
}

.tb-quiet {
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  font-size: 0.66rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}

.tb-kebab {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #b8bec7;
}

.tb-kebab svg {
  width: 16px;
  height: 16px;
}

.panel-body {
  flex: 1;
  min-height: 0;
  padding: 0.85rem 0.9rem 1rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.27rem 0.55rem;
  border: 1px solid var(--app-line);
  border-radius: 7px;
  background: #fff;
  font-size: 0.65rem;
  color: #6b7280;
  white-space: nowrap;
}

.filter-chip svg {
  width: 12px;
  height: 12px;
  color: var(--app-muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.stat-card {
  padding: 0.65rem 0.8rem 0.7rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--app-line);
}

.stat-label {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.65rem;
  color: var(--app-muted);
}

.stat-label svg {
  width: 13px;
  height: 13px;
}

.si-amber { color: #f59e0b; }
.si-green { color: #10b981; }
.si-blue { color: #3b82f6; }

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
  margin: 0.45rem 0 0;
}

.stat-value strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--app-ink);
  letter-spacing: -0.01em;
}

.stat-value em {
  font-style: normal;
  font-size: 0.6rem;
  color: var(--app-muted);
}

.chart-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.5rem;
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--app-line);
  direction: ltr;
}

.chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 148px;
  font-size: 0.55rem;
  color: #bcc2ca;
}

.chart-plot {
  height: 148px;
  min-width: 0;
}

.chart-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.chart-grid line {
  stroke: #f0f2f4;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-dates {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.55rem;
  color: #bcc2ca;
}

.segment-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.75rem 0;
}

.segment-label {
  font-size: 0.64rem;
  color: var(--app-muted);
  margin-inline-end: 0.15rem;
}

.segment {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.3rem 0.58rem;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}

.segment svg {
  width: 12px;
  height: 12px;
}

.segment.is-active {
  background: var(--app-amber);
  border-color: var(--app-amber);
  color: #fff;
}

.board-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.board-card {
  padding: 0.65rem 0.7rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--app-line);
  min-height: 160px;
}

.board-card header {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  margin-bottom: 0.5rem;
}

.board-card header svg {
  width: 13px;
  height: 13px;
  color: var(--app-muted);
}

.board-card h4 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--app-ink);
}

.board-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
}

.board-card li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.3rem 0.38rem;
  border-radius: 7px;
  background: var(--app-soft);
  font-size: 0.66rem;
  color: #4b5563;
}

.board-card li b {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--app-line);
  font-size: 0.54rem;
  font-weight: 700;
  color: #6b7280;
  flex-shrink: 0;
}

.board-card li em {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-inline-start: auto;
  font-style: normal;
  font-size: 0.62rem;
  color: #8a929c;
}

.board-card li em svg {
  width: 11px;
  height: 11px;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  align-content: start;
}

.metric-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem 0.5rem 0.55rem;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--app-line);
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  bottom: 7px;
  width: 3px;
  border-radius: 3px;
  background: var(--bar, #3b82f6);
}

.metric-card strong {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--app-ink);
  line-height: 1.5;
}

.metric-card span {
  display: block;
  font-size: 0.59rem;
  color: var(--app-muted);
  line-height: 1.6;
}

.metric-card em {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  margin-inline-start: auto;
  padding: 0.24rem 0.42rem;
  border-radius: 7px;
  background: var(--app-soft);
  font-style: normal;
  font-size: 0.67rem;
  font-weight: 600;
  color: #4b5563;
  flex-shrink: 0;
}

.metric-card em svg {
  width: 12px;
  height: 12px;
  color: var(--app-muted);
}

.metric-add {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  align-self: center;
  border-radius: 8px;
  background: var(--app-soft);
  border: 1px solid var(--app-line);
  color: #a6adb8;
  font-size: 0.9rem;
  line-height: 1;
}

.task-meta .prio {
  font-style: normal;
  font-size: 0.58rem;
  padding: 0.15rem 0.38rem;
  border-radius: 5px;
  white-space: nowrap;
  font-weight: 700;
}

.panel-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.kanban-col {
  background: var(--app-soft);
  border: 1px solid var(--app-line);
  border-radius: 10px;
  padding: 0.6rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
  min-height: 250px;
}

.kanban-col h4 {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
}

.kanban-col h4 span {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 0.3rem;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--app-line);
  font-size: 0.58rem;
  color: #6b7280;
}

.kanban-col article {
  position: relative;
  margin: 0;
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.75rem 0.55rem 0.6rem;
  border: 1px solid var(--app-line);
  overflow: hidden;
}

.kanban-col article::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: #cbd5e1;
}

.kanban-col article strong {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--app-ink);
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  color: var(--app-muted);
}

.prio.high { background: rgba(244, 63, 94, 0.12); color: #e11d48; }
.prio.mid { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.prio.low { background: rgba(148, 163, 184, 0.16); color: #64748b; }

.kanban-col article.accent::before,
.crm-pipeline article.accent::before {
  background: var(--app-amber);
}

.panel-eval {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 0.55rem;
}

.panel-eval .eval-card {
  grid-column: 1 / -1;
}

.eval-side {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.eval-feedback {
  grid-column: 1 / -1;
  min-height: 0;
}

.eval-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--app-line);
}

.eval-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
}

.eval-card strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--app-ink); }
.eval-card span { color: var(--app-muted); font-size: 0.63rem; }

.score-ring {
  margin-inline-start: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 60%, transparent 61%),
    conic-gradient(var(--cyan) calc(var(--score) * 1%), #eef0f3 0);
}

.score-ring b {
  font-size: 0.85rem;
  color: var(--cyan-deep);
}

.eval-meters {
  display: grid;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--app-line);
}

.eval-meters label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #6b7280;
}

.eval-meters i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #eef0f3;
  position: relative;
  overflow: hidden;
}

.eval-meters i::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan));
}

.panel-crm {
  display: flex;
}

.panel-crm .crm-pipeline {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.crm-pipeline > div {
  background: var(--app-soft);
  border: 1px solid var(--app-line);
  border-radius: 10px;
  padding: 0.6rem;
  display: grid;
  gap: 0.4rem;
  align-content: start;
  min-height: 230px;
}

.crm-pipeline h4 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
}

.crm-pipeline h4 span {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 0.3rem;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--app-line);
  font-size: 0.58rem;
  color: #6b7280;
}

.crm-pipeline article {
  position: relative;
  margin: 0;
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.7rem 0.55rem 0.6rem;
  border: 1px solid var(--app-line);
  overflow: hidden;
}

.crm-pipeline article::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: #cbd5e1;
}

.crm-pipeline article strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--app-ink);
  margin-bottom: 0.25rem;
}

.crm-pipeline article em {
  font-style: normal;
  font-size: 0.63rem;
  color: #6b7280;
  font-weight: 600;
}

.crm-pipeline article em.won {
  color: #16a34a;
}

.showcase-caption {
  margin-top: 1.35rem;
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.showcase-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.showcase-note[hidden],
.panel[hidden] {
  display: none !important;
}

.showcase-note h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--navy);
}

.showcase-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-note a {
  color: var(--cyan-deep);
  font-weight: 700;
  margin-top: 0.15rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.showcase-note a:hover {
  color: var(--navy);
  transform: translateX(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .panel.is-entering .panel-body,
  .panel.is-entering .chart-line,
  .panel.is-entering .chart-area,
  .panel.is-entering .eval-meters i::after {
    animation: none;
  }
}

.human-strip {
  padding: 0 0 3.5rem;
}

.human-strip-inner {
  position: relative;
  padding: 2rem 1.75rem 2.1rem;
  border-radius: 8px 28px 12px 22px;
  background:
    linear-gradient(135deg, rgba(255, 246, 168, 0.35), transparent 40%),
    #fff;
  border: 1px solid rgba(18, 32, 44, 0.07);
  box-shadow: 8px 12px 0 rgba(46, 184, 209, 0.12);
  max-width: 42rem;
  margin-inline: auto;
  transform: rotate(-0.6deg);
}

.human-quote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.55;
  color: var(--navy);
}

.human-by {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.why {
  padding: 2rem 0 4.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-copy .section-kicker {
  text-align: right;
}

.why-margin-note {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cyan-deep);
  transform: rotate(-1deg);
}

.why-list {
  list-style: none;
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.why-list li {
  position: relative;
  padding-right: 1.7rem;
  font-weight: 500;
}

.why-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.4rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: inset 0 0 0 9px var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.why-visual {
  position: relative;
  min-height: 380px;
}

.widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11, 31, 46, 0.1);
  padding: 1rem;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.widget.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.calendar {
  width: 210px;
  top: 6%;
  left: 4%;
  transition-delay: 0.05s;
  transform: rotate(-3deg);
  border-radius: 18px 12px 20px 10px;
}

.widget.is-in.calendar {
  transform: translateY(0) rotate(-3deg);
}

.profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 250px;
  top: 40%;
  right: 2%;
  transition-delay: 0.18s;
  transform: rotate(2.5deg);
  border-radius: 14px 20px 12px 18px;
}

.widget.is-in.profile {
  transform: translateY(0) rotate(2.5deg);
}

.profile .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2a3ad, #e63b51);
  flex-shrink: 0;
}

.profile strong {
  display: block;
  font-size: 0.92rem;
}

.profile span {
  color: var(--muted);
  font-size: 0.78rem;
}

.profile em {
  margin-right: auto;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--cyan-deep);
  background: rgba(46, 184, 209, 0.14);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.bars {
  width: 200px;
  bottom: 4%;
  left: 32%;
  transition-delay: 0.3s;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  height: 150px;
  transform: rotate(1.5deg);
  border-radius: 16px 10px 18px 12px;
}

.widget.is-in.bars {
  transform: translateY(0) rotate(1.5deg);
}

.bars strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  grid-column: 1 / -1;
  align-self: start;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.cal-head span {
  color: var(--cyan-deep);
  font-weight: 600;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 6px;
  background: #eef4f7;
}

.cal-grid i.on {
  background: var(--cyan);
}

.cal-grid i.busy {
  background: rgba(230, 59, 81, 0.35);
}

.why-scrap {
  position: absolute;
  bottom: 8%;
  left: 18%;
  width: 190px;
  padding: 0.9rem 1rem;
  background: #fff6a8;
  border-radius: 4px;
  box-shadow: 4px 6px 0 rgba(11, 31, 46, 0.08);
  transform: rotate(-5deg) translateY(16px);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.28s;
}

.why-scrap.is-in {
  opacity: 1;
  transform: rotate(-5deg) translateY(0);
}

.why-scrap span {
  display: block;
  font-size: 0.72rem;
  color: #8a7a3a;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.why-scrap p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.4;
  color: #3d3418;
}

.bar {
  height: 100%;
  display: flex;
  align-items: end;
}

.bar span {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-deep));
  transform-origin: bottom;
  transform: scaleY(0.2);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.widget.is-in .bar span {
  transform: scaleY(1);
}

.pricing {
  padding: 4.75rem 0 5rem;
  background:
    radial-gradient(520px 240px at 50% 20%, rgba(46, 184, 209, 0.1), transparent 70%),
    #f7fafb;
  border-block: 1px solid rgba(18, 32, 44, 0.05);
}

.pricing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36rem;
}

.pricing-inner .section-kicker {
  margin-bottom: 1rem;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.pricing-value b {
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--cyan-deep);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.pricing-value span {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
}

.pricing-unit {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.pricing-note {
  margin: 0.85rem 0 1.5rem;
  max-width: 26rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.pricing-inner .btn {
  min-width: 10.5rem;
}

.calc {
  padding: 4.5rem 0 5rem;
  background: #fafbfc;
}

.calc-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.25rem;
}

.calc-head .section-kicker {
  text-align: center;
}

.calc-head h2 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.calc-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.calc-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.72fr);
  gap: 1.25rem;
  align-items: start;
}

.calc-workspace {
  min-height: 420px;
  padding: 1.35rem 1.4rem 1.5rem;
  border: 1px dashed rgba(46, 184, 209, 0.45);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 250, 0.88));
}

.calc-workspace:has([data-form-builder-ready]),
.calc-shell[data-form-ready] .calc-workspace {
  border-style: solid;
  border-color: rgba(18, 32, 44, 0.08);
  background: var(--white);
  padding: 0;
  min-height: 0;
}

.calc-placeholder {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  min-height: 380px;
}

.calc-placeholder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.calc-placeholder-chip {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: rgba(46, 184, 209, 0.12);
  color: var(--cyan-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.calc-placeholder-hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.calc-placeholder-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  flex: 1;
}

.calc-ph-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 32, 44, 0.06);
}

.calc-ph-field.is-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.calc-ph-field i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(46, 184, 209, 0.1);
  border: 1.5px solid rgba(46, 184, 209, 0.22);
}

.calc-ph-field i:first-child {
  background: rgba(46, 184, 209, 0.2);
  border-color: var(--cyan);
}

.calc-ph-field span {
  display: block;
  width: 42%;
  height: 10px;
  border-radius: 6px;
  background: rgba(18, 32, 44, 0.08);
}

.calc-ph-field b {
  display: block;
  width: 100%;
  height: 38px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(46, 184, 209, 0.06),
      rgba(46, 184, 209, 0.06) 6px,
      rgba(46, 184, 209, 0.12) 6px,
      rgba(46, 184, 209, 0.12) 12px
    );
  border: 1px dashed rgba(46, 184, 209, 0.28);
}

.calc-ph-field b.tall {
  height: 88px;
}

.calc-placeholder-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.calc-summary {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(18, 32, 44, 0.08);
  box-shadow: 0 18px 40px rgba(11, 31, 46, 0.06);
  overflow: hidden;
}

.calc-summary-head {
  padding: 1.15rem 1.2rem 1rem;
  border-bottom: 1px solid rgba(18, 32, 44, 0.06);
}

.calc-summary-head h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1rem;
}

.calc-summary-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.calc-summary-body {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 1.5rem 1.2rem;
}

.calc-summary-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  color: var(--muted);
}

.calc-summary-empty svg {
  width: 96px;
  height: auto;
  color: rgba(46, 184, 209, 0.55);
  margin-bottom: 0.35rem;
}

.calc-summary-empty strong {
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.calc-summary-empty span {
  font-size: 0.86rem;
}

.calc-summary-foot {
  padding: 1rem 1.15rem 1.2rem;
  border-top: 1px solid rgba(18, 32, 44, 0.06);
}

.calc-summary-cta {
  width: 100%;
}

.calc-summary-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}


.blog-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.blog-head .section-kicker {
  text-align: center;
}

.blog-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(18, 32, 44, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(46, 184, 209, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 31, 46, 0.06);
}

.blog-tag {
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 7px;
  background: rgba(46, 184, 209, 0.12);
  color: var(--cyan-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--navy);
}

.blog-card h3 a {
  color: inherit;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--cyan-deep);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
}

.blog-card time {
  color: var(--muted);
  font-size: 0.78rem;
}

.faq {
  padding: 4.5rem 0 5rem;
}

.faq-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.faq-head .section-kicker {
  text-align: center;
}

.faq-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.faq-list {
  max-width: 44rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--cyan-deep);
}

.faq-item summary i {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--muted);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.faq-item summary i::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] summary {
  color: var(--cyan-deep);
}

.faq-item[open] summary i::before,
.faq-item[open] summary i::after {
  background: var(--cyan-deep);
}

.faq-item[open] summary i::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 2rem 1.15rem 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}


.site-footer {
  --footer-ink: #1a1d22;
  --footer-mute: #6a7280;
  --footer-line: rgba(26, 29, 34, 0.1);
  --footer-accent: #e63b51;
  color: var(--footer-mute);
  padding: 3.5rem 0 1.35rem;
  background: #f1f2f4;
  border-top: 1px solid rgba(26, 29, 34, 0.07);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr 0.9fr;
  gap: 2rem 2.5rem;
  align-items: start;
  padding-bottom: 2.25rem;
}

.footer-intro p {
  margin: 0 0 1.15rem;
  max-width: 28ch;
  line-height: 1.75;
  font-size: 0.95rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--footer-ink);
  margin-bottom: 0.85rem;
}

.footer-mark img {
  height: 40px;
  width: auto;
}

.footer-mark span {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.footer-licenses {
  margin-top: 0.25rem;
}

.footer-licenses-label {
  margin: 0 0 0.55rem !important;
  color: var(--footer-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 22rem;
}

.footer-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 0.75rem 0.85rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--footer-line);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 59, 81, 0.35);
  box-shadow: 0 8px 20px rgba(26, 29, 34, 0.06);
}

.footer-badge-frame {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--footer-ink);
  background: #f1f2f4;
}

.footer-badge-frame svg {
  width: 44px;
  height: 44px;
}

.footer-badge strong {
  color: var(--footer-ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.75rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col h3,
.footer-reach h3 {
  margin: 0 0 0.35rem;
  color: var(--footer-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-col a {
  color: var(--footer-mute);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--footer-ink);
}

.footer-reach {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.2rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--footer-line);
  box-shadow: 0 10px 28px rgba(26, 29, 34, 0.04);
}

.footer-reach-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-reach-item span {
  font-size: 0.72rem;
  color: #8b939e;
}

.footer-reach-item strong {
  color: var(--footer-ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.footer-cta {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  background: var(--footer-ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  background: var(--footer-accent);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding-top: 1.2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: #8b939e;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.socials a {
  color: var(--footer-mute);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--footer-accent);
}

@media (min-width: 700px) {
  .hero-cta-row {
    flex-direction: row;
  }

  .btn-hero {
    width: auto;
    flex: 1;
  }
}

@media (min-width: 992px) {
  .btn-hero {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 991px) {
  :root {
    --container: min(1120px, calc(100% - 2rem));
  }

  .site-header {
    padding-top: 0.55rem;
  }

  .header-shell {
    position: relative;
    flex-wrap: nowrap;
    border-radius: 16px;
    padding: 0.4rem 0.5rem;
    gap: 0.65rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: 0;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.55rem;
    margin: 0;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(18, 32, 44, 0.08);
    box-shadow: 0 18px 40px rgba(11, 31, 46, 0.14);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.95rem;
  }

  .nav a::after {
    display: none;
  }

  .nav a.is-active {
    background: rgba(46, 184, 209, 0.1);
  }

  .nav-mobile-cta {
    display: none;
    margin-top: 0.35rem;
    justify-content: center;
    background: var(--navy) !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.85rem 0.95rem !important;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-ghost {
    display: none;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .orbit-layer {
    display: none;
  }

  .hero-pulse {
    min-height: auto;
  }

  .hero-content-layer {
    min-height: auto;
    padding: 2.25rem 1rem 2.75rem;
  }

  .hero-stack {
    gap: 1.75rem;
  }

  .pulse-inner {
    width: min(120vmin, 118vw);
  }

  .why-grid,
  .calc-shell,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .calc-summary {
    position: static;
    min-height: 0;
  }

  .calc-workspace,
  .calc-placeholder {
    min-height: 320px;
  }

  .assist-map {
    gap: 1.25rem clamp(2.5rem, 6vw, 5rem);
    min-height: 500px;
  }

  .assist-shell {
    width: min(1400px, calc(100% - 1rem));
  }

  .assist-pill {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .human-strip-inner {
    transform: none;
  }

  .app-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-rail,
  .app-sidebar {
    display: none;
  }

  .app-main {
    min-width: 0;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-visual {
    min-height: 360px;
    order: -1;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .showcase-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.35rem 1.1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .showcase-tabs::-webkit-scrollbar {
    display: none;
  }

  .showcase-tab {
    flex: 0 0 auto;
  }

  .panel-body {
    overflow-x: auto;
  }

  .services,
  .why,
  .pricing,
  .calc,
  .blog,
  .faq {
    padding-top: 3.5rem;
  }

  .services {
    padding-top: 3.75rem;
  }
}

@media (max-width: 900px) {
  .assist-shell {
    width: min(1120px, calc(100% - 1rem));
  }

  .assist-map {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
    padding-top: 0.5rem;
  }

  .assist-lines {
    display: none;
  }

  .assist-hub {
    order: -1;
  }

  .assist-col-personal .assist-list,
  .assist-col-business .assist-list {
    align-items: stretch;
  }

  .assist-col-personal .assist-col-label,
  .assist-col-business .assist-col-label {
    text-align: center;
  }

  .assist-pill {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .panel-kanban,
  .panel-crm .crm-pipeline,
  .panel-metrics,
  .panel-eval {
    grid-template-columns: 1fr;
  }

  .board-row,
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .board-card:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .kanban-col,
  .crm-pipeline > div {
    min-height: 0;
  }

  .why-visual {
    min-height: 300px;
    transform: scale(0.92);
    transform-origin: top center;
  }

  .calendar {
    width: 180px;
  }

  .profile {
    width: 210px;
  }

  .bars {
    width: 170px;
    left: 28%;
  }

  .why-scrap {
    width: 160px;
    left: 12%;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1120px, calc(100% - 1.35rem));
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand img {
    height: 30px;
  }

  .header-actions .btn-header-cta {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-content-layer {
    padding: 1.5rem 0.75rem 2.25rem;
  }

  .hero-stack {
    gap: 1.35rem;
  }

  .hero-title-line {
    font-size: clamp(2.05rem, 10.5vw, 2.55rem);
  }

  .hero-desc {
    font-size: 0.95rem;
    max-width: 22rem;
  }

  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem 0.5rem;
    max-width: 100%;
  }

  .hero-stat-num {
    font-size: 1.2rem;
  }

  .hero-stat > span {
    font-size: 0.75rem;
  }

  .btn-hero {
    width: 100%;
  }

  .pulse-inner {
    width: min(140vmin, 150vw);
  }

  .services-head,
  .showcase-head,
  .section-head {
    margin-bottom: 1.75rem;
  }

  .app-shell {
    border-radius: 14px;
  }

  .app-topbar,
  .panel-body {
    padding-inline: 0.75rem;
  }

  .board-row,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .board-card {
    min-height: 0;
  }

  .metric-card {
    align-items: flex-start;
    gap: 0.5rem;
  }

  .metric-card em {
    align-self: center;
  }

  .tb-heading h3 {
    font-size: 0.8rem;
  }

  .segment-label {
    display: none;
  }

  .calc-placeholder-fields {
    grid-template-columns: 1fr;
  }

  .calc-ph-field.is-wide {
    flex-direction: row;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    display: none;
  }

  .why-copy .btn {
    width: 100%;
  }

  .human-strip-inner {
    padding: 1.5rem 1.2rem 1.6rem;
    border-radius: 12px 20px 10px 16px;
  }

  .footer-mark span {
    font-size: 1.7rem;
  }
}

@media (max-width: 400px) {
  .header-actions .btn-header-cta {
    display: none;
  }

  .nav-mobile-cta {
    display: flex;
  }

  .hero-stats-row {
    gap: 0.5rem 0.35rem;
  }

  .hero-stat-num {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pulse .solar-orbiter {
    animation: none !important;
  }

  .pulse-backdrop,
  .hero-copy-fg,
  .hero-stats-row,
  .orbit-card,
  .widget {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}