:root {
  --navy-950: #03111f;
  --navy-900: #061b31;
  --navy-800: #0b2a4a;
  --navy-700: #123d66;
  --navy-600: #1a527f;
  --aqua: #2ec4b6;
  --aqua-bright: #5ef0e0;
  --sky: #3dbbff;
  --gold: #f0b429;
  --coral: #ff6b4a;
  --cream: #e8f4ff;
  --white: #f7fbff;
  --text: #e7f2ff;
  --muted: #9bb6d1;
  --danger: #ff5d6c;
  --success: #3dd68c;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61, 187, 255, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(46, 196, 182, 0.18), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(240, 180, 41, 0.08), transparent 45%),
    linear-gradient(165deg, var(--navy-950), var(--navy-900) 40%, #08243f 100%);
  background-attachment: fixed;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  z-index: 0;
}

a {
  color: var(--aqua-bright);
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, .brand, .display {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.6rem;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(3, 17, 31, 0.72);
  border-bottom: 1px solid rgba(61, 187, 255, 0.12);
}

.site-header .inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky), var(--aqua));
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(61, 187, 255, 0.15), 0 10px 24px rgba(46, 196, 182, 0.35);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(61, 187, 255, 0.15), 0 10px 24px rgba(46, 196, 182, 0.35); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 7px rgba(61, 187, 255, 0.22), 0 14px 30px rgba(46, 196, 182, 0.45); }
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  --btn-bg: linear-gradient(135deg, var(--sky), var(--aqua));
  --btn-color: var(--navy-950);
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--btn-color);
  background: var(--btn-bg);
  box-shadow: 0 12px 28px rgba(46, 196, 182, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(46, 196, 182, 0.4);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn-gold {
  --btn-bg: linear-gradient(135deg, #ffd56a, var(--gold));
  --btn-color: #3a2700;
  box-shadow: 0 12px 28px rgba(240, 180, 41, 0.28);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-color: var(--cream);
  border: 1px solid rgba(232, 244, 255, 0.2);
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 17, 31, 0.15) 0%, rgba(3, 17, 31, 0.55) 45%, rgba(3, 17, 31, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(61, 187, 255, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(46, 196, 182, 0.28), transparent 55%),
    linear-gradient(135deg, #041526 0%, #0a3358 45%, #0d4a6e 100%);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(94, 240, 224, 0.2);
  animation: orbit-spin 28s linear infinite;
}

.hero-orbit.o1 { width: 420px; height: 420px; top: 8%; right: -80px; }
.hero-orbit.o2 { width: 280px; height: 280px; top: 18%; right: -10px; animation-duration: 18s; animation-direction: reverse; }
.hero-orbit.o3 { width: 160px; height: 160px; top: 28%; right: 50px; animation-duration: 12s; }

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.hero-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(135deg, rgba(61, 187, 255, 0.55), rgba(46, 196, 182, 0.35));
  filter: blur(2px);
  animation: blob-float 8s ease-in-out infinite;
}

.hero-blob.b1 { top: 16%; right: 12%; }
.hero-blob.b2 {
  width: 120px;
  height: 120px;
  top: 42%;
  right: 28%;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.45), rgba(255, 107, 74, 0.25));
  animation-delay: -3s;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-bottom: 1rem;
  animation: rise-in 0.8s ease both;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-hero {
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  font-weight: 800;
  background: linear-gradient(120deg, #fff 20%, var(--aqua-bright) 55%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
  text-shadow: none;
}

.hero-headline {
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.hero-support {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stat-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream);
  font-size: 0.95rem;
}

.stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(61, 214, 140, 0.15);
  animation: blink 1.6s ease infinite;
}

@keyframes blink {
  50% { opacity: 0.45; }
}

/* Sections */
.section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .feature-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(94, 240, 224, 0.25);
}

.feature-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.narrative {
  font-size: 1.15rem;
  max-width: 40rem;
}

.narrative p {
  margin: 0 0 0.85rem;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Forms */
.panel {
  background: linear-gradient(160deg, rgba(18, 61, 102, 0.55), rgba(6, 27, 49, 0.75));
  border: 1px solid rgba(61, 187, 255, 0.18);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--aqua), var(--gold));
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-control,
select.form-control,
textarea.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 17, 31, 0.55);
  color: var(--white);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .status-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.status-option {
  position: relative;
}

.status-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.status-option span {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: 0.2s ease;
  font-weight: 600;
}

.status-option input:checked + span,
.status-option span:hover {
  border-color: var(--aqua);
  background: rgba(46, 196, 182, 0.12);
  transform: translateY(-1px);
}

/* Quiz */
.quiz-shell {
  max-width: 720px;
  margin: 1.5rem auto 3rem;
}

.progress-wrap {
  margin-bottom: 1.25rem;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky), var(--aqua), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes shimmer {
  to { background-position: 200% 0; }
}

.question-card {
  animation: card-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes card-in {
  from { opacity: 0; transform: translateX(40px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.question-card.leaving {
  animation: card-out 0.28s ease forwards;
}

@keyframes card-out {
  to { opacity: 0; transform: translateX(-30px) scale(0.98); }
}

.question-body {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  margin-bottom: 1.35rem;
}

.answer-list {
  display: grid;
  gap: 0.7rem;
}

.answer-btn {
  text-align: left;
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

.answer-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(94, 240, 224, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}

.answer-btn:hover {
  border-color: rgba(61, 187, 255, 0.55);
  background: rgba(61, 187, 255, 0.1);
  transform: translateX(4px);
}

.answer-btn:hover::after {
  transform: translateX(100%);
}

.answer-btn.selected {
  border-color: var(--aqua);
  background: rgba(46, 196, 182, 0.18);
}

.interlude {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(240, 180, 41, 0.18), rgba(46, 196, 182, 0.12));
  border: 1px solid rgba(240, 180, 41, 0.35);
  font-weight: 600;
  animation: rise-in 0.5s ease both;
}

.gen-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 100;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: rgba(6, 27, 49, 0.92);
  border: 1px solid rgba(94, 240, 224, 0.4);
  color: var(--aqua-bright);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gen-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Analyzing */
.analyze-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.analyze-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--aqua);
  border-right-color: var(--sky);
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
  position: relative;
}

.analyze-ring::after {
  content: "GEN";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  animation: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.analyze-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 320px;
  text-align: left;
}

.analyze-steps li {
  padding: 0.45rem 0;
  color: var(--muted);
  opacity: 0.4;
  transition: 0.3s ease;
}

.analyze-steps li.active {
  opacity: 1;
  color: var(--aqua-bright);
  transform: translateX(4px);
}

/* Result */
.result-hero {
  padding: 2rem 0 1rem;
}

.result-kicker {
  color: var(--aqua-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.result-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.result-type {
  background: linear-gradient(120deg, var(--sky), var(--aqua-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.score-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: center;
}

.score-row .bar {
  grid-column: 1 / -1;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.score-row .bar > i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy-600), var(--sky), var(--aqua));
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.radar-wrap {
  max-width: 420px;
  margin: 0 auto;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.badge {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(61, 187, 255, 0.12);
  border: 1px solid rgba(61, 187, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 700;
  animation: rise-in 0.5s ease both;
}

.two-col {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.list-clean {
  margin: 0;
  padding-left: 1.1rem;
}

.list-clean li {
  margin-bottom: 0.45rem;
}

.cta-block {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(18, 61, 102, 0.8), rgba(6, 27, 49, 0.9)),
    radial-gradient(circle at top right, rgba(46, 196, 182, 0.2), transparent 50%);
  border: 1px solid rgba(94, 240, 224, 0.2);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert-error {
  background: rgba(255, 93, 108, 0.15);
  border: 1px solid rgba(255, 93, 108, 0.4);
  color: #ffb3bb;
}

.alert-success {
  background: rgba(61, 214, 140, 0.15);
  border: 1px solid rgba(61, 214, 140, 0.4);
  color: #b8f5d4;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 640px;
  margin: 2rem auto;
}

.event-list {
  display: grid;
  gap: 0.85rem;
}

.event-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

/* Admin */
.admin-body {
  background: #071525;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: linear-gradient(180deg, #061b31, #04111f);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
}

.admin-sidebar a {
  display: block;
  color: var(--muted);
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(61, 187, 255, 0.12);
  color: var(--white);
}

.admin-main {
  padding: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-card {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}

.table-wrap {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table.data th,
table.data td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  white-space: nowrap;
}

table.data th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.filters .form-control {
  min-width: 160px;
  width: auto;
}

@media (max-width: 860px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: relative;
    height: auto;
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
  }
  .admin-sidebar .brand {
    display: none;
  }
  .admin-sidebar a {
    white-space: nowrap;
    margin: 0;
  }
}

/* Share card page */
.share-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--navy-950);
}

.share-card {
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  padding: 1.75rem 1.4rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(61, 187, 255, 0.35), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(46, 196, 182, 0.3), transparent 40%),
    linear-gradient(165deg, #0a2540, #041526 70%);
  border: 1px solid rgba(94, 240, 224, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.share-card::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -20%;
  height: 50%;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.2), transparent);
  transform: rotate(-18deg);
}

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

.mobile-only {
  display: none;
}

@media (max-width: 640px) {
  .mobile-only {
    display: inline-flex;
  }
  .hero {
    min-height: auto;
    padding-top: 1.5rem;
    align-items: start;
  }
  .hero-blob.b2,
  .hero-orbit.o3 {
    display: none;
  }
}
