/* ==================================================
   Anbu · Averic Lab — Shared Stylesheet
   ================================================== */
:root {
  --night-1: #0a0e2a;
  --night-2: #161a47;
  --night-3: #2a2766;
  --dawn-1: #3d2f6b;
  --dawn-2: #7d4a78;
  --dawn-3: #d4796a;
  --dawn-4: #ffc4a3;
  --warm-paper: #fff8f3;
  --warm-mist:  #fff0e8;
  --warm-rose:  #fff2f3;
  --paper: #ffffff;
  --ink: #1a1c1c;
  --ink-soft: #4a4a4a;
  --ink-mute: #8a8a8a;
  --line: #f0e8e3;
  --pink: #ff8a95;
  --pink-deep: #e54b5e;
  --rose-deep: #c2185b;
  --gold: #ffd9a8;
  --gold-soft: #fff0d4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Hiragino Sans", "Microsoft YaHei", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; }

.serif {
  font-family: "Iowan Old Style", "Apple Garamond", Charter, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

/* ==================================================
   HEADER — fixed, transparent over hero / blurred white on scroll
   Mobile keeps the same horizontal structure (no hamburger).
   ================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: rgba(255, 248, 240, 0.95);
  transition: color .3s ease;
  white-space: nowrap;
}
.site-header.scrolled .site-logo { color: var(--ink); }
.logo-mark {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8a95, #e54b5e);
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(229, 75, 94, 0.35);
  flex-shrink: 0;
}
.logo-mark svg { width: 13px; height: 13px; }
.logo-sub {
  font-weight: 400;
  opacity: 0.6;
  font-size: 12.5px;
  letter-spacing: 0;
  margin-left: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
}
.header-nav a {
  color: rgba(255, 248, 240, 0.7);
  transition: color .15s ease;
  letter-spacing: -0.1px;
}
.header-nav a:hover { color: rgba(255, 248, 240, 1); }
.site-header.scrolled .header-nav a { color: var(--ink-soft); }
.site-header.scrolled .header-nav a:hover { color: var(--pink-deep); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 248, 240, 0.22);
  border-radius: 999px;
  padding: 6px 12px 6px 11px;
  color: rgba(255, 248, 240, 0.9);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.lang-toggle:hover { background: rgba(255, 248, 240, 0.1); }
.site-header.scrolled .lang-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--ink-soft);
}
.site-header.scrolled .lang-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.18);
}
.lang-toggle .globe { width: 13px; height: 13px; opacity: 0.85; }
.lang-toggle .caret { width: 9px; height: 9px; opacity: 0.7; transition: transform .2s ease; }
.lang-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  right: 28px;
  top: calc(100% + 8px);
  min-width: 240px;
  max-width: min(440px, calc(100vw - 32px));
  max-height: min(70vh, 540px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 8px;
  display: none;
}
.lang-menu[data-open="true"] { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 13.5px;
  transition: background-color .15s ease;
}
.lang-option:hover { background: var(--warm-rose); }
.lang-option.active { background: var(--warm-rose); color: var(--pink-deep); font-weight: 600; }
.lang-option .lang-code {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.8px;
  font-weight: 500;
}
.lang-option.active .lang-code { color: var(--pink-deep); opacity: 0.7; }

/* Mobile: same horizontal layout, smaller sizes — no hamburger */
@media (max-width: 720px) {
  .header-inner { padding: 14px 18px; gap: 10px; }
  .site-logo { font-size: 14px; gap: 8px; }
  .logo-mark { width: 20px; height: 20px; border-radius: 6px; }
  .logo-mark svg { width: 11px; height: 11px; }
  .logo-sub { display: none; }
  .header-nav { gap: 14px; font-size: 12px; }
  .lang-toggle { padding: 5px 10px 5px 9px; font-size: 11px; gap: 5px; }
  .lang-toggle .globe { width: 12px; height: 12px; }
  .lang-menu { right: 18px; min-width: 220px; }
}
@media (max-width: 420px) {
  .header-inner { padding: 12px 14px; gap: 8px; }
  .header-nav { gap: 10px; font-size: 11.5px; }
  .lang-toggle { padding: 5px 9px; font-size: 10.5px; }
  .lang-toggle .globe { width: 11px; height: 11px; }
}

/* ==================================================
   HERO — night sky, two lights signaling each other
   ================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 70% 0%, #1f1d52 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, #2a1f55 0%, transparent 60%),
    linear-gradient(180deg, #0a0e2a 0%, #161a47 60%, #2a2360 100%);
  color: #fff8f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 32px 110px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.stars { position: absolute; inset: 0; pointer-events: none; }
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50%      { opacity: 1;    transform: scale(1.1); }
}

.fireflies { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.firefly {
  position: absolute;
  bottom: -10px;
  width: 4px; height: 4px;
  background: #fff5cc;
  border-radius: 50%;
  box-shadow:
    0 0 6px 2px rgba(255, 215, 130, 0.8),
    0 0 14px 4px rgba(255, 190, 100, 0.5);
  opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translate(0, 0)       scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate(30px, -50vh) scale(1);   opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translate(-20px, -110vh) scale(0.6); opacity: 0; }
}

.connection {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.light-halo {
  filter: blur(2px);
  animation: breathe 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes breathe {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 0.95; }
}

.hero-text {
  position: relative;
  text-align: left;
  z-index: 2;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #ffd9a8;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(12px);
  animation: rise 1.2s ease 0.2s forwards;
}
.brand-dot {
  width: 7px; height: 7px;
  background: #ffd9a8;
  border-radius: 50%;
  box-shadow: 0 0 12px #ffd9a8;
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 12px #ffd9a8; transform: scale(1); }
  50%      { box-shadow: 0 0 22px #ffd9a8, 0 0 4px #fff; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1.25;
  color: #fff8f0;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1.4s ease 0.8s forwards;
}
.hero h1 em {
  display: inline-block;
  font-weight: 500;
  background: linear-gradient(180deg, #fff8f0 0%, #ffd9a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 168, 0.6), transparent);
}

.hero-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  color: rgba(255, 248, 240, 0.78);
  line-height: 1.9;
  max-width: 480px;
  margin: 0;
  opacity: 0; transform: translateY(20px);
  animation: rise 1.4s ease 1.6s forwards;
}

/* Hero CTA — right column, sits over the night sky.
   Carries the download CTA (moved out of the old .cta section). */
.hero-cta {
  position: relative;
  z-index: 2;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.4s ease 2.2s forwards;
}
.hero-cta .eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #ffd9a8;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-cta h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #fff8f0;
}
.hero-cta h3 em {
  font-weight: 600;
  background: linear-gradient(180deg, #fff8f0 0%, #ffd9a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cta .lead {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 248, 240, 0.72);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-cta .badges {
  justify-content: flex-start;
}
.hero-cta .coming-soon {
  margin-top: 22px;
  color: rgba(255, 248, 240, 0.5);
  text-align: left;
}

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 248, 240, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: rise 1.2s ease 2.4s forwards;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,217,168,0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ==================================================
   DAWN — gradient transition to morning, poetic quote
   ================================================== */
.dawn {
  position: relative;
  padding: 160px 24px 180px;
  background:
    radial-gradient(ellipse at 30% 0%,  #3d2f6b 0%, transparent 55%),
    radial-gradient(ellipse at 70% 100%, #ffc4a3 0%, transparent 50%),
    linear-gradient(180deg, #2a2360 0%, #7d4a78 45%, #d4796a 80%, #ffc4a3 100%);
  color: #fff8f0;
  overflow: hidden;
  text-align: center;
}
.dawn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,217,168,0.4), transparent);
}
.dawn-mist {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.dawn-mist.m1 { top: -200px; left: -100px; background: #5d3a7e; }
.dawn-mist.m2 { bottom: -200px; right: -100px; background: #ffaa88; }

.dawn-text {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  z-index: 2;
}
.dawn-text .q1, .dawn-text .q2 {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -0.4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.dawn-text .q1.in-view { transition-delay: 0.2s; opacity: 0.95; transform: translateY(0); }
.dawn-text .q2.in-view { transition-delay: 0.9s; opacity: 0.95; transform: translateY(0); }
.dawn-text .q1 { margin-bottom: 56px; }
.dawn-text em {
  font-weight: 500;
  color: #fff8e8;
}
.dawn-text .mark {
  display: block;
  margin: 20px auto;
  width: 24px; height: 1px;
  background: rgba(255, 248, 240, 0.4);
}

/* ==================================================
   INTRO — Anbu introduction, warm white
   ================================================== */
.intro {
  position: relative;
  padding: 140px 24px 120px;
  background: linear-gradient(180deg, #ffc4a3 0%, var(--warm-mist) 18%, var(--warm-paper) 100%);
  overflow: hidden;
}
.intro-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.heart-stage {
  position: relative;
  width: clamp(180px, 24vw, 240px);
  height: clamp(180px, 24vw, 240px);
  margin: 0 auto 56px;
}
.heart-stage svg { width: 100%; height: 100%; }
.heart-stage .halo {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 138, 149, 0.25) 0%, transparent 60%);
  border-radius: 50%;
  animation: heartHalo 3.5s ease-in-out infinite;
  z-index: -1;
}
@keyframes heartHalo {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50%      { transform: scale(1.08); opacity: 1; }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--pink-deep);
  text-transform: uppercase;
  margin-bottom: 20px;
}
h2.section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--ink);
}
h2.section-title em {
  color: var(--pink-deep);
  font-weight: 600;
}
p.section-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 88px;
  text-align: left;
}
.step {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--paper);
  border-radius: 24px;
  border: 1px solid rgba(229, 75, 94, 0.07);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0;
  transform: translateY(24px);
}
.step.in-view { opacity: 1; transform: translateY(0); transition: opacity 0.9s ease, transform 0.9s ease; }
.step:nth-child(2).in-view { transition-delay: 0.15s; }
.step:nth-child(3).in-view { transition-delay: 0.3s; }
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(229, 75, 94, 0.18);
}
.step-num {
  font-family: "Iowan Old Style", Charter, Georgia, serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  color: var(--pink);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 24px;
}
.step h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.plat {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.plat li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.plat b {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--pink);
  background: rgba(229, 75, 94, 0.08);
  border-radius: 999px;
  padding: 2px 9px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ==================================================
   LEVELS — five stepped signals
   ================================================== */
.levels {
  position: relative;
  padding: 120px 24px;
  background: var(--warm-rose);
  text-align: center;
  overflow: hidden;
}
.levels-inner { max-width: 1080px; margin: 0 auto; }
.levels-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 72px;
}
.level {
  padding: 32px 16px 28px;
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .25s ease;
  opacity: 0;
  transform: translateY(20px);
}
.level.in-view { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.level:nth-child(1).in-view { transition-delay: 0s; }
.level:nth-child(2).in-view { transition-delay: 0.1s; }
.level:nth-child(3).in-view { transition-delay: 0.2s; }
.level:nth-child(4).in-view { transition-delay: 0.3s; }
.level:nth-child(5).in-view { transition-delay: 0.4s; }
.level:hover { transform: translateY(-4px); }
.level .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.level .name { font-size: 14px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.2px; }
.level .desc { font-size: 12.5px; color: var(--ink-mute); line-height: 1.6; }

.lv-normal  .dot { background: #4caf50; box-shadow: 0 0 0 5px rgba(76,175,80,0.12); }
.lv-caution .dot { background: #f9a825; box-shadow: 0 0 0 5px rgba(249,168,37,0.12); }
.lv-warning .dot { background: #fb8c00; box-shadow: 0 0 0 5px rgba(251,140,0,0.12); }
.lv-urgent  .dot { background: #e53935; box-shadow: 0 0 0 5px rgba(229,57,53,0.12); animation: urgentPulse 1.8s ease-in-out infinite; }
.lv-info    .dot { background: #1976d2; box-shadow: 0 0 0 5px rgba(25,118,210,0.12); }
@keyframes urgentPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(229,57,53,0.12); }
  50%      { box-shadow: 0 0 0 10px rgba(229,57,53,0.04); }
}

/* ==================================================
   PRIVACY — our promise
   ================================================== */
.privacy {
  position: relative;
  padding: 120px 24px;
  background: var(--paper);
  text-align: center;
}
.privacy-inner {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff8f5 0%, #fff2f3 100%);
  border-radius: 32px;
  padding: 88px 48px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.privacy-inner::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 138, 149, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.privacy-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.privacy-bullets li {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.75;
  padding-left: 32px;
  position: relative;
}
.privacy-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  box-shadow: 0 4px 12px rgba(229, 75, 94, 0.25);
}
.privacy-bullets li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.privacy-bullets strong { color: var(--ink); font-weight: 600; }
.privacy-bullets.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }

/* ==================================================
   Store badges + coming-soon label — used inside .hero-cta
   ================================================== */
.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1a1c1c;
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.badge:hover {
  transform: translateY(-3px);
  background: #2a2c2c;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.3);
}
.badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.badge .l { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.badge .l small { font-size: 10px; opacity: 0.85; letter-spacing: 0.6px; }
.badge .l span { font-size: 16px; font-weight: 600; letter-spacing: 0.2px; }

.coming-soon {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ==================================================
   FOOTER — Averic Lab
   ================================================== */
footer {
  background: #fafaf7;
  padding: 80px 24px 48px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.footer-logo .mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.footer-brand-block p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.8;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 2;
}
.footer-col a { color: var(--ink-mute); transition: color .15s ease; }
.footer-col a:hover { color: var(--pink-deep); }
.footer-col .label {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.footer-col .value {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1080px;
  margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal a { color: var(--ink-mute); margin-left: 16px; }
.footer-bottom .legal a:hover { color: var(--pink-deep); }

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 880px) {
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 110px 24px 100px;
  }
  .hero-text, .hero-cta { text-align: center; }
  .hero-text .brand-mark { justify-content: center; }
  .hero-sub { margin: 0 auto; max-width: 460px; }
  .hero-cta .lead { margin-left: auto; margin-right: auto; }
  .hero-cta .badges { justify-content: center; }
  .hero-cta .coming-soon { text-align: center; }
  .dawn { padding: 100px 24px 120px; }
  .intro { padding: 100px 20px 80px; }
  .steps { grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
  .levels { padding: 80px 20px; }
  .levels-row { grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 48px; }
  .level { padding: 18px 6px 16px; border-radius: 14px; }
  .level .desc { display: none; }
  .level .name { font-size: 12px; }
  .privacy { padding: 80px 20px; }
  .privacy-inner { padding: 56px 28px; border-radius: 24px; }
  .privacy-bullets { grid-template-columns: 1fr; gap: 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .legal a { margin-left: 0; margin-right: 16px; }
}

/* ==================================================
   CONTACT — partnerships / inquiries form, file upload supported
   ================================================== */
.contact {
  position: relative;
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--warm-rose) 0%, var(--warm-paper) 100%);
  overflow: hidden;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.contact-form {
  margin-top: 56px;
  text-align: left;
  background: var(--paper);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(229, 75, 94, 0.06);
  box-shadow: 0 20px 60px -20px rgba(229, 75, 94, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  margin-bottom: 20px;
  position: relative;
}
.form-field label:not(.file-label) {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--warm-paper);
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #b5a8a4; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(229, 75, 94, 0.08);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.file-help {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.2px;
  line-height: 1.6;
}

.submit-btn {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(229, 75, 94, 0.45);
}
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  display: none;
  line-height: 1.6;
}
.form-status.show { display: block; }
.form-status.success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}
.form-status.error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ffcdd2;
}

@media (max-width: 720px) {
  .contact { padding: 80px 18px; }
  .contact-form { padding: 32px 22px; border-radius: 18px; margin-top: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* RTL support (for ar) */
[dir="rtl"] .header-nav { flex-direction: row-reverse; }
[dir="rtl"] .lang-menu  { left: 28px; right: auto; }
[dir="rtl"] .step       { text-align: right; }
[dir="rtl"] .plat b     { margin-right: 0; margin-left: 7px; }
[dir="rtl"] .privacy-bullets li { padding-left: 0; padding-right: 32px; }
[dir="rtl"] .privacy-bullets li::before,
[dir="rtl"] .privacy-bullets li::after { left: auto; right: 0; }
[dir="rtl"] .privacy-bullets li::after { right: 4px; }
[dir="rtl"] .badge .l { text-align: right; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .star, .firefly, .dot, .light-halo { animation: none !important; }
}
