* {
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --panel: #0b0b0d;
  --panel2: #111113;
  --line: rgba(255,255,255,.10);
  --lineStrong: rgba(255,255,255,.24);
  --text: #fff;
  --muted: #a1a1aa;
  --dim: #52525b;
  --whiteSoft: rgba(255,255,255,.05);
  --whiteMid: rgba(255,255,255,.08);
  --blue: #60a5fa;
  --amber: #fbbf24;
  --orange: #fb923c;
  --violet: #a78bfa;
  --green: #34d399;
  --red: #f87171;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--text);
  font-family: Gilroy, Inter, Satoshi, Manrope, Geist, Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
}

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

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background:
    radial-gradient(circle at 15% 8%, rgba(255,255,255,.12), transparent 25%),
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.06), transparent 22%);
}

.page {
  min-height: 100vh;
  background: #000;
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1540px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  filter: grayscale(1);
}

.logo.large {
  width: 64px;
  height: 64px;
}

.brand-title {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: var(--dim);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: transform .18s ease, background .18s ease, border .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #e4e4e7;
}

.btn.ghost {
  border-color: var(--line);
  background: transparent;
  color: #d4d4d8;
}

.btn.ghost:hover {
  background: var(--whiteMid);
  color: #fff;
}

.btn.subtle {
  border-color: var(--line);
  background: var(--whiteSoft);
  color: #fff;
}

.btn.danger {
  border-color: rgba(248,113,113,.3);
  background: rgba(248,113,113,.10);
  color: #fecaca;
}

.icon-only {
  width: 44px;
  padding-inline: 0;
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  transition: transform .2s ease, border .2s ease, background .2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.grid-app {
  position: relative;
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 24px;
  padding: 24px 0;
}

.section-title .kicker,
.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .28em;
}

.section-title h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.section-title p.desc {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-command {
  overflow: hidden;
}

.dashboard-command .top {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat:nth-child(2n) {
  border-right: 0;
}

.stat-value {
  margin: 22px 0 0;
  color: #fff;
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -.07em;
}

.stat-label {
  margin: 4px 0 0;
  color: var(--dim);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.command-action {
  padding: 20px;
}

.full {
  width: 100%;
}

.search-card {
  overflow: hidden;
}

.search-box {
  margin: 16px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  padding: 0 12px;
}

.search-box input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 12px;
  color: #fff;
  outline: 0;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.search-box input::placeholder {
  color: var(--dim);
}

.order-list {
  max-height: 670px;
  overflow: auto;
  padding: 12px;
}

.order-button {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: #fff;
  padding: 16px;
  text-align: left;
  transition: .18s ease;
}

.order-button:hover,
.order-button.active {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateX(4px);
}

.order-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.order-title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.order-meta {
  margin: 6px 0 0;
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.progress-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-track {
  flex: 1;
  height: 6px;
  background: var(--line);
}

.progress-fill {
  height: 100%;
  background: #fff;
  transition: width .3s ease;
}

.progress-number {
  font-size: 12px;
  font-weight: 950;
}

.order-foot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.due-text {
  color: var(--dim);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.mini-actions {
  display: flex;
  gap: 4px;
}

.mini-actions button {
  border: 0;
  background: transparent;
  color: var(--dim);
  padding: 8px;
  transition: .18s ease;
}

.mini-actions button:hover {
  color: #fff;
}

.mini-actions .delete:hover {
  color: var(--red);
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.hero-glow {
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.08);
  filter: blur(90px);
}

.hero-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 1150px) {
  .hero-card-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: #a1a1aa;
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.status-not-started { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.05); color: #a1a1aa; }
.status-in-progress { border-color: rgba(96,165,250,.30); background: rgba(59,130,246,.10); color: #dbeafe; }
.status-sent-for-review { border-color: rgba(251,191,36,.30); background: rgba(245,158,11,.10); color: #fef3c7; }
.status-waiting-for-revision { border-color: rgba(251,146,60,.30); background: rgba(249,115,22,.10); color: #ffedd5; }
.status-rendering { border-color: rgba(167,139,250,.30); background: rgba(139,92,246,.10); color: #ede9fe; }
.status-completed { border-color: rgba(52,211,153,.30); background: rgba(16,185,129,.10); color: #d1fae5; }
.status-delivered { border-color: #fff; background: #fff; color: #000; }

.order-id {
  color: var(--dim);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.big-title {
  margin: 20px 0 0;
  max-width: 900px;
  color: #fff;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 950;
  line-height: .85;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hero-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
}

.form-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.span-2 {
  grid-column: span 2;
}

.field {
  display: block;
}

.field span {
  display: block;
  margin-bottom: 8px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.field input,
.field textarea,
.field select,
.inline-input {
  width: 100%;
  border: 1px solid #27272a;
  background: var(--panel2);
  color: #fff;
  outline: 0;
  padding: 13px 16px;
  font-size: 14px;
  transition: .18s ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.inline-input:focus {
  border-color: #fff;
}

.inline-input::placeholder,
.field input::placeholder {
  color: var(--dim);
}

.pad {
  padding: 24px;
}

.products {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-pill {
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  color: #d4d4d8;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: .18s ease;
}

.product-pill:hover,
.product-pill.active {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.timeline-input {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}

.timeline-preview {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.timeline-item-preview {
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  padding: 16px;
}

.timeline-item-preview p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.timeline-item-preview span {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 12px;
}

.workflow-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .workflow-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.new-task {
  display: flex;
  gap: 8px;
}

.tasks {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.task-editor {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 20px;
}

.task-editor-inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: start;
}

.reorder {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dim);
}

.reorder-buttons {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reorder-buttons button {
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  padding: 4px 8px;
}

.task-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.done-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: #d4d4d8;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.done-btn.done {
  border-color: rgba(52,211,153,.4);
  background: rgba(16,185,129,.10);
  color: #d1fae5;
}

.delete-task {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  padding: 12px 16px;
}

.delete-task:hover {
  color: var(--red);
}

/* Login */
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  position: relative;
}

.login-grid {
  position: relative;
  width: min(1200px, 100%);
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1000px) {
  .login-grid {
    grid-template-columns: 1.15fr .85fr;
  }
}

.login-title {
  margin: 20px 0 0;
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.login-tiles {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

@media (min-width: 700px) {
  .login-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.login-tile {
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  padding: 20px;
}

.login-tile span {
  color: var(--dim);
  font-size: 12px;
}

.login-tile p {
  margin: 20px 0 0;
  font-weight: 950;
  text-transform: uppercase;
}

.login-box {
  padding: 32px;
}

.login-form {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

/* Client portal */
.client-wrap {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0;
}

.client-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #08080a;
  padding: 40px;
}

.client-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  filter: blur(120px);
}

.client-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  filter: blur(120px);
}

.client-hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
}

@media (min-width: 1000px) {
  .client-hero-grid {
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
  }
}

.live-badge {
  display: inline-flex;
  border: 1px solid var(--lineStrong);
  background: var(--whiteMid);
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.client-title {
  margin: 28px 0 0;
  max-width: 900px;
  font-size: clamp(60px, 8vw, 118px);
  font-weight: 950;
  line-height: .78;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.client-notes {
  margin: 28px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  padding: 12px 16px;
  color: #e4e4e7;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.delivery-box,
.progress-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  padding: 24px;
}

.delivery-date {
  margin: 20px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.delivery-date strong {
  display: block;
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.delivery-date span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.progress-box {
  margin-top: 16px;
}

.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-head p {
  color: var(--dim);
  margin: 0;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.progress-head strong {
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -.07em;
}

.big-progress-track {
  margin-top: 20px;
  height: 8px;
  background: var(--line);
}

.big-progress-fill {
  height: 100%;
  background: #fff;
  transition: width .5s ease;
}

.count-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.count-box {
  border: 1px solid var(--line);
  padding: 16px;
}

.count-box strong {
  display: block;
  font-size: 34px;
  font-weight: 950;
}

.count-box span {
  display: block;
  margin-top: 2px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.client-main-grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

@media (min-width: 1000px) {
  .client-main-grid {
    grid-template-columns: .72fr 1.28fr;
  }
}

.side-stack,
.main-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-list {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.timeline-item {
  position: relative;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
}

.timeline-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.timeline-item span {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 12px;
}

.downloads,
.client-tasks,
.preview-grid {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  padding: 16px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: .18s ease;
}

.download-link:hover {
  border-color: #fff;
  background: var(--whiteMid);
}

.empty {
  border: 1px dashed rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  padding: 20px;
  color: var(--dim);
  font-size: 14px;
}

.client-task {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 20px;
}

.client-task-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.task-title-row {
  display: flex;
  gap: 16px;
}

.task-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  color: var(--dim);
  display: grid;
  place-items: center;
}

.task-icon.done {
  border-color: rgba(52,211,153,.4);
  background: rgba(16,185,129,.1);
  color: #d1fae5;
}

.client-task h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.045em;
}

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

.task-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  padding: 8px 12px;
  color: #d4d4d8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.chip.download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  white-space: nowrap;

  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  text-decoration: none;
  transition: .18s ease;
}

.chip.download:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
}

.preview-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  transition: .18s ease;
  overflow: hidden;
}

.preview-card:hover {
  border-color: #fff;
}

.preview-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  opacity: .8;
  transition: .5s ease;
}

.preview-card:hover img {
  transform: scale(1.02);
  opacity: 1;
}

.preview-card-footer {
  border-top: 1px solid var(--line);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-card-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.password-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
}

.password-card {
  width: min(560px, 100%);
  padding: 32px;
  text-align: center;
}

.password-card h1 {
  margin: 16px 0 0;
  font-size: 52px;
  font-weight: 950;
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.password-card p {
  color: var(--muted);
  line-height: 1.7;
}

.password-card input {
  margin-top: 24px;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--whiteSoft);
  color: #fff;
  padding: 16px;
  text-align: center;
  outline: 0;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.password-card input:focus {
  border-color: #fff;
}

.password-card .btn {
  margin-top: 12px;
  width: 100%;
}

.small-muted {
  margin-top: 24px;
  color: var(--dim);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .grid-app {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .task-editor-inner {
    grid-template-columns: 1fr;
  }

  .task-actions {
    flex-direction: row;
  }
}

@media (max-width: 700px) {
  .container,
  .header-inner,
  .client-wrap {
    width: min(100% - 24px, 1540px);
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .btn {
    flex: 1;
  }

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

  .span-2 {
    grid-column: auto;
  }

  .big-title {
    font-size: 48px;
  }

  .client-title {
    font-size: 54px;
  }

  .client-hero,
  .hero-card,
  .pad {
    padding: 20px;
  }

  .delivery-date {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-input,
  .new-task {
    flex-direction: column;
  }

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

  .stat {
    border-right: 0;
  }
}
