* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fbff 40%, #e0f2ff 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.18), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="1" height="1" fill="rgba(15,23,42,0.03)"/%3E%3C/svg%3E');
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 6vw;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}


.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-name {
  margin: 0;
  font-weight: 700;
}

.brand-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.6);
}

.landing-nav nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.landing-nav nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

.landing-nav nav a.outline {
  border: 1px solid rgba(15, 23, 42, 0.2);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
}

main {
  padding: 4rem 6vw 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 36px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 45px 90px rgba(15, 23, 42, 0.15);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(59, 130, 246, 0.15);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 65%);
  top: -60px;
  right: -40px;
  filter: blur(10px);
  z-index: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.15));
  color: #1d4ed8;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 1rem 0;
}

.subtitle {
  font-size: 1.15rem;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 1.5rem;
}

.beta-status {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.beta-status h4 {
  margin: 0.2rem 0;
  font-size: 1.3rem;
}

.beta-note {
  margin-top: 1rem;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 500;
}

.chip {
  display: inline-flex;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-size: 0.85rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 22px;
  padding: 1.75rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.08);
}

.feature-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.feature-index {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  width: fit-content;
}

.beta-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.beta-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.beta-card {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.1);
}

.beta-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.beta-card button {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: #0f172a;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.trust-panel ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-card {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-card div {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(15, 23, 42, 0.5);
}

.landing-footer {
  padding: 2rem 6vw;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(15, 23, 42, 0.65);
}

.landing-footer a {
  color: inherit;
  text-decoration: none;
  margin-left: 1rem;
}

@media (max-width: 720px) {
  .landing-nav {
    padding: 1rem 5vw;
  }
  .landing-nav nav {
    display: none;
  }
  main {
    padding: 3rem 5vw;
  }
  .waitlist-form {
    flex-direction: column;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .hero-visual {
    min-height: auto;
    flex-direction: column;
    gap: 1rem;
  }
  .stack-card {
    position: relative;
    transform: none !important;
    animation: none;
    width: 100%;
    margin: 0;
  }
  .landing-footer {
    flex-direction: column;
    gap: 1rem;
  }
}

.trust-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.trust-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promise-list li {
  border-top: 1px solid rgba(226, 232, 240, 0.2);
  padding-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.promise-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.flow-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.flow-panel article {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}

.flow-panel article::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.step {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  font-weight: 600;
}

.values-panel {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.values-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.values-panel li {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  background: white;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.values-panel strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-benefits {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-benefits li {
  list-style: none;
  position: relative;
  padding-left: 1.25rem;
  color: rgba(15, 23, 42, 0.75);
}

.hero-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2563eb;
}

.getnext-hero-button {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.getnext-hero-button button {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(120deg, #1d4ed8, #0ea5e9);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.getnext-hero-button .spark {
  font-size: 1.2rem;
}

.getnext-hero-button p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  color: rgba(15, 23, 42, 0.75);
  font-weight: 500;
}

.coo-callout {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
}

.hero-ai-callout {
  margin: 1.2rem 0 1.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  font-weight: 500;
  color: #0f172a;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.75;
  animation: pulse 12s ease-in-out infinite;
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y));
}

.orb-one {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.6), transparent 70%);
  top: -40px;
  left: 10%;
}

.orb-two {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.45), transparent 70%);
  bottom: -60px;
  right: 5%;
}

.stack-card {
  position: absolute;
  width: clamp(200px, 38vw, 320px);
  padding: 1.4rem 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
  animation: float 12s ease-in-out infinite;
}

.stack-card h4 {
  margin: 0.35rem 0 0.25rem;
}

.schedule-card { transform: rotate(-4deg) translate(-90px, -30px); }
.timer-card { transform: rotate(3deg) translate(40px, 15px); animation-delay: 2s; }
.reclaim-card { transform: rotate(-2deg) translate(-10px, 120px); animation-delay: 4s; }

.stack-card ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stack-card li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.75);
}

.timer-face {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0.5rem 0 0.25rem;
}

.timer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.timer-tags span {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-weight: 600;
}

.reclaim-card button {
  margin-top: 1rem;
  border: none;
  border-radius: 16px;
  padding: 0.7rem 1rem;
  background: linear-gradient(120deg, #2563eb, #3b82f6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.85; }
}

.principles-panel {
  margin-top: 3rem;
}

.principles-panel h2 {
  max-width: 640px;
}

.principles-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.principles-grid article {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.25rem;
  background: white;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.principles-grid p {
  margin: 0.4rem 0 0;
  color: rgba(15, 23, 42, 0.7);
}

.getnext-panel {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.08), rgba(99, 102, 241, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.getnext-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.getnext-panel li {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.getnext-panel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.getnext-carousel {
  position: relative;
}

.carousel-track {
  position: relative;
  min-height: var(--carousel-height, 240px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
  padding: 1.4rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.carousel-meta {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.6);
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(37, 99, 235, 0.25);
  cursor: pointer;
}

.carousel-dots button.active {
  background: #2563eb;
}

.chip-light {
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #0f172a;
}
.pfr-band {
  margin: 3rem 0 0;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(110deg, rgba(37, 99, 235, 0.18), rgba(14, 165, 233, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.pfr-band::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.pfr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.pfr-grid article {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: left;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.pfr-grid h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.pfr-grid p {
  margin: 0.5rem 0 0;
  color: rgba(15, 23, 42, 0.75);
}

.preview-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 32px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(226, 232, 255, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.preview-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(59, 130, 246, 0.1);
  pointer-events: none;
}

.preview-mock {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.preview-mock::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px dashed rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.preview-card {
  border-radius: 20px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.1);
}

.preview-card.plan ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preview-card.plan li {
  display: flex;
  justify-content: space-between;
}

.preview-card.getnext {
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.15));
  color: #0f172a;
}

.preview-card.getnext .score {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.75);
}

.preview-card.getnext button {
  margin-top: 1rem;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 0.75rem;
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.preview-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.goal-motion-panel {
  margin: 2rem 0 0;
  padding: 2.5rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.goal-motion-visual {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.motion-card {
  flex: 1;
  min-width: 220px;
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.motion-card.active { border-color: rgba(16, 185, 129, 0.4); }
.motion-card.idle { border-color: rgba(249, 115, 22, 0.45); }

.motion-card .label {
  margin: 0;
  font-weight: 600;
}

.motion-card .metric {
  margin: 0.35rem 0;
  color: rgba(15, 23, 42, 0.7);
}

.motion-card .status {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.7);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #2563eb, #6366f1);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 25px 45px rgba(37, 99, 235, 0.3);
}

.testimonial-panel {
  margin: 3rem 0;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.quote {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

.quote-author {
  margin: 0.75rem 0 0;
  color: rgba(15, 23, 42, 0.6);
}

.persona-panel {
  margin: 3rem 0;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.persona-grid article {
  border-radius: 18px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.07);
}

.persona-grid h3 {
  margin-top: 0;
}
