:root {
  --bg-deep: #080816;
  --bg-surface: #0e0e24;
  --bg-card: rgba(20, 20, 50, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  --pink: #ff6b9d;
  --cyan: #00e5ff;
  --purple: #b44dff;
  --yellow: #ffe66d;
  --green: #69ff97;
  --text-primary: #f0f0f8;
  --text-secondary: rgba(240, 240, 248, 0.65);
  --text-muted: rgba(240, 240, 248, 0.4);
  --font-display: 'Comfortaa', cursive;
  --font-body: 'Nunito', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Nunito', sans-serif;
  background: #080816;
  color: #f0f0f8;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: #00e5ff;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #ff6b9d;
}
img {
  max-width: 100%;
  display: block;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float-mesh {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  100% {
    transform: translate(30px, -10px) scale(1.02);
  }
}
.section,
.download-section,
.footer {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.5rem;
}
.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b9d;
  animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing-bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg) scale(1.1);
  }
  75% {
    transform: rotate(8deg) scale(1.1);
  }
}
.cute-emoji {
  display: inline-block;
  animation: wiggle 2s ease-in-out infinite;
}
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.bg-mesh::before,
.bg-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: float-mesh 20s ease-in-out infinite alternate;
}
.bg-mesh::before {
  width: 600px;
  height: 600px;
  background: #ff6b9d;
  top: -200px;
  right: -100px;
  animation-delay: -5s;
}
.bg-mesh::after {
  width: 500px;
  height: 500px;
  background: #b44dff;
  bottom: -150px;
  left: -100px;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float-mesh 25s ease-in-out infinite alternate;
}
.bg-orb--cyan {
  width: 400px;
  height: 400px;
  background: #00e5ff;
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}
.bg-orb--yellow {
  width: 300px;
  height: 300px;
  background: #ffe66d;
  top: 60%;
  right: 20%;
  animation-delay: -15s;
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2.5rem;
}
.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.72rem 1rem;
  border-radius: 28px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(8, 8, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.15rem;
  color: #f0f0f8;
}
.nav-logo .nav-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255, 107, 157, 0.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(240, 240, 248, 0.65);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: #f0f0f8;
  background: rgba(255, 255, 255, 0.04);
}
.nav-cta {
  font-family: 'Comfortaa', cursive !important;
  font-size: 0.85rem !important;
  color: #080816 !important;
  background: linear-gradient(135deg, #00e5ff, #69ff97) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.35), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  color: #080816 !important;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 2px;
}
.lang-switch .lang-btn {
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(240, 240, 248, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-switch .lang-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #f0f0f8;
}
.nav-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.86rem;
}
.nav-user-icon {
  font-size: 1rem;
}
.nav-logout-link {
  color: #ff6b9d !important;
}
.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #f0f0f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu-toggle span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: #f0f0f8;
  display: block;
}
.nav-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hero {
  position: relative;
  padding: 140px 2.5rem 6rem;
}
.hero-shell {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 4rem;
  align-items: center;
  padding: 4rem 2.5rem;
  border-radius: 28px;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(135deg, rgba(20, 20, 50, 0.7), rgba(14, 14, 36, 0.5));
  box-shadow: 0 0 60px rgba(180, 77, 255, 0.08), 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.hero-shell::before {
  content: '';
  position: absolute;
  top: 4rem;
  bottom: 4rem;
  left: calc(52% - 0.5px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.hero-shell::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: rgba(240, 240, 248, 0.65);
  margin-bottom: 2.5rem;
  gap: 0.5rem;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #69ff97;
  box-shadow: 0 0 8px rgba(105, 255, 151, 0.3);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b9d, #b44dff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: rgba(240, 240, 248, 0.65);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: grid;
  gap: 0.5rem;
  max-width: 560px;
}
.hero-proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.78rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.9rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-proof-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}
.hero-proof-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 600;
}
.hero-panel-stack {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.5rem 1rem;
  animation: fadeInUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-panel-stack::before {
  content: '';
  position: absolute;
  inset: 48px 8px 8px 56px;
  border-radius: 28px;
  background: rgba(180, 77, 255, 0.04);
  border: 1px solid rgba(180, 77, 255, 0.08);
  pointer-events: none;
}
.hero-panel {
  position: relative;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
  background: linear-gradient(155deg, rgba(20, 20, 50, 0.8), rgba(14, 14, 36, 0.6));
  box-shadow: 0 0 40px rgba(180, 77, 255, 0.08), 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b9d, #b44dff, #00e5ff);
  opacity: 0.6;
}
.hero-panel-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}
.hero-window-dots {
  display: flex;
  gap: 0.44rem;
}
.hero-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-window-dots span:nth-child(1) {
  background: #ff5f57;
}
.hero-window-dots span:nth-child(2) {
  background: #ffbd2e;
}
.hero-window-dots span:nth-child(3) {
  background: #28ca42;
}
.hero-window-path {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(240, 240, 248, 0.4);
  letter-spacing: 0.04em;
}
.hero-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-panel-label {
  font-family: 'Comfortaa', cursive;
  font-size: 1.06rem;
  font-weight: 700;
}
.hero-panel-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(240, 240, 248, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-raw-card,
.hero-output-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-raw-card {
  background: linear-gradient(145deg, rgba(180, 77, 255, 0.08), rgba(255, 107, 157, 0.05));
  border-color: rgba(180, 77, 255, 0.12);
}
.hero-card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(240, 240, 248, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.hero-raw-text,
.hero-output-card p:last-child {
  color: rgba(240, 240, 248, 0.65);
  line-height: 1.75;
  font-size: 0.92rem;
}
.hero-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.hero-output-card {
  min-height: 148px;
}
.hero-output-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.hero-output-card--clean {
  background: linear-gradient(160deg, rgba(105, 255, 151, 0.06), rgba(0, 229, 255, 0.04));
  border-color: rgba(105, 255, 151, 0.1);
}
.hero-output-card--clean .hero-card-eyebrow {
  color: #69ff97;
}
.hero-output-card--client {
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.06), rgba(180, 77, 255, 0.04));
  border-color: rgba(0, 229, 255, 0.1);
}
.hero-output-card--client .hero-card-eyebrow {
  color: #00e5ff;
}
.hero-output-card--note {
  grid-column: 1 / -1;
  min-height: 0;
  background: linear-gradient(160deg, rgba(255, 107, 157, 0.06), rgba(255, 230, 109, 0.04));
  border-color: rgba(255, 107, 157, 0.1);
}
.hero-output-card--note .hero-card-eyebrow {
  color: #ff6b9d;
}
.hero-flow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-flow-step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: rgba(240, 240, 248, 0.65);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-flow-step:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.hero-flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -0.72rem;
  transform: translateY(-50%);
  font-size: 0.72rem;
  color: rgba(240, 240, 248, 0.4);
}
.hero-flow-index {
  font-family: 'JetBrains Mono', monospace;
  color: #00e5ff;
  font-size: 0.74rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #ff6b9d, #b44dff);
  color: white;
  box-shadow: 0 0 30px rgba(255, 107, 157, 0.4), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 40px rgba(255, 107, 157, 0.4), 0 12px 40px rgba(0, 0, 0, 0.4);
  color: white;
}
.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0f0f8;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f0f0f8;
}
.btn-secondary:active,
.btn-ghost:active {
  transform: translateY(0);
}
.btn-full {
  width: 100%;
}
.section {
  padding: 6rem 2.5rem 4rem;
  max-width: 1240px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b9d;
}
.section-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 820px;
}
.section-desc {
  color: rgba(240, 240, 248, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.features-grid,
.sync-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.features-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}
.feature-card,
.flow-card {
  position: relative;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card::before,
.flow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b9d, #b44dff, #00e5ff);
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover,
.flow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(180, 77, 255, 0.05);
}
.feature-card:hover::before,
.flow-card:hover::before {
  opacity: 1;
}
.feature-index,
.flow-step-number,
.mode-badge,
.download-check-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.feature-title {
  position: relative;
  z-index: 1;
  font-family: 'Comfortaa', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.feature-desc {
  position: relative;
  z-index: 1;
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.92rem;
  line-height: 1.8;
}
.feature-card {
  grid-column: span 4;
  min-height: 250px;
}
.feature-card--lead {
  grid-column: span 7;
  min-height: 300px;
}
.feature-card--lead .feature-index {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
}
.feature-card--studio {
  grid-column: span 5;
}
.feature-card--studio .feature-index {
  color: #b44dff;
  background: rgba(180, 77, 255, 0.1);
}
.feature-card--ink .feature-index {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
}
.feature-card--sand .feature-index {
  color: #ffe66d;
  background: rgba(255, 230, 109, 0.1);
}
.feature-card--sage .feature-index {
  color: #69ff97;
  background: rgba(105, 255, 151, 0.1);
}
.feature-card--summary {
  grid-column: span 12;
  min-height: 0;
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.flow-card .flow-step-number {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
  font-weight: 600;
}
.avatars-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.avatar-pill {
  position: relative;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  min-height: 168px;
  grid-column: span 3;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.avatar-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b9d, #b44dff);
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.avatar-pill:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.avatar-pill:hover::before {
  opacity: 1;
}
.mode-badge {
  margin-bottom: 0;
  color: #ff6b9d;
  min-width: 56px;
  font-weight: 600;
}
.avatar-pill-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.avatar-pill-seed {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.73rem;
  color: rgba(240, 240, 248, 0.4);
  letter-spacing: 0.08em;
}
.avatar-pill-copy {
  position: relative;
  z-index: 1;
}
.avatar-pill .name {
  font-family: 'Comfortaa', cursive;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.avatar-pill .desc {
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.88rem;
  line-height: 1.65;
}
.avatar-pill--warm .mode-badge {
  color: #ff6b9d;
  background: rgba(255, 107, 157, 0.1);
}
.avatar-pill--cool .mode-badge {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
}
.avatar-pill--mist .mode-badge {
  color: #69ff97;
  background: rgba(105, 255, 151, 0.1);
}
.avatar-pill--stone .mode-badge {
  color: #b44dff;
  background: rgba(180, 77, 255, 0.1);
}
.avatar-pill--blush .mode-badge {
  color: #ff6b9d;
  background: rgba(255, 107, 157, 0.1);
}
.avatar-pill--paper .mode-badge {
  color: #ffe66d;
  background: rgba(255, 230, 109, 0.1);
}
.avatar-pill--ink .mode-badge {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
}
.avatar-pill--sage .mode-badge {
  color: #69ff97;
  background: rgba(105, 255, 151, 0.1);
}
.sync-actions {
  margin-top: 2.5rem;
}
.context-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 1.5rem;
  align-items: stretch;
}
.context-card {
  min-height: 0;
}
.context-portal-card {
  position: relative;
  background: rgba(20, 20, 50, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 107, 157, 0.06), rgba(180, 77, 255, 0.04));
}
.context-portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b9d, #b44dff);
  opacity: 0.5;
}
.context-portal-label,
.context-portal-note,
.context-portal-points,
.context-portal-card .sync-actions {
  position: relative;
  z-index: 1;
}
.context-portal-label {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6b9d;
}
.context-portal-note {
  font-family: 'Comfortaa', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.context-portal-points {
  display: grid;
  gap: 0.5rem;
}
.context-portal-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.78rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(240, 240, 248, 0.65);
}
.context-portal-point:first-child {
  border-top: none;
  padding-top: 0;
}
.context-portal-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 600;
}
.download-section {
  padding: 4rem 2.5rem 6rem;
}
.download-card {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 4rem;
  align-items: start;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.06), rgba(180, 77, 255, 0.05), rgba(0, 229, 255, 0.04));
  box-shadow: 0 0 60px rgba(180, 77, 255, 0.06), 0 30px 80px rgba(0, 0, 0, 0.3);
}
.download-card::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  top: -130px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}
.download-card::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: calc(52% - 0.5px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}
.download-copy {
  position: relative;
  z-index: 1;
  padding-right: 1.5rem;
}
.download-copy .section-label {
  margin-bottom: 1rem;
}
.download-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.download-desc {
  color: rgba(240, 240, 248, 0.65);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(240, 240, 248, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}
.download-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.download-checklist {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
}
.download-checklist-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.download-checklist-items {
  display: grid;
  gap: 0.5rem;
}
.download-check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.76rem 0;
  font-size: 0.92rem;
  color: rgba(240, 240, 248, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.download-check-item:first-child {
  border-top: none;
  padding-top: 0;
}
.download-check-index {
  margin-bottom: 0;
  color: #69ff97;
  background: rgba(105, 255, 151, 0.1);
}
.download-support {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.download-note {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-top: 0;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 107, 157, 0.05);
  border-left: 3px solid rgba(255, 107, 157, 0.4);
}
.download-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}
.download-trust-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.88rem;
  padding: 0.64rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.download-trust-links a:hover {
  color: #f0f0f8;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.footer {
  padding: 4rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-content {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.4fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand-block,
.footer-columns,
.footer-copy {
  position: relative;
  z-index: 1;
}
.footer-brand {
  font-family: 'Comfortaa', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-note,
.footer-copy {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-columns {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
}
.footer-column {
  min-width: 150px;
}
.footer-column-title {
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b9d;
}
.footer-links {
  list-style: none;
  display: grid;
  gap: 0.72rem;
}
.footer-links a {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
  color: #f0f0f8;
}
.footer-copy {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-page {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 6rem;
}
.trust-hero {
  padding-top: 0;
}
.trust-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem;
  border-radius: 28px;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(145deg, rgba(20, 20, 50, 0.6), rgba(14, 14, 36, 0.4));
  box-shadow: 0 0 40px rgba(180, 77, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.trust-hero-shell::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: calc(50% - 0.5px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.trust-hero-copy,
.trust-hero-side {
  position: relative;
  z-index: 1;
}
.trust-hero-side {
  display: grid;
  gap: 1rem;
}
.trust-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.trust-switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.88rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.trust-switch-link:hover {
  color: #f0f0f8;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.trust-switch-link.is-active {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.2);
  color: #f0f0f8;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}
.trust-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 840px;
}
.trust-desc {
  color: rgba(240, 240, 248, 0.65);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 760px;
}
.trust-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.83rem;
  font-family: 'JetBrains Mono', monospace;
}
.trust-proof {
  margin-top: 0;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.5rem;
}
.trust-proof-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.trust-proof-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.trust-proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.9rem;
  line-height: 1.75;
}
.trust-proof-index {
  font-family: 'Comfortaa', cursive;
  font-size: 0.78rem;
  font-weight: 700;
  color: #00e5ff;
  min-width: 24px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
.trust-card {
  grid-column: span 3;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.trust-card--lead {
  grid-column: span 6;
}
.trust-card-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.trust-card-body {
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.92rem;
  line-height: 1.85;
}
.trust-card-points {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-card-point {
  position: relative;
  padding-left: 1rem;
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.86rem;
  line-height: 1.7;
}
.trust-card-point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.35);
}
.trust-card-index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #00e5ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding-top: 0.5rem;
}
.trust-actions-copy {
  max-width: 620px;
}
.trust-actions-note {
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.94rem;
  line-height: 1.85;
}
.trust-actions-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #f0f0f8;
  font-size: 0.86rem;
  z-index: 300;
  opacity: 0;
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: #ff6b9d;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.text-gradient {
  background: linear-gradient(135deg, #ff6b9d, #b44dff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-page {
  position: relative;
  min-height: 100vh;
  padding: 140px 2.5rem 6rem;
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 108px 2.5rem auto;
  height: 520px;
  border-radius: 42px;
  background: radial-gradient(circle at 14% 18%, rgba(31, 75, 104, 0.12), transparent 28%), radial-gradient(circle at 86% 20%, rgba(182, 101, 58, 0.1), transparent 24%), linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(16, 32, 45, 0.05);
  pointer-events: none;
}
.auth-shell {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 4rem;
  align-items: start;
  padding: 2.5rem;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(16, 32, 45, 0.06);
  box-shadow: 0 24px 70px rgba(58, 44, 32, 0.08);
  overflow: hidden;
}
.auth-shell::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: calc(56% - 0.5px);
  width: 1px;
  background: linear-gradient(180deg, rgba(16, 32, 45, 0), rgba(16, 32, 45, 0.12), rgba(16, 32, 45, 0));
}
.auth-intro,
.auth-card {
  position: relative;
  z-index: 1;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 4rem;
  box-shadow: 0 24px 70px rgba(58, 44, 32, 0.1);
  overflow: hidden;
}
.auth-intro::before,
.auth-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.auth-intro {
  background: radial-gradient(circle at top right, rgba(31, 75, 104, 0.12), transparent 28%), linear-gradient(155deg, rgba(255, 255, 255, 0.84), rgba(231, 238, 243, 0.8));
}
.auth-card {
  background: radial-gradient(circle at bottom right, rgba(182, 101, 58, 0.1), transparent 28%), linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(245, 239, 231, 0.82));
}
.auth-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 45, 0.08);
  color: #ff6b9d;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 24px rgba(58, 44, 32, 0.04);
}
.auth-title {
  position: relative;
  z-index: 1;
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.auth-subtitle {
  position: relative;
  z-index: 1;
  color: rgba(240, 240, 248, 0.65);
  font-size: 1.02rem;
  line-height: 1.8;
}
.auth-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  margin: 2.5rem 0;
  counter-reset: auth-point;
}
.auth-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.86rem 1rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 32, 45, 0.08);
  border-radius: 14px;
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.92rem;
}
.auth-point::before {
  counter-increment: auth-point;
  content: "0" counter(auth-point);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(16, 32, 45, 0.05);
  color: #ff6b9d;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 600;
}
.auth-intro .btn {
  position: relative;
  z-index: 1;
}
.auth-window {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(16, 32, 45, 0.08);
}
.auth-window-dots {
  display: flex;
  gap: 0.42rem;
}
.auth-window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(16, 32, 45, 0.18);
}
.auth-window-dots span:nth-child(1) {
  background: rgba(255, 107, 157, 0.6);
}
.auth-window-dots span:nth-child(2) {
  background: rgba(255, 230, 109, 0.54);
}
.auth-window-dots span:nth-child(3) {
  background: rgba(105, 255, 151, 0.58);
}
.auth-window-path {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(240, 240, 248, 0.4);
  letter-spacing: 0.04em;
}
.auth-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
.auth-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00e5ff, #00c0d6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Comfortaa', cursive;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  box-shadow: 0 14px 30px rgba(31, 75, 104, 0.18);
}
.auth-card-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: rgba(240, 240, 248, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.auth-card-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.6rem;
  font-weight: 700;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240, 240, 248, 0.65);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 32, 45, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: #f0f0f8;
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  outline: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-input:focus {
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}
.form-input::placeholder {
  color: rgba(240, 240, 248, 0.4);
}
.form-error {
  color: #ff6b9d;
  font-size: 0.84rem;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  display: none;
}
.form-error.visible {
  display: block;
}
.auth-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 32, 45, 0.08);
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.9rem;
}
.auth-footer a {
  color: #00e5ff;
  font-weight: 600;
}
.demo-hint {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(16, 32, 45, 0.04);
  border-radius: 14px;
  border-left: 3px solid rgba(255, 107, 157, 0.7);
}
.demo-hint p {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.84rem;
  line-height: 1.8;
}
.dashboard {
  position: relative;
  padding-top: 92px;
  min-height: 100vh;
}
.dash-header {
  padding: 2.5rem 2.5rem 0;
}
.dash-header-shell {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3));
  border: 1px solid rgba(16, 32, 45, 0.08);
  box-shadow: 0 24px 70px rgba(58, 44, 32, 0.08);
  overflow: hidden;
}
.dash-header-shell::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 75, 104, 0.12), transparent 72%);
  pointer-events: none;
}
.dash-identity,
.dash-stats {
  position: relative;
  z-index: 1;
}
.dash-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.84rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 32, 45, 0.08);
  color: rgba(240, 240, 248, 0.65);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dash-welcome {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0.25rem;
}
.dash-welcome .wave {
  display: inline-block;
  animation: wave-hand 2s ease-in-out infinite;
  transform-origin: 70% 70%;
}
.dash-subtitle {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-top: 0.25rem;
  max-width: 520px;
}
.dash-note {
  margin-top: 1rem;
  max-width: 540px;
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.88rem;
  line-height: 1.8;
}
@keyframes wave-hand {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60%,
  100% {
    transform: rotate(0deg);
  }
}
.dash-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  display: grid;
  gap: 0.32rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 32, 45, 0.08);
  box-shadow: 0 12px 24px rgba(58, 44, 32, 0.04);
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  min-width: 136px;
}
.stat-pill .stat-pill-key {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-pill .stat-val {
  font-weight: 700;
  font-size: 1.04rem;
  color: #00e5ff;
}
.stat-pill--avatars {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(246, 235, 230, 0.78));
}
.stat-pill--conversations {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(231, 239, 243, 0.78));
}
.stat-pill--memories {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(232, 240, 235, 0.78));
}
.dash-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 6rem;
}
.dash-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dash-section-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.22rem;
  font-weight: 700;
  color: rgba(240, 240, 248, 0.65);
}
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.avatar-card {
  position: relative;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  box-shadow: 0 18px 48px rgba(58, 44, 32, 0.08);
  animation: fadeInUp 0.6s var(--ease-smooth) both;
}
.avatar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}
.avatar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.avatar-card:hover {
  border-color: rgba(16, 32, 45, 0.12);
}
.avatar-card:nth-child(2) {
  animation-delay: 0.08s;
}
.avatar-card:nth-child(3) {
  animation-delay: 0.16s;
}
.avatar-card:nth-child(4) {
  animation-delay: 0.24s;
}
.avatar-card:nth-child(5) {
  animation-delay: 0.32s;
}
.avatar-card:nth-child(6) {
  animation-delay: 0.4s;
}
.avatar-card-header,
.avatar-card-stats,
.avatar-card-tags,
.avatar-card-footer {
  position: relative;
  z-index: 1;
}
.avatar-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.avatar-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(58, 44, 32, 0.12);
}
.avatar-card-name {
  font-family: 'Comfortaa', cursive;
  font-size: 1.12rem;
  font-weight: 700;
}
.avatar-card-role {
  font-size: 0.82rem;
  color: rgba(240, 240, 248, 0.4);
}
.avatar-card-stats {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.avatar-card-stat {
  display: grid;
  gap: 0.2rem;
  font-size: 0.82rem;
  color: rgba(240, 240, 248, 0.65);
  font-family: 'JetBrains Mono', monospace;
  flex: 1 1 0;
}
.avatar-card-stat .avatar-card-stat-key {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.avatar-card-stat .val {
  color: rgba(240, 240, 248, 0.65);
  font-weight: 600;
  font-size: 1rem;
}
.avatar-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.avatar-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
}
.avatar-tag--cyan {
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
}
.avatar-tag--purple {
  background: rgba(180, 77, 255, 0.1);
  color: #b44dff;
}
.avatar-tag--yellow {
  background: rgba(255, 230, 109, 0.1);
  color: #ffe66d;
}
.avatar-tag--green {
  background: rgba(105, 255, 151, 0.1);
  color: #69ff97;
}
.avatar-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 32, 45, 0.08);
}
.avatar-card-footer-copy {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.82rem;
  line-height: 1.6;
}
.avatar-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(240, 240, 248, 0.65);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.avatar-card-link::after {
  content: '↗';
}
.context-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 600px;
  max-width: 90vw;
  background: #0e0e24;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 200;
  overflow-y: auto;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}
.context-panel.active {
  display: block;
}
.context-panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 30, 0.32);
  z-index: 199;
  backdrop-filter: blur(6px);
}
.context-panel-overlay.active {
  display: block;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.context-header {
  padding: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 1;
  backdrop-filter: blur(18px);
}
.context-header-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.context-avatar-swatch {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 14px 24px rgba(58, 44, 32, 0.12);
}
.context-avatar-name {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.08rem;
}
.context-avatar-role {
  font-size: 0.82rem;
  color: rgba(240, 240, 248, 0.4);
}
.context-avatar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.34rem;
}
.context-avatar-tag {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.74rem;
  font-family: 'JetBrains Mono', monospace;
}
.context-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 240, 248, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.context-close:hover {
  background: rgba(16, 32, 45, 0.06);
  color: #f0f0f8;
}
.context-body {
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
.context-summary {
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(233, 239, 242, 0.72));
  border: 1px solid rgba(16, 32, 45, 0.08);
  box-shadow: 0 18px 42px rgba(58, 44, 32, 0.06);
}
.context-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.context-summary-item {
  display: grid;
  gap: 0.32rem;
  padding-right: 0.5rem;
}
.context-summary-label {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.context-summary-value {
  color: rgba(240, 240, 248, 0.65);
  font-family: 'Comfortaa', cursive;
  font-size: 1rem;
  line-height: 1.2;
}
.context-summary-note {
  margin-top: 1rem;
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.88rem;
  line-height: 1.75;
}
.context-block {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 45, 0.08);
  box-shadow: 0 14px 32px rgba(58, 44, 32, 0.05);
}
.context-block-index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #00e5ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.context-block-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(240, 240, 248, 0.65);
  margin-bottom: 1rem;
}
.context-item {
  background: rgba(16, 32, 45, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(240, 240, 248, 0.65);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.context-item:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(16, 32, 45, 0.1);
}
.context-item .source {
  font-size: 0.75rem;
  color: rgba(240, 240, 248, 0.4);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0.25rem;
}
.context-timeline {
  position: relative;
  padding-left: 24px;
}
.context-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(31, 75, 104, 0.22), rgba(31, 75, 104, 0.06));
  border-radius: 2px;
}
.timeline-node {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline-node::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(31, 75, 104, 0.42);
  box-shadow: 0 0 0 5px rgba(31, 75, 104, 0.08);
}
.timeline-date {
  font-size: 0.75rem;
  color: rgba(240, 240, 248, 0.4);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 4px;
}
.timeline-content {
  font-size: 0.88rem;
  color: rgba(240, 240, 248, 0.65);
  line-height: 1.5;
}
@media (max-width: 960px) {
  .nav {
    padding: 1rem;
  }
  .nav-links {
    display: none;
  }
  .nav-menu-toggle {
    display: flex;
  }
  .hero,
  .auth-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-shell,
  .context-shell,
  .trust-hero-shell,
  .auth-shell,
  .download-card,
  .footer-content {
    grid-template-columns: 1fr;
  }
  .hero-shell::before,
  .auth-shell::before,
  .trust-hero-shell::before,
  .download-card::after {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card {
    grid-column: span 1 !important;
    min-height: 200px;
  }
  .feature-card--summary {
    grid-column: 1 / -1 !important;
  }
  .sync-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .avatars-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .avatar-pill {
    grid-column: span 1 !important;
  }
  .trust-proof-items,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-card {
    grid-column: span 1 !important;
  }
  .trust-card--lead {
    grid-column: span 1 !important;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .footer-columns {
    flex-direction: column;
  }
  .hero-copy,
  .hero-panel-stack,
  .download-copy {
    padding: 0;
    max-width: none;
  }
  .dash-header-shell {
    grid-template-columns: 1fr;
  }
  .dash-stats {
    justify-content: flex-start;
  }
  .trust-actions {
    grid-template-columns: 1fr;
  }
  .trust-actions-links {
    justify-content: flex-start;
  }
  .context-summary-grid {
    grid-template-columns: 1fr;
  }
  .hero-output-grid,
  .hero-flow-strip {
    grid-template-columns: 1fr;
  }
  .hero-output-card--note {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 4rem;
  }
  .section {
    padding: 4rem 1rem;
  }
  .hero-actions,
  .hero-flow-strip,
  .download-meta,
  .download-trust-links,
  .trust-actions-links,
  .trust-switch {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .auth-intro .btn,
  .download-card .btn,
  .trust-actions .btn {
    width: 100%;
  }
  .hero-panel,
  .auth-intro,
  .context-portal-card,
  .feature-card,
  .flow-card,
  .avatar-pill,
  .auth-card,
  .download-card {
    padding: 1.5rem;
  }
  .features-grid,
  .avatars-showcase {
    grid-template-columns: 1fr;
  }
  .auth-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .avatar-card-stats,
  .avatar-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .context-panel {
    width: 100vw;
    max-width: 100vw;
  }
  .dash-header,
  .dash-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .download-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}
