:root {
  --bg: #f6f2ea;
  --bg2: #eee8de;
  --bg3: #e4deef;
  --surface: rgba(255, 251, 244, 0.72);
  --surface-solid: #fffaf1;
  --surface2: #f1e9ff;
  --border: rgba(35, 29, 51, 0.12);
  --border-strong: rgba(109, 93, 252, 0.26);
  --accent: #6d5dfc;
  --accent-deep: #4f3bea;
  --accent2: #a855f7;
  --accent3: #0f927b;
  --amber: #c47a19;
  --text: #11121a;
  --text2: #565268;
  --text3: #827b91;
  --shadow: 0 28px 80px rgba(33, 24, 56, 0.13);
  --radius: 8px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(120deg, #f8f3ea 0%, #fffaf1 28%, #ece8ff 54%, #f7efe4 78%, #f3f6ff 100%);
  background-size: 180% 180%;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  animation: pageGradient 22s ease-in-out infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  background:
    linear-gradient(140deg, #fffaf1, #f0ecff 54%, #f8f3ea);
}

body.nav-open .site-header {
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 18px 54px rgba(33, 24, 56, 0.14);
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--text);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.cursor-dot {
  width: 7px;
  height: 7px;
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: var(--accent);
  mix-blend-mode: screen;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot.visible {
  opacity: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid rgba(35, 29, 51, 0.11);
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
   -webkit-backdrop-filter: blur(20px);
  transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  padding-block: 13px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 18px 44px rgba(33, 24, 56, 0.12);
}

.nav-logo {
  position: relative;
  z-index: 102;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  color: var(--text2);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.lang-toggle {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 18, 26, 0.045);
}

.lang-toggle button {
  min-width: 38px;
  border: 0;
  border-radius: 6px;
  padding: 5px 9px;
  background: transparent;
  color: var(--text2);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.18s ease, background 0.18s ease;
}

.lang-toggle button.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(241, 233, 255, 0.96));
  box-shadow: 0 10px 30px rgba(33, 24, 56, 0.14);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 13px;
}

.nav-toggle span:nth-child(2) {
  top: 20px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.nav-open .nav-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(860px, 92svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(109, 93, 252, 0.12), transparent 44%),
    linear-gradient(205deg, rgba(15, 146, 123, 0.08), transparent 52%),
    #f8f3ea;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(246, 242, 234, 0.92));
}

.hero-inner,
.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: clamp(36px, 8vw, 96px);
  padding-block: 126px 78px;
}

.hero-content {
  max-width: 790px;
}

.hero-eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero-title {
  margin: 0 0 28px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(60px, 8.6vw, 116px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero-title > span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 18, 26, 0.22);
}

.hero-title > span span {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.hero-desc {
  max-width: 720px;
  margin: 0 0 40px;
  color: var(--text2);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 300;
  line-height: 1.72;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn::after,
.app-link::after {
  content: "->";
  margin-left: 8px;
  color: currentColor;
}

.btn:hover,
.app-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 18px 54px rgba(155, 108, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #aa81ff, #704dff);
  box-shadow: 0 22px 62px rgba(155, 108, 255, 0.42);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.88);
}

.btn-teal {
  background: linear-gradient(135deg, var(--accent3), #8dd8ff);
  color: #06120f;
  box-shadow: 0 18px 48px rgba(105, 232, 199, 0.18);
}

.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.78), rgba(241, 233, 255, 0.7));
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(14px);
  animation: panelFloat 7s ease-in-out infinite;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--text2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pulse-dot,
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(155, 108, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.hero-panel-top .pulse-dot {
  color: var(--accent);
}

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

.stat-item {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.54);
}

.stat-item strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 7px;
  color: var(--text3);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.mini-feed {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mini-feed div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.mini-feed span {
  color: var(--text3);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-feed b {
  color: var(--text);
  font-size: 13px;
}

section {
  position: relative;
  padding-block: clamp(78px, 10vw, 120px);
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
  background:
    linear-gradient(115deg, rgba(109, 93, 252, 0.06), transparent 34%),
    linear-gradient(245deg, rgba(15, 146, 123, 0.04), transparent 42%);
}

section > :not(.hero-canvas) {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 720px;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.section-tag {
  color: var(--accent);
}

.shelter-content .section-tag,
.contact-section .section-tag {
  color: var(--accent2);
}

.section-title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

.section-subtitle {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--text2);
  font-size: 19px;
  font-weight: 300;
}

.apps-section,
.about-section,
.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.62), rgba(246, 242, 234, 0.86)),
    transparent;
}

.shelter-section,
.updates-section {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(241, 233, 255, 0.86), rgba(248, 243, 234, 0.92)),
    var(--bg2);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 10px;
  border: 1px solid rgba(35, 29, 51, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(241, 233, 255, 0.35)),
    rgba(255, 250, 241, 0.52);
}

.app-card,
.value-item,
.aside-card,
.contact-link,
.shelter-dashboard {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.app-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 372px;
  isolation: isolate;
  padding: clamp(24px, 3.2vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.72), rgba(241, 233, 255, 0.56)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.62;
  background:
    linear-gradient(120deg, rgba(109, 93, 252, 0.1), transparent 36%),
    linear-gradient(260deg, rgba(15, 146, 123, 0.055), transparent 44%);
  transition: opacity 0.28s ease;
}

.app-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.55) 48%, transparent 74%);
  transform: translateX(-42%);
}

.app-card > * {
  position: relative;
  z-index: 1;
}

.app-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
  border-color: rgba(190, 153, 255, 0.36);
  box-shadow: 0 28px 90px rgba(33, 24, 56, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.app-card:hover::before {
  opacity: 0.88;
}

.app-card:hover::after {
  animation: cardSheen 1.1s ease;
}

.app-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(109, 93, 252, 0.13), rgba(15, 146, 123, 0.055) 54%, rgba(255, 250, 241, 0.84)),
    var(--surface-solid);
}

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

.app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.app-icon-voku {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.app-icon-pet {
  background: linear-gradient(135deg, #2da6ff, var(--accent3));
}

.app-icon-chat {
  background: linear-gradient(135deg, var(--accent2), #ff8bd3);
}

.app-icon-shelter {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.app-icon-body {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.app-icon-decide {
  background: linear-gradient(135deg, var(--accent3), #2da6ff);
}

.dot-amber {
  background: var(--amber);
}

.social-icon svg,
.contact-link-icon svg {
  width: 18px;
  height: 18px;
}

.app-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  max-width: 170px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.app-card-featured .app-status {
  max-width: none;
  white-space: nowrap;
}

.status-live {
  border: 1px solid rgba(15, 146, 123, 0.25);
  background: rgba(15, 146, 123, 0.09);
  color: var(--accent3);
}

.status-review {
  border: 1px solid rgba(196, 122, 25, 0.25);
  background: rgba(196, 122, 25, 0.08);
  color: var(--amber);
}

.status-dev {
  border: 1px solid rgba(212, 107, 255, 0.25);
  background: rgba(168, 85, 247, 0.09);
  color: var(--accent2);
}

.app-name {
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(25px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.app-tagline {
  margin: 0 0 24px;
  color: var(--text2);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 22px;
}

.app-tag {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--text2);
  padding: 5px 9px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.app-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.phone-mockup {
  justify-self: center;
  width: min(100%, 252px);
  aspect-ratio: 0.54;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(145deg, #493774, #0d0a18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  animation: phoneFloat 6.5s ease-in-out infinite;
}

.phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 20px 15px 15px;
  background: #07070d;
}

.phone-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: #202232;
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(155, 108, 255, 0.34), rgba(105, 232, 199, 0.08)),
    #10111c;
}

.phone-screen .screen-date {
  position: absolute;
  top: 44px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-screen strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 38px);
  font-weight: 800;
  line-height: 0.95;
}

.phone-screen small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.screen-widget-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 38px;
}

.screen-widget-row span,
.app-preview span,
.need-list span,
.dashboard-top span {
  display: block;
  border-radius: 999px;
  background: rgba(17, 18, 26, 0.14);
}

.screen-widget-row span {
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  animation: widgetPulse 3s ease-in-out infinite;
}

.screen-widget-row span:nth-child(2) {
  animation-delay: 0.25s;
}

.screen-widget-row span:nth-child(3) {
  animation-delay: 0.5s;
}

.app-preview {
  display: grid;
  gap: 10px;
  margin-block: auto 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(241, 233, 255, 0.22)),
    rgba(255, 250, 241, 0.34);
}

.app-preview span {
  height: 12px;
}

.app-preview span:nth-child(1) {
  width: 66%;
  background: rgba(17, 18, 26, 0.2);
}

.app-preview span:nth-child(2) {
  width: 88%;
}

.app-preview span:nth-child(3) {
  width: 52%;
}

.app-preview-pet {
  box-shadow: inset 4px 0 0 rgba(105, 232, 199, 0.72);
}

.app-preview-chat {
  box-shadow: inset 4px 0 0 rgba(212, 107, 255, 0.7);
}

.app-preview-shelter {
  box-shadow: inset 4px 0 0 rgba(109, 93, 252, 0.72);
}

.shelter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 88px);
}

.shelter-dashboard {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(15, 146, 123, 0.08), rgba(109, 93, 252, 0.12)),
    var(--surface-solid);
  box-shadow: var(--shadow);
  animation: dashboardFloat 7.5s ease-in-out infinite;
}

.shelter-dashboard::before {
  content: "";
  position: absolute;
  inset: 72px 22px auto;
  height: 1px;
  background: var(--border);
}

.dashboard-top {
  display: flex;
  gap: 8px;
}

.dashboard-top span {
  width: 11px;
  height: 11px;
}

.dashboard-top span:nth-child(1) {
  background: var(--accent2);
}

.dashboard-top span:nth-child(2) {
  background: var(--amber);
}

.dashboard-top span:nth-child(3) {
  background: var(--accent3);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  margin-top: 54px;
}

.animal-profile,
.dashboard-metric,
.need-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.animal-profile {
  min-height: 230px;
  padding: 18px;
}

.main-profile {
  grid-row: span 2;
}

.profile-photo {
  display: block;
  width: 100%;
  height: 132px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 64% 26%, rgba(255, 255, 255, 0.7) 0 7%, transparent 8%),
    linear-gradient(135deg, rgba(105, 232, 199, 0.72), rgba(155, 108, 255, 0.7));
}

.animal-profile strong,
.dashboard-metric strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.animal-profile small,
.dashboard-metric small {
  display: block;
  margin-top: 8px;
  color: var(--text3);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-metric {
  padding: 18px;
}

.need-list {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 110px;
  padding: 18px;
}

.need-list span {
  height: 10px;
}

.need-list span:nth-child(1) {
  width: 88%;
}

.need-list span:nth-child(2) {
  width: 64%;
}

.need-list span:nth-child(3) {
  width: 78%;
}

.shelter-features {
  display: grid;
  gap: 22px;
  margin-block: 34px;
}

.shelter-feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(105, 232, 199, 0.24);
  border-radius: var(--radius);
  background: rgba(15, 146, 123, 0.08);
  color: var(--accent3);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.feature-text h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.feature-text p {
  margin: 0;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.55;
}

.about-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 8vw, 90px);
}

.about-sidebar {
  position: sticky;
  top: 102px;
}

.about-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(155, 108, 255, 0.94), rgba(212, 107, 255, 0.86)),
    var(--surface-solid);
  color: #fff;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
}

.about-name {
  margin: 0 0 4px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.about-role {
  margin: 0 0 24px;
  color: var(--text2);
  font-size: 15px;
}

.about-socials {
  display: grid;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.social-link:hover {
  color: var(--text);
  transform: translateX(3px);
}

.social-icon,
.contact-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.social-icon {
  width: 34px;
  height: 34px;
}

.about-text p {
  margin: 0 0 22px;
  color: var(--text2);
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 1.8;
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.highlight {
  color: var(--accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.value-item {
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(241, 233, 255, 0.26)),
    var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.value-item:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 153, 255, 0.36);
}

.value-mark {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.value-title {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.value-desc {
  margin: 0;
  color: var(--text3);
  font-size: 14px;
  line-height: 1.45;
}

.updates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(30px, 6vw, 56px);
}

.updates-list {
  display: grid;
}

.update-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.update-item:first-child {
  padding-top: 0;
}

.update-date {
  color: var(--text3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  padding-top: 6px;
  text-align: right;
}

.update-app-tag {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.update-title {
  margin: 0 0 7px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  transition: color 0.18s ease;
}

.update-item:hover .update-title {
  color: var(--accent);
}

.update-desc {
  margin: 0;
  color: var(--text2);
  font-size: 17px;
}

.updates-aside {
  display: grid;
  align-content: start;
  gap: 16px;
}

.aside-card {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(241, 233, 255, 0.26)),
    var(--surface);
}

.aside-card-title {
  margin: 0 0 16px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}

.roadmap-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.roadmap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-teal {
  background: var(--accent3);
}

.dot-violet {
  background: var(--accent);
}

.dot-pink {
  background: var(--accent2);
}

.dot-muted {
  background: var(--text3);
}

.roadmap-item-name {
  min-width: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.roadmap-item-q {
  color: var(--text3);
  font-size: 13px;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: clamp(42px, 8vw, 90px);
}

.contact-big-text {
  margin: 0 0 22px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(48px, 6.8vw, 88px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.contact-big-text span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 18, 26, 0.2);
}

.contact-desc {
  max-width: 520px;
  margin: 0;
  color: var(--text2);
  font-size: 19px;
  font-weight: 300;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
  transform: translateX(4px);
  border-color: rgba(190, 153, 255, 0.34);
  background: var(--surface2);
}

.contact-link-icon {
  width: 48px;
  height: 48px;
}

.contact-link-info {
  display: grid;
  min-width: 0;
}

.contact-link-name {
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
}

.contact-link-handle {
  overflow: hidden;
  color: var(--text2);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-link-arrow {
  color: var(--text3);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 28px clamp(20px, 4vw, 48px);
  background: rgba(246, 242, 234, 0.92);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--text3);
  font-size: 14px;
  text-decoration: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

@keyframes pageGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.2deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.2deg);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes widgetPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes cardSheen {
  0% {
    opacity: 0;
    transform: translateX(-44%);
  }
  28% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: translateX(44%);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px 16px;
    z-index: 101;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(35, 29, 51, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(150deg, #fffaf1, #f0ecff);
    box-shadow: 0 30px 90px rgba(33, 24, 56, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 60px;
    border: 1px solid rgba(35, 29, 51, 0.11);
    border-radius: var(--radius);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(24px, 6.5vw, 38px);
    font-weight: 800;
    line-height: 1.05;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.18s ease, border-color 0.18s ease;
  }

  .nav-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-open .nav-links li:nth-child(2) a {
    transition-delay: 40ms;
  }

  .nav-open .nav-links li:nth-child(3) a {
    transition-delay: 80ms;
  }

  .nav-open .nav-links li:nth-child(4) a {
    transition-delay: 120ms;
  }

  .nav-open .nav-links li:nth-child(5) a {
    transition-delay: 160ms;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-color: rgba(190, 153, 255, 0.32);
    background: rgba(155, 108, 255, 0.12);
  }

  .lang-toggle {
    width: 100%;
    align-self: end;
    background: rgba(17, 18, 26, 0.045);
  }

  .lang-toggle button {
    flex: 1;
    padding-block: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 118px 62px;
  }

  .hero-panel {
    width: min(100%, 500px);
  }

  .apps-grid,
  .shelter-layout,
  .about-layout,
  .updates-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .phone-mockup {
    width: min(68vw, 238px);
  }

  .about-sidebar {
    position: static;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .hero-inner,
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    padding-block: 94px 44px;
  }

  .hero-panel {
    display: none;
  }

  .hero-eyebrow,
  .section-tag {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .hero-title {
    font-size: clamp(38px, 12.5vw, 74px); 
    margin-bottom: 22px;
    word-break: break-word;
  }

  .hero-desc {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.62;
  }

  .hero-ctas,
  .btn {
    width: 100%;
  }

  section {
    padding-block: 70px;
  }

  .section-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section-subtitle,
  .contact-desc {
    font-size: 17px;
  }

  .apps-grid {
    gap: 10px;
    padding: 8px;
  }

  .app-card {
    min-height: auto;
    padding: 22px;
  }

  .app-name {
    font-size: 25px;
  }

  .app-tagline {
    font-size: 16px;
  }

  .app-header {
    align-items: flex-start;
  }

  .app-status {
    max-width: 140px;
    text-align: left;
  }

  .phone-mockup {
    width: min(74vw, 216px);
  }

  .shelter-dashboard {
    min-height: 360px;
    padding: 16px;
  }

  .shelter-dashboard::before {
    inset-inline: 16px;
  }

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

  .main-profile {
    grid-row: auto;
  }

  .animal-profile {
    min-height: auto;
  }

  .profile-photo {
    height: 114px;
  }

  .values-grid,
  .updates-aside {
    grid-template-columns: 1fr;
  }

  .update-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .update-date {
    padding-top: 0;
    text-align: left;
  }

  .contact-link {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .contact-link-icon {
    width: 42px;
    height: 42px;
  }

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

@media (max-width: 390px) {
  .hero-inner,
  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .app-header {
    flex-direction: column;
  }

  .app-status {
    max-width: 100%;
  }

  .shelter-feature {
    grid-template-columns: 1fr;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
