html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  background: #050705;
}

body {
  min-width: 320px;
  margin: 0;
  background: #050705;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

[hidden],
.svg-sprite {
  display: none !important;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-lg {
  width: 27px;
  height: 27px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border: 1px solid #9cff23;
  border-radius: 6px;
  padding: 10px 14px;
  background: #0b0e0c;
  color: #f7faf7;
  font: 700 13px/1.2 Inter, "Segoe UI", sans-serif;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site {
  --acid: #9cff23;
  --acid-soft: #c5ff72;
  --bg: #050705;
  --panel: #0b0e0c;
  --panel-2: #101411;
  --line: rgba(255, 255, 255, 0.13);
  --muted: #9da49e;
  --white: #f7faf7;
  min-width: 320px;
  overflow: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site button,
.site input,
.site textarea {
  font: inherit;
}

.site button,
.site a {
  -webkit-tap-highlight-color: transparent;
}

.site button {
  color: inherit;
}

.site button:focus-visible,
.site a:focus-visible,
.site input:focus-visible,
.site textarea:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 5, 0.78);
  backdrop-filter: blur(18px);
}

.headerInner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brandMark {
  width: 38px;
  height: 38px;
  color: var(--acid);
  filter: drop-shadow(0 0 9px rgba(156, 255, 35, 0.23));
}

.brandText {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.brandText strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brandText small {
  margin-top: 5px;
  color: var(--acid);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.35em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav a {
  position: relative;
  padding: 27px 0;
  color: #c5cac5;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--acid);
  content: "";
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: white;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.headerCta,
.primaryButton,
.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  padding: 0 19px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.headerCta,
.primaryButton {
  gap: 8px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: #081004 !important;
  box-shadow: 0 0 28px rgba(156, 255, 35, 0.1);
}

.headerCta:hover,
.primaryButton:hover {
  background: var(--acid-soft);
  box-shadow: 0 0 32px rgba(156, 255, 35, 0.24);
}

.secondaryButton {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 7, 5, 0.42);
  color: white;
}

.secondaryButton:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.menuButton {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  cursor: pointer;
}

.menu-close-icon {
  display: none;
}

.menuButton[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menuButton[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 76px;
  isolation: isolate;
}

.heroImage {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.heroVeil {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 3, 0.98) 0%, rgba(3, 5, 3, 0.92) 27%, rgba(3, 5, 3, 0.53) 52%, rgba(3, 5, 3, 0.14) 76%, rgba(3, 5, 3, 0.4) 100%),
    linear-gradient(0deg, #050705 0%, transparent 26%);
}

.heroGrid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.heroContent {
  width: min(660px, 60vw);
  padding: 92px 0 104px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c4cbc4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 18px;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 9px var(--acid);
}

.hero h1 {
  margin: 21px 0 22px;
  max-width: 660px;
  font-size: clamp(50px, 6.3vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--acid);
  text-shadow: 0 0 34px rgba(156, 255, 35, 0.15);
}

.heroContent > p {
  max-width: 560px;
  margin: 0;
  color: #c1c7c1;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.heroProof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 27px;
  color: #a8afa8;
  font-size: 12px;
}

.heroProof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.heroProof svg {
  color: var(--acid);
}

.scrollCue {
  position: absolute;
  bottom: 31px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
  color: #8d948d;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scrollCue span {
  position: relative;
  width: 1px;
  height: 31px;
  overflow: hidden;
  background: rgba(255,255,255,.15);
}

.scrollCue span::after {
  position: absolute;
  inset: 0;
  transform: translateY(-100%);
  background: var(--acid);
  content: "";
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
  50%, 100% { transform: translateY(100%); }
}

.trustStrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070a08;
}

.trustStrip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  gap: 35px;
}

.trustStrip p {
  max-width: 132px;
  margin: 0;
  color: #737b74;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trustLogos {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 26px;
  color: #b7bdb7;
}

.trustLogos span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
}

.trustLogos b {
  color: var(--acid);
}

.section {
  position: relative;
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.sectionHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 45px;
}

.sectionHeading h2,
.centerHeading h2,
.freelancerCopy h2,
.modal h2 {
  margin: 13px 0 0;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.sectionHeading > p {
  width: min(410px, 42%);
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.priceCard {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 28px 25px 22px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255,255,255,.035), transparent 38%),
    var(--panel);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.priceCard:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
}

.priceCardPopular {
  border-color: rgba(156, 255, 35, 0.8);
  background:
    radial-gradient(circle at 100% 0, rgba(156,255,35,.16), transparent 38%),
    linear-gradient(155deg, rgba(255,255,255,.04), transparent 38%),
    #0d120d;
  box-shadow: 0 0 32px rgba(156, 255, 35, 0.11), inset 0 0 28px rgba(156,255,35,.04);
}

.popularBadge {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 3px;
  padding: 5px 7px;
  background: var(--acid);
  color: #071004;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.packageIndex {
  color: #555d56;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.priceCard h3 {
  width: 160px;
  min-height: 49px;
  margin: 20px 0 22px;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price small {
  color: #727a73;
  font-size: 10px;
}

.priceCard ul,
.freelancerCopy ul,
.profitPanel ul {
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.priceCard li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  color: #b3b9b3;
  font-size: 11px;
}

.priceCard li svg {
  flex: none;
  color: var(--acid);
}

.priceCard .packageButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 45px;
  margin-top: auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: rgba(255,255,255,.02);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.priceCard .packageButton:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.priceCardPopular .packageButton {
  border-color: var(--acid);
  background: var(--acid);
  color: #071004;
}

.priceCardPopular .packageButton:hover {
  background: var(--acid-soft);
  color: #071004;
}

.benefitHeading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 72px 0 26px;
  color: #b8beb8;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.benefitHeading::before,
.benefitHeading::after {
  height: 1px;
  background: var(--line);
  content: "";
}

.benefitGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 9px 9px 0 0;
  overflow: hidden;
}

.benefitCard {
  min-height: 190px;
  padding: 28px 22px;
  text-align: center;
  background: var(--panel);
}

.benefitCard + .benefitCard {
  border-left: 1px solid var(--line);
}

.benefitCard > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  border: 1px solid rgba(156,255,35,.22);
  border-radius: 50%;
  color: var(--acid);
  background: rgba(156,255,35,.05);
}

.benefitCard h3 {
  margin: 0;
  font-size: 14px;
}

.benefitCard p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  overflow: hidden;
  background: #080b09;
}

.metrics div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  gap: 17px;
}

.metrics div + div {
  border-left: 1px solid var(--line);
}

.metrics strong {
  font-size: 34px;
  letter-spacing: -0.05em;
}

.metrics span {
  width: 110px;
  color: #8d948e;
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.workflowSection {
  background:
    radial-gradient(circle at 50% 35%, rgba(156,255,35,.06), transparent 40%),
    #070a08;
}

.centerHeading {
  max-width: 690px;
  margin: 0 auto 50px;
  text-align: center;
}

.centerHeading .eyebrow {
  justify-content: center;
}

.centerHeading p {
  max-width: 580px;
  margin: 19px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.workflowGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.workflowCard {
  position: relative;
  min-height: 236px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 25px 23px;
  background: rgba(11,14,12,.9);
  text-align: center;
}

.stepNumber {
  display: block;
  color: var(--acid);
  font-family: Consolas, monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workflowIcon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 22px auto 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  color: #dfe4df;
  background: rgba(255,255,255,.025);
}

.workflowCard h3 {
  margin: 0;
  font-size: 14px;
}

.workflowCard p {
  max-width: 180px;
  margin: 8px auto 0;
  color: #7f8780;
  font-size: 10px;
  line-height: 1.55;
}

.workflowArrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--acid);
  color: #071004;
}

.workflowCard:nth-child(4) .workflowArrow,
.workflowCard:nth-child(8) .workflowArrow {
  display: none;
}

.dashboardSection {
  background: #050705;
}

.dashboardShell {
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 750px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  overflow: hidden;
  background: #0a0d0b;
  box-shadow: 0 40px 90px rgba(0,0,0,.4), 0 0 60px rgba(156,255,35,.04);
}

.dashboardSidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 21px 13px;
  background: #070a08;
}

.dashboardSidebar .brand {
  margin: 0 7px 31px;
}

.dashboardSidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboardSidebar nav button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 5px;
  padding: 0 10px;
  background: transparent;
  color: #878f88;
  font-size: 10px;
  text-align: left;
  cursor: pointer;
}

.dashboardSidebar nav button:hover {
  background: rgba(255,255,255,.04);
  color: white;
}

.dashboardSidebar nav .sidebarActive {
  background: var(--acid);
  color: #071004;
  font-weight: 800;
}

.sidebarUser {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 17px 7px 0;
}

.sidebarUser span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1a201b;
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
}

.sidebarUser small {
  color: #707871;
  font-size: 9px;
}

.dashboardMain {
  min-width: 0;
  padding: 0 21px 23px;
}

.dashboardTopbar {
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.dashboardTopbar > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dashboardTopbar small {
  color: #5f685f;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .18em;
}

.dashboardTopbar strong {
  font-size: 15px;
}

.dashboardTopbar button {
  position: relative;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dashboardTopbar button span {
  position: absolute;
  top: -3px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff3e53;
  color: white;
  font-size: 8px;
  font-weight: 900;
}

.statGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 21px 0 10px;
}

.statCard {
  display: flex;
  flex-direction: column;
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 17px;
  background: #0e120f;
}

.statCard span {
  color: #7b837c;
  font-size: 8px;
}

.statCard strong {
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.statCard small {
  margin-top: auto;
  color: var(--acid);
  font-size: 8px;
}

.dashboardContentGrid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 10px;
}

.jobsPanel,
.chartPanel,
.profitPanel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0d100e;
}

.jobsPanel {
  grid-column: 1 / -1;
  padding: 17px;
}

.panelTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  margin-bottom: 14px;
}

.panelTitle strong {
  font-size: 11px;
}

.panelTitle button,
.panelTitle span {
  border: 0;
  background: transparent;
  color: #707871;
  font-size: 8px;
}

.panelTitle button {
  cursor: pointer;
}

.jobHead,
.jobRow {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr .55fr;
  align-items: center;
  gap: 15px;
}

.jobHead {
  padding: 0 7px 8px;
  color: #59615a;
  font-size: 7px;
}

.jobRow {
  min-height: 58px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 0 7px;
  font-size: 8px;
}

.jobPerson {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.jobPerson > span,
.freelancerRow > div > span {
  flex: none;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 7px;
  color: white;
  font-size: 8px;
  font-weight: 900;
}

.violet { background: linear-gradient(135deg, #7a45e9, #d047a8); }
.coral { background: linear-gradient(135deg, #e35151, #ea9a3c); }
.blue { background: linear-gradient(135deg, #1f65d2, #4fc3c8); }
.gold { background: linear-gradient(135deg, #8c6414, #d4b347); }

.jobPerson div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.jobPerson strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jobPerson small {
  overflow: hidden;
  color: #717872;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jobStatus {
  color: var(--acid);
}

.progress {
  display: flex;
  align-items: center;
  gap: 7px;
}

.progress > span {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  overflow: hidden;
  background: #283029;
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #66d800, var(--acid));
  box-shadow: 0 0 9px rgba(156,255,35,.38);
}

.progress small,
.jobRow time {
  color: #777e78;
  font-size: 7px;
}

.chartPanel,
.profitPanel {
  min-height: 222px;
  padding: 16px;
}

.lineChart {
  display: block;
  width: 100%;
  height: 158px;
}

.lineChart line {
  stroke: rgba(255,255,255,.07);
  stroke-width: 1;
}

.lineChart polyline {
  fill: none;
  stroke: var(--acid);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 5px rgba(156,255,35,.42));
}

.lineChart text {
  fill: #707871;
  font-size: 10px;
}

.donutWrap {
  display: flex;
  align-items: center;
  gap: 17px;
}

.donut {
  position: relative;
  flex: none;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: conic-gradient(var(--acid) 0 47%, #ff495e 47% 93%, #f0a23a 93% 100%);
}

.donut::after {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #0d100e;
  content: "";
}

.donut span {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 17px;
  font-weight: 850;
}

.donut small {
  color: #6e766f;
  font-size: 7px;
  font-weight: 500;
}

.profitPanel ul {
  flex: 1;
  margin: 0;
}

.profitPanel li {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  align-items: center;
  gap: 7px;
  margin: 9px 0;
  color: #777f78;
  font-size: 7px;
}

.profitPanel li i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.profitPanel li:nth-child(2) i { background: #ff495e; }
.profitPanel li:nth-child(3) i { background: #f0a23a; }
.profitPanel li strong { color: #c9cec9; font-size: 8px; }

.profitTotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 11px;
  color: var(--acid);
  font-size: 8px;
}

.profitTotal strong { font-size: 15px; }

.freelancerSection {
  background:
    radial-gradient(circle at 20% 15%, rgba(156,255,35,.07), transparent 28%),
    #080b09;
}

.freelancerIntro {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 11px 11px 0 0;
  overflow: hidden;
  background: #0b0e0c;
}

.freelancerCopy {
  position: relative;
  z-index: 2;
  padding: 58px 51px;
}

.freelancerCopy h2 {
  font-size: clamp(38px, 4.2vw, 58px);
}

.freelancerCopy > p {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.freelancerCopy ul {
  margin: 25px 0;
}

.freelancerCopy li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  color: #ccd1cc;
  font-size: 12px;
}

.freelancerCopy li svg { color: var(--acid); }
.freelancerCopy > small { display: block; margin-top: 9px; color: #727a73; font-size: 9px; }

.workspaceImage {
  position: relative;
  min-height: 470px;
}

.workspaceImage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b0e0c, transparent 30%), linear-gradient(0deg, rgba(5,7,5,.5), transparent 45%);
  content: "";
}

.workspaceImage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workspaceImage > div {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  padding: 10px 13px;
  background: rgba(6,9,7,.76);
  color: var(--acid);
  backdrop-filter: blur(9px);
  font-size: 10px;
  font-weight: 800;
}

.freelancerDashboard {
  width: calc(100% - 96px);
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9px;
  overflow: hidden;
  background: #0b0e0c;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

.freelancerTopbar {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 21px;
}

.freelancerTopbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.miniBrand .brandMark { width: 23px; height: 23px; }
.freelancerTopbar strong { font-size: 11px; }
.freelancerTopbar > span { color: #777f78; font-size: 8px; }

.freelancerTabs {
  display: flex;
  gap: 27px;
  min-height: 48px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
}

.freelancerTabs button {
  position: relative;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: #7c847d;
  font-size: 9px;
  cursor: pointer;
}

.freelancerTabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--acid);
  content: "";
  transition: transform 180ms ease;
}

.freelancerTabs .activeTab {
  color: white;
}

.freelancerTabs .activeTab::after { transform: scaleX(1); }

.freelancerTable {
  margin: 15px 18px 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  overflow: hidden;
}

.freelancerTableHead,
.freelancerRow {
  display: grid;
  grid-template-columns: 1.5fr .8fr .65fr .45fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
}

.freelancerTableHead {
  min-height: 30px;
  color: #59615a;
  font-size: 7px;
}

.freelancerRow {
  min-height: 60px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 8px;
}

.freelancerRow > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.freelancerRow p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.freelancerRow p strong { font-size: 9px; }
.freelancerRow p small { color: #707871; font-size: 7px; }
.freelancerRow > span { color: var(--acid); }
.freelancerRow time { color: #8c938d; }
.freelancerRow > strong { color: var(--acid); font-size: 13px; }

.payout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 18px 18px;
  border: 1px solid rgba(156,255,35,.17);
  border-radius: 6px;
  padding: 12px 14px;
  background: rgba(156,255,35,.035);
}

.payout div { display: flex; flex-direction: column; }
.payout span { color: #767e77; font-size: 8px; }
.payout strong { color: var(--acid); font-size: 18px; }
.payout button {
  min-height: 36px;
  border: 1px solid var(--acid);
  border-radius: 5px;
  padding: 0 14px;
  background: var(--acid);
  color: #071004;
  font-size: 9px;
  font-weight: 850;
  cursor: pointer;
}

.calculatorSection {
  background: #050705;
}

.calculator {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 35px;
  background:
    radial-gradient(circle at 90% 100%, rgba(156,255,35,.08), transparent 27%),
    var(--panel);
}

.calculator > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8e958f;
  font-size: 12px;
}

.calculator > label strong {
  color: white;
  font-size: 22px;
}

.calculator > input {
  width: 100%;
  margin: 20px 0 31px;
  accent-color: var(--acid);
  cursor: pointer;
}

.calcCards {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.calcCards > div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 8px;
  padding: 20px;
  background: #0d100e;
}

.calcCards span { color: #7b837c; font-size: 9px; }
.calcCards strong { margin-top: 7px; font-size: 27px; }
.calcCards > b { color: #5c645d; font-size: 22px; }
.calcCards .calcCost { border-color: rgba(255,73,94,.45); }
.calcCards .calcTools { border-color: rgba(240,162,58,.45); }
.calcCards .calcProfit { border-color: rgba(156,255,35,.7); box-shadow: inset 0 0 20px rgba(156,255,35,.04); }
.calcCards .calcProfit span,
.calcCards .calcProfit strong { color: var(--acid); }

.scaleStrip {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 14px;
  border: 1px solid rgba(156,255,35,.18);
  border-radius: 8px;
  padding: 18px 23px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(156,255,35,.03), rgba(156,255,35,.09));
}

.scaleStrip > div {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--acid);
}

.scaleStrip span {
  display: flex;
  flex-direction: column;
  color: #808881;
  font-size: 9px;
}

.scaleStrip strong {
  margin-bottom: 4px;
  color: white;
  font-size: 12px;
}

.scaleStrip svg {
  width: 310px;
  max-width: 48%;
  overflow: visible;
}

.scaleStrip polyline {
  fill: none;
  stroke: var(--acid);
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(156,255,35,.6));
}

.footer {
  padding: 52px 0 30px;
  background: #030403;
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
}

.footer .container > div:first-child p {
  margin: 10px 0 0 48px;
  color: #656d66;
  font-size: 10px;
}

.footerLinks {
  display: flex;
  gap: 25px;
}

.footerLinks a,
.footerLinks button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #858d86;
  font-size: 11px;
  cursor: pointer;
}

.footerLinks a:hover,
.footerLinks button:hover { color: var(--acid); }
.footer .container > p { grid-column: 1 / -1; margin: 30px 0 0; border-top: 1px solid var(--line); padding-top: 24px; color: #4e554f; font-size: 9px; }

.modalBackdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}

.modal {
  position: relative;
  width: min(530px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(156,255,35,.38);
  border-radius: 11px;
  padding: 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(156,255,35,.11), transparent 33%),
    #0c100d;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}

.modalClose {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
  cursor: pointer;
}

.modal h2 {
  margin-right: 35px;
  font-size: 38px;
}

.modal > p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.modal form {
  display: grid;
  gap: 15px;
}

.modal label {
  display: grid;
  gap: 7px;
  color: #b6bcb6;
  font-size: 10px;
  font-weight: 750;
}

.modal input,
.modal textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 12px 13px;
  resize: vertical;
  background: #070a08;
  color: white;
  font-size: 13px;
}

.modal input::placeholder,
.modal textarea::placeholder { color: #555d56; }
.modal form button { margin-top: 5px; }

.successState {
  padding: 35px 0 15px;
  text-align: center;
}

.successState > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 19px;
  border: 1px solid rgba(156,255,35,.4);
  border-radius: 50%;
  background: rgba(156,255,35,.07);
  color: var(--acid);
}

.successState h2 { margin: 0; }
.successState p { margin: 14px auto 24px; color: var(--muted); font-size: 13px; }

@media (max-width: 1050px) {
  .headerInner { gap: 18px; }
  .nav { gap: 17px; }
  .pricingGrid { grid-template-columns: repeat(2, 1fr); }
  .priceCard { min-height: 410px; }
  .workflowGrid { grid-template-columns: repeat(2, 1fr); }
  .workflowCard:nth-child(2) .workflowArrow,
  .workflowCard:nth-child(6) .workflowArrow { display: none; }
  .workflowCard:nth-child(4) .workflowArrow { display: grid; }
  .dashboardShell { grid-template-columns: 75px 1fr; }
  .dashboardSidebar nav span { display: none; }
  .dashboardSidebar nav button { justify-content: center; }
  .sidebarUser small { display: none; }
  .statCard { padding: 13px; }
  .freelancerIntro { grid-template-columns: 1fr 1fr; }
  .freelancerCopy { padding: 46px 35px; }
}

@media (max-width: 820px) {
  .container,
  .headerInner { width: min(100% - 32px, 680px); }
  .headerInner { grid-template-columns: 1fr auto; min-height: 68px; }
  .headerCta { display: none; }
  .menuButton { display: grid; }
  .nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    transform: translateY(-12px);
    border-bottom: 1px solid var(--line);
    background: rgba(5,7,5,.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .navOpen { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav a::after { display: none; }
  .hero { min-height: 720px; padding-top: 68px; }
  .heroContent { width: min(580px, 100%); }
  .heroVeil { background: linear-gradient(90deg, rgba(3,5,3,.96), rgba(3,5,3,.56)), linear-gradient(0deg, #050705, transparent 30%); }
  .trustStrip .container { flex-direction: column; justify-content: center; padding: 28px 0; }
  .trustStrip p { max-width: none; }
  .trustLogos { width: 100%; flex-wrap: wrap; justify-content: center; }
  .section { padding: 82px 0; }
  .sectionHeading { flex-direction: column; align-items: start; gap: 18px; }
  .sectionHeading > p { width: 100%; max-width: 520px; }
  .benefitGrid { grid-template-columns: repeat(2, 1fr); }
  .benefitCard:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .benefitCard:nth-child(4) { border-top: 1px solid var(--line); }
  .dashboardShell { grid-template-columns: 1fr; min-height: 0; }
  .dashboardSidebar { display: none; }
  .dashboardMain { padding: 0 14px 16px; }
  .statGrid { grid-template-columns: repeat(2, 1fr); }
  .dashboardContentGrid { grid-template-columns: 1fr; }
  .jobsPanel { overflow-x: auto; }
  .jobHead,
  .jobRow { min-width: 650px; }
  .freelancerIntro { grid-template-columns: 1fr; }
  .workspaceImage { min-height: 390px; order: -1; }
  .workspaceImage::after { background: linear-gradient(0deg, #0b0e0c 0%, transparent 35%); }
  .freelancerDashboard { width: calc(100% - 32px); }
  .freelancerTable { overflow-x: auto; }
  .freelancerTableHead,
  .freelancerRow { min-width: 650px; }
  .calcCards { grid-template-columns: 1fr 1fr; }
  .calcCards > b { display: none; }
}

@media (max-width: 560px) {
  .brandText strong { font-size: 11px; }
  .hero { min-height: 690px; }
  .heroContent { padding: 70px 0 100px; }
  .hero h1 { font-size: clamp(43px, 14vw, 62px); }
  .heroContent > p { font-size: 15px; }
  .heroActions { flex-direction: column; align-items: stretch; }
  .heroActions a,
  .heroActions button { width: 100%; }
  .heroProof { gap: 12px; flex-direction: column; }
  .scrollCue { display: none; }
  .trustLogos { gap: 17px 23px; }
  .trustLogos span { font-size: 12px; }
  .pricingGrid { grid-template-columns: 1fr; }
  .priceCard { min-height: 390px; }
  .benefitGrid { grid-template-columns: 1fr; }
  .benefitCard + .benefitCard { border-top: 1px solid var(--line); border-left: 0; }
  .metrics { grid-template-columns: 1fr; }
  .metrics div + div { border-top: 1px solid var(--line); border-left: 0; }
  .workflowGrid { grid-template-columns: 1fr; }
  .workflowArrow { display: none !important; }
  .workflowCard { min-height: 210px; }
  .dashboardTopbar strong { font-size: 12px; }
  .statGrid { grid-template-columns: 1fr; }
  .statCard { min-height: 95px; }
  .donutWrap { flex-direction: column; align-items: start; }
  .profitPanel li { min-width: 190px; }
  .freelancerCopy { padding: 40px 24px; }
  .workspaceImage { min-height: 310px; }
  .freelancerDashboard { width: 100%; margin-top: 0; border-radius: 0 0 9px 9px; }
  .freelancerTopbar > span { display: none; }
  .freelancerTabs { gap: 17px; overflow-x: auto; }
  .freelancerTabs button { flex: none; }
  .payout { align-items: stretch; flex-direction: column; gap: 12px; }
  .calculator { padding: 24px 18px; }
  .calcCards { grid-template-columns: 1fr; }
  .scaleStrip { align-items: start; flex-direction: column; }
  .scaleStrip svg { max-width: 100%; width: 100%; }
  .footer .container { grid-template-columns: 1fr; }
  .footerLinks { flex-wrap: wrap; }
  .footer .container > p { grid-column: 1; }
  .modal { padding: 36px 24px 25px; }
  .modal h2 { font-size: 32px; }
}

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