﻿:root {
  --ink: #20142f;
  --muted: #6b5c78;
  --paper: #ffffff;
  --surface: #ffffff;
  --line: #e8e4ec;
  --green: #7d4294;
  --mint: #eadcf3;
  --coral: #d04c94;
  --soft-accent: #f4c7de;
  --blue: #834698;
  --shadow: 0 12px 32px rgba(31, 41, 51, 0.08);
  --spring: cubic-bezier(0.2, 0.9, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(150px, 14vw, 210px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  left: 0;
  padding: 30px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0;
  min-width: max-content;
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.brand img {
  height: clamp(58px, 6vw, 88px);
  object-fit: contain;
  width: clamp(78px, 8vw, 118px);
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
  justify-content: flex-end;
  color: var(--ink);
  font-size: clamp(0.86rem, 1vw, 1.08rem);
  font-weight: 900;
  text-transform: uppercase;
}

nav a {
  position: relative;
}

nav a:not(.nav-cta)::after {
  background: var(--coral);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

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

.nav-cta {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #ffffff;
  padding: 15px 28px;
  transition: background 220ms ease, transform 220ms var(--spring);
}

.nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  min-height: calc(100vh - 136px);
  padding: clamp(64px, 8vw, 118px) clamp(20px, 6vw, 84px) 54px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(208, 76, 148, 0.14), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(125, 66, 148, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  content: "";
  inset: 0;
  opacity: 1;
  position: absolute;
  z-index: -1;
  transform: none;
}

.kinetic-shapes {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.kinetic-shapes span {
  border: 1px solid rgba(125, 66, 148, 0.24);
  border-radius: 999px;
  display: block;
  position: absolute;
  filter: blur(1px);
  opacity: 0.38;
}

.kinetic-shapes span:nth-child(1) {
  background: rgba(244, 199, 222, 0.22);
  height: 96px;
  right: 12%;
  top: 14%;
  width: 96px;
  animation: floatShape 16s ease-in-out infinite;
}

.kinetic-shapes span:nth-child(2) {
  background: rgba(234, 220, 243, 0.32);
  height: 58px;
  left: 7%;
  top: 58%;
  width: 58px;
  animation: floatShape 18s ease-in-out 900ms infinite reverse;
}

.kinetic-shapes span:nth-child(3) {
  background: rgba(208, 76, 148, 0.12);
  bottom: 8%;
  height: 118px;
  right: 34%;
  width: 118px;
  animation: floatShape 20s ease-in-out 400ms infinite;
}

.eyebrow,
.card-topline {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 980px;
  background: linear-gradient(90deg, #8f61ce 0%, #d04c94 46%, #c8bad8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: riseIn 850ms var(--spring) both;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-lede {
  color: #26313c;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  max-width: 760px;
  animation: riseIn 850ms var(--spring) 120ms both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-tags span {
  background: #2b193d;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 13px;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions {
  animation: riseIn 850ms var(--spring) 220ms both;
}

.button {
  align-items: center;
  border: 2px solid var(--green);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  transition: box-shadow 220ms ease, transform 220ms var(--spring), background 220ms ease;
}

.button:hover {
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.1);
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--coral));
  color: #fff;
}

.button.secondary {
  background: #fff;
  border: 2px solid var(--green);
  color: var(--ink);
}

.hero-media {
  align-self: end;
  display: grid;
  gap: 14px;
}

.hero-visual {
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.abstract-visual {
  align-items: center;
  background: transparent;
  aspect-ratio: 4 / 3;
  border: 0;
  display: grid;
  justify-items: center;
  min-height: 360px;
  isolation: isolate;
}

.orbit {
  border: 1px solid rgba(125, 66, 148, 0.2);
  border-radius: 999px;
  position: absolute;
}

.orbit-one {
  height: 72%;
  transform: rotate(-18deg);
  width: 82%;
}

.orbit-two {
  height: 48%;
  transform: rotate(24deg);
  width: 62%;
}

.idea-core {
  align-items: center;
  background: linear-gradient(135deg, #7d4294, #d04c94);
  border-radius: 999px;
  color: #ffffff;
  display: flex;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 950;
  height: clamp(118px, 14vw, 178px);
  justify-content: center;
  position: relative;
  box-shadow: 0 24px 70px rgba(125, 66, 148, 0.28);
  text-transform: uppercase;
  width: clamp(118px, 14vw, 178px);
  z-index: 2;
}

.idea-core::after {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  content: "";
  inset: 10px;
  position: absolute;
}

.idea-node {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(32, 20, 47, 0.1);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 9px 12px;
  position: absolute;
  text-transform: uppercase;
  z-index: 3;
}

.node-one {
  left: 14%;
  top: 20%;
}

.node-two {
  right: 10%;
  top: 38%;
}

.node-three {
  bottom: 20%;
  left: 24%;
}

.hero-panel {
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  overflow: hidden;
  animation: panelPop 900ms var(--spring) 280ms both;
}

.hero-panel div {
  background: var(--surface);
  display: grid;
  gap: 4px;
  padding: 24px;
  transition: background 220ms ease, transform 220ms var(--spring);
}

.hero-panel div:hover {
  background: #fff;
  transform: translateX(3px);
}

.panel-number {
  color: var(--coral);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

section:not(.hero) {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 84px);
  scroll-margin-top: clamp(150px, 14vw, 210px);
}

.manifesto {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  padding-bottom: clamp(34px, 5vw, 58px) !important;
  padding-top: clamp(34px, 5vw, 58px) !important;
}

.manifesto p {
  background: linear-gradient(90deg, var(--ink), #d04c94 55%, #834698);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

.manifesto span {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.section-heading {
  max-width: 820px;
}

.section-cta {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(125, 66, 148, 0.28);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 850;
  margin-top: 12px;
  min-height: 38px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.section-cta::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.section-cta:hover {
  background: #faf8fc;
  border-color: var(--green);
  color: var(--ink);
}

.section-cta:hover::after {
  transform: translateX(3px);
}

.section-cta.inverted {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.section-cta.inverted:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
}

.audiences,
.pathways,
.proof {
  background: #ffffff;
}

.audience-grid,
.offer-grid {
  display: grid;
  gap: clamp(28px, 3.5vw, 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(44px, 5vw, 74px);
}

.audience-card,
.offer-card,
.phase,
.proof-card,
.format-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(32, 20, 47, 0.06);
  padding: clamp(30px, 4vw, 52px);
  position: relative;
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms var(--spring);
}

.audience-card:hover,
.offer-card:hover,
.consulting-card:hover,
.phase:hover,
.proof-card:hover,
.format-list article:hover {
  border-color: rgba(125, 66, 148, 0.28);
  box-shadow: 0 18px 44px rgba(32, 20, 47, 0.12);
  transform: translateY(-4px);
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.audience-card.incubator {
  background: #ffffff;
}

.audience-card.enterprise {
  background: #ffffff;
}

.audience-card::before,
.consulting-card::before {
  background: linear-gradient(90deg, var(--coral), var(--green));
  border-radius: 999px;
  content: "";
  height: 6px;
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  width: auto;
}

.audience-card h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  max-width: 800px;
}

.audience-card p,
.offer-card p,
.phase p,
.proof-copy p,
.format-list p,
.contact p {
  color: var(--muted);
}

ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.catalog-link {
  align-items: center;
  background: #faf8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 2px;
  font-weight: 900;
  margin-top: auto;
  padding: 16px 18px;
  position: relative;
}

.catalog-link::after {
  content: "↗";
  font-size: 1.15rem;
  position: absolute;
  right: 18px;
  top: 18px;
}

.catalog-link span {
  color: var(--coral);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-link strong {
  font-size: 1rem;
}

.catalog-link:hover {
  background: #ffffff;
  border-color: rgba(125, 66, 148, 0.34);
  color: var(--coral);
}

li,
.expertise-list span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  padding: 9px 12px;
  transition: background 220ms ease, transform 220ms var(--spring);
}

li:hover,
.expertise-list span:hover {
  background: #fff;
  transform: translateY(-1px);
}

.offers {
  background: #ffffff;
  padding-top: clamp(96px, 10vw, 150px) !important;
}

.consulting {
  background: #fafafa;
}

.consulting .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 820px;
}

.consulting-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.consulting-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(32, 20, 47, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(22px, 3vw, 34px);
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms var(--spring);
}

.consulting-card:first-child {
  background: #ffffff;
}

.consulting-card:last-child {
  background: #ffffff;
}

.consulting-card h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  margin-top: 26px;
}

.consulting-card p {
  color: var(--muted);
}

.prototypes {
  background: #ffffff;
}

.prototypes .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 860px;
}

.prototype-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.prototype-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(32, 20, 47, 0.06);
  min-height: 290px;
  padding: clamp(22px, 3vw, 34px);
  position: relative;
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms var(--spring);
}

.prototype-card:hover {
  border-color: rgba(125, 66, 148, 0.28);
  box-shadow: 0 18px 44px rgba(32, 20, 47, 0.12);
  transform: translateY(-4px);
}

.prototype-card.featured {
  background: linear-gradient(135deg, #2b193d, #7d4294);
  color: #ffffff;
  overflow: hidden;
}

.prototype-card.featured .offer-index,
.prototype-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.prototype-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.prototype-card.featured h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.prototype-card p {
  color: var(--muted);
}

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

.offer-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(32, 20, 47, 0.06);
}

.offer-card::before {
  background: linear-gradient(90deg, var(--green), var(--coral));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--spring);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-index {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.offer-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.offer-detail {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
}

.offer-detail strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.work-tags span {
  background: #faf8fc;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  padding: 7px 10px;
}

.practical {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  margin-top: 24px;
  padding-top: 22px;
}

.result {
  background: transparent;
  border-left: 4px solid var(--coral);
  border-radius: 0;
  color: var(--ink);
  display: grid;
  gap: 8px;
  font-weight: 700;
  margin-top: auto;
  padding: 0 0 0 14px;
}

.result strong {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result span {
  color: var(--ink);
}

.timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

.pathways .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.phase {
  background: #ffffff;
  min-height: 260px;
}

.phase span {
  color: var(--blue);
  font-weight: 900;
}

.phase h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  margin-top: 44px;
}

.formats {
  background: #f8f6fa;
  color: var(--ink);
}

.formats .eyebrow,
.formats .format-list p {
  color: var(--muted);
}

.format-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  margin-top: 34px;
}

.process-illustration {
  align-content: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  display: grid;
  gap: 18px;
  min-height: 430px;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
}

.process-illustration::before {
  background: linear-gradient(180deg, rgba(208, 76, 148, 0.45), rgba(125, 66, 148, 0.45));
  border-radius: 999px;
  content: "";
  height: calc(100% - 88px);
  left: 50%;
  position: absolute;
  top: 44px;
  transform: translateX(-50%);
  width: 4px;
}

.process-illustration span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(32, 20, 47, 0.1);
  color: var(--ink);
  font-weight: 900;
  justify-self: center;
  padding: 13px 18px;
  position: relative;
  text-transform: uppercase;
}

.format-list {
  display: grid;
  gap: 14px;
}

.format-list article {
  border-color: var(--line);
  background: #ffffff;
}

.proof {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(280px, 0.8fr);
}

.lab-panel {
  background: #2b193d;
  border-radius: 8px;
  color: #ffffff;
  padding: clamp(26px, 4vw, 42px);
}

.lab-panel .eyebrow {
  color: #f4c7de;
}

.lab-panel h2 {
  font-size: clamp(1.9rem, 3vw, 3.7rem);
}

.lab-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-card {
  align-self: start;
  background: var(--paper);
}

.proof-card img {
  border-radius: 8px;
  margin-bottom: 18px;
  width: 100%;
}

.proof-card p {
  color: var(--ink);
  font-weight: 850;
  margin-bottom: 0;
}

.contact {
  align-items: center;
  background: #f8f6fa;
  color: var(--ink);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.contact .eyebrow,
.contact p,
.contact-actions span {
  color: var(--muted);
}

.contact .button.primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.phone-link {
  border-bottom: 2px solid var(--coral);
  font-size: 1.2rem;
  font-weight: 900;
  transition: color 220ms ease;
}

.phone-link:hover {
  color: var(--soft-accent);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 800ms var(--spring);
}

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

.reveal-stagger > * {
  transition-delay: calc(var(--item-index, 0) * 80ms);
}

.contact-actions {
  align-items: flex-start;
  flex-direction: column;
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero,
  .hero-media,
  .manifesto,
  .proof,
  .contact,
  .format-layout {
    grid-template-columns: 1fr;
  }

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

  .consulting-grid,
  .prototype-grid,
  .sprint-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 18px;
    padding-top: 18px;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
  }

  .audience-grid,
  .consulting-grid,
  .prototype-grid,
  .offer-grid,
  .timeline {
    grid-template-columns: 1fr;
  }


  h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  section:not(.hero),
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .process-illustration {
    min-height: 300px;
  }

}

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

@keyframes panelPop {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatShape {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(8px, -8px, 0) rotate(4deg);
  }
  100% {
    transform: translate3d(-6px, 6px, 0) rotate(-3deg);
  }
}

@keyframes heroDrift {
  from {
    background-position: center;
  }
  to {
    background-position: 54% 48%;
  }
}

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

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