:root {
  --bg: #02040a;
  --bg-2: #050914;
  --panel: rgba(12, 17, 31, 0.72);
  --panel-strong: rgba(17, 24, 43, 0.86);
  --line: rgba(112, 139, 255, 0.18);
  --line-strong: rgba(118, 152, 255, 0.42);
  --text: #f7f9ff;
  --muted: #9ba7c4;
  --dim: #68728b;
  --blue: #3f6bff;
  --cyan: #75e6ff;
  --violet: #b66cff;
  --green: #57e69a;
  --red: #ff6b85;
  --shadow: 0 24px 80px rgba(20, 68, 255, 0.24);
  --radius: 8px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(65, 99, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 34% 4%, rgba(151, 75, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #010209 0%, #050813 44%, #02040a 100%);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(80, 112, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 112, 255, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
}

body::after {
  background:
    linear-gradient(105deg, transparent 0 26%, rgba(54, 95, 255, 0.16) 26.3%, transparent 26.8%),
    linear-gradient(142deg, transparent 0 60%, rgba(117, 230, 255, 0.12) 60.2%, transparent 60.8%);
  opacity: 0.72;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0 1000px #111827 inset;
  caret-color: var(--text);
  transition: background-color 9999s ease-in-out 0s;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.72;
  pointer-events: none;
}

.site-shell {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(12, 16, 26, 0.62);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  width: 206px;
  max-width: 34vw;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(85, 137, 255, 0.26));
}

.portal-brand .brand-logo {
  width: 190px;
  max-width: 100%;
}

.footer-brand-logo {
  width: 232px;
  max-width: min(100%, 260px);
}

.brand sup {
  color: var(--cyan);
  font-size: 0.72em;
  margin-left: 2px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-block;
  background:
    linear-gradient(135deg, transparent 21%, #77e9ff 21% 38%, transparent 38%),
    linear-gradient(315deg, transparent 20%, #b66cff 20% 38%, transparent 38%),
    linear-gradient(45deg, rgba(63, 107, 255, 0.9), rgba(117, 230, 255, 0.8));
  box-shadow: 0 0 28px rgba(85, 137, 255, 0.55);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #dbe3f8;
  font-size: 11.5px;
  font-weight: 500;
}

.desktop-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(7, 11, 21, 0.46);
  color: rgba(235, 240, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: color 180ms ease, text-shadow 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
  border-color: rgba(117, 230, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(63, 107, 255, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(7, 11, 21, 0.6);
  box-shadow: 0 0 26px rgba(63, 107, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 18px rgba(117, 230, 255, 0.42);
  transform: translateY(-1px);
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: white;
  border-color: rgba(117, 230, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(63, 107, 255, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(10, 15, 29, 0.72);
  box-shadow: 0 0 30px rgba(63, 107, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.topbar-cta,
.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.topbar-cta {
  padding: 0 18px;
  border: 1px solid rgba(110, 145, 255, 0.74);
  box-shadow: 0 0 30px rgba(44, 90, 255, 0.38), inset 0 0 24px rgba(31, 70, 255, 0.12);
}

.primary-button {
  padding: 0 24px;
  color: white;
  background: linear-gradient(135deg, #446dff, #325dff);
  box-shadow: 0 18px 42px rgba(55, 99, 255, 0.35);
}

.secondary-button,
.ghost-button {
  padding: 0 22px;
  color: #dfe6ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.topbar-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 230, 255, 0.48);
  box-shadow: 0 22px 52px rgba(55, 99, 255, 0.28);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.section-band {
  position: relative;
  padding: 92px 0;
}

.page:not(.is-active) {
  display: none !important;
}

.page.is-active {
  animation: pageIn 240ms ease both;
}

.page:not(.hero) {
  min-height: calc(100vh - 148px);
}

.hero {
  min-height: calc(100vh - 98px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 58px;
  padding-top: 78px;
}

.hero::after,
.process::after,
.contact::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(97, 128, 255, 0.2), transparent);
}

.hero-brand-logo {
  width: min(430px, 86vw);
  height: auto;
  display: block;
  margin: 0 0 22px;
  filter: drop-shadow(0 0 34px rgba(80, 119, 255, 0.25));
}

.hero-system-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(117, 230, 255, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(63, 107, 255, 0.16), rgba(117, 230, 255, 0.05)),
    rgba(7, 11, 22, 0.64);
  color: #dce6ff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(63, 107, 255, 0.16);
}

.hero-system-label span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(87, 230, 154, 0.9);
  animation: pulseDot 1.7s ease-in-out infinite;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(40px, 3.85vw, 64px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #c2cae2;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-primary {
  min-height: 58px;
  padding-inline: 24px;
  box-shadow: 0 20px 68px rgba(63, 107, 255, 0.38);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-row span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(117, 230, 255, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 230, 255, 0.7) 0 2px, transparent 3px);
}

.trusted-bar {
  max-width: 740px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(63, 107, 255, 0.045)),
    rgba(7, 10, 20, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.trusted-bar strong,
.trusted-bar span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.trusted-bar strong {
  color: #75e6ff;
  background: rgba(117, 230, 255, 0.08);
}

.trusted-bar span {
  color: #cbd5ee;
  background: rgba(255, 255, 255, 0.035);
}

.hero-product {
  perspective: 1600px;
}

.hero-social-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -10px;
}

.proof-intro,
.hero-social-proof article {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(63, 107, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 22, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof-intro {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.proof-intro span,
.hero-social-proof small {
  color: #7fa1ff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-intro strong {
  max-width: 310px;
  color: white;
  font-size: 24px;
  line-height: 1.12;
}

.hero-social-proof article {
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 20px;
}

.hero-social-proof article::after {
  content: "";
  position: absolute;
  inset: auto -40% -58% -40%;
  height: 120px;
  background: radial-gradient(circle, rgba(117, 230, 255, 0.2), transparent 64%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-social-proof article:hover::after {
  opacity: 1;
}

.hero-social-proof article strong {
  color: white;
  font-size: clamp(36px, 3.1vw, 52px);
  line-height: 0.95;
}

.hero-social-proof article span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dashboard-frame {
  position: relative;
  display: grid;
  grid-template-columns: 176px 1fr;
  min-height: 570px;
  border: 1px solid rgba(125, 160, 255, 0.5);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.96), rgba(4, 8, 18, 0.94));
  box-shadow: 0 0 0 1px rgba(117, 230, 255, 0.08), 0 0 80px rgba(45, 95, 255, 0.36), var(--shadow);
  transform: rotateY(-7deg) rotateX(2deg);
  animation: floatPanel 7s ease-in-out infinite;
}

.dashboard-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 5%, rgba(117, 230, 255, 0.16), transparent 36%, rgba(80, 112, 255, 0.22), transparent 68%);
  opacity: 0.84;
  pointer-events: none;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.1));
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #e9efff;
  font-size: 14px;
  font-weight: 700;
}

.dot.active {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 2px, #5077ff 3px 100%);
  box-shadow: 0 0 20px rgba(80, 119, 255, 0.7);
}

.dash-link {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.dash-link.selected {
  color: white;
  background: linear-gradient(135deg, rgba(55, 96, 255, 0.9), rgba(45, 78, 198, 0.65));
  box-shadow: 0 0 24px rgba(63, 107, 255, 0.22);
}

.dash-link::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid rgba(151, 169, 222, 0.42);
  background: rgba(255, 255, 255, 0.03);
}

.dash-link b {
  margin-left: auto;
}

.dashboard-main {
  padding: 28px 30px 30px;
}

.dashboard-top,
.status-icons,
.metric-grid,
.dashboard-grid,
.donut-card,
.task-card,
.activity-card {
  position: relative;
  z-index: 2;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #eaf0ff;
  font-weight: 700;
  margin-bottom: 24px;
  min-height: 34px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-icons span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22), transparent 56%);
}

.status-icons strong {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 34%, #ffd6a6 0 17%, transparent 18%),
    radial-gradient(circle at 52% 78%, #e0a26d 0 22%, transparent 23%),
    linear-gradient(135deg, #263d7e, #73e1ff);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 24px rgba(117, 230, 255, 0.22);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.metric-grid article,
.chart-card,
.donut-card,
.task-card,
.activity-card,
.service-card,
.project-card,
.client-ui,
.contact-form,
.contact-card,
.about-grid article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metric-grid article {
  position: relative;
  min-height: 94px;
  padding: 18px;
}

.metric-grid span,
.metric-grid small,
.metric-grid em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 8px;
  font-size: 25px;
  line-height: 1;
}

.metric-grid small {
  position: absolute;
  right: 16px;
  bottom: 15px;
  color: var(--green);
}

.metric-grid .danger {
  color: var(--red);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

.chart-card,
.donut-card {
  min-height: 168px;
  padding: 18px;
}

.chart-card {
  overflow: hidden;
  position: relative;
}

.chart-card strong,
.donut-card > strong,
.task-card > strong,
.activity-card > strong {
  display: block;
  color: #f4f7ff;
  font-size: 14px;
  font-weight: 800;
}

.chart-card small {
  position: absolute;
  top: 74px;
  right: 24px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 8px;
  color: white;
  background: rgba(9, 14, 29, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.chart-card small b {
  color: #7597ff;
}

.chart-line {
  position: absolute;
  inset: 48px 28px 34px;
  background:
    linear-gradient(135deg, transparent 0 10%, rgba(81, 118, 255, 0.15) 10% 11%, transparent 11% 20%, rgba(117, 230, 255, 0.16) 20% 21%, transparent 21% 32%, rgba(81, 118, 255, 0.16) 32% 33%, transparent 33%),
    linear-gradient(180deg, rgba(80, 112, 255, 0.16), transparent);
  clip-path: polygon(0 70%, 12% 42%, 22% 57%, 35% 24%, 48% 52%, 62% 29%, 76% 58%, 88% 34%, 100% 42%, 100% 100%, 0 100%);
  border-bottom: 1px solid rgba(117, 230, 255, 0.2);
}

.chart-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #79ebff;
  box-shadow: 0 0 22px rgba(117, 230, 255, 0.95);
}

.dot-a { left: 36%; top: 50%; }
.dot-b { left: 61%; top: 38%; }
.dot-c { right: 13%; top: 45%; }

.donut-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 18px;
}

.donut-card > strong {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.donut {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#4d76ff 0 66%, #75e6ff 66% 78%, rgba(255, 255, 255, 0.08) 78%);
  box-shadow: 0 0 38px rgba(63, 107, 255, 0.34);
}

.donut span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #070b14;
  font-weight: 800;
}

.donut-card ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.task-card,
.activity-card {
  min-height: 142px;
  display: grid;
  gap: 8px;
  padding: 16px;
  color: #c7d0e8;
  font-size: 13px;
}

.task-card span,
.activity-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 28px;
  padding-left: 30px;
  position: relative;
}

.task-card span b,
.activity-card span b {
  font-weight: 700;
}

.task-card span em,
.activity-card span em {
  margin-left: auto;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  white-space: nowrap;
}

.task-card a {
  color: #6f91ff;
  font-weight: 700;
}

.task-card span::before,
.activity-card span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(117, 230, 255, 0.36);
  background: rgba(63, 107, 255, 0.16);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading span,
.contact-copy > span,
.panel-preview > div > span {
  display: block;
  margin-bottom: 14px;
  color: #6f91ff;
  font-size: 13px;
  font-weight: 700;
}

.section-heading h2,
.contact-copy h2,
.panel-preview h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.contact-copy p,
.panel-preview p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about {
  padding-top: 64px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.about-story {
  display: grid;
  gap: 18px;
}

.operator-card,
.founder-card,
.about-card,
.work-method article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.operator-card {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 34px;
}

.operator-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 107, 255, 0.22), transparent 64%);
  pointer-events: none;
}

.operator-card span {
  position: relative;
  z-index: 1;
  color: #75e6ff;
  font-size: 13px;
  font-weight: 800;
}

.operator-card h3 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 18px 0 0;
  color: white;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.06;
}

.operator-card p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-pipeline {
  display: grid;
  grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1.25fr 20px 1.1fr;
  gap: 8px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(8, 12, 24, 0.58);
}

.about-pipeline span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  color: #e9efff;
  background: rgba(63, 107, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.about-pipeline i {
  height: 1px;
  background: linear-gradient(90deg, rgba(117, 230, 255, 0.85), rgba(63, 107, 255, 0.1));
  box-shadow: 0 0 14px rgba(117, 230, 255, 0.42);
}

.about-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.about-grid article {
  min-height: 180px;
  padding: 26px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.founder-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.founder-avatar {
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(117, 230, 255, 0.2);
  background:
    radial-gradient(circle at 35% 20%, rgba(117, 230, 255, 0.3), transparent 34%),
    linear-gradient(135deg, rgba(63, 107, 255, 0.9), rgba(179, 92, 255, 0.7));
  box-shadow: 0 24px 64px rgba(63, 107, 255, 0.22);
}

.founder-avatar span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  font-size: 30px;
  font-weight: 850;
}

.founder-card span {
  color: #75e6ff;
  font-size: 12px;
  font-weight: 850;
}

.founder-card h3 {
  margin: 8px 0 0;
  color: white;
  font-size: 28px;
}

.founder-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(117, 230, 255, 0.34);
  box-shadow: 0 22px 64px rgba(20, 68, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(63, 107, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 24, 0.82);
}

.about-grid strong,
.service-card i {
  color: rgba(117, 230, 255, 0.78);
  font-style: normal;
  font-weight: 800;
}

.about-grid h3,
.service-card h3,
.project-card h3,
.timeline h3 {
  margin: 16px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.about-grid p,
.service-card p,
.project-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.work-method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.work-method article {
  min-height: 156px;
  display: grid;
  align-content: start;
  padding: 22px;
}

.work-method span {
  color: rgba(117, 230, 255, 0.78);
  font-weight: 850;
}

.work-method strong {
  margin-top: 16px;
  color: white;
  font-size: 18px;
  line-height: 1.2;
}

.work-method p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(380px, 0.76fr);
  gap: 24px;
  align-items: stretch;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card,
.audience-panel,
.audience-proof article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.audience-card {
  min-height: 224px;
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.audience-card::after,
.audience-panel::after {
  content: "";
  position: absolute;
  inset: auto -26% -42% -26%;
  height: 140px;
  background: radial-gradient(circle, rgba(63, 107, 255, 0.28), transparent 64%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.audience-card:hover {
  transform: translateY(-7px);
  border-color: rgba(117, 230, 255, 0.46);
  box-shadow: 0 28px 82px rgba(20, 68, 255, 0.24), 0 0 0 1px rgba(117, 230, 255, 0.08) inset;
  background:
    radial-gradient(circle at 18% 0%, rgba(117, 230, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(63, 107, 255, 0.13), rgba(255, 255, 255, 0.028)),
    rgba(8, 12, 24, 0.82);
}

.audience-card:hover::after,
.audience-panel:hover::after {
  opacity: 1;
}

.audience-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.78), rgba(117, 230, 255, 0.24));
  box-shadow: 0 0 28px rgba(63, 107, 255, 0.24);
}

.audience-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 6px;
}

.realty-icon::before {
  clip-path: polygon(50% 0, 100% 36%, 86% 36%, 86% 100%, 14% 100%, 14% 36%, 0 36%);
  background: rgba(255, 255, 255, 0.18);
}

.install-icon::before {
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(38deg);
}

.salon-icon::before {
  width: 22px;
  height: 14px;
  border-radius: 999px;
}

.agency-icon::before {
  width: 24px;
  height: 16px;
  border-radius: 5px;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.18);
}

.commerce-icon::before {
  width: 23px;
  height: 18px;
  border-radius: 4px;
  border-top-width: 5px;
}

.audience-card strong {
  position: absolute;
  top: 26px;
  right: 24px;
  color: rgba(117, 230, 255, 0.75);
  font-size: 15px;
}

.audience-card h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 20px;
  line-height: 1.18;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.audience-card small {
  display: block;
  margin-top: 18px;
  color: #7fa1ff;
  font-size: 13px;
  font-weight: 750;
}

.audience-panel {
  min-height: 100%;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.fit-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.fit-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.fit-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
}

.fit-header strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(87, 230, 154, 0.9);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.fit-score {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
}

.score-ring {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#75e6ff 0 34%, #3f6bff 34% 92%, rgba(255, 255, 255, 0.08) 92%);
  box-shadow: 0 0 42px rgba(63, 107, 255, 0.26);
}

.score-ring span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #070b14;
  color: white;
  font-size: 24px;
  font-weight: 850;
}

.fit-score h3 {
  margin: 0;
  color: white;
  font-size: 20px;
  line-height: 1.24;
}

.fit-score p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.pain-solution {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.pain-solution article,
.lead-preview {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.pain-solution span {
  display: block;
  color: #75e6ff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pain-solution p,
.lead-preview p {
  margin: 0;
  color: #cbd5ee;
  line-height: 1.5;
}

.lead-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.lead-preview strong {
  color: white;
  font-size: 14px;
}

.lead-preview p {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.lead-preview p span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #75e6ff;
  box-shadow: 0 0 16px rgba(117, 230, 255, 0.7);
}

.audience-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.audience-proof article {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 22px;
}

.audience-proof strong {
  color: white;
  font-size: 32px;
  line-height: 1;
}

.audience-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

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

.service-card {
  min-height: 318px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -55% -25%;
  height: 120px;
  background: radial-gradient(circle, rgba(63, 107, 255, 0.34), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(117, 230, 255, 0.36);
  box-shadow: 0 24px 70px rgba(20, 68, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(63, 107, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 24, 0.82);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(117, 230, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(63, 107, 255, 0.16), rgba(255, 255, 255, 0.026)),
    rgba(8, 12, 24, 0.82);
  box-shadow: 0 24px 70px rgba(20, 68, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.78), rgba(117, 230, 255, 0.24));
  box-shadow: 0 0 28px rgba(63, 107, 255, 0.24);
}

.service-icon::before {
  content: "";
  width: 22px;
  height: 18px;
  border: 2px solid white;
  border-radius: 5px;
}

.website-icon::before {
  border-top-width: 6px;
}

.crm-icon::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.automation-icon::before {
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(35deg);
}

.ai-icon::before {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 3px, transparent 4px);
}

.app-icon::before {
  height: 24px;
  border-radius: 7px;
}

.saas-icon::before {
  width: 24px;
  height: 16px;
  border-radius: 999px;
}

.service-card i {
  position: absolute;
  top: 28px;
  right: 26px;
  color: rgba(117, 230, 255, 0.76);
  font-size: 15px;
}

.service-card h3 {
  margin-top: 0;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: #cdd7ef;
  font-size: 13px;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75e6ff;
  box-shadow: 0 0 14px rgba(117, 230, 255, 0.75);
}

.offer-panel,
.offer-proof article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.offer-panel {
  min-height: 100%;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.offer-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -18% -20%;
  height: 160px;
  background: radial-gradient(circle, rgba(63, 107, 255, 0.3), transparent 64%);
  pointer-events: none;
}

.offer-panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.offer-panel-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.offer-panel-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
}

.offer-panel-header strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(87, 230, 154, 0.9);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.quote-card,
.delivery-list article {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.quote-card {
  padding: 20px;
}

.quote-card h3 {
  margin: 0;
  color: white;
  font-size: 22px;
  line-height: 1.2;
}

.quote-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.quote-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.quote-flow span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  color: #e9efff;
  background: rgba(63, 107, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.delivery-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.delivery-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.delivery-list span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.86), rgba(117, 230, 255, 0.18));
  font-weight: 850;
}

.delivery-list p {
  margin: 0;
  color: #cbd5ee;
  line-height: 1.5;
}

.offer-panel-cta {
  position: relative;
  z-index: 1;
  width: 100%;
}

.offer-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.offer-proof article {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 22px;
}

.offer-proof strong {
  color: white;
  font-size: 30px;
  line-height: 1;
}

.offer-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(63, 107, 255, 0.1), rgba(117, 230, 255, 0.9), rgba(63, 107, 255, 0.1));
  box-shadow: 0 0 26px rgba(63, 107, 255, 0.28);
}

.timeline article {
  position: relative;
  min-height: 300px;
  padding: 78px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, white 0 2px, #3f6bff 3px 100%);
  box-shadow: 0 0 26px rgba(63, 107, 255, 0.7);
}

.timeline article.active::before {
  animation: pulseDot 1.9s ease-in-out infinite;
  box-shadow: 0 0 34px rgba(117, 230, 255, 0.9);
}

.timeline article:hover {
  transform: translateY(-5px);
  border-color: rgba(117, 230, 255, 0.34);
  box-shadow: 0 22px 64px rgba(20, 68, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(63, 107, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 24, 0.82);
}

.timeline span {
  display: block;
  color: rgba(117, 230, 255, 0.76);
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
}

.timeline small {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-top: 10px;
  padding: 0 9px;
  border-radius: 999px;
  color: #dce5ff;
  background: rgba(63, 107, 255, 0.12);
  border: 1px solid rgba(117, 230, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.timeline h3 {
  margin-top: 18px;
}

.process-panel,
.process-proof article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-panel {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.process-panel::after {
  display: none;
}

.process-panel-header {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.process-panel-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.process-panel-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
}

.process-panel-header strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(87, 230, 154, 0.9);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.process-terminal,
.process-result {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  padding: 18px;
}

.process-terminal {
  display: grid;
  gap: 12px;
}

.process-terminal p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #c9d3ec;
  font-size: 13px;
}

.process-terminal span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #75e6ff;
  box-shadow: 0 0 16px rgba(117, 230, 255, 0.7);
}

.process-result {
  background:
    radial-gradient(circle at 18% 12%, rgba(63, 107, 255, 0.12), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.12);
}

.process-result h3 {
  margin: 0;
  color: white;
  font-size: 28px;
  line-height: 1.12;
}

.process-result p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.process-proof article {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 22px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.process-proof article:hover,
.roi-grid article:hover,
.public-review-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(117, 230, 255, 0.38);
  box-shadow: 0 24px 72px rgba(20, 68, 255, 0.18), 0 0 0 1px rgba(117, 230, 255, 0.06) inset;
  background:
    radial-gradient(circle at 78% 0%, rgba(117, 230, 255, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(63, 107, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 24, 0.8);
}

.process-proof strong {
  color: white;
  font-size: 28px;
  line-height: 1;
}

.process-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card,
.roi-layout,
.roi-grid article,
.pricing-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 0%, rgba(63, 107, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 28px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(117, 230, 255, 0.32);
  box-shadow: 0 24px 72px rgba(20, 68, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
  border-color: rgba(117, 230, 255, 0.34);
  background:
    radial-gradient(circle at 80% 0%, rgba(117, 230, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(63, 107, 255, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 24, 0.84);
  box-shadow: 0 0 80px rgba(63, 107, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-badge {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #75e6ff;
  background: rgba(117, 230, 255, 0.08);
  border: 1px solid rgba(117, 230, 255, 0.18);
  font-size: 12px;
  font-weight: 850;
}

.pricing-top span,
.roi-copy > span,
.pricing-cta span {
  display: block;
  margin-bottom: 14px;
  color: #7fa1ff;
  font-size: 13px;
  font-weight: 800;
}

.pricing-top strong {
  display: block;
  color: white;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1;
}

.pricing-top p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cbd5ee;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(117, 230, 255, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 230, 255, 0.78) 0 2px, transparent 3px);
}

.pricing-card a {
  width: 100%;
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
  padding: 24px;
}

.roi-copy {
  display: grid;
  align-content: center;
}

.roi-copy h3,
.pricing-cta h3 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.roi-copy p,
.pricing-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.roi-grid article {
  min-height: 136px;
  display: grid;
  align-content: center;
  padding: 22px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.roi-grid strong {
  color: white;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 0.95;
}

.roi-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  background:
    linear-gradient(90deg, rgba(117, 230, 255, 0.09), rgba(63, 107, 255, 0.04)),
    rgba(8, 12, 24, 0.68);
}

.pricing-cta h3 {
  font-size: clamp(24px, 2.1vw, 34px);
}

.pricing-cta .secondary-button {
  min-width: 210px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 22px;
}

.portfolio-grid.is-empty {
  grid-template-columns: minmax(0, 1fr);
}

.project-card {
  min-height: 380px;
  padding: 24px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.project-card.wide {
  min-height: 420px;
}

.project-card small {
  display: block;
  margin-top: 18px;
  color: #7fa1ff;
  font-weight: 700;
}

.project-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  margin-bottom: 20px;
  border: 1px solid rgba(117, 230, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 20%, rgba(117, 230, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(63, 107, 255, 0.16), rgba(255, 255, 255, 0.03));
  object-fit: cover;
  overflow: hidden;
}

.project-media-empty {
  display: grid;
  place-items: center;
  color: #dfe8ff;
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 950;
}

.project-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #75e6ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card-topline small {
  margin: 0;
  color: var(--muted);
}

.project-description {
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-empty {
  min-height: 320px;
  display: grid;
  align-content: center;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.project-empty-label {
  width: max-content;
  justify-self: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(117, 230, 255, 0.24);
  border-radius: 999px;
  color: #75e6ff;
  background: rgba(117, 230, 255, 0.07);
  font-size: 13px;
  font-weight: 900;
}

.case-breakdown {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.case-breakdown p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5ee;
  font-size: 14px;
  line-height: 1.5;
}

.case-breakdown b {
  color: #75e6ff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.public-review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(63, 107, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.public-review-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.review-stars {
  color: #75e6ff;
  font-size: 18px;
  letter-spacing: 0;
}

.public-review-card p {
  margin: 0;
  color: #d8e0f5;
  line-height: 1.6;
}

.public-review-card footer {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.public-review-card strong {
  color: white;
  font-size: 16px;
}

.public-review-card span {
  color: var(--muted);
  font-size: 14px;
}

.reviews-empty {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgba(63, 107, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reviews-empty > div > span {
  display: block;
  margin-bottom: 12px;
  color: #75e6ff;
  font-size: 13px;
  font-weight: 900;
}

.reviews-empty strong {
  display: block;
  color: white;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.reviews-empty p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-empty ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews-empty li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.reviews-empty li b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.86), rgba(117, 230, 255, 0.18));
  font-size: 14px;
}

.reviews-empty li span {
  color: #d8e0f5;
  line-height: 1.45;
}

.mini-dashboard,
.phone-mock,
.flow-mock {
  min-height: 180px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(63, 107, 255, 0.22), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(117, 230, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 60px rgba(25, 69, 255, 0.16);
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.mini-dashboard span {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.phone-mock {
  width: min(220px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(63, 107, 255, 0.22), rgba(5, 8, 18, 0.9));
}

.flow-mock {
  position: relative;
}

.flow-mock::before {
  content: "";
  position: absolute;
  inset: 42px 32px;
  background:
    radial-gradient(circle at 10% 45%, #75e6ff 0 12px, transparent 13px),
    radial-gradient(circle at 50% 45%, #3f6bff 0 18px, transparent 19px),
    radial-gradient(circle at 90% 45%, #b66cff 0 12px, transparent 13px),
    linear-gradient(90deg, transparent 0 11%, rgba(117, 230, 255, 0.8) 11% 90%, transparent 90%);
}

.logo-rail {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.logo-rail span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7dff5;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tech-category,
.tech-system,
.tech-proof article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tech-category::before,
.tech-system::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 14%, rgba(117, 230, 255, 0.12), transparent 42%, rgba(63, 107, 255, 0.14), transparent 72%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.tech-category:hover::before,
.tech-system:hover::before {
  opacity: 1;
}

.tech-category {
  min-height: 252px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.tech-category h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  color: #eef3ff;
  font-size: 18px;
  line-height: 1.2;
}

.tech-card {
  position: relative;
  z-index: 1;
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.tech-card:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 230, 255, 0.34);
  background: rgba(63, 107, 255, 0.08);
  box-shadow: 0 16px 40px rgba(42, 86, 255, 0.16);
}

.tech-card strong {
  display: block;
  color: white;
  font-size: 15px;
}

.tech-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.tech-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.78), rgba(117, 230, 255, 0.26));
  box-shadow: 0 0 26px rgba(63, 107, 255, 0.26);
}

.react-icon {
  background:
    radial-gradient(circle, #75e6ff 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(24, 34, 64, 0.9), rgba(63, 107, 255, 0.32));
}

.react-icon::before,
.react-icon::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 13px;
  border: 2px solid #75e6ff;
  border-radius: 50%;
}

.react-icon::before {
  transform: rotate(58deg);
}

.react-icon::after {
  transform: rotate(-58deg);
}

.openai-icon {
  background:
    conic-gradient(from 20deg, #f7f9ff, #9ba7c4, #f7f9ff, #7684a8, #f7f9ff),
    rgba(11, 16, 28, 0.9);
}

.openai-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 5px solid rgba(3, 5, 12, 0.72);
  border-radius: 50%;
}

.telegram-icon {
  background: linear-gradient(135deg, #28a7e8, #3f6bff);
}

.telegram-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: rotate(-18deg) translateX(1px);
}

.supabase-icon {
  background: linear-gradient(135deg, #3ecf8e, #163a2c);
}

.supabase-icon::before {
  content: "";
  width: 18px;
  height: 28px;
  background: linear-gradient(180deg, white 0 48%, rgba(255, 255, 255, 0.45) 48% 100%);
  clip-path: polygon(54% 0, 100% 0, 46% 100%, 0 100%);
}

.next-icon {
  background: linear-gradient(135deg, #111827, #02040a);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.node-icon {
  background: linear-gradient(135deg, #4ade80, #1f5f38);
}

.python-icon {
  background: linear-gradient(135deg, #3776ab 0 50%, #ffd343 50% 100%);
  color: #06111e;
}

.n8n-icon {
  background: linear-gradient(135deg, #ff6b6b, #f43f5e);
}

.api-icon {
  background: linear-gradient(135deg, #b66cff, #3f6bff);
}

.typescript-icon {
  background: linear-gradient(135deg, #3178c6, #163a72);
}

.tailwind-icon {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.express-icon {
  background: linear-gradient(135deg, #f8fafc, #64748b);
  color: #07111f;
}

.postgres-icon {
  background: linear-gradient(135deg, #336791, #10243f);
}

.make-icon {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.webhook-icon {
  background: linear-gradient(135deg, #06b6d4, #334155);
}

.ovh-icon {
  background: linear-gradient(135deg, #123f8c, #00a2ff);
  font-size: 11px;
}

.nginx-icon {
  background: linear-gradient(135deg, #009639, #0f5132);
}

.tech-system {
  min-height: 100%;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 24px;
}

.tech-system::after {
  content: "";
  position: absolute;
  inset: auto -20% -18% -20%;
  height: 160px;
  background: radial-gradient(circle, rgba(63, 107, 255, 0.28), transparent 64%);
  pointer-events: none;
}

.system-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.system-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.system-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
}

.system-header strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(87, 230, 154, 0.9);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.automation-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.automation-flow span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  border-radius: 8px;
  color: #e9efff;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 750;
}

.automation-flow i {
  width: 1px;
  height: 20px;
  margin-left: 22px;
  background: linear-gradient(180deg, rgba(117, 230, 255, 0.85), rgba(63, 107, 255, 0.1));
  box-shadow: 0 0 16px rgba(117, 230, 255, 0.45);
}

.live-log {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.live-log p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #c9d3ec;
  font-size: 13px;
  line-height: 1.45;
}

.live-log span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #75e6ff;
  box-shadow: 0 0 16px rgba(117, 230, 255, 0.7);
}

.tech-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.tech-proof article {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 22px;
}

.tech-proof strong {
  color: white;
  font-size: 34px;
  line-height: 1;
}

.tech-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.panel-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(117, 230, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: 0 34px 90px rgba(20, 68, 255, 0.12);
}

.client-ui {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgba(117, 230, 255, 0.12), transparent 34%),
    rgba(4, 7, 14, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.client-ui-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 2px;
}

.client-ui-header span,
.client-ui-grid span,
.client-ui-security span:first-child {
  display: block;
  color: #8fe9ff;
  font-size: 12px;
  font-weight: 900;
}

.client-ui-header strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 18px;
}

.client-ui-header small {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(87, 230, 154, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(87, 230, 154, 0.075);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.client-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.client-row.active {
  color: white;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.36), rgba(117, 230, 255, 0.08));
}

.client-row.message-row {
  display: grid;
  align-content: center;
}

.client-row.message-row strong {
  margin-top: 6px;
  color: white;
  font-size: 15px;
  line-height: 1.45;
}

.priority-row {
  border: 1px solid rgba(117, 230, 255, 0.13);
  background:
    radial-gradient(circle at 88% 0%, rgba(117, 230, 255, 0.11), transparent 34%),
    rgba(63, 107, 255, 0.1);
}

.client-ui-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.client-ui-grid div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.client-ui-grid.compact div {
  min-height: 72px;
}

.client-ui-grid strong {
  color: white;
  font-size: 15px;
  line-height: 1.25;
}

.client-ui-security {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.client-ui-security span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(117, 230, 255, 0.16);
  border-radius: 999px;
  color: #dfe6ff;
  background: rgba(117, 230, 255, 0.055);
  font-size: 11px;
  font-weight: 900;
}

.client-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.client-proof article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(117, 230, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.client-proof article:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 230, 255, 0.26);
  box-shadow: 0 20px 54px rgba(63, 107, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.client-proof strong {
  color: white;
  font-size: 17px;
}

.client-proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.client-system-note {
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid rgba(117, 230, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(63, 107, 255, 0.2), rgba(117, 230, 255, 0.045)),
    rgba(8, 12, 22, 0.62);
  color: #c8d2ed;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.22;
}

.client-system-note strong {
  display: block;
  margin-top: 4px;
  color: white;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.client-auth {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.client-auth.auth-split {
  grid-template-columns: minmax(420px, 0.96fr) minmax(520px, 1.04fr);
  gap: 56px;
  align-items: center;
}

.auth-intro > span,
.portal-header span,
.auth-form > span {
  display: block;
  margin-bottom: 14px;
  color: #6f91ff;
  font-size: 13px;
  font-weight: 700;
}

.auth-intro h2,
.portal-header h2 {
  margin: 0;
  color: white;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.06;
}

.auth-intro p,
.portal-header p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.client-auth .auth-intro h2 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 76px);
}

.client-auth.auth-split .auth-intro h2 {
  max-width: 760px;
  font-size: clamp(42px, 4.4vw, 68px);
}

.client-auth .auth-intro p {
  max-width: 820px;
  font-size: 18px;
}

.auth-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.auth-points article,
.auth-form,
.client-dashboard-shell,
.portal-card,
.portal-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.auth-points article {
  padding: 18px 20px;
}

.auth-points strong {
  display: block;
  color: white;
  font-size: 16px;
}

.auth-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.auth-forms {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
}

.auth-forms.auth-single {
  grid-template-columns: 1fr;
}

.auth-form {
  display: grid;
  gap: 14px;
  padding: 42px;
  background:
    radial-gradient(circle at 80% 0%, rgba(63, 107, 255, 0.16), transparent 34%),
    rgba(8, 12, 22, 0.72);
}

.auth-form h3 {
  margin: -4px 0 4px;
  color: white;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.1;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #d8e0f5;
  font-size: 13px;
  font-weight: 700;
}

.project-choice {
  display: grid;
  gap: 10px;
}

.project-choice > span {
  color: #d8e0f5;
  font-size: 13px;
  font-weight: 800;
}

.project-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.project-choice-grid button {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgba(63, 107, 255, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.03);
  color: #dfe6ff;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.project-choice-grid button:hover,
.project-choice-grid button.active {
  transform: translateY(-2px);
  border-color: rgba(117, 230, 255, 0.38);
  background:
    radial-gradient(circle at 78% 0%, rgba(117, 230, 255, 0.13), transparent 34%),
    rgba(63, 107, 255, 0.14);
  box-shadow: 0 16px 44px rgba(20, 68, 255, 0.16);
}

.project-choice-grid strong {
  color: white;
  font-size: 16px;
}

.project-choice-grid small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.auth-form input,
.auth-form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.auth-form .primary-button,
.auth-form .secondary-button {
  min-height: 58px;
  margin-top: 4px;
}

.auth-form select option {
  background: #07101f;
}

.auth-status {
  min-height: 18px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  line-height: 1.45;
}

.owner-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.client-dashboard-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(63, 107, 255, 0.18), transparent 36%),
    rgba(8, 12, 22, 0.72);
}

.owner-dashboard-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgba(117, 230, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.owner-sidebar {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 7, 14, 0.48);
}

.owner-sidebar > div > span {
  display: block;
  color: #6f91ff;
  font-size: 13px;
  font-weight: 800;
}

.owner-sidebar > div > strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 28px;
}

.owner-client-list {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
}

.owner-client-button {
  width: 100%;
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #dfe6ff;
  text-align: left;
  cursor: pointer;
}

.owner-client-button strong {
  color: white;
}

.owner-client-button span {
  color: var(--muted);
  font-size: 13px;
}

.owner-client-button.active {
  border-color: rgba(117, 230, 255, 0.32);
  background: rgba(63, 107, 255, 0.18);
}

.owner-main {
  min-width: 0;
  padding: 30px;
}

.owner-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.owner-metrics article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.owner-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.owner-metrics strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 26px;
}

.owner-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  margin-top: 14px;
}

.owner-leads-card {
  grid-column: 1 / -1;
}

.owner-card-note {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.owner-lead-list {
  display: grid;
  gap: 12px;
  max-height: 430px;
  overflow: auto;
}

.owner-lead-item {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(117, 230, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(63, 107, 255, 0.12), rgba(117, 230, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.owner-lead-item header,
.owner-lead-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.owner-lead-item h3 {
  margin: 0;
  color: white;
  font-size: clamp(18px, 2vw, 24px);
}

.owner-lead-date {
  color: #75e6ff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.owner-lead-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.owner-lead-meta span {
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.owner-lead-meta strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: white;
  font-size: 14px;
}

.owner-lead-message {
  margin: 0;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(4, 7, 14, 0.38);
  color: #d8e0f5;
  line-height: 1.6;
}

.owner-lead-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(117, 230, 255, 0.25);
  border-radius: 8px;
  color: #eaf0ff;
  font-weight: 900;
}

.owner-client-profile {
  display: grid;
  gap: 8px;
}

.owner-client-profile strong {
  color: white;
  font-size: 24px;
}

.owner-client-profile span,
.owner-client-profile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.owner-review-controls {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.owner-review-controls p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.owner-review-controls .secondary-button {
  width: 100%;
}

.owner-message-list,
.owner-asset-list {
  display: grid;
  gap: 10px;
}

.owner-empty {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.owner-asset-row {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 14px;
}

.owner-asset-row strong {
  color: white;
}

.owner-publication-card {
  grid-column: 1 / -1;
}

.owner-invoice-form,
.owner-publication-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.owner-publication-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-invoice-form label,
.owner-publication-form label {
  display: grid;
  gap: 8px;
  color: #d8e0f5;
  font-size: 13px;
  font-weight: 800;
}

.owner-invoice-form input,
.owner-publication-form input,
.owner-publication-form textarea {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.owner-publication-form textarea {
  min-height: 104px;
  padding-block: 12px;
  resize: vertical;
}

.owner-publication-form .publication-description,
.owner-publication-form .publication-upload,
.owner-publication-form .primary-button,
.owner-publication-form .portal-action-status {
  grid-column: 1 / -1;
}

.owner-project-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.owner-project-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(117, 230, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.owner-project-row div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.owner-project-row strong {
  color: white;
}

.owner-project-row span,
.owner-project-row small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.portal-sidebar {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 7, 14, 0.42);
}

.portal-brand {
  font-size: 20px;
}

.portal-sidebar nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.portal-sidebar nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.portal-sidebar nav a.active,
.portal-sidebar nav a:hover {
  color: white;
  background: rgba(63, 107, 255, 0.18);
}

.client-review-card {
  grid-column: 1 / -1;
}

.review-access-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.client-review-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.client-review-form[hidden] {
  display: none;
}

.client-review-form label {
  display: grid;
  gap: 8px;
  color: #d8e0f5;
  font-size: 13px;
  font-weight: 800;
}

.client-review-form select,
.client-review-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.client-review-form select option {
  background: #07101f;
}

.client-review-form textarea {
  min-height: 150px;
  padding-block: 13px;
  resize: vertical;
}

.portal-logout {
  width: 100%;
}

.portal-main {
  padding: 30px;
}

.portal-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.portal-header h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.portal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.portal-metrics article {
  padding: 18px;
}

.portal-metrics span,
.portal-card-header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.portal-metrics strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 20px;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 14px;
}

.portal-grid.is-filtered {
  grid-template-columns: 1fr;
}

.portal-grid.is-filtered .portal-card:not(.is-hidden) {
  grid-column: 1 / -1;
}

.portal-card {
  min-height: 210px;
  padding: 20px;
}

.portal-card.is-hidden {
  display: none;
}

.portal-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.portal-card-header strong {
  color: white;
}

.portal-security-bar {
  grid-column: 1 / -1;
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(117, 230, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(63, 107, 255, 0.11), rgba(255, 255, 255, 0.025));
}

.portal-security-bar span:first-child,
.next-action-body span {
  color: #8fe9ff;
  font-size: 13px;
  font-weight: 900;
}

.portal-security-bar strong {
  display: block;
  margin-top: 7px;
  color: white;
  font-size: clamp(18px, 2vw, 26px);
}

.security-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.security-pills span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(117, 230, 255, 0.18);
  border-radius: 999px;
  background: rgba(117, 230, 255, 0.055);
  color: #dfe6ff;
  font-size: 12px;
  font-weight: 900;
}

.next-action-card,
.approvals-card,
.decisions-card {
  min-height: 236px;
}

.next-action-body {
  display: grid;
  gap: 14px;
}

.next-action-body > strong {
  color: white;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.15;
}

.next-action-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.next-action-body div {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  border: 1px solid rgba(117, 230, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.next-action-body b {
  color: white;
}

.approval-list,
.decision-list {
  display: grid;
  gap: 10px;
}

.approval-row,
.decision-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.approval-row span,
.decision-row p {
  margin: 0;
  color: #d8e0f5;
  line-height: 1.4;
}

.approval-row strong {
  min-width: max-content;
  padding: 6px 10px;
  border: 1px solid rgba(117, 230, 255, 0.16);
  border-radius: 999px;
  color: #8fe9ff;
  font-size: 12px;
  background: rgba(117, 230, 255, 0.055);
}

.decision-row {
  justify-content: flex-start;
  min-height: 58px;
}

.decision-row span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, #3f6bff, #75e6ff);
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #446dff, #75e6ff);
  box-shadow: 0 0 22px rgba(117, 230, 255, 0.32);
}

.project-progress ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.project-progress li,
.message-item,
.files-card a,
.invoice-row,
.tasks-card label,
.meeting-row {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.project-progress li {
  padding: 12px 14px;
  font-size: 14px;
}

.project-progress li.done {
  color: #8fe9ff;
}

.project-progress li.active {
  color: white;
  background: rgba(63, 107, 255, 0.2);
}

.project-workspace-card {
  min-height: 260px;
}

.project-workspace {
  display: grid;
  gap: 14px;
}

.crm-pipeline,
.automation-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.crm-pipeline div,
.automation-flow div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(117, 230, 255, 0.12), transparent 34%),
    rgba(63, 107, 255, 0.08);
}

.automation-flow div {
  background:
    radial-gradient(circle at 80% 0%, rgba(169, 112, 255, 0.16), transparent 34%),
    rgba(63, 107, 255, 0.08);
}

.crm-pipeline span,
.automation-flow span {
  color: #75e6ff;
  font-size: 12px;
  font-weight: 900;
}

.automation-flow span {
  color: #bda7ff;
}

.crm-pipeline strong,
.automation-flow strong {
  color: white;
  font-size: 13px;
  line-height: 1.25;
}

.workspace-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.workspace-columns section {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 152px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.workspace-columns h4 {
  margin: 0 0 4px;
  color: white;
  font-size: 15px;
}

.workspace-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.automation-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-architecture {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.app-architecture div {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(117, 230, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(117, 230, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(63, 107, 255, 0.13), rgba(255, 255, 255, 0.025));
}

.app-architecture span {
  color: #75e6ff;
  font-size: 12px;
  font-weight: 900;
}

.app-architecture strong {
  color: white;
  font-size: 13px;
  line-height: 1.25;
}

.app-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.app-module-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(63, 107, 255, 0.11), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.app-module-card h4 {
  margin: 0 0 4px;
  color: white;
  font-size: 15px;
}

.app-module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.app-roadmap-card div {
  display: grid;
  gap: 8px;
}

.app-roadmap-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dfe6ff;
  font-size: 13px;
  font-weight: 800;
}

.app-roadmap-card i {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: white;
  font-style: normal;
  font-size: 11px;
  background: linear-gradient(135deg, #3f6bff, #75e6ff);
}

.message-item {
  padding: 14px;
}

.message-item + .message-item,
.portal-message-form {
  margin-top: 10px;
}

.message-item b {
  color: white;
}

.message-item p {
  margin: 8px 0 0;
  color: #c8d2ed;
  font-size: 14px;
  line-height: 1.5;
}

.message-item.client {
  background: rgba(117, 230, 255, 0.055);
}

.portal-message-form {
  display: grid;
  gap: 10px;
}

.portal-message-form textarea {
  width: 100%;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 14px;
  outline: none;
  resize: vertical;
}

.files-card a,
.invoice-row,
.tasks-card label,
.meeting-row {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 0 14px;
  margin-top: 10px;
  font-size: 14px;
}

.invoice-row,
.meeting-row {
  min-height: 58px;
}

.invoice-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.files-card small,
.invoice-row strong,
.meeting-row strong {
  color: white;
}

.invoice-row button,
.meeting-row button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(117, 230, 255, 0.18);
  border-radius: 8px;
  background: rgba(63, 107, 255, 0.12);
  color: #dfe6ff;
  font-weight: 700;
  cursor: pointer;
}

.invoice-row button:disabled {
  cursor: default;
  opacity: 0.55;
}

.invoice-payment-panel {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(117, 230, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0%, rgba(117, 230, 255, 0.1), transparent 32%),
    rgba(63, 107, 255, 0.065);
}

.invoice-payment-panel[hidden] {
  display: none;
}

.invoice-payment-panel span {
  color: #6f91ff;
  font-size: 13px;
  font-weight: 800;
}

.invoice-payment-panel strong {
  color: white;
  font-size: 18px;
}

.invoice-payment-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.invoice-payment-panel b {
  color: #eef3ff;
}

.invoice-payment-panel .primary-button {
  margin-top: 8px;
}

.tasks-card label {
  justify-content: flex-start;
  color: #d8e0f5;
}

.tasks-card input {
  accent-color: #5d7cff;
}

.portal-upload {
  min-height: 46px;
  display: grid;
  place-items: center;
  margin-top: 12px;
  border: 1px dashed rgba(117, 230, 255, 0.22);
  border-radius: 8px;
  background: rgba(117, 230, 255, 0.035);
  color: #dfe6ff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.portal-upload input {
  display: none;
}

.portal-action-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 13px;
  line-height: 1.45;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.contact-copy p {
  margin-left: 0;
}

.contact-benefits {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  width: 100%;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(117, 230, 255, 0.08), rgba(63, 107, 255, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 230, 255, 0.28);
  box-shadow: 0 18px 48px rgba(63, 107, 255, 0.14);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card strong,
.contact-card p {
  position: relative;
  z-index: 1;
}

.contact-card p {
  margin-top: 8px;
  font-size: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8e0f5;
  font-size: 13px;
  font-weight: 700;
}

.contact-form .span-full,
.form-submit,
.form-trust,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 0 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(117, 230, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(63, 107, 255, 0.16);
}

.contact-form select option {
  background: #07101f;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
}

.form-trust {
  margin: -2px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  border-radius: 8px;
  background: rgba(117, 230, 255, 0.045);
  color: #b6c1dd;
  font-size: 13px;
  line-height: 1.45;
}

.footer {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 32px;
  padding: 26px;
  overflow: hidden;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(117, 230, 255, 0.12), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(146, 86, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(17, 24, 48, 0.72), rgba(4, 7, 14, 0.88));
  box-shadow: 0 -28px 90px rgba(63, 107, 255, 0.08);
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(117, 230, 255, 0.08), transparent),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 120px 120px, 120px 120px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

.footer-cta,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(117, 230, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.footer-cta span {
  color: #75e6ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-cta h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: white;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.footer-cta .primary-button {
  flex: 0 0 auto;
  min-width: 230px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 0.75fr;
  gap: 18px;
}

.footer .brand {
  color: white;
  font-size: 22px;
}

.footer p {
  max-width: 340px;
  margin: 0;
  line-height: 1.7;
}

.footer-brand-block,
.footer-links,
.footer-contact,
.footer-social {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(4, 7, 14, 0.34);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.footer-brand-block::after,
.footer-links::after,
.footer-contact::after,
.footer-social::after {
  content: "";
  position: absolute;
  inset: auto -28% -48% -28%;
  height: 130px;
  background: radial-gradient(circle, rgba(63, 107, 255, 0.32), transparent 64%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.footer-brand-block > *,
.footer-links > *,
.footer-contact > *,
.footer-social > * {
  position: relative;
  z-index: 1;
}

.footer-cta:hover,
.footer-brand-block:hover,
.footer-links:hover,
.footer-contact:hover,
.footer-social:hover {
  transform: translateY(-6px);
  border-color: rgba(117, 230, 255, 0.34);
  box-shadow: 0 24px 78px rgba(20, 68, 255, 0.19), 0 0 0 1px rgba(117, 230, 255, 0.06) inset;
  background:
    radial-gradient(circle at 24% 0%, rgba(117, 230, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(63, 107, 255, 0.1), rgba(255, 255, 255, 0.026)),
    rgba(4, 7, 14, 0.52);
}

.footer-brand-block:hover::after,
.footer-links:hover::after,
.footer-contact:hover::after,
.footer-social:hover::after {
  opacity: 1;
}

.footer strong {
  color: white;
  margin-bottom: 2px;
  font-size: 18px;
}

.footer a {
  color: var(--muted);
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(117, 230, 255, 0.14);
  border-radius: 999px;
  background: rgba(117, 230, 255, 0.045);
  color: #dfe6ff;
  font-size: 12px;
  font-weight: 900;
}

.footer-links div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.footer-links a {
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #aeb8d1;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(117, 230, 255, 0.6);
  box-shadow: 0 0 12px rgba(117, 230, 255, 0.35);
}

.footer-links a::after {
  content: "→";
  color: #75e6ff;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-contact-card:hover,
.footer-social a:hover,
.footer-bottom a:hover {
  color: white;
  border-color: rgba(117, 230, 255, 0.28);
  background: rgba(63, 107, 255, 0.12);
}

.footer-links a:hover {
  transform: translateX(5px);
}

.footer-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-card {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-contact-card span {
  color: #75e6ff;
  font-size: 12px;
  font-weight: 900;
}

.footer-contact-card b {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #eaf0ff;
}

.footer-social div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #eaf0ff;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 96px 0 4px;
  color: #8894b5;
  font-size: 13px;
}

.footer-bottom a {
  color: #dfe6ff;
  font-weight: 900;
}

.ai-chat {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 14px;
}

body[data-current-page="client-dashboard"] .ai-chat,
body[data-current-page="owner-panel"] .ai-chat {
  display: none;
}

body[data-current-page="client-dashboard"] .topbar,
body[data-current-page="client-dashboard"] .mobile-nav,
body[data-current-page="owner-panel"] .topbar,
body[data-current-page="owner-panel"] .mobile-nav {
  display: none;
}

body[data-current-page="client-dashboard"] .client-dashboard,
body[data-current-page="owner-panel"] .owner-panel {
  padding-top: 42px;
}

.chat-fab {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(117, 230, 255, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(117, 230, 255, 0.42), rgba(63, 107, 255, 0.95));
  box-shadow: 0 0 42px rgba(63, 107, 255, 0.55);
  cursor: pointer;
}

.chat-fab span {
  width: 22px;
  height: 22px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid white;
  position: relative;
}

.chat-fab span::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(28deg);
}

.chat-window {
  width: 320px;
  overflow: hidden;
  border: 1px solid rgba(117, 230, 255, 0.25);
  border-radius: 8px;
  background: rgba(5, 8, 18, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(63, 107, 255, 0.26);
  transform-origin: bottom right;
  transition: transform 200ms ease, opacity 200ms ease;
}

.chat-window[data-open="false"] {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: linear-gradient(135deg, rgba(63, 107, 255, 0.56), rgba(11, 18, 42, 0.88));
}

.chat-header div {
  display: grid;
  gap: 4px;
}

.chat-header span {
  color: var(--green);
  font-size: 12px;
}

.chat-close {
  width: 28px;
  height: 28px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.chat-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.chat-body p {
  margin: 0 0 6px;
  color: #d9e1f7;
  font-size: 14px;
  line-height: 1.55;
}

.chat-body button {
  min-height: 34px;
  color: #eaf0ff;
  border: 1px solid rgba(117, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(63, 107, 255, 0.08);
  cursor: pointer;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input input {
  min-width: 0;
  border: 0;
  color: white;
  background: transparent;
  outline: none;
}

.chat-input button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatPanel {
  0%,
  100% {
    transform: rotateY(-7deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(3deg) translateY(-14px);
  }
}

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

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: white;
  }

  .mobile-nav {
    position: fixed;
    top: 92px;
    left: 24px;
    right: 24px;
    z-index: 45;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(5, 8, 18, 0.94);
    backdrop-filter: blur(18px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.is-open {
    display: grid;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #dfe6ff;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-social-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .proof-intro {
    grid-column: 1 / -1;
  }

  .dashboard-frame {
    transform: none;
    animation: none;
  }

  .timeline,
  .logo-rail,
  .tech-proof {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .process-layout {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 32px, 1440px);
  }

  .topbar {
    top: 10px;
  }

  .topbar-cta {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .operator-card {
    min-height: auto;
    padding: 26px;
  }

  .operator-card h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .about-pipeline {
    grid-template-columns: 1fr;
  }

  .about-pipeline i {
    width: 1px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(117, 230, 255, 0.85), rgba(63, 107, 255, 0.1));
  }

  .work-method {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 68px);
  }

  .trusted-bar {
    max-width: none;
  }

  .dashboard-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 18px;
  }

  .metric-grid,
  .dashboard-grid,
  .about-grid,
  .roi-layout,
  .contact,
  .client-auth,
  .client-auth.auth-split,
  .client-dashboard-shell,
  .owner-dashboard-shell,
  .panel-preview,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 18px;
    border-radius: 14px 14px 0 0;
  }

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

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

  .footer-links div {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    padding-right: 4px;
  }

  .service-card {
    grid-column: auto;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

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

  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-proof {
    grid-template-columns: 1fr;
  }

  .auth-forms,
  .auth-points,
  .roi-grid,
  .portal-metrics,
  .portal-grid,
  .owner-metrics,
  .owner-detail-grid {
    grid-template-columns: 1fr;
  }

  .owner-publication-form {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    grid-template-rows: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .owner-sidebar {
    grid-template-rows: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portal-sidebar nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .portal-security-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-pills {
    justify-content: flex-start;
  }

  .owner-lead-meta {
    grid-template-columns: 1fr 1fr;
  }

  .portal-logout {
    width: fit-content;
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

  .audience-layout {
    grid-template-columns: 1fr;
  }

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

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

  .tech-stack {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .process-panel {
    grid-template-columns: 1fr;
  }

  .contact-form .span-full,
  .form-submit,
  .form-trust,
  .form-status {
    grid-column: auto;
  }

  .ai-chat {
    display: none;
  }
}

@media (max-width: 620px) {
  .section-band {
    padding: 68px 0;
  }

  .page:not(.hero) {
    padding-top: 104px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-logo {
    width: 170px;
    max-width: 58vw;
  }

  .hero-brand-logo {
    display: none;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .panel-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .form-submit,
  .panel-actions a {
    width: 100%;
  }

  .portal-main,
  .portal-sidebar,
  .owner-main,
  .owner-sidebar,
  .auth-form {
    padding: 18px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .portal-header {
    display: grid;
  }

  .portal-sidebar nav {
    grid-template-columns: 1fr 1fr;
  }

  .project-choice-grid {
    grid-template-columns: 1fr;
  }

  .client-ui-grid {
    grid-template-columns: 1fr;
  }

  .client-ui-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .crm-pipeline,
  .automation-flow,
  .workspace-columns,
  .app-architecture,
  .app-module-grid {
    grid-template-columns: 1fr;
  }

  .files-card a,
  .invoice-row,
  .meeting-row,
  .approval-row,
  .next-action-body div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px;
  }

  .portal-security-bar,
  .next-action-card,
  .approvals-card,
  .decisions-card {
    min-height: auto;
  }

  .proof-row {
    display: grid;
  }

  .hero-system-label {
    font-size: 12px;
  }

  .trusted-bar,
  .hero-social-proof {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    grid-column: auto;
  }

  .service-grid,
  .offer-proof,
  .timeline,
  .process-proof,
  .audience-grid,
  .audience-proof,
  .reviews-grid,
  .work-method,
  .logo-rail,
  .tech-stack,
  .tech-proof {
    grid-template-columns: 1fr;
  }

  .reviews-empty {
    grid-template-columns: 1fr;
  }

  .fit-score {
    grid-template-columns: 1fr;
  }

  .score-ring {
    width: 116px;
    height: 116px;
  }

  .score-ring span {
    width: 76px;
    height: 76px;
    font-size: 22px;
  }

  .service-card {
    grid-column: auto;
  }

  .timeline article {
    min-height: auto;
  }

  .donut-card {
    grid-template-columns: 1fr;
  }

  .panel-preview,
  .contact-form {
    padding: 22px;
  }

  .chat-window {
    width: min(320px, calc(100vw - 32px));
  }
}

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