:root {
  --ink: #f8ffe9;
  --muted: #b8c5aa;
  --void: #050706;
  --void-2: #0b1010;
  --panel: rgba(14, 21, 20, 0.76);
  --panel-strong: rgba(21, 30, 27, 0.92);
  --line: rgba(215, 255, 183, 0.18);
  --line-hot: rgba(190, 255, 58, 0.54);
  --acid: #ccff3f;
  --mint: #4dffd2;
  --coral: #ff5f4f;
  --violet: #9c6bff;
  --blue: #55a7ff;
  --shadow-hot: 0 32px 120px rgba(204, 255, 63, 0.18);
  --shadow-deep: 0 30px 110px rgba(0, 0, 0, 0.48);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --max: 1180px;
  color-scheme: dark;
  font-family: "Outfit", "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  background: var(--void);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 108px;
  background: var(--void);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(204, 255, 63, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(77, 255, 210, 0.12), transparent 32rem),
    radial-gradient(circle at 50% 68%, rgba(156, 107, 255, 0.12), transparent 42rem),
    var(--void);
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: break-word;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 60;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 7px 7px;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--acid);
  color: #0d1008;
  font-weight: 900;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020302;
  color: var(--acid);
}

.preloader__beam {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 44%, rgba(204, 255, 63, 0.76) 48%, transparent 52% 100%),
    radial-gradient(circle at center, rgba(77, 255, 210, 0.2), transparent 34rem);
  transform: translateX(-120%) skewX(-18deg);
}

.preloader__text {
  position: relative;
  z-index: 1;
  font-size: clamp(42px, 8vw, 132px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.preloader__counter {
  position: absolute;
  right: 26px;
  bottom: 20px;
  color: var(--ink);
  font-family: "SFMono-Regular", "Cascadia Code", monospace;
  font-size: clamp(32px, 8vw, 100px);
  font-weight: 900;
}

.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(204, 255, 63, 0.8);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
}

.scroll-meter {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 70;
  width: 5px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--acid), var(--mint), var(--coral), var(--violet));
  transform: scaleY(0);
  transform-origin: top;
}

.motion-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.motion-field span {
  position: absolute;
  width: 44vmax;
  height: 44vmax;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.18;
  mix-blend-mode: screen;
}

.motion-field span:nth-child(1) {
  top: -16%;
  left: -10%;
  background: var(--acid);
}

.motion-field span:nth-child(2) {
  top: 6%;
  right: -18%;
  background: var(--mint);
}

.motion-field span:nth-child(3) {
  top: 42%;
  left: 24%;
  background: var(--violet);
}

.motion-field span:nth-child(4) {
  right: 5%;
  bottom: -22%;
  background: var(--coral);
}

.motion-field span:nth-child(5) {
  bottom: 10%;
  left: -18%;
  background: var(--blue);
}

.site-header {
  position: fixed;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 50;
  isolation: isolate;
}

.site-header::before {
  position: fixed;
  top: -18px;
  right: -18px;
  left: -18px;
  z-index: 0;
  height: 168px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 6, 1) 0 106px, rgba(5, 7, 6, 0.82) 132px, transparent);
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.86);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand,
.nav-menu,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  padding-left: 8px;
  font-size: 14px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: #0c1007;
  box-shadow: 0 0 44px rgba(204, 255, 63, 0.52);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.nav-menu {
  gap: 6px;
}

.nav-menu a {
  min-height: 42px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu .nav-cta {
  background: rgba(204, 255, 63, 0.12);
  color: var(--ink);
}

.nav-menu .nav-cta {
  border: 1px solid rgba(204, 255, 63, 0.46);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 132px 20px 96px;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.8) contrast(1.22) brightness(0.48) saturate(1.2);
  transform: scale(1.08);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, transparent 0 16rem, rgba(5, 7, 6, 0.42) 30rem, rgba(5, 7, 6, 0.96) 72%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.1), rgba(5, 7, 6, 0.88));
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 5px 5px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
  text-align: center;
}

.hero__kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  font-family: "SFMono-Regular", "Cascadia Code", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1160px;
  margin: 0 auto;
  font-size: clamp(48px, 8vw, 116px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-line {
  display: block;
  clip-path: inset(-12% -6% -18% -6%);
}

.inline-image {
  display: inline-block;
  width: clamp(72px, 10vw, 150px);
  height: clamp(38px, 5vw, 68px);
  margin: 0 0.12em;
  border: 2px solid rgba(204, 255, 63, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(204, 255, 63, 0.22), rgba(77, 255, 210, 0.24)),
    url("https://picsum.photos/seed/carrot-inline-motion/500/260") center/cover;
  box-shadow: 0 0 60px rgba(204, 255, 63, 0.3);
  transform-origin: center;
  vertical-align: middle;
}

.hero-lead {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.68;
}

.hero-actions {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px auto 0;
}

.hero-sequence {
  position: absolute;
  bottom: 46px;
  left: max(18px, calc((100vw - var(--max)) / 2));
  z-index: 1;
  width: min(390px, calc(100% - 40px));
  height: 224px;
  pointer-events: none;
  perspective: 900px;
}

.sequence-beam {
  position: absolute;
  top: 72px;
  left: 26px;
  width: 280px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acid), var(--mint), var(--coral));
  box-shadow: 0 0 42px rgba(204, 255, 63, 0.44);
  transform-origin: left center;
}

.sequence-beam::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background: var(--acid);
  box-shadow: 0 0 36px rgba(204, 255, 63, 0.72);
  transform: translateY(-50%);
}

.sequence-node {
  position: absolute;
  display: grid;
  min-width: 122px;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(204, 255, 63, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(204, 255, 63, 0.13), transparent 46%),
    rgba(5, 7, 6, 0.76);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.sequence-node span {
  color: var(--acid);
  font-family: "SFMono-Regular", "Cascadia Code", monospace;
  font-size: 10px;
  font-weight: 900;
}

.sequence-node strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
}

.sequence-node--ad {
  top: 14px;
  left: 0;
}

.sequence-node--page {
  top: 96px;
  left: 82px;
  border-color: rgba(77, 255, 210, 0.38);
}

.sequence-node--page span {
  color: var(--mint);
}

.sequence-node--lead {
  top: 35px;
  right: 0;
  border-color: rgba(255, 95, 79, 0.5);
}

.sequence-node--lead span {
  color: var(--coral);
}

.sequence-phone {
  position: absolute;
  right: 18px;
  bottom: 0;
  display: grid;
  width: 104px;
  height: 146px;
  grid-template-rows: 24px 1fr 16px 28px;
  gap: 8px;
  padding: 13px 10px;
  border: 1px solid rgba(248, 255, 233, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 12%, rgba(204, 255, 63, 0.3), transparent 32%),
    #070b0a;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.56), 0 0 50px rgba(77, 255, 210, 0.14);
  transform-style: preserve-3d;
}

.phone-top,
.phone-card {
  border-radius: 999px;
  background: rgba(248, 255, 233, 0.14);
}

.phone-top {
  width: 42px;
  height: 5px;
  margin: 0 auto;
}

.phone-card--hero {
  border-radius: 13px;
  background: linear-gradient(135deg, var(--acid), var(--mint));
}

.phone-card--line {
  width: 72%;
}

.phone-card--cta {
  background: var(--coral);
  box-shadow: 0 0 32px rgba(255, 95, 79, 0.38);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 950;
  transform-style: preserve-3d;
}

.button-primary {
  background: var(--acid);
  color: #0c1007;
  box-shadow: 0 0 70px rgba(204, 255, 63, 0.28);
}

.button-ghost {
  border: 1px solid var(--line-hot);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.hero-panel {
  position: absolute;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 52px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(620px, calc(100% - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(5, 7, 6, 0.62);
  box-shadow: var(--shadow-hot);
  backdrop-filter: blur(22px);
  will-change: transform;
}

.hero-panel article {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.hero-panel article:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
}

.panel-ring {
  position: absolute;
  inset: -80px;
  background: conic-gradient(from 90deg, transparent, rgba(204, 255, 63, 0.36), transparent, rgba(77, 255, 210, 0.22), transparent);
  opacity: 0.5;
}

.marquee-section {
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080c0b;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  color: var(--acid);
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.marquee-track span:nth-child(3n) {
  color: var(--mint);
}

.marquee-track span:nth-child(4n) {
  color: var(--coral);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(116px, 14vw, 190px) 0;
}

.section-copy {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-copy h2,
.pin-story__title h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 82px);
  font-weight: 950;
  line-height: 0.94;
  text-wrap: balance;
}

.section-copy p:not(.eyebrow),
.pin-story__title p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.bento-card {
  position: relative;
  min-height: 260px;
  grid-column: span 4;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-deep);
  transform-style: preserve-3d;
}

.bento-card--wide {
  display: grid;
  grid-column: span 8;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 24px;
}

.bento-card--tall {
  grid-row: span 2;
  min-height: 540px;
}

.bento-card--accent {
  grid-column: span 8;
  background:
    radial-gradient(circle at 20% 15%, rgba(204, 255, 63, 0.28), transparent 22rem),
    rgba(22, 30, 24, 0.92);
}

.bento-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 22px;
  filter: grayscale(0.7) contrast(1.2) brightness(0.8);
}

.bento-card h3,
.story-card h3,
.price-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.bento-card p,
.bento-card li,
.story-card span,
.price-card p {
  color: var(--muted);
  line-height: 1.65;
}

.bento-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.bento-card li::before {
  content: "/";
  margin-right: 8px;
  color: var(--acid);
}

.accordion {
  display: flex;
  min-height: 520px;
  gap: 12px;
  align-items: stretch;
}

.accordion-panel {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: clamp(88px, 9vw, 124px);
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, transparent, rgba(5, 7, 6, 0.88)),
    url("https://picsum.photos/seed/carrot-accordion-motion/900/1200") center/cover;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transform-origin: center;
  will-change: transform;
  transition:
    flex-grow 1150ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms ease;
}

.accordion-panel::before,
.accordion-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.accordion-panel::before {
  background:
    radial-gradient(circle at 24% 20%, rgba(204, 255, 63, 0.34), transparent 18rem),
    linear-gradient(90deg, rgba(5, 7, 6, 0.12), rgba(5, 7, 6, 0.64));
  opacity: 0;
  transform: scaleX(0.92);
  transform-origin: left center;
  transition: opacity 560ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-panel::after {
  border: 1px solid rgba(204, 255, 63, 0);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(248, 255, 233, 0.04);
  transition: border-color 640ms ease, box-shadow 980ms ease;
}

.accordion-panel:nth-child(2) { background-image: linear-gradient(180deg, transparent, rgba(5, 7, 6, 0.88)), url("https://picsum.photos/seed/local-website-menu/900/1200"); }
.accordion-panel:nth-child(3) { background-image: linear-gradient(180deg, transparent, rgba(5, 7, 6, 0.88)), url("https://picsum.photos/seed/reservation-calendar-night/900/1200"); }
.accordion-panel:nth-child(4) { background-image: linear-gradient(180deg, transparent, rgba(5, 7, 6, 0.88)), url("https://picsum.photos/seed/admin-console-shop/900/1200"); }
.accordion-panel:nth-child(5) { background-image: linear-gradient(180deg, transparent, rgba(5, 7, 6, 0.88)), url("https://picsum.photos/seed/payment-flow-store/900/1200"); }

.accordion-panel.is-active {
  flex-grow: 6.2;
}

.accordion-panel.is-active::before,
.accordion-panel:hover::before,
.accordion-panel:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.accordion-panel.is-active::after,
.accordion-panel:focus-visible::after {
  border-color: rgba(204, 255, 63, 0.32);
  box-shadow: inset 0 0 0 1px rgba(204, 255, 63, 0.08), 0 32px 120px rgba(204, 255, 63, 0.14);
}

.accordion-panel span {
  position: absolute;
  top: 26px;
  left: 24px;
  color: var(--acid);
  font-family: "SFMono-Regular", "Cascadia Code", monospace;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform-origin: left top;
}

.accordion-panel strong {
  display: block;
  max-width: calc(100% - 4px);
  overflow: hidden;
  font-size: clamp(24px, 2.35vw, 36px);
  line-height: 1.05;
  text-overflow: clip;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 220ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
}

.accordion-panel.is-active strong {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-duration: 520ms, 900ms;
  transition-delay: 640ms;
}

.pin-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(120px, 14vw, 200px) 0;
}

.pin-story__title {
  align-self: start;
  min-height: auto;
  padding-top: 24px;
  will-change: transform, opacity;
}

.pin-story__title p:not(.eyebrow) {
  max-width: 540px;
}

.pin-story__steps {
  display: grid;
  gap: 42px;
}

.story-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  box-shadow: var(--shadow-deep);
  will-change: transform, opacity, filter;
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  filter: grayscale(0.74) contrast(1.18) brightness(0.78);
}

.story-card span {
  display: block;
  margin-top: 22px;
  color: var(--acid);
  font-family: "SFMono-Regular", "Cascadia Code", monospace;
  font-weight: 900;
}

.story-card h3 {
  margin-top: 10px;
}

.orbit-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(77, 255, 210, 0.12), transparent 26rem),
    rgba(8, 12, 11, 0.9);
}

.orbit-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orbit-path path {
  stroke: rgba(204, 255, 63, 0.34);
  stroke-width: 2;
  stroke-dasharray: 8 12;
}

.orbit-core,
.orbit-item {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-hot);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.76);
  box-shadow: 0 0 70px rgba(204, 255, 63, 0.16);
  font-weight: 950;
  will-change: transform, opacity;
}

.orbit-core {
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  color: var(--acid);
  font-size: 28px;
  transform: translate(-50%, -50%);
}

.orbit-item {
  width: 112px;
  height: 112px;
}

.pricing-stack {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(120px, 14vw, 190px) 0;
}

.price-cards {
  position: relative;
  min-height: 980px;
  padding-top: 36px;
}

.price-card {
  position: sticky;
  top: 116px;
  display: grid;
  min-height: 360px;
  align-content: center;
  padding: clamp(30px, 6vw, 72px);
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 0%, rgba(204, 255, 63, 0.18), transparent 22rem),
    var(--panel-strong);
  box-shadow: var(--shadow-deep);
  transform-origin: center top;
  will-change: transform, opacity, filter;
}

.price-card:nth-child(1) {
  z-index: 1;
}

.price-card:nth-child(2) {
  z-index: 2;
  background:
    radial-gradient(circle at 80% 0%, rgba(77, 255, 210, 0.2), transparent 22rem),
    var(--panel-strong);
}

.price-card:nth-child(3) {
  z-index: 3;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 95, 79, 0.18), transparent 22rem),
    var(--panel-strong);
}

.price-card span {
  color: var(--acid);
  font-family: "SFMono-Regular", "Cascadia Code", monospace;
  font-size: 13px;
  font-weight: 900;
}

.price-card strong {
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 78px);
  line-height: 0.95;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.94;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-deep);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 4px rgba(204, 255, 63, 0.14);
}

select option {
  background: #0b1010;
  color: var(--ink);
}

.field-error,
.form-status {
  min-height: 20px;
  color: #ff9b8e;
  font-size: 13px;
}

.form-status:not(:empty) {
  color: var(--acid);
}

.form-status.is-error {
  color: #ff9b8e;
}

.form-status a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.interactive-card,
.magnetic,
.accordion-panel,
.button {
  will-change: transform;
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 7, 6, 0.985);
    box-shadow: var(--shadow-deep);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 82px);
  }

  .section-copy h2,
  .pin-story__title h2 {
    line-height: 1.18;
  }

  .hero-sequence {
    position: relative;
    bottom: auto;
    left: auto;
    width: min(100%, 390px);
    height: 224px;
    margin: 34px auto 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel article:last-child {
    border-bottom: 0;
  }

  .bento-grid,
  .contact,
  .pin-story {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card--wide,
  .bento-card--tall,
  .bento-card--accent {
    grid-column: span 12;
    grid-row: auto;
    min-height: auto;
  }

  .bento-card--wide {
    grid-template-columns: 1fr;
  }

  .accordion {
    min-height: auto;
    flex-direction: column;
  }

  .accordion-panel,
  .accordion-panel.is-active {
    flex: none;
    min-height: 180px;
  }

  .accordion-panel span {
    position: relative;
    top: auto;
    left: auto;
    writing-mode: initial;
  }

  .accordion-panel strong {
    max-width: 100%;
    white-space: normal;
    opacity: 1;
    transform: none;
  }

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

  .orbit-stage {
    min-height: 430px;
  }

  .orbit-core {
    width: 146px;
    height: 146px;
    font-size: 22px;
  }

  .orbit-item {
    width: 90px;
    height: 90px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .section,
  .pin-story,
  .pricing-stack,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-title {
    font-size: clamp(40px, 15vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-sequence {
    width: 100%;
    height: 238px;
  }

  .sequence-beam {
    top: 74px;
    width: calc(100% - 86px);
  }

  .sequence-node {
    min-width: 114px;
    padding: 12px;
  }

  .sequence-node strong {
    font-size: 14px;
  }

  .sequence-node--page {
    left: 44px;
  }

  .sequence-phone {
    right: 0;
    width: 96px;
  }

  .preloader__text {
    font-size: 42px;
  }
}

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

  .preloader {
    display: none;
  }

  .cursor-orb {
    display: none;
  }
}

.footer a{display:inline-flex;align-items:center;min-height:44px}
