/* DealCats — mockup-aligned */
:root {
  --bg: #0a0a0b;
  --bg-elevated: #111113;
  --card: #161618;
  --card-border: #222226;
  --orange: #ff7a29;
  --orange-hover: #ff8f4d;
  --orange-dim: rgba(255, 122, 41, 0.14);
  --text: #ffffff;
  --text-muted: #9aa0a6;
  --text-dim: #6b7280;
  --radius: 6px;
  --radius-lg: 14px;
  --max-width: 1200px;
  --nav-height: 72px;
  --section-pad: 100px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-hand: "Caveat", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section--spaced {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.text-accent {
  color: var(--orange);
}

.text-underline {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

/* Paw pattern */
.paw-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23fff'%3E%3Cellipse cx='20' cy='28' rx='6' ry='8'/%3E%3Cellipse cx='32' cy='22' rx='5' ry='7'/%3E%3Cellipse cx='44' cy='22' rx='5' ry='7'/%3E%3Cellipse cx='56' cy='28' rx='6' ry='8'/%3E%3Cellipse cx='38' cy='42' rx='14' ry='12'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.paw-bg--hero {
  opacity: 0.07;
  mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* Logo split */
.logo-deal {
  color: var(--text);
}

.logo-cats {
  color: var(--orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn--primary {
  background: var(--orange);
  color: #fff;
}

.btn--primary:hover {
  background: var(--orange-hover);
}

.btn--outline {
  border: 1px solid #3a3a40;
  color: var(--text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

.btn--demo {
  gap: 10px;
}

.btn__icon {
  color: var(--orange);
  flex-shrink: 0;
}

.paw {
  font-size: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(255, 122, 41, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.badge__paw {
  font-size: 12px;
}

.fine-print {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
}

.section-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  line-height: 1.15;
}

.section-title--left {
  text-align: left;
  margin-bottom: 16px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  height: var(--nav-height);
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.nav__logo img {
  border-radius: 6px;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero */
.hero.section--spaced {
  padding-top: 32px;
  padding-bottom: 40px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  min-height: auto;
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 22px;
}

.lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.lead--secondary {
  margin-bottom: 30px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  overflow: visible;
}

/* Dashboard */
.dashboard {
  position: relative;
  background: #121214;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(255, 122, 41, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.4);
  min-height: 400px;
  overflow: visible;
}

.dashboard__chrome {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #0e0e10;
  border-bottom: 1px solid var(--card-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dashboard__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.dashboard__chrome span:nth-child(1) {
  background: #ff5f57;
}

.dashboard__chrome span:nth-child(2) {
  background: #febc2e;
}

.dashboard__chrome span:nth-child(3) {
  background: #28c840;
}

.dashboard__body {
  display: flex;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.dashboard__sidebar {
  width: 168px;
  background: #0c0c0e;
  border-right: 1px solid var(--card-border);
  padding: 12px 0 20px;
  flex-shrink: 0;
}

.dashboard__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px 16px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 8px;
}

.dashboard__sidebar ul {
  list-style: none;
}

.dashboard__sidebar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  padding: 10px 16px;
}

.dashboard__sidebar li.active {
  color: var(--orange);
  background: var(--orange-dim);
  border-left: 2px solid var(--orange);
}

.dash-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}

.dashboard__main {
  flex: 1;
  padding: 28px 28px 32px;
}

.dashboard__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
}

.deal-row {
  display: grid;
  grid-template-columns: 108px 1fr 72px;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.deal-name {
  font-size: 12px;
  color: var(--text-muted);
}

.deal-bar {
  height: 10px;
  background: #1e1e22;
  border-radius: 5px;
  overflow: hidden;
}

.deal-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #e85d04);
  border-radius: 5px;
}

.deal-amt {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.stat__label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat__value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat__value--accent {
  color: var(--orange);
}

.hero__cat {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.hero__cat--peek {
  top: -72px;
  left: 50%;
  transform: translateX(-20%);
  width: 240px;
  z-index: 10;
}

.hero__cat--sit {
  bottom: -48px;
  right: -32px;
  width: 260px;
  z-index: 5;
}

.hero__plant {
  position: absolute;
  bottom: 24px;
  left: 8%;
  width: 32px;
  height: 48px;
  z-index: 1;
  opacity: 0.5;
  background: linear-gradient(to top, #2d5a27 60%, #4a8f3f 100%);
  border-radius: 4px 4px 12px 12px;
}

.hero__plant::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 28px;
  background: radial-gradient(ellipse, #3d7a35 0%, transparent 70%);
  border-radius: 50%;
}

/* Trust */
.trust.section--spaced {
  padding-top: 32px;
  padding-bottom: 96px;
}

.trust {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust__label {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.trust__label strong {
  font-weight: 700;
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 72px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-logo {
  font-size: 15px;
  font-weight: 700;
  color: #a8aeb6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tighter gap: trust → features */
.features.section--spaced {
  padding-top: 56px;
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: #2e2e34;
}

.feature-card__img {
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  background: radial-gradient(ellipse at center 80%, #1a1a1e 0%, var(--bg) 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 8px;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  max-height: 200px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  padding: 18px 20px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--orange);
  flex-shrink: 0;
  opacity: 0.9;
}

.feature-icon--box {
  clip-path: polygon(0 30%, 100% 30%, 100% 100%, 0 100%);
}

.feature-icon--eye {
  border-radius: 50%;
}

.feature-icon--ball {
  border-radius: 50%;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
}

.feature-icon--bolt {
  clip-path: polygon(50% 0%, 65% 45%, 100% 45%, 55% 100%, 70% 55%, 35% 55%);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 20px 16px;
  flex: 1;
  line-height: 1.6;
}

.feature-link {
  display: block;
  padding: 0 20px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}

/* Kanban */
.kanban {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.kanban__copy p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 400px;
  line-height: 1.65;
}

.kanban__board-wrap {
  position: relative;
  padding-bottom: 48px;
  padding-right: 24px;
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.kanban-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.kanban-col .count {
  background: #222226;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  color: var(--text-dim);
}

.kanban-card {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.kanban-card strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.kanban-card span {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
}

.kanban-card--ghost {
  opacity: 0.35;
  border-style: dashed;
}

.kanban-card--dragging {
  position: absolute;
  top: 42%;
  left: 38%;
  width: 140px;
  z-index: 4;
  transform: rotate(-4deg) translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  border-color: var(--orange);
  background: #1c1c1f;
  animation: cardDrag 2.5s ease-in-out infinite alternate;
}

@keyframes cardDrag {
  from {
    transform: rotate(-6deg) translate(-4px, -12px);
  }
  to {
    transform: rotate(-2deg) translate(28px, -20px);
  }
}

.kanban__cat {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 200px;
  z-index: 6;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
}

.testimonial__quote {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  margin-bottom: -8px;
  opacity: 0.9;
}

.testimonial p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 122, 41, 0.3);
  background-size: cover;
  background-position: center;
}

.avatar--1 {
  background-image: linear-gradient(135deg, #c45a10 0%, #8b3d0a 100%);
  box-shadow: inset 0 -20px 30px rgba(0, 0, 0, 0.2);
}

.avatar--2 {
  background-image: linear-gradient(135deg, #5a4a42 0%, #2a2420 100%);
}

.avatar--3 {
  background-image: linear-gradient(135deg, #d4845c 0%, #a65a38 100%);
}

.avatar--1::after,
.avatar--2::after,
.avatar--3::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}

.testimonial footer span {
  font-size: 12px;
  color: var(--text-dim);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

.dot--active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* Pricing */
.pricing {
  position: relative;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.price-card--popular {
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 20px 56px rgba(255, 122, 41, 0.15);
  transform: scale(1.04);
  z-index: 1;
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-card__desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.price-card__amount {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.price-card__amount .currency {
  font-size: 26px;
  vertical-align: super;
  font-weight: 700;
}

.price-card__amount .period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
}

.price-card__amount--custom {
  font-size: 38px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 9px 0;
  padding-left: 22px;
  position: relative;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cellipse fill='%23ff7a29' cx='3' cy='4' rx='1.5' ry='2'/%3E%3Cellipse fill='%23ff7a29' cx='6' cy='3' rx='1.2' ry='1.6'/%3E%3Cellipse fill='%23ff7a29' cx='9' cy='4' rx='1.5' ry='2'/%3E%3Cellipse fill='%23ff7a29' cx='6' cy='8' rx='3' ry='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing__cat {
  position: absolute;
  bottom: 40px;
  left: -24px;
  width: 140px;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

/* Final CTA */
.final-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #18181b 0%, #111113 100%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 64px 48px;
  min-height: 360px;
  overflow: hidden;
}

.final-cta__cat {
  position: absolute;
  left: -8px;
  bottom: 0;
  width: min(440px, 42vw);
  height: auto;
  max-height: 95%;
  object-fit: contain;
  object-position: bottom left;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
}

.final-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.final-cta h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.final-cta__copy p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.6;
}

.final-cta__note {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  font-family: var(--font-hand);
  font-size: 26px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  text-align: right;
  max-width: 220px;
  transform: rotate(-3deg);
}

.final-cta__paw {
  display: block;
  font-size: 20px;
  margin-top: 8px;
  opacity: 0.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 40px 24px 56px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 56px 56px 52px;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.modal__text {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 36px;
  padding: 0 8px;
}

.modal__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 24px 20px 20px;
  border: 1px solid #2a2a30;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.modal__logo-img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
}

.modal__logo-cta {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.modal__logo-link:hover,
.modal__logo-link:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 122, 41, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  outline: none;
}

.modal__logo-link:hover .modal__logo-img,
.modal__logo-link:focus-visible .modal__logo-img {
  opacity: 0.95;
}

.modal__logo-link:hover .modal__logo-cta,
.modal__logo-link:focus-visible .modal__logo-cta {
  color: var(--orange);
}

.modal__sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 1100px) {
  .pricing__cat {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
  }

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

  .hero__visual {
    max-width: 580px;
    margin: 0 auto;
  }

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

  .kanban {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .price-card--popular {
    transform: none;
  }

  .final-cta__inner {
    padding: 48px 28px 100px;
  }

  .final-cta__cat {
    width: min(300px, 70vw);
    left: 50%;
    transform: translateX(-50%);
    object-position: bottom center;
  }

  .final-cta__note {
    position: static;
    max-width: none;
    text-align: center;
    transform: none;
    margin-top: 28px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav {
    padding: 12px 16px;
  }

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

  .dashboard__sidebar {
    display: none;
  }

  .hero__cat--peek {
    width: 160px;
    top: -48px;
  }

  .hero__cat--sit {
    width: 180px;
    right: -16px;
  }

  .kanban-board {
    grid-template-columns: 1fr;
  }

  .kanban-card--dragging {
    display: none;
  }
}
