:root {
  --bg: #f4efe8;
  --ink: #1f2733;
  --muted: #516069;
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: #ffffff;
  --stroke: rgba(31, 39, 51, 0.12);
  --accent: #c37857;
  --accent-2: #1f6f8c;
  --accent-3: #e1c59a;
  --accent-4: #f6ead7;
  --shadow-soft: 0 18px 40px rgba(17, 23, 32, 0.12);
  --shadow-strong: 0 26px 70px rgba(17, 23, 32, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #f8f3ed 0%, var(--bg) 38%, #edf2f2 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(195, 120, 87, 0.3);
}

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

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

button,
.button-link {
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: #fff;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(31, 111, 140, 0.12), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(195, 120, 87, 0.18), transparent 55%);
  opacity: 0.9;
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
  opacity: 0.18;
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: glowFloat 18s ease-in-out infinite;
}

.glow-1 {
  top: -220px;
  left: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(195, 120, 87, 0.35), rgba(195, 120, 87, 0));
}

.glow-2 {
  bottom: -240px;
  right: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(31, 111, 140, 0.35), rgba(31, 111, 140, 0));
  animation-delay: -9s;
}

.ribbon {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 45% 55% 60% 40% / 45% 60% 40% 55%;
  background: radial-gradient(circle at 30% 30%, rgba(225, 197, 154, 0.6), rgba(225, 197, 154, 0));
  filter: blur(60px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}

.ribbon-1 {
  top: -280px;
  right: -160px;
}

.ribbon-2 {
  bottom: -320px;
  left: -180px;
  animation-delay: -7s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(31, 39, 51, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 39, 51, 0.05) 1px, transparent 1px);
  background-size: 160px 160px;
  opacity: 0.12;
  mask-image: radial-gradient(circle at 50% 25%, rgba(0, 0, 0, 0.75), transparent 70%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px) saturate(140%);
  background: rgba(244, 239, 232, 0.86);
  border-bottom: 1px solid rgba(31, 39, 51, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 24px rgba(195, 120, 87, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 500;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 39, 51, 0.12);
  color: rgba(31, 39, 51, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(31, 39, 51, 0.12);
  background: #fff;
  color: var(--ink);
}

.footer-social {
  margin-top: 14px;
}

.primary,
.secondary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 16px 30px rgba(195, 120, 87, 0.25);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(195, 120, 87, 0.28);
}

.secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--stroke);
  color: var(--ink);
  box-shadow: 0 12px 22px rgba(17, 23, 32, 0.08);
}

.secondary:hover {
  background: #fff;
}

.ghost {
  background: transparent;
  border: 1px solid rgba(31, 39, 51, 0.2);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  padding: 96px 0 84px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  right: -6%;
  top: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31, 111, 140, 0.2), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 560px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(195, 120, 87, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.metric {
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.metric::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 16px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.6;
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 10px;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.alchemist-banner {
  width: min(520px, 100%);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 232, 0.75));
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid rgba(31, 39, 51, 0.12);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  animation: bannerFloat 7s ease-in-out infinite;
}

.alchemist-banner::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, rgba(31, 111, 140, 0.2), transparent 35%, rgba(225, 197, 154, 0.25), transparent 60%, rgba(195, 120, 87, 0.25));
  opacity: 0.55;
  filter: blur(14px);
  animation: auraSpin 16s linear infinite;
}

.alchemist-banner svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(31, 111, 140, 0.55);
  transform: translate(-50%, -50%) translateX(120px);
  transform-origin: center;
  animation: orbitSpin 10s linear infinite;
  opacity: 0.85;
  z-index: 3;
}

.orbit-dot--b {
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(195, 120, 87, 0.45);
  transform: translate(-50%, -50%) translateX(80px);
  animation: orbitSpinReverse 14s linear infinite;
  opacity: 0.8;
}

.orbit-dot--c {
  width: 6px;
  height: 6px;
  background: var(--accent-3);
  box-shadow: 0 0 10px rgba(225, 197, 154, 0.5);
  transform: translate(-50%, -50%) translateX(150px);
  animation: orbitSpin 18s linear infinite reverse;
  opacity: 0.9;
}

.sparkle {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 2px);
  background-size: 48px 48px;
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: sparkleDrift 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

.orb-ring,
.orb-tri,
.orb-core {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.orb-ring.ring-a {
  animation: ringSpin 16s linear infinite;
}

.orb-ring.ring-b {
  animation: ringSpin 22s linear infinite reverse;
}

.orb-tri.tri-a {
  animation: triPulse 4.8s ease-in-out infinite;
}

.orb-tri.tri-b {
  animation: triPulse 6.2s ease-in-out infinite reverse;
}

.orb-core {
  animation: corePulse 5.5s ease-in-out infinite;
}

.banner-caption {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 39, 51, 0.55);
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.manifest-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(195, 120, 87, 0.2);
  box-shadow: var(--shadow-soft);
  font-style: italic;
  color: var(--muted);
  max-width: 320px;
  transform: rotate(-1deg);
}

.manifest-card.alt {
  border-color: rgba(31, 111, 140, 0.2);
  background: rgba(235, 245, 246, 0.8);
  color: #2b3a42;
  transform: rotate(1.4deg);
}

.section {
  padding: 60px 0 90px;
  position: relative;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  padding-left: 18px;
  position: relative;
}

.section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--muted);
  max-width: 720px;
}

.text-section .section-head p {
  max-width: 760px;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.text-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
}

.text-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.post-meta {
  font-size: 0.78rem;
  color: rgba(31, 39, 51, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.post-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(31, 39, 51, 0.12);
}

.post-preview {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.text-card details {
  display: grid;
  gap: 14px;
}

.text-card summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(195, 120, 87, 0.12);
  border: 1px solid rgba(195, 120, 87, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-card summary::after {
  content: '+';
  font-weight: 700;
}

.text-card details[open] summary::after {
  content: '-';
}

.text-card summary::-webkit-details-marker {
  display: none;
}

.text-body {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.quote-block {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
  font-style: italic;
  background: rgba(225, 197, 154, 0.25);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(195, 120, 87, 0.2);
}

.text-source {
  font-weight: 600;
  color: var(--ink);
}

.about-grid,
.card-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.about-card,
.card,
.process-step,
.parents-card,
.exercise-note,
.text-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.about-card::before,
.card::before,
.process-step::before,
.exercise-note::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.5;
  margin-bottom: 2px;
}

.about-card h3,
.card h3,
.process-step h3,
.exercise-note h3,
.parents-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.about-card p,
.card p,
.process-step p,
.exercise-note p,
.parents-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(195, 120, 87, 0.16);
  color: #7b3b23;
  width: fit-content;
}

.about-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed rgba(31, 39, 51, 0.18);
  border-radius: 16px;
  padding: 16px 18px;
}

.exercises .exercise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.exercise-list {
  list-style: none;
  counter-reset: exercise;
  display: grid;
  gap: 14px;
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.exercise-list li {
  counter-increment: exercise;
  position: relative;
  padding-left: 52px;
  color: var(--muted);
  line-height: 1.6;
}

.exercise-list li::before {
  content: counter(exercise);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 111, 140, 0.25), rgba(195, 120, 87, 0.25));
  color: #1f3a46;
  font-weight: 700;
}

.parents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.parents-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
  display: grid;
  gap: 8px;
}

.parents-card {
  position: relative;
}

.parents-card.highlight {
  background: linear-gradient(140deg, rgba(195, 120, 87, 0.16), rgba(31, 111, 140, 0.16));
  border: 1px solid rgba(31, 111, 140, 0.2);
  padding-top: 36px;
}

.parents-card.highlight::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 3.8rem;
  color: rgba(31, 111, 140, 0.2);
  font-family: var(--font-display);
}

.signature {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.process-step {
  position: relative;
  padding-top: 58px;
}

.step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--accent-2);
  background: rgba(31, 111, 140, 0.14);
}

.cta {
  padding-bottom: 110px;
}

.cta-card {
  background: linear-gradient(120deg, rgba(195, 120, 87, 0.18), rgba(31, 111, 140, 0.16));
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(195, 120, 87, 0.25);
  display: grid;
  gap: 22px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
  opacity: 0.6;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  position: relative;
  z-index: 1;
}

.cta-card p,
.cta-info,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: var(--muted);
  max-width: 620px;
}

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

.cta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(31, 39, 51, 0.6);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 760px;
}

.footer {
  padding: 50px 0 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 26px;
  color: var(--muted);
  border-top: 1px solid rgba(31, 39, 51, 0.08);
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.footer-brand p {
  line-height: 1.6;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: conic-gradient(from 120deg, var(--accent), var(--accent-3), var(--accent-2));
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-self: center;
}

.footer-note {
  justify-self: end;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--i, 0) * 0.12s);
}

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

@keyframes glowFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(18px) translateX(10px);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-18px) translateX(12px);
  }
}

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

@keyframes auraSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ringSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(120px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(120px);
  }
}

@keyframes orbitSpinReverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(80px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg) translateX(80px);
  }
}

@keyframes triPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes corePulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes sparkleDrift {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.25;
  }
  50% {
    transform: translate(-6px, 8px);
    opacity: 0.5;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: start;
  }

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

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer,
  .footer-links {
    grid-template-columns: 1fr;
    justify-self: start;
  }

  .footer-note {
    justify-self: start;
  }
}

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