/* =============================================
   $GYARU — CONCEPT PAGE
   Media: 1990s Y2K × 2026 Digital Rebellion
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --col-bg:       #0a0007;
  --col-surface:  #120010;
  --col-pink:     #ff2d78;
  --col-gold:     #ffd700;
  --col-lame:     #c8a0ff;
  --col-cyan:     #00ffe7;
  --col-white:    #fff5f8;
  --col-muted:    #9a7a8a;
  --ff-display:   'Bebas Neue', 'Space Grotesk', sans-serif;
  --ff-body:      'Noto Sans JP', sans-serif;
  --section-pad:  clamp(80px, 12vw, 160px) 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--col-bg);
  color: var(--col-white);
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ---- NOISE TEXTURE ---- */
.noise-overlay {
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
}

/* ---- GLITTER CANVAS ---- */
#glitter-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ---- SECTION CONTAINER ---- */
.section-container {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 60px);
}

.section-label {
  font-family: var(--ff-display);
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.25em;
  color: var(--col-pink);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: inline-block;
  border-left: 3px solid var(--col-pink);
  padding-left: 12px;
}

/* ---- UTILITY ---- */
.highlight       { color: var(--col-pink); font-weight: 900; }
.highlight-pink  { color: var(--col-pink); font-weight: 900; }
.highlight-gold  { color: var(--col-gold); font-weight: 900; }
.brand-inline    { font-family: var(--ff-display); font-size: 1.15em; color: var(--col-pink); letter-spacing: 0.05em; }

.crossed {
  text-decoration: line-through;
  text-decoration-color: var(--col-pink);
  text-decoration-thickness: 2px;
  opacity: 0.6;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(255,45,120,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(200,160,255,0.12) 0%, transparent 60%),
    var(--col-bg);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.015) 3px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none; z-index: 1;
}

.hero__bg-text {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(120px, 28vw, 340px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,45,120,0.12);
  letter-spacing: -0.05em;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none; z-index: 1;
  animation: bgpulse 6s ease-in-out infinite alternate;
}
@keyframes bgpulse {
  from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}

.hero__content { position: relative; z-index: 2; }

.hero__eyebrow {
  font-family: var(--ff-display);
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.3em;
  color: var(--col-lame);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* GLITCH */
.glitch-text {
  position: relative;
  display: inline-block;
}
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%;
  overflow: hidden;
  opacity: 0.7;
}
.glitch-text::before {
  color: var(--col-cyan);
  clip: rect(0, 900px, 0, 0);
  animation: glitch-before 4s infinite linear;
}
.glitch-text::after {
  color: var(--col-pink);
  clip: rect(0, 900px, 0, 0);
  animation: glitch-after 4s infinite linear 0.3s;
}
@keyframes glitch-before {
  0%,94%,100% { clip: rect(0,900px,0,0); transform: skew(0); }
  95% { clip: rect(2px,900px,6px,0); transform: skew(-0.5deg); }
  97% { clip: rect(10px,900px,14px,0); transform: skew(0.5deg); }
}
@keyframes glitch-after {
  0%,92%,100% { clip: rect(0,900px,0,0); transform: skew(0); }
  93% { clip: rect(5px,900px,9px,0); transform: skew(0.4deg); }
  96% { clip: rect(18px,900px,22px,0); transform: skew(-0.4deg); }
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(80px, 20vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__title .dollar {
  color: var(--col-gold);
  display: inline-block;
  animation: shimmer 2s ease-in-out infinite alternate;
}
@keyframes shimmer {
  from { text-shadow: 0 0 20px rgba(255,215,0,0.4), 0 0 60px rgba(255,215,0,0.2); }
  to   { text-shadow: 0 0 40px rgba(255,215,0,0.8), 0 0 120px rgba(255,215,0,0.4), 0 0 200px rgba(255,215,0,0.2); }
}
.hero__title .brand {
  color: var(--col-white);
  display: inline-block;
  text-shadow: 0 0 60px rgba(255,45,120,0.5);
}

.hero__sub {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--col-lame);
  line-height: 1.5;
  margin-bottom: 50px;
}

.hero__scroll-hint {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--col-muted);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

.hero__tags {
  position: absolute; bottom: 30px; left: 0; right: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  padding: 0 20px; z-index: 2;
}
.hero__tags span {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--col-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}

/* ====================================================
   ORIGIN
   ==================================================== */
.origin {
  padding: var(--section-pad);
  position: relative;
  background: linear-gradient(180deg, var(--col-bg) 0%, #110015 100%);
}

.origin__lead {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 60px;
  color: var(--col-white);
}

.rules-smash { display: flex; flex-direction: column; gap: 16px; }

.rule {
  font-family: var(--ff-display);
  font-size: clamp(28px, 5vw, 60px);
  letter-spacing: 0.05em;
  color: var(--col-muted);
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}
.rule::after {
  content: '';
  position: absolute;
  left: -5px; right: -5px;
  top: 50%; transform: translateY(-50%);
  height: 3px;
  background: var(--col-pink);
  animation: strikethrough 0.6s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.2s);
  transform-origin: left center;
}
@keyframes strikethrough {
  from { transform: translateY(-50%) scaleX(0); }
  to   { transform: translateY(-50%) scaleX(1); }
}
.rule:nth-child(1) { --i: 0; }
.rule:nth-child(2) { --i: 1; }
.rule:nth-child(3) { --i: 2; }

.rule-response {
  font-size: clamp(17px, 2.5vw, 24px);
  line-height: 1.6;
  color: var(--col-white);
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--col-gold);
}

/* ====================================================
   MANIFESTO LIST
   ==================================================== */
.manifesto-list {
  padding: var(--section-pad);
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(255,45,120,0.07) 0%, transparent 70%),
    #0d0012;
}

.code-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 50px;
}
.code-list li {
  font-size: clamp(16px, 2.2vw, 22px);
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
  animation: fadeUp 0.5s ease both;
}
.code-list li:hover {
  background: rgba(255,45,120,0.06);
  border-color: rgba(255,45,120,0.3);
}
.code-icon {
  color: var(--col-pink);
  font-size: 0.6em;
  flex-shrink: 0;
  margin-top: 4px;
}

.code-outro {
  font-size: clamp(16px, 2.3vw, 22px);
  line-height: 1.8;
  padding: 30px;
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 6px;
}

/* ====================================================
   CALL 2026
   ==================================================== */
.call-2026 {
  padding: var(--section-pad);
  background: var(--col-surface);
  position: relative;
  overflow: hidden;
}
.call-2026::before {
  content: '2026';
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(160px, 30vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,215,0,0.06);
  pointer-events: none;
}

.call-2026__heading {
  font-size: clamp(24px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 50px;
}
.yr { color: var(--col-gold); }

.chains {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 50px;
}
.chain-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-display);
  font-size: clamp(16px, 2.5vw, 26px);
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border: 1px solid rgba(200,160,255,0.25);
  border-radius: 4px;
  color: var(--col-lame);
  background: rgba(200,160,255,0.04);
}
.chain-icon { color: var(--col-lame); font-size: 0.7em; }

.call-2026__body {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 2;
  color: rgba(255,245,248,0.7);
  margin-bottom: 60px;
}

.call-2026__announce {
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.4;
}
.descend {
  color: var(--col-pink);
  display: inline-block;
  animation: descend 1.2s ease-out both;
}
@keyframes descend {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====================================================
   PHILOSOPHY
   ==================================================== */
.philosophy {
  padding: var(--section-pad);
  background: linear-gradient(180deg, #110015 0%, #0a000f 100%);
}

.philosophy__intro {
  font-size: clamp(18px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 60px;
  padding-left: 24px;
  border-left: 4px solid var(--col-gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.value-card {
  padding: 30px 24px;
  border: 1px solid rgba(255,45,120,0.2);
  border-radius: 6px;
  background: rgba(255,45,120,0.04);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--col-pink);
  background: rgba(255,45,120,0.08);
}
.value-card__icon {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--col-pink);
  line-height: 1;
  margin-bottom: 14px;
}
.value-card__title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--col-white);
}
.value-card__body {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--col-muted);
  line-height: 1.7;
}

.philosophy__vision {
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  padding: 50px 0;
}

/* ====================================================
   FREEDOM
   ==================================================== */
.freedom {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(200,160,255,0.12) 0%, transparent 60%),
    #08000c;
}

.freedom__bg-text {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(150px, 35vw, 500px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,160,255,0.07);
  letter-spacing: -0.05em;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 1;
}

.freedom__lines {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 50px;
  position: relative; z-index: 2;
}
.freedom__line {
  font-size: clamp(20px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,245,248,0.6);
  transition: color 0.3s;
}
.freedom__line:last-child {
  color: var(--col-white);
  font-size: clamp(22px, 4.5vw, 48px);
  margin-top: 10px;
}
.freedom__line strong { color: var(--col-white); }

.freedom__note {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.8;
  color: rgba(255,245,248,0.7);
  position: relative; z-index: 2;
  padding: 30px;
  border: 1px solid rgba(255,45,120,0.15);
  border-radius: 6px;
  background: rgba(0,0,0,0.2);
}

/* ====================================================
   FORMS OF GYARU
   ==================================================== */
.forms {
  padding: var(--section-pad);
  background: linear-gradient(180deg, #0a000f 0%, #110015 100%);
}

.forms__heading {
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 40px;
}

.forms__grid {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 50px;
}
.form-tag {
  font-size: clamp(14px, 2vw, 18px);
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid rgba(255,215,0,0.3);
  color: var(--col-gold);
  background: rgba(255,215,0,0.04);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  cursor: default;
}
.form-tag:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--col-gold);
  transform: scale(1.04);
}

.forms__quote {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.7;
  padding: 36px 40px;
  border-left: 5px solid var(--col-lame);
  background: rgba(200,160,255,0.05);
  border-radius: 0 6px 6px 0;
  color: var(--col-white);
}

/* ====================================================
   PILLARS
   ==================================================== */
.pillars {
  padding: var(--section-pad);
  background: #06000a;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2px;
  margin-bottom: 60px;
}
.pillar {
  padding: 36px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.pillar:hover {
  background: rgba(255,45,120,0.06);
  border-color: rgba(255,45,120,0.2);
}
.pillar__num {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--col-pink);
  margin-bottom: 12px;
}
.pillar__word {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  margin-bottom: 8px;
}
.pillar__en {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--col-muted);
  text-transform: uppercase;
}

.pillars__body {
  font-size: clamp(16px, 2.2vw, 22px);
  color: rgba(255,245,248,0.6);
  text-align: center;
}

/* ====================================================
   WORLD STATEMENT
   ==================================================== */
.world-statement {
  padding: var(--section-pad);
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,45,120,0.1) 0%, transparent 60%),
    #0d0012;
}

.ws-block { margin-bottom: 50px; }
.ws-line {
  font-size: clamp(17px, 2.5vw, 24px);
  color: rgba(255,245,248,0.5);
  line-height: 1.6;
}
.ws-line--alt {
  font-size: clamp(22px, 3.8vw, 40px);
  font-weight: 900;
  color: var(--col-white);
  margin-top: 6px;
}

.ws-cta {
  font-size: clamp(18px, 3vw, 30px);
  line-height: 1.7;
  padding: 40px;
  border: 2px solid rgba(255,45,120,0.3);
  border-radius: 6px;
  background: rgba(255,45,120,0.04);
  text-align: center;
}

/* ====================================================
   PERMISSION
   ==================================================== */
.permission {
  padding: var(--section-pad);
  background: #06000a;
}

.perm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.perm-item {
  display: flex; align-items: center; gap: 16px;
  font-size: clamp(16px, 2vw, 20px);
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  color: rgba(255,245,248,0.5);
}
.perm-no {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--col-pink);
  flex-shrink: 0;
}

.perm-affirm {
  display: flex; flex-direction: column; gap: 16px;
}
.perm-af-item {
  display: flex; align-items: center; gap: 16px;
  font-size: clamp(17px, 2.3vw, 24px);
  padding: 22px 28px;
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 4px;
  background: rgba(255,215,0,0.03);
  color: var(--col-white);
  transition: background 0.3s;
}
.perm-af-item:hover { background: rgba(255,215,0,0.07); }
.perm-yes {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--col-gold);
  flex-shrink: 0;
}

/* ====================================================
   CALL TO ACTION
   ==================================================== */
.cta-section {
  padding: var(--section-pad);
  background: linear-gradient(180deg, #06000a 0%, #120010 100%);
  text-align: center;
}

.cta-commands {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-bottom: 60px;
}
.cta-cmd {
  font-size: clamp(28px, 6vw, 70px);
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255,245,248,0.4);
}
.cta-cmd strong {
  color: var(--col-white);
  font-weight: 900;
}

.cta-together {
  font-size: clamp(18px, 3vw, 30px);
  line-height: 1.7;
  margin-bottom: 50px;
  color: rgba(255,245,248,0.7);
}
.cta-together strong { color: var(--col-pink); }

.cta-tagline {
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 700;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(255,45,120,0.1), rgba(200,160,255,0.1));
  border: 1px solid rgba(255,45,120,0.2);
  border-radius: 6px;
  display: inline-block;
}

/* ====================================================
   FINAL
   ==================================================== */
.final {
  position: relative;
  padding: var(--section-pad);
  min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,45,120,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 20% 20%, rgba(200,160,255,0.08) 0%, transparent 60%),
    #0a0007;
}

.final__bg-text {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(60px, 18vw, 240px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,45,120,0.08);
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none; z-index: 1;
  letter-spacing: -0.03em;
}

.final .section-container { text-align: center; }

.final__quote {
  font-size: clamp(20px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 60px;
  font-style: normal;
}

.final__chart {
  font-size: clamp(17px, 2.5vw, 26px);
  line-height: 1.8;
  margin-bottom: 80px;
  color: rgba(255,245,248,0.7);
}
.final__chart strong { color: var(--col-white); }

.final__brand { margin-bottom: 60px; }
.final__brand-name {
  font-family: var(--ff-display);
  font-size: clamp(60px, 14vw, 160px);
  letter-spacing: -0.02em;
  color: var(--col-pink);
  line-height: 0.9;
  text-shadow: 0 0 80px rgba(255,45,120,0.5), 0 0 160px rgba(255,45,120,0.3);
  animation: flamepulse 3s ease-in-out infinite alternate;
}
@keyframes flamepulse {
  from { text-shadow: 0 0 40px rgba(255,45,120,0.4), 0 0 80px rgba(255,45,120,0.2); }
  to   { text-shadow: 0 0 80px rgba(255,45,120,0.8), 0 0 160px rgba(255,45,120,0.4), 0 0 240px rgba(255,45,120,0.2); }
}
.final__brand-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--col-muted);
  line-height: 1.8;
  margin-top: 20px;
  letter-spacing: 0.05em;
}

.final__three {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.final__three span {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2.5vw, 24px);
  letter-spacing: 0.3em;
  color: var(--col-gold);
  opacity: 0.7;
  text-transform: uppercase;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  padding: 50px 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  background: #050005;
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 32px;
  color: rgba(255,45,120,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer__copy {
  font-size: 12px;
  color: var(--col-muted);
  letter-spacing: 0.1em;
}

/* ====================================================
   SCROLL ANIMATIONS
   ==================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 600px) {
  .chains { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .perm-grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .forms__grid { gap: 10px; }
  .form-tag { font-size: 13px; padding: 10px 18px; }
  .final__three { gap: 20px; }
  .ws-cta { padding: 25px 20px; }
  .cta-tagline { padding: 20px 24px; }
}
