/* DAONSNC homepage 2026 — base */
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .8s ease;
}

body[data-scroll-tone="warm"] {
  background: #fbfaf7;
}

body[data-scroll-tone="cool"] {
  background: #f7f8fb;
}

body[data-scroll-tone="muted"] {
  background: #f4f4f4;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

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

.anim {
  animation: fadeUp .7s cubic-bezier(.2, .7, .2, 1) both;
}

.anim-1 {
  animation-delay: .04s;
}

.anim-2 {
  animation-delay: .14s;
}

.anim-3 {
  animation-delay: .24s;
}

.anim-4 {
  animation-delay: .34s;
}

.anim-5 {
  animation-delay: .50s;
}

.anim-6 {
  animation-delay: .65s;
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
}
