/* ================================================================
   appreciation-wall.css
   ParkieVault V2 — Appreciation Wall
   Theme: Premium Memory Vault — Deep Navy · Pearl · Soft Gold
   ================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Background palette */
  --bg-deep:        #050816;
  --bg-mid:         #081226;
  --bg-surface:     #0D1730;

  /* Accent palette */
  --pearl:          #f0ece4;
  --pearl-dim:      rgba(240,236,228,0.6);
  --pearl-ghost:    rgba(240,236,228,0.08);
  --gold:           #c9a84c;
  --gold-light:     #e8c97a;
  --gold-glow:      rgba(201,168,76,0.2);
  --gold-dim:       rgba(201,168,76,0.12);
  --iridescent:     #7ab8f5;
  --iridescent-dim: rgba(122,184,245,0.15);

  /* Surfaces */
  --glass-bg:       rgba(255,255,255,0.035);
  --glass-bg-hover: rgba(255,255,255,0.06);
  --glass-border:   rgba(255,255,255,0.08);
  --glass-border-gold: rgba(201,168,76,0.22);
  --glass-border-pearl: rgba(240,236,228,0.12);

  /* Text */
  --text-primary:   #f0ece4;
  --text-muted:     rgba(240,236,228,0.7);
  --text-dim:       rgba(240,236,228,0.38);

  /* Form */
  --input-bg:       rgba(255,255,255,0.04);
  --input-focus:    rgba(201,168,76,0.25);

  /* Radius */
  --r-card:   16px;
  --r-input:  10px;
  --r-btn:    50px;
  --r-note:   6px;

  --container-max: 1100px;
  --section-gap:   88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ----------------------------------------------------------------
   BASE
   ---------------------------------------------------------------- */
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ----------------------------------------------------------------
   BACKGROUND — Rich premium vault atmosphere
   ---------------------------------------------------------------- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Deep layered gradient base */
.bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%,   rgba(13,23,48,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 100%,  rgba(8,18,38,0.9)  0%, transparent 70%),
    linear-gradient(160deg, #050816 0%, #081226 45%, #0D1730 75%, #06101e 100%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.028'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Cinematic light blooms */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}
.glow-tl {
  width: 800px; height: 600px;
  top: -200px; left: -250px;
  background: radial-gradient(circle, rgba(122,184,245,0.07) 0%, transparent 70%);
}
.glow-br {
  width: 700px; height: 700px;
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.glow-mid {
  width: 500px; height: 500px;
  top: 35%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240,236,228,0.03) 0%, transparent 70%);
}

/* ----------------------------------------------------------------
   FLOATING PARTICLES — replaces flower elements
   ---------------------------------------------------------------- */
.flowers-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.flower {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  will-change: transform, opacity;
}

/* Gold dust particles */
.flower-1  { width:3px;  height:3px;  left:5%;   background:#e8c97a; box-shadow:0 0 6px #e8c97a;  animation-duration:20s; animation-delay:0s; }
.flower-2  { width:2px;  height:2px;  left:15%;  background:#f0ece4; box-shadow:0 0 4px #f0ece4;  animation-duration:25s; animation-delay:-7s; }
.flower-3  { width:4px;  height:4px;  left:25%;  background:#c9a84c; box-shadow:0 0 8px #c9a84c;  animation-duration:18s; animation-delay:-3s; }
.flower-4  { width:2px;  height:2px;  left:38%;  background:#7ab8f5; box-shadow:0 0 5px #7ab8f5;  animation-duration:22s; animation-delay:-12s; }
.flower-5  { width:3px;  height:3px;  left:50%;  background:#e8c97a; box-shadow:0 0 6px #e8c97a;  animation-duration:28s; animation-delay:-5s; }
.flower-6  { width:2px;  height:2px;  left:62%;  background:#f0ece4; box-shadow:0 0 4px #f0ece4;  animation-duration:19s; animation-delay:-15s; }
.flower-7  { width:4px;  height:4px;  left:72%;  background:#c9a84c; box-shadow:0 0 8px #c9a84c;  animation-duration:24s; animation-delay:-2s; }
.flower-8  { width:2px;  height:2px;  left:82%;  background:#7ab8f5; box-shadow:0 0 5px #7ab8f5;  animation-duration:21s; animation-delay:-9s; }
.flower-9  { width:3px;  height:3px;  left:90%;  background:#e8c97a; box-shadow:0 0 6px #e8c97a;  animation-duration:26s; animation-delay:-18s; }
.flower-10 { width:2px;  height:2px;  left:10%;  background:#c9a84c; box-shadow:0 0 4px #c9a84c;  animation-duration:23s; animation-delay:-6s; }
.flower-11 { width:3px;  height:3px;  left:45%;  background:#f0ece4; box-shadow:0 0 6px #f0ece4;  animation-duration:17s; animation-delay:-11s; }
.flower-12 { width:2px;  height:2px;  left:96%;  background:#7ab8f5; box-shadow:0 0 4px #7ab8f5;  animation-duration:20s; animation-delay:-4s; }

@keyframes floatParticle {
  0%   { transform: translateY(100vh) translateX(0px);  opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translateY(45vh)  translateX(20px); opacity: 0.8; }
  92%  { opacity: 0.6; }
  100% { transform: translateY(-5vh)  translateX(-10px);opacity: 0; }
}

/* ----------------------------------------------------------------
   MUSIC CONTROL
   ---------------------------------------------------------------- */
.music-control {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 300;
}
.music-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(240,236,228,0.1));
  border: 1px solid var(--glass-border-gold);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1rem;
  color: var(--gold-light);
  position: relative;
}
.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(201,168,76,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.music-btn.muted { opacity: 0.5; }
.music-icon { line-height: 1; }
.music-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: musicPulse 2.5s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s;
}
.music-btn.playing::before { opacity: 1; }
@keyframes musicPulse {
  0%,100% { transform: scale(1);   opacity: 0.4; }
  50%      { transform: scale(1.25);opacity: 0; }
}

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
section { position: relative; z-index: 1; }
footer  { position: relative; z-index: 1; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.aw-hero {
  padding: 48px 0 64px;
  text-align: center;
}

.btn-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 8px 16px; border-radius: 50px;
  text-decoration: none; margin-bottom: 32px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
}
.btn-back:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-gold);
  color: var(--gold-light);
}

.aw-hero-inner { display:flex;flex-direction:column;align-items:center;gap:16px; }

.aw-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin: 0;
}

.aw-hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.06em;
  color: var(--pearl);
  margin: 0; line-height: 1;
}
.aw-hero-title span {
  background: linear-gradient(135deg, #f0ece4 20%, #e8c97a 60%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aw-hero-sub {
  font-size: 0.95rem; color: var(--text-muted);
  max-width: 480px; line-height: 1.75; margin: 0;
  font-style: italic;
}

.aw-hero-badges { display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:4px; }
.aw-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 5px 14px; border-radius: 50px; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-wall {
  background: var(--gold-dim);
  border: 1px solid var(--glass-border-gold);
  color: var(--gold-light);
}
.badge-live {
  background: rgba(122,184,245,0.08);
  border: 1px solid rgba(122,184,245,0.2);
  color: #a8d4f8;
}

/* ----------------------------------------------------------------
   SECTION SCAFFOLDING
   ---------------------------------------------------------------- */
.aw-section { padding: var(--section-gap) 0; }
.aw-section-alt {
  background: rgba(255,255,255,0.012);
  border-top: 1px solid var(--glass-border);
}
.section-header { text-align:center;margin-bottom:44px; }
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.6rem,4vw,2.2rem);
  letter-spacing: 0.08em;
  color: var(--pearl);
  margin: 0 0 10px;
}
.section-sub { font-size:0.88rem;color:var(--text-dim);margin:0;line-height:1.65; }

/* ----------------------------------------------------------------
   STATS — Premium glassmorphism cards
   ---------------------------------------------------------------- */
.stats-bar {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 180px; max-width: 240px;
  padding: 24px 20px; text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 0 40px rgba(201,168,76,0.03);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.stat-item:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 30px rgba(201,168,76,0.06);
}
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  background: linear-gradient(135deg, #f0ece4, #e8c97a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em; line-height: 1;
}
.stat-label {
  font-size: 0.62rem; color: var(--text-dim);
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px;
}

/* ----------------------------------------------------------------
   MEMORY BOARD — Premium glass panel
   ---------------------------------------------------------------- */
.board-area {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--glass-border-pearl);
  border-radius: 24px;
  padding: 40px 36px 36px;
  min-height: 520px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 80px rgba(122,184,245,0.02),
    0 0 0 1px rgba(255,255,255,0.03);
}

/* Soft edge glow */
.board-area::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg,
    rgba(240,236,228,0.06) 0%,
    transparent 40%,
    transparent 60%,
    rgba(201,168,76,0.04) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Frosted inner surface */
.board-area::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 30% 20%, rgba(122,184,245,0.03) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Pearl/gold pins */
.board-pins-row {
  display: flex; justify-content: space-between;
  position: absolute; top: 14px; left: 32px; right: 32px;
  pointer-events: none;
  z-index: 2;
}
.board-pin {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0ece4, #c9a84c 50%, #a07830);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 0 6px rgba(201,168,76,0.3);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   MEMORY CARDS — Premium glass notes (not sticky notes)
   ---------------------------------------------------------------- */
.sticky-note {
  position: relative;
  padding: 22px 20px 18px;
  border-radius: var(--r-note);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease, border-color 0.3s;
  will-change: transform;
  word-break: break-word;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

/* Top shimmer line */
.sticky-note::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  border-radius: 1px;
}

/* Subtle corner accent */
.sticky-note::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 32px; height: 32px;
  background: linear-gradient(225deg, rgba(255,255,255,0.08) 50%, transparent 50%);
  border-radius: 0 var(--r-note) 0 0;
}

.sticky-note:hover {
  transform: translateY(-8px) scale(1.03) !important;
  z-index: 10;
}
.sticky-note.expanded {
  transform: scale(1.1) !important;
  z-index: 20;
}

/* Note variants — glass with tinted backgrounds */
.note-yellow {
  background: linear-gradient(135deg, rgba(248,240,200,0.12), rgba(232,201,122,0.08));
  border: 1px solid rgba(232,201,122,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 0 30px rgba(232,201,122,0.04);
}
.note-yellow:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(232,201,122,0.1) !important;
  border-color: rgba(232,201,122,0.35) !important;
}
.note-pink {
  background: linear-gradient(135deg, rgba(240,200,220,0.1), rgba(200,160,180,0.07));
  border: 1px solid rgba(220,180,200,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 0 30px rgba(220,180,200,0.03);
}
.note-pink:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(220,180,200,0.08) !important;
  border-color: rgba(220,180,200,0.3) !important;
}
.note-blue {
  background: linear-gradient(135deg, rgba(180,210,248,0.1), rgba(122,184,245,0.07));
  border: 1px solid rgba(122,184,245,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 0 30px rgba(122,184,245,0.03);
}
.note-blue:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(122,184,245,0.1) !important;
  border-color: rgba(122,184,245,0.3) !important;
}
.note-green {
  background: linear-gradient(135deg, rgba(180,240,210,0.1), rgba(140,200,170,0.07));
  border: 1px solid rgba(160,220,190,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.note-green:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(160,220,190,0.08) !important;
  border-color: rgba(160,220,190,0.3) !important;
}
.note-lavender {
  background: linear-gradient(135deg, rgba(200,185,240,0.1), rgba(160,140,210,0.07));
  border: 1px solid rgba(180,160,230,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.note-lavender:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(180,160,230,0.08) !important;
  border-color: rgba(180,160,230,0.3) !important;
}
.note-peach {
  background: linear-gradient(135deg, rgba(248,210,180,0.1), rgba(220,170,140,0.07));
  border: 1px solid rgba(240,190,160,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.note-peach:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(240,190,160,0.08) !important;
  border-color: rgba(240,190,160,0.3) !important;
}

.note-to {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 5px;
}
.note-recipient {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem; letter-spacing: 0.06em;
  color: var(--pearl);
  line-height: 1.15; margin-bottom: 4px;
}
.note-handle {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; color: var(--gold);
  margin-bottom: 12px; opacity: 0.8;
}
.note-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,236,228,0.1), transparent);
  margin-bottom: 12px;
}
.note-message {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.65;
}
.note-message.truncated {
  display: -webkit-box; -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}
.note-footer {
  margin-top: 14px; display: flex; align-items: center; justify-content: space-between;
}
.note-from {
  font-size: 0.68rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.04em; opacity: 0.8;
}
.note-country {
  font-size: 0.6rem; color: var(--text-dim);
  background: rgba(255,255,255,0.05); border-radius: 50px;
  padding: 2px 8px; border: 1px solid var(--glass-border);
}
.note-expand-hint {
  font-size: 0.6rem; color: var(--text-dim);
  text-align: center; margin-top: 10px;
  letter-spacing: 0.06em; font-family: 'DM Mono', monospace;
}
.expanded .note-expand-hint { display: none; }
.expanded .note-message.truncated {
  -webkit-line-clamp: unset; overflow: visible; display: block;
}

/* ----------------------------------------------------------------
   EMPTY STATE
   ---------------------------------------------------------------- */
.board-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px;
  padding: 72px 20px; text-align: center;
}
.board-empty-icon {
  font-size: 2.4rem;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.4));
  animation: emptyGlow 3s ease-in-out infinite;
}
@keyframes emptyGlow {
  0%,100% { filter: drop-shadow(0 0 12px rgba(201,168,76,0.3)); }
  50%      { filter: drop-shadow(0 0 24px rgba(201,168,76,0.6)); }
}
.board-empty-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem; letter-spacing: 0.1em;
  color: var(--pearl);
}
.board-empty-sub { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ----------------------------------------------------------------
   FORM SECTION
   ---------------------------------------------------------------- */
.aw-form-wrap { max-width: 680px; margin: 0 auto; }

.aw-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 36px 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.aw-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,236,228,0.12), rgba(201,168,76,0.2), transparent);
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.form-label-optional {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0;
  text-transform: none; color: var(--text-dim);
}
.form-input {
  width: 100%; padding: 12px 15px;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-input);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px var(--input-focus);
}
.form-input::placeholder { color: var(--text-dim); }
textarea.form-input { min-height: 110px; resize: vertical; line-height: 1.6; }

.form-row-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.char-counter {
  font-size: 0.68rem; font-family: 'DM Mono', monospace;
  color: var(--text-dim); text-align: right; margin-top: 5px;
  transition: color 0.2s;
}
.char-counter.warn { color: #f59e0b; }
.char-counter.over { color: #ef4444; }

/* Submit button */
.btn-submit {
  width: 100%; padding: 16px 36px;
  background: linear-gradient(135deg, #e8d8a0 0%, #c9a84c 50%, #a07830 100%);
  color: #0a0804; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: var(--r-btn);
  cursor: pointer; transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: 8px;
}
.btn-submit:hover { opacity:0.92; transform:translateY(-2px); box-shadow:0 8px 32px rgba(201,168,76,0.45), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-submit:active { transform:translateY(0); }
.btn-submit:disabled { opacity:0.3; cursor:not-allowed; transform:none; box-shadow:none; }

/* Success state */
.aw-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; gap: 18px; padding: 56px 24px;
}
.aw-success.show { display: flex; }
.aw-success-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
}
.aw-success-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem; letter-spacing: 0.1em; color: var(--pearl);
}
.aw-success-sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 380px; }
.aw-success-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-dim); border: 1px solid var(--glass-border-gold);
  color: var(--gold-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 50px;
}

/* ----------------------------------------------------------------
   ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes noteIn {
  from { opacity:0; transform: var(--note-rot, rotate(0deg)) translateY(24px) scale(0.9); }
  to   { opacity:1; transform: var(--note-rot, rotate(0deg)) translateY(0)    scale(1); }
}
.sticky-note { animation: noteIn 0.5s cubic-bezier(.34,1.56,.64,1) both; }

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET
   ---------------------------------------------------------------- */
@media (max-width: 860px) {
  :root { --section-gap: 60px; }
  .notes-grid { grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap:18px; }
  .stats-bar { gap: 12px; }
  .stat-item { min-width: 140px; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE
   ---------------------------------------------------------------- */
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .aw-form-card { padding: 24px 20px; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
  .form-row-split .form-group { margin-bottom: 20px; }
  .notes-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .board-area { padding: 24px 16px; }
}

@media (max-width: 380px) {
  .notes-grid { grid-template-columns: 1fr; }
}