:root {
  --paper: #f4f6f1;
  --paper-deep: #dfe8df;
  --ink: #1f2b28;
  --muted: #6c746f;
  --line: rgba(31, 43, 40, 0.13);
  --sage: #718b76;
  --moss: #445d4d;
  --water: #6f97a5;
  --sun: #d5a94f;
  --clay: #b47d62;
  --white-soft: rgba(250, 252, 247, 0.82);
  --shadow: 0 30px 90px rgba(45, 55, 47, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Gowun Dodum", "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(216, 232, 224, 0.42), rgba(216, 232, 224, 0) 34%),
    radial-gradient(circle at 82% 62%, rgba(213, 169, 79, 0.1), rgba(213, 169, 79, 0) 32%),
    linear-gradient(135deg, #f4f6f1 0%, #eef4ee 48%, #f6f2e8 100%);
  animation: ambientBreath 38s ease-in-out infinite alternate;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-atmosphere span {
  position: absolute;
  width: 58vw;
  height: 28vh;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.24;
  transform: rotate(-12deg);
  animation: mistPassage 58s ease-in-out infinite alternate;
}

.site-atmosphere::before,
.site-atmosphere::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(68, 93, 77, 0.22);
  box-shadow:
    22vw 16vh rgba(111, 151, 165, 0.2),
    44vw 58vh rgba(180, 125, 98, 0.16),
    70vw 34vh rgba(68, 93, 77, 0.18),
    82vw 72vh rgba(111, 151, 165, 0.16);
  filter: blur(0.6px);
  animation: quietDriftPoints 74s ease-in-out infinite alternate;
}

.site-atmosphere::before {
  left: 8vw;
  top: 28vh;
}

.site-atmosphere::after {
  right: 14vw;
  top: 18vh;
  opacity: 0.95;
  animation-delay: -28s;
  animation-duration: 92s;
}

.site-atmosphere span:nth-child(1) {
  left: -12vw;
  top: 22vh;
  background: rgba(111, 151, 165, 0.28);
}

.site-atmosphere span:nth-child(2) {
  right: -18vw;
  top: 48vh;
  background: rgba(113, 139, 118, 0.24);
  animation-delay: -18s;
  animation-duration: 72s;
}

.site-atmosphere span:nth-child(3) {
  left: 18vw;
  bottom: -8vh;
  background: rgba(213, 169, 79, 0.14);
  animation-delay: -32s;
  animation-duration: 84s;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(244, 246, 241, 0.78);
  box-shadow: 0 12px 34px rgba(45, 55, 47, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--moss);
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  left: 8px;
  top: 7px;
  background: var(--sun);
  transform: rotate(-26deg);
  transform-origin: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(31, 43, 40, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--moss);
}

.section-band,
.section {
  position: relative;
  padding: clamp(92px, 11vw, 150px) clamp(20px, 6vw, 80px);
}

.hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
  overflow: hidden;
  background: linear-gradient(135deg, #eef5f1 0%, #f7f8f0 46%, #eef2e4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background:
    radial-gradient(circle at 70% 24%, rgba(111, 151, 165, 0.22), rgba(111, 151, 165, 0) 34%),
    radial-gradient(circle at 22% 72%, rgba(113, 139, 118, 0.2), rgba(113, 139, 118, 0) 36%);
  filter: blur(4px);
  animation: slowLight 44s ease-in-out infinite alternate;
  pointer-events: none;
}

.flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24vh;
  background: linear-gradient(to bottom, rgba(244, 246, 241, 0), var(--paper));
  pointer-events: none;
}

.hero-inner,
.hero-preview {
  position: relative;
  z-index: 1;
}

.hero-preview {
  min-height: 420px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-family: "Nunito Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7.2vw, 94px);
  line-height: 1.02;
  font-family: "Nunito Sans", "Noto Sans KR", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: rgba(68, 93, 77, 0.88);
  color: #fbfff7;
}

.button.secondary {
  border: 1px solid rgba(31, 43, 40, 0.14);
  background: rgba(250, 252, 247, 0.34);
}

.record-field {
  position: relative;
  width: min(100%, 420px);
  min-height: 420px;
  margin-left: auto;
}

.record-field::before,
.record-field::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.record-field::before {
  inset: 11% 5% 9% 14%;
  border: 1px solid rgba(68, 93, 77, 0.09);
  background: radial-gradient(circle at 48% 42%, rgba(250, 252, 247, 0.42), rgba(250, 252, 247, 0) 58%);
  animation: quietPulse 36s ease-in-out infinite alternate;
}

.record-field::after {
  width: 72%;
  height: 28%;
  left: 8%;
  top: 46%;
  background: linear-gradient(90deg, rgba(111, 151, 165, 0), rgba(111, 151, 165, 0.16), rgba(213, 169, 79, 0));
  transform: rotate(-18deg);
  animation: slowDrift 52s ease-in-out infinite alternate;
}

.record-fragment {
  position: absolute;
  z-index: 1;
  max-width: 250px;
  margin: 0;
  color: rgba(49, 64, 58, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.record-fragment.first {
  top: 18%;
  right: 5%;
}

.record-fragment.second {
  left: 0;
  bottom: 19%;
}

.field-symbol {
  position: absolute;
  z-index: 1;
  display: block;
  opacity: 0.86;
}

.field-symbol.moon {
  width: 74px;
  height: 74px;
  left: 8%;
  top: 26%;
  border-radius: 50%;
  background: rgba(111, 151, 165, 0.62);
  animation: heroMoonBreath 3.8s ease-in-out infinite alternate;
}

.field-symbol.moon::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  right: -4px;
  top: 6px;
  border-radius: 50%;
  background: rgba(244, 246, 241, 0.94);
}

.field-symbol.leaf {
  width: 56px;
  height: 56px;
  right: 16%;
  bottom: 25%;
  border-radius: 72% 9px 72% 9px;
  background: rgba(113, 139, 118, 0.68);
  transform: rotate(-24deg);
  animation: leafBreath 4.2s ease-in-out infinite alternate;
}

.field-symbol.leaf::after,
.stage-sun::after,
.stage-ring::after,
.stage-orbit::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 252, 236, 0.58), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-32%) rotate(12deg);
  animation: stageGleam var(--cycle-duration, 18s) ease-in-out infinite;
  pointer-events: none;
}

.floating-thoughts {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 42%;
  max-width: 270px;
  color: rgba(31, 43, 40, 0.82);
  font-size: 15px;
  line-height: 1.75;
  pointer-events: none;
}

.floating-thoughts span {
  display: block;
  min-height: 48px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1250ms ease, transform 1250ms ease;
}

.floating-thoughts.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.field-growth {
  position: absolute;
  left: 18%;
  right: 10%;
  bottom: 8%;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.55fr 0.85fr 1.25fr 1.65fr;
  gap: 10px;
  align-items: center;
}

.field-growth span {
  height: 2px;
  border-radius: 999px;
  background: rgba(68, 93, 77, 0.22);
}

.field-growth span:nth-child(2) {
  background: rgba(111, 151, 165, 0.28);
}

.field-growth span:nth-child(3) {
  background: rgba(113, 139, 118, 0.32);
}

.field-growth span:nth-child(4) {
  background: rgba(213, 169, 79, 0.24);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
}

.philosophy::before,
.symbol::before,
.community::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.52;
}

.philosophy::before {
  width: 42vw;
  height: 16vh;
  right: -10vw;
  top: 18%;
  background: rgba(216, 232, 224, 0.34);
  transform: rotate(-12deg);
}

.symbol::before {
  width: 46vw;
  height: 20vh;
  left: -14vw;
  top: 22%;
  background: rgba(111, 151, 165, 0.16);
  transform: rotate(9deg);
}

.community::before {
  width: 44vw;
  height: 18vh;
  right: -12vw;
  bottom: 16%;
  background: rgba(213, 169, 79, 0.12);
  transform: rotate(-10deg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.philosophy .section-heading,
.community .section-heading {
  margin-left: clamp(0px, 8vw, 96px);
}

.symbol .section-heading {
  margin-left: auto;
  margin-right: clamp(0px, 6vw, 80px);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.principle-grid,
.community-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.principle-grid article,
.community-grid article,
.flow-steps article {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.principle-grid article:nth-child(2),
.community-grid article:nth-child(2) {
  margin-top: clamp(34px, 6vw, 78px);
}

.principle-grid article:nth-child(3),
.community-grid article:nth-child(3) {
  margin-top: clamp(12px, 3vw, 36px);
}

.principle-grid p,
.community-grid p,
.flow-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.index {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(180, 125, 98, 0.78);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 700;
}

.flow {
  max-width: none;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 246, 241, 0) 0%, rgba(232, 240, 237, 0.88) 18%, rgba(232, 240, 237, 0.72) 82%, rgba(244, 246, 241, 0) 100%);
}

.flow::before {
  content: "";
  position: absolute;
  inset: 10% -12%;
  background: linear-gradient(105deg, rgba(111, 151, 165, 0), rgba(111, 151, 165, 0.14), rgba(111, 151, 165, 0));
  transform: rotate(-7deg);
  animation: slowDrift 46s ease-in-out infinite alternate;
  pointer-events: none;
}

.flow .section-heading,
.flow-steps {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.flow-steps {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: clamp(30px, 6vw, 88px);
  position: relative;
}

.flow-steps::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(68, 93, 77, 0), rgba(68, 93, 77, 0.2), rgba(68, 93, 77, 0));
}

.flow-steps article:nth-child(2) {
  margin-top: 54px;
}

.flow-steps article:nth-child(3) {
  margin-top: 18px;
}

.flow-steps span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--moss);
  font-weight: 700;
}

.symbol-stage {
  --cycle-duration: 18s;
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(5, minmax(58px, 1fr));
  align-items: center;
  gap: clamp(16px, 4vw, 44px);
  padding: 42px 0;
  position: relative;
}

.symbol-stage::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(68, 93, 77, 0), rgba(68, 93, 77, 0.18), rgba(68, 93, 77, 0));
}

.symbol-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 7%;
  width: clamp(42px, 7vw, 90px);
  height: clamp(42px, 7vw, 90px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 246, 205, 0.58) 0 16%, rgba(213, 169, 79, 0.2) 34%, rgba(213, 169, 79, 0) 70%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
  animation: growthSpotlight var(--cycle-duration) ease-in-out infinite;
  pointer-events: none;
}

.symbol-stage > div {
  margin: auto;
  position: relative;
  z-index: 1;
  animation: stageWake var(--cycle-duration) ease-in-out infinite;
}

.stage-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--moss);
  --stage-index: 0;
  animation-delay: 0s;
}

.stage-line {
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: var(--water);
  transform: rotate(-18deg);
  --stage-index: 1;
  animation-delay: calc(var(--cycle-duration) * -0.2);
}

.stage-ring {
  width: 70px;
  height: 70px;
  border: 3px solid var(--sage);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  --stage-index: 2;
  animation-delay: calc(var(--cycle-duration) * -0.4);
}

.stage-orbit {
  width: 96px;
  height: 96px;
  border: 2px solid rgba(68, 93, 77, 0.56);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  --stage-index: 3;
  animation-delay: calc(var(--cycle-duration) * -0.6);
}

.stage-orbit::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--clay);
}

.stage-orbit::before {
  width: 72px;
  height: 2px;
  left: 12px;
  top: 46px;
  transform: rotate(25deg);
}

.stage-sun {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 42% 36%, #f7d98a 0 18%, var(--sun) 19% 58%, rgba(213, 169, 79, 0.18) 59% 100%);
  --stage-index: 4;
  animation-delay: calc(var(--cycle-duration) * -0.8);
}

.feedback {
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(111, 151, 165, 0.18), rgba(111, 151, 165, 0) 38%),
    linear-gradient(180deg, rgba(244, 246, 241, 0) 0%, rgba(230, 238, 230, 0.74) 36%, rgba(244, 246, 241, 0) 100%);
  color: var(--ink);
}

.quote-panel {
  max-width: 980px;
  margin: 0 auto;
  padding-left: clamp(0px, 7vw, 120px);
}

.quote-panel .eyebrow {
  color: var(--moss);
}

.quote-panel p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.mvp {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(244, 246, 241, 0) 0%, rgba(237, 241, 227, 0.86) 24%, rgba(237, 241, 227, 0.92) 100%);
}

.mvp .section-heading,
.status-list {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.status-list {
  display: grid;
  gap: 0;
}

.status-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(31, 43, 40, 0.12);
  background: transparent;
}

.status-list div:nth-child(even) {
  padding-left: clamp(18px, 7vw, 120px);
}

.status-list p {
  margin: 0;
  font-weight: 600;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.status-dot.ready {
  background: var(--sage);
}

.status-dot.progress {
  background: var(--sun);
}

.status-dot.later {
  background: var(--water);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 80px);
  background: rgba(31, 43, 40, 0.94);
  color: rgba(251, 255, 247, 0.74);
}

@keyframes ambientBreath {
  from {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.92;
  }
  to {
    transform: scale(1.04) translate3d(-1.2%, 0.8%, 0);
    opacity: 1;
  }
}

@keyframes slowLight {
  from {
    transform: translate3d(-1.5%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(1.4%, 1.1%, 0) scale(1.04);
  }
}

@keyframes slowDrift {
  from {
    transform: translateX(-2%) rotate(-7deg);
  }
  to {
    transform: translateX(2%) rotate(-6deg);
  }
}

@keyframes mistPassage {
  from {
    transform: translate3d(-2%, 0, 0) rotate(-12deg) scale(1);
  }
  to {
    transform: translate3d(2.5%, 1.4%, 0) rotate(-10deg) scale(1.06);
  }
}

@keyframes quietPulse {
  from {
    transform: scale(0.98);
    opacity: 0.78;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes quietDriftPoints {
  from {
    transform: translate3d(-2vw, 0, 0);
    opacity: 0.72;
  }
  48% {
    opacity: 0.36;
  }
  to {
    transform: translate3d(2.6vw, 1.8vh, 0);
    opacity: 0.78;
  }
}

@keyframes symbolBreath {
  from {
    transform: translate3d(0, 0, 0) scale(0.94);
    opacity: 0.62;
  }
  to {
    transform: translate3d(0, -10px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes stageWake {
  0%,
  14%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.38;
    filter: saturate(0.78);
  }
  22% {
    transform: translate3d(0, -8px, 0) scale(1.16);
    opacity: 1;
    filter: saturate(1.12);
  }
  34% {
    transform: translate3d(0, -3px, 0) scale(1.04);
    opacity: 0.74;
    filter: saturate(0.98);
  }
  48% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.54;
    filter: saturate(0.9);
  }
}

@keyframes growthSpotlight {
  0%,
  8% {
    left: 7%;
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.78);
  }
  18% {
    left: 7%;
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1);
  }
  28% {
    left: 28.5%;
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(0.96);
  }
  45% {
    left: 50%;
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.04);
  }
  62% {
    left: 71.5%;
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1);
  }
  80% {
    left: 93%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
  92% {
    left: 93%;
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.86);
  }
  100% {
    left: 7%;
    opacity: 0.46;
    transform: translate(-50%, -50%) scale(0.76);
  }
}

@keyframes stageGleam {
  0%,
  10%,
  100% {
    opacity: 0;
    transform: translateX(-36%) rotate(12deg);
  }
  20% {
    opacity: 0.72;
    transform: translateX(0) rotate(12deg);
  }
  34% {
    opacity: 0;
    transform: translateX(36%) rotate(12deg);
  }
}

@keyframes heroMoonBreath {
  from {
    transform: translate3d(0, 0, 0) scale(0.94);
    opacity: 0.64;
  }
  to {
    transform: translate3d(0, -11px, 0) scale(1.085);
    opacity: 1;
  }
}

@keyframes leafBreath {
  from {
    transform: rotate(-24deg) translate3d(0, 0, 0) scale(0.94);
    opacity: 0.62;
  }
  to {
    transform: rotate(-20deg) translate3d(0, -11px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes lineBreath {
  from {
    transform: rotate(-18deg) scaleX(0.82);
    opacity: 0.46;
  }
  to {
    transform: rotate(-13deg) scaleX(1.22);
    opacity: 1;
  }
}

@keyframes softGleam {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-34%) rotate(12deg);
  }
  44% {
    opacity: 0.86;
  }
  70%,
  100% {
    opacity: 0;
    transform: translateX(34%) rotate(12deg);
  }
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: #fbfff7;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .hero-preview {
    margin-top: 12px;
  }

  .hero-preview {
    min-height: 330px;
  }

  .record-field {
    min-height: 330px;
    margin-left: 0;
  }

  .record-fragment {
    max-width: 220px;
    font-size: 15px;
  }

  .record-fragment.first {
    right: 0;
  }

  .record-fragment.second {
    left: 0;
    bottom: 14%;
  }

  .field-symbol.moon {
    width: 58px;
    height: 58px;
  }

  .field-symbol.moon::after {
    width: 42px;
    height: 42px;
  }

  .field-symbol.leaf {
    width: 44px;
    height: 44px;
  }

  .principle-grid,
  .community-grid,
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .philosophy .section-heading,
  .community .section-heading,
  .symbol .section-heading {
    margin-left: 0;
    margin-right: 0;
  }

  .principle-grid article:nth-child(2),
  .community-grid article:nth-child(2),
  .principle-grid article:nth-child(3),
  .community-grid article:nth-child(3),
  .flow-steps article:nth-child(2),
  .flow-steps article:nth-child(3) {
    margin-top: 0;
  }

  .flow-steps::before {
    display: none;
  }

  .symbol-stage {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    min-height: 160px;
  }

  .stage-line {
    width: 44px;
  }

  .stage-ring {
    width: 48px;
    height: 48px;
  }

  .stage-orbit {
    width: 62px;
    height: 62px;
  }

  .stage-orbit::before {
    width: 44px;
    left: 9px;
    top: 30px;
  }

  .stage-sun {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .section-band,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
