:root {
  --ink: #070909;
  --graphite: #151817;
  --muted: #646b68;
  --paper: #f5f4ef;
  --ivory: #f7f1df;
  --mocha: #5a4632;
  --mocha-soft: #c8b89a;
  --line: rgba(7, 9, 9, 0.12);
  --orange: #bf3b0a;
  --orange-soft: #f2d6cb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 9, 9, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  transition: background 0.28s ease, color 0.28s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 9, 0.78);
  color: white;
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: clamp(154px, 15vw, 220px);
}

.brand img,
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: white;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.theme-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-soft);
  box-shadow: inset -6px -3px 0 var(--orange);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.button.primary,
.header-action {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 38px rgba(191, 59, 10, 0.24);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.image-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  display: grid;
  min-height: clamp(620px, 76vh, 760px);
  padding: 118px clamp(18px, 5vw, 72px) 64px;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: -3%;
  z-index: -3;
  background: url("assets/hero-bg.png") center / cover;
  animation: bg-drift 22s ease-in-out infinite alternate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

body:not(.theme-light) .hero-video {
  display: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
  position: absolute;
  inset: -12%;
  content: "";
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(242, 214, 203, 0.52) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(191, 59, 10, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 1.4px, transparent 2.2px);
  background-position: 0 0, 38px 54px, 92px 18px;
  background-size: 150px 150px, 210px 210px, 260px 260px;
  animation: particle-float 26s linear infinite;
}

.hero-particles::after {
  opacity: 0.26;
  filter: blur(1px);
  transform: scale(1.2);
  animation-duration: 38s;
  animation-direction: reverse;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 9, 0.9), rgba(7, 9, 9, 0.62) 42%, rgba(7, 9, 9, 0.18)),
    linear-gradient(0deg, rgba(7, 9, 9, 0.5), transparent 42%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: white;
}

.hero-logo {
  max-width: 330px;
  margin: 0 0 20px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.25vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.hero p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.62;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.manifesto-section {
  background: var(--graphite);
  color: white;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.manifesto-text {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.manifesto-text p {
  margin: 0;
}

.manifesto-text strong {
  color: white;
  font-size: 1.08em;
}

.focus-section {
  background:
    linear-gradient(90deg, rgba(245, 244, 239, 0.92), rgba(245, 244, 239, 0.68)),
    url("assets/cat-6.png") center / cover;
}

.focus-panel {
  max-width: 920px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.focus-panel p {
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.focus-panel span,
.focus-panel small {
  display: block;
}

.focus-panel span {
  margin-top: 22px;
  color: var(--graphite);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
}

.focus-panel small {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.cat-section {
  background:
    linear-gradient(90deg, rgba(245, 244, 239, 0.96), rgba(245, 244, 239, 0.72)),
    url("assets/cat-1.png") right center / cover;
}

.copy p,
.section-head p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 24px;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(7, 9, 9, 0.08);
  backdrop-filter: blur(14px);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.spaces-section {
  background:
    linear-gradient(90deg, rgba(7, 9, 9, 0.86), rgba(7, 9, 9, 0.58) 52%, rgba(7, 9, 9, 0.3)),
    url("assets/cat-4.png") center / cover;
  color: white;
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.spaces-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.info-card,
.plan-card {
  min-height: 245px;
  padding: 26px;
  border-radius: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.info-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 800;
}

.info-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.plans-section {
  background: var(--paper);
}

.plans-section .eyebrow,
.contact-section .eyebrow,
.cat-section .eyebrow {
  color: var(--orange);
}

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

.plan-card {
  border: 1px solid var(--line);
  background: white;
}

.plan-card.featured {
  background: var(--graphite);
  color: white;
  border-color: var(--orange);
}

.plan-card small {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--ink);
  font-weight: 800;
}

.price {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 800;
}

.plan-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.plan-card.featured span {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.plan-card.featured ul {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(245, 244, 239, 0.94), rgba(245, 244, 239, 0.74) 50%, rgba(245, 244, 239, 0.5)),
    url("assets/cat-8.png") center / cover;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 58px rgba(7, 9, 9, 0.12);
  backdrop-filter: blur(14px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(7, 9, 9, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(7, 9, 9, 0.44);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(7, 9, 9, 0.24);
}

.floating-whatsapp span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid white;
  border-radius: 50%;
}

.floating-whatsapp span::before {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 8px;
  height: 12px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  border-radius: 0 0 8px 0;
  content: "";
  transform: rotate(32deg);
}

.floating-whatsapp span::after {
  position: absolute;
  left: -5px;
  bottom: -6px;
  width: 11px;
  height: 9px;
  border-left: 3px solid white;
  content: "";
  transform: rotate(-36deg);
}

.pet-cat {
  --pet-x: calc(100vw - 142px);
  --pet-y: calc(100vh - 170px);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 31;
  width: 104px;
  height: 104px;
  border: 0;
  background: transparent;
  cursor: grab;
  filter: drop-shadow(0 18px 24px rgba(7, 9, 9, 0.22));
  transform: translate3d(var(--pet-x), var(--pet-y), 0);
  touch-action: none;
}

.pet-cat:active {
  cursor: grabbing;
}

.pet-cat.is-dragging {
  height: 182px;
}

.pet-cat.is-happy .pet-bubble {
  opacity: 1;
  transform: translate(-50%, -12px) scale(1);
}

.pet-body,
.pet-head,
.pet-tail,
.pet-ear,
.pet-eye,
.pet-nose,
.pet-paw,
.pet-arm,
.pet-hand,
.pet-leg,
.pet-bubble {
  position: absolute;
  display: block;
}

.pet-body {
  left: 22px;
  bottom: 8px;
  width: 68px;
  height: 52px;
  border-radius: 42px 42px 24px 24px;
  background: var(--graphite);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.82);
  transition: all 0.18s ease;
  animation: pet-breathe 3.2s ease-in-out infinite;
}

.pet-head {
  left: 13px;
  top: 15px;
  width: 64px;
  height: 56px;
  border-radius: 48% 48% 44% 44%;
  background: var(--graphite);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.82);
  transform-origin: 50% 80%;
  transition: left 0.18s ease, top 0.18s ease;
  animation: pet-look 5.6s ease-in-out infinite;
}

.pet-ear {
  top: -11px;
  width: 24px;
  height: 25px;
  background: var(--graphite);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.ear-left {
  left: 7px;
  transform: rotate(-16deg);
}

.ear-right {
  right: 7px;
  transform: rotate(16deg);
}

.pet-eye {
  top: 25px;
  width: 7px;
  height: 10px;
  border-radius: 999px;
  background: white;
  animation: pet-blink 4.5s infinite;
}

.eye-left {
  left: 21px;
}

.eye-right {
  right: 21px;
}

.pet-nose {
  left: 29px;
  top: 38px;
  width: 8px;
  height: 6px;
  border-radius: 999px 999px 60% 60%;
  background: var(--orange);
}

.pet-tail {
  right: 6px;
  bottom: 35px;
  width: 42px;
  height: 52px;
  border: 8px solid var(--orange);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 999px 0 0;
  transform-origin: 8px 46px;
  transition: all 0.18s ease;
  animation: pet-tail 2.8s ease-in-out infinite;
}

.pet-paw,
.pet-hand {
  width: 16px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.pet-paw {
  bottom: -3px;
}

.paw-left {
  left: 14px;
}

.paw-right {
  right: 14px;
}

.pet-arm,
.pet-leg,
.pet-hand {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pet-arm,
.pet-leg {
  width: 9px;
  border-radius: 999px;
  background: var(--graphite);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.78);
}

.pet-arm {
  top: 22px;
  height: 46px;
}

.arm-left {
  left: 5px;
}

.arm-right {
  right: 5px;
}

.pet-hand {
  top: 64px;
}

.hand-left {
  left: 1px;
}

.hand-right {
  right: 1px;
}

.pet-leg {
  bottom: -50px;
  height: 48px;
}

.leg-left {
  left: 10px;
}

.leg-right {
  right: 10px;
}

.pet-bubble {
  left: 50%;
  top: -38px;
  min-width: 92px;
  max-width: 150px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--orange);
  font-size: 0.75rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0) scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pet-cat.is-dragging .pet-body {
  left: 31px;
  bottom: 24px;
  width: 50px;
  height: 88px;
  border-radius: 30px 30px 24px 24px;
  animation: pet-dangle 0.9s ease-in-out infinite;
}

.pet-cat.is-dragging .pet-head {
  left: 16px;
  top: 3px;
  animation: pet-drag-head 1.2s ease-in-out infinite;
}

.pet-cat.is-dragging .pet-tail {
  right: 14px;
  bottom: 54px;
  width: 38px;
  height: 84px;
  border-width: 8px;
  transform-origin: 5px 74px;
  animation: pet-tail-drag 0.8s ease-in-out infinite;
}

.pet-cat.is-dragging .pet-paw {
  bottom: -30px;
  z-index: 2;
}

.pet-cat.is-dragging .paw-left {
  left: 8px;
}

.pet-cat.is-dragging .paw-right {
  right: 8px;
}

.pet-cat.is-dragging .pet-arm,
.pet-cat.is-dragging .pet-hand,
.pet-cat.is-dragging .pet-leg {
  opacity: 1;
  transform: translateY(0);
}

.pet-cat.is-dragging .arm-left {
  transform: translateY(0) rotate(7deg);
}

.pet-cat.is-dragging .arm-right {
  transform: translateY(0) rotate(-7deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

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

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-credit b {
  color: var(--orange);
}

.footer-credit i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

body.theme-light {
  --ink: #3f3428;
  --graphite: #5a4632;
  --muted: #786956;
  --paper: #f7f1df;
  --line: rgba(90, 70, 50, 0.18);
  --shadow: 0 24px 70px rgba(90, 70, 50, 0.18);
  background: var(--ivory);
  color: var(--ink);
}

body.theme-light .site-header {
  border-bottom-color: rgba(90, 70, 50, 0.16);
  background: rgba(247, 241, 223, 0.86);
  color: var(--mocha);
}

body.theme-light .main-nav {
  color: rgba(90, 70, 50, 0.72);
}

body.theme-light .main-nav a:hover,
body.theme-light .main-nav a.is-active {
  color: var(--mocha);
}

body.theme-light .theme-toggle {
  border-color: rgba(90, 70, 50, 0.2);
  background: rgba(255, 255, 255, 0.48);
  color: var(--mocha);
}

body.theme-light .theme-icon {
  background: var(--mocha);
  box-shadow: 0 0 0 4px rgba(200, 184, 154, 0.36);
}

body.theme-light .header-action {
  border-color: var(--mocha);
  background: var(--mocha);
}

body.theme-light .hero-bg {
  background-color: var(--ivory);
  background-image: linear-gradient(90deg, #fff9ec, #d8c7a6);
  animation: none;
}

body.theme-light .hero-video {
  display: block;
}

body.theme-light .hero::before {
  display: none;
}

body.theme-light .hero::after {
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 249, 236, 0.94), rgba(255, 249, 236, 0.74) 28%, rgba(255, 249, 236, 0.18) 50%, rgba(255, 249, 236, 0.02) 74%),
    linear-gradient(0deg, rgba(90, 70, 50, 0.18), transparent 32%);
}

body.theme-light .hero-particles {
  display: none;
}

body.theme-light .hero-particles::before,
body.theme-light .hero-particles::after {
  opacity: 0.52;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(200, 184, 154, 0.5) 0 1.2px, transparent 2.4px),
    radial-gradient(circle, rgba(90, 70, 50, 0.18) 0 1px, transparent 2px);
  animation: none;
}

body.theme-light .hero-content,
body.theme-light .hero p {
  color: var(--mocha);
}

body.theme-light .hero p {
  color: rgba(90, 70, 50, 0.78);
}

body.theme-light .hero-logo {
  display: none;
  filter: drop-shadow(0 14px 18px rgba(90, 70, 50, 0.18));
}

body.theme-light .manifesto-section,
body.theme-light .spaces-section {
  background-color: var(--mocha);
}

body.theme-light .focus-section,
body.theme-light .cat-section,
body.theme-light .plans-section,
body.theme-light .contact-section {
  background-color: var(--ivory);
}

body.theme-light .plan-card,
body.theme-light .feature-list article,
body.theme-light .contact-form {
  background: rgba(255, 252, 241, 0.84);
}

body.theme-light .plan-card.featured {
  background: rgba(255, 252, 241, 0.92);
  color: var(--mocha);
}

body.theme-light .plan-card.featured span,
body.theme-light .plan-card.featured ul {
  color: rgba(90, 70, 50, 0.76);
}

body.theme-light .button.ghost {
  background: rgba(255, 252, 241, 0.86);
  color: var(--mocha);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes bg-drift {
  from {
    transform: scale(1.02) translate3d(-1%, -1%, 0);
  }

  to {
    transform: scale(1.08) translate3d(1%, 1%, 0);
  }
}

@keyframes particle-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-120px, -150px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-particles::before,
  .hero-particles::after,
  .pet-body,
  .pet-head,
  .pet-tail,
  .pet-eye {
    animation: none;
  }
}

@keyframes pet-breathe {
  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.94);
  }
}

@keyframes pet-look {
  0%,
  100% {
    transform: rotate(0deg);
  }

  42% {
    transform: rotate(-5deg);
  }

  68% {
    transform: rotate(4deg);
  }
}

@keyframes pet-tail {
  0%,
  100% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(16deg);
  }
}

@keyframes pet-blink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }

  95% {
    transform: scaleY(0.12);
  }
}

@keyframes pet-dangle {
  0%,
  100% {
    transform: scaleY(1.02) rotate(-1deg);
  }

  50% {
    transform: scaleY(1.1) rotate(1deg);
  }
}

@keyframes pet-drag-head {
  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

@keyframes pet-tail-drag {
  0%,
  100% {
    transform: rotate(24deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

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

  .split,
  .manifesto-grid,
  .contact-layout,
  .plan-grid,
  .price-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 680px;
    padding-top: 118px;
  }

  body.theme-light .hero::before {
    display: none;
  }

  body.theme-light .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 249, 236, 0.95), rgba(255, 249, 236, 0.76) 34%, rgba(255, 249, 236, 0.18) 62%, rgba(255, 249, 236, 0)),
      linear-gradient(0deg, rgba(90, 70, 50, 0.18), transparent 32%);
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 142px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 14px;
  }

  .theme-label {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-logo {
    max-width: 260px;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  body.theme-light .hero::before {
    display: none;
  }

  body.theme-light .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 249, 236, 0.92), rgba(255, 249, 236, 0.66) 48%, rgba(255, 249, 236, 0.08)),
      linear-gradient(0deg, rgba(90, 70, 50, 0.18), transparent 34%);
  }

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

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