:root {
  --cream: #fff8eb;
  --paper: #fffdf8;
  --ink: #334052;
  --muted: #6c7180;
  --mint: #a9e7d2;
  --sky: #98d7f1;
  --peach: #ffbd9b;
  --rose: #f49ab4;
  --butter: #ffd86e;
  --leaf: #7fc7a4;
  --line: rgba(51, 64, 82, 0.14);
  --shadow: 0 22px 70px rgba(83, 91, 119, 0.16);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Nunito", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 74, 160, 0.12), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(75, 177, 255, 0.15), transparent 28%),
    radial-gradient(circle at 55% 86%, rgba(255, 216, 110, 0.22), transparent 34%),
    linear-gradient(180deg, #f2fbff 0%, #fff8fb 42%, #fffdf8 72%, #eef8ff 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff4aa0, #45b4ff 48%, #ffd86e);
  box-shadow: 0 12px 26px rgba(246, 50, 137, 0.22);
  color: #ffffff;
  font-weight: 1000;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  color: #4d596c;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  background: #ffffff;
  color: #f63289;
  box-shadow: 0 8px 18px rgba(51, 64, 82, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(51, 64, 82, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: stretch;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.98) 0%, rgba(255, 248, 235, 0.9) 34%, rgba(255, 248, 235, 0.32) 68%, rgba(255, 248, 235, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 248, 235, 0) 72%, var(--cream) 100%);
  z-index: -1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  z-index: -2;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 110px;
  display: grid;
  align-content: center;
  max-width: 1180px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #516075;
  font-size: 0.82rem;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 14px;
  max-width: 620px;
  font-size: clamp(3.1rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.tagline {
  margin-bottom: 20px;
  color: #43516a;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
}

.lead {
  max-width: 610px;
  color: #4c596f;
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  white-space: normal;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #26354f;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(38, 53, 79, 0.22);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.82);
  color: #2d3b54;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section.slim {
  padding: 54px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-header h2,
.page-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.section-header p,
.page-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.quick-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quick-card,
.feature-card,
.character-card,
.video-card,
.world-panel,
.form-card,
.notice-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(83, 91, 119, 0.1);
}

.quick-card,
.feature-card,
.character-card,
.video-card,
.world-panel,
.notice-card {
  padding: 24px;
}

.quick-card {
  min-height: 178px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mint);
  color: #244a45;
  font-weight: 1000;
}

.quick-card:nth-child(2) .icon-badge,
.character-card.creator .icon-badge {
  background: var(--peach);
  color: #633423;
}

.quick-card:nth-child(3) .icon-badge {
  background: var(--butter);
  color: #664c11;
}

.quick-card h3,
.feature-card h3,
.character-card h3,
.video-card h3,
.world-panel h3,
.notice-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.quick-card p,
.feature-card p,
.character-card p,
.video-card p,
.world-panel p,
.notice-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.story-band {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #effaf4 45%, #fff2de 100%);
  box-shadow: var(--shadow);
}

.story-band img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 63% center;
}

.story-copy {
  padding: 12px 4px;
}

.value-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4b586e;
  font-weight: 800;
}

.value-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--rose);
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  position: relative;
  min-height: 430px;
  margin: 26px auto 0;
  padding: 88px 38px 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 251, 0.84) 38%, rgba(255, 255, 255, 0.16)),
    url("assets/nuea-nara-hero-v2.png") center / cover;
  box-shadow: 0 24px 70px rgba(42, 54, 90, 0.14);
}

.page-hero::before {
  content: "NUEA NARA";
  position: absolute;
  right: 28px;
  top: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 218, 235, 0.88));
  color: #f6419a;
  font-size: 0.78rem;
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(42, 54, 90, 0.1);
}

.page-hero::after {
  content: "★ ♡ ✦";
  position: absolute;
  right: 34px;
  bottom: 22px;
  color: rgba(255, 74, 160, 0.82);
  font-size: 2.1rem;
  font-weight: 1000;
}

.page-hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(135deg, #ffffff, #fff2cf);
  color: #f63289;
  box-shadow: 0 10px 24px rgba(246, 50, 137, 0.12);
}

.page-hero .tagline {
  color: #546277;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 720px;
  color: #172744;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.76);
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #334967;
  font-weight: 800;
}

.video-card {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 62%, #eef9ff 100%);
}

.video-thumb {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 74, 160, 0.42), rgba(75, 177, 255, 0.42)),
    url("assets/nuea-nara-hero-v2.png") center / cover;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 1000;
}

.character-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background: linear-gradient(145deg, #ffffff 0%, #f1fbff 42%, #fff5cf 100%);
}

.character-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -40px;
  bottom: -46px;
  border-radius: 50%;
  background: rgba(152, 215, 241, 0.32);
}

.character-card.creator::after {
  background: rgba(244, 154, 180, 0.28);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  border-radius: 999px;
  background: #ffffff;
  padding: 7px 10px;
  color: #4b586e;
  font-size: 0.9rem;
  font-weight: 900;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.world-panel.large {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 238, 248, 0.74)),
    url("assets/nuea-nara-hero-v2.png") center / cover;
}

.card-grid > article:nth-child(1),
.quick-grid > a:nth-child(1) {
  background: linear-gradient(145deg, #ffffff 0%, #e9f8ff 48%, #fff2fb 100%);
}

.card-grid > article:nth-child(2),
.quick-grid > a:nth-child(2) {
  background: linear-gradient(145deg, #ffffff 0%, #ffeaf4 48%, #fff4d4 100%);
}

.card-grid > article:nth-child(3),
.quick-grid > a:nth-child(3) {
  background: linear-gradient(145deg, #ffffff 0%, #edf9f1 48%, #eaf0ff 100%);
}

.feature-card,
.notice-card,
.world-panel {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.notice-card::before,
.world-panel:not(.large)::before,
.video-card::before,
.character-card::before {
  content: "";
  position: absolute;
  right: -26px;
  top: -28px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255, 74, 160, 0.16);
}

.feature-card::after,
.notice-card::after,
.world-panel:not(.large)::after,
.video-card::after {
  content: "♡";
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(246, 50, 137, 0.42);
  font-size: 1.45rem;
  font-weight: 1000;
}

.feature-card h3,
.notice-card h3,
.world-panel h3,
.video-card h3,
.character-card h3,
.feature-card p,
.notice-card p,
.world-panel p,
.video-card p,
.character-card p,
.pill-list,
.button-row,
form {
  position: relative;
  z-index: 1;
}

.video-card .btn-soft,
.feature-card .btn-soft,
.notice-card .btn-soft {
  background: #ffffff;
  border-color: rgba(255, 74, 160, 0.2);
}

.world-panel.large h2 {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.96;
}

.shop-banner {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 226, 241, 0.9) 52%, rgba(222, 244, 255, 0.9)),
    url("assets/nuea-nara-hero-v2.png") right center / auto 100% no-repeat;
  box-shadow: var(--shadow);
}

.shop-banner h2 {
  max-width: 560px;
  color: #f63289;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.shop-banner .lead {
  max-width: 520px;
  color: #233753;
  font-weight: 900;
}

.product-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.product-tile {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(51, 64, 82, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 251, 0.88));
  color: #172744;
  font-weight: 900;
  text-align: center;
  padding: 18px;
}

.product-tile:nth-child(1) { border-color: rgba(255, 74, 160, 0.34); }
.product-tile:nth-child(2) { border-color: rgba(69, 180, 255, 0.38); }
.product-tile:nth-child(3) { border-color: rgba(255, 184, 50, 0.42); }

.form-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.form-grid .notice-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255, 232, 244, 0.9)),
    url("assets/nuea-nara-hero-v2.png") center / cover;
}

.form-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,247,251,0.92));
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: #4c596f;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(51, 64, 82, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  box-shadow: 0 8px 18px rgba(42, 54, 90, 0.05);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-line {
  margin: 8px 0 18px;
  color: #334967;
  font-weight: 900;
}

.copy-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 231, 244, 0.92) 48%, rgba(218, 244, 255, 0.9)),
    radial-gradient(circle at 92% 16%, rgba(255, 216, 110, 0.6), transparent 28%);
  box-shadow: 0 22px 55px rgba(42, 54, 90, 0.11);
}

.copy-panel h2 {
  margin-bottom: 8px;
  color: #172744;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.copy-panel p {
  max-width: 760px;
  color: #334967;
  font-weight: 900;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.copy-grid a {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  color: #172744;
  font-weight: 1000;
  text-align: center;
  box-shadow: 0 12px 26px rgba(42, 54, 90, 0.1);
}

.copy-grid a:nth-child(1) { background: linear-gradient(135deg, #ff4a4a, #ffd7d7); color: #ffffff; }
.copy-grid a:nth-child(2) { background: linear-gradient(135deg, #45b4ff, #d9f5ff); }
.copy-grid a:nth-child(3) { background: linear-gradient(135deg, #ffd86e, #fff4cc); }

.rainbow-band {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 230, 243, 0.82) 34%, rgba(221, 245, 255, 0.82) 68%, rgba(255, 244, 204, 0.86)),
    url("assets/nuea-nara-hero-v2.png") right center / auto 115% no-repeat;
  box-shadow: 0 24px 70px rgba(42, 54, 90, 0.12);
}

.rainbow-band h2 {
  max-width: 680px;
  margin-bottom: 10px;
  color: #172744;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.rainbow-band p {
  max-width: 620px;
  color: #334967;
  font-weight: 900;
}

.color-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.color-chip {
  min-height: 128px;
  display: block;
  padding: 18px;
  border-radius: 18px;
  color: #172744;
  font-weight: 1000;
  box-shadow: 0 14px 30px rgba(42, 54, 90, 0.1);
}

.color-chip small {
  display: block;
  margin-top: 6px;
  color: rgba(23, 39, 68, 0.74);
  font-weight: 900;
}

.color-chip:nth-child(1) { background: linear-gradient(135deg, #ff4aa0, #ffd4e7); color: #ffffff; }
.color-chip:nth-child(1) small { color: rgba(255, 255, 255, 0.82); }
.color-chip:nth-child(2) { background: linear-gradient(135deg, #45b4ff, #d9f5ff); }
.color-chip:nth-child(3) { background: linear-gradient(135deg, #ffd86e, #fff4cc); }
.color-chip:nth-child(4) { background: linear-gradient(135deg, #80ddb5, #e5fff3); }

.media-kit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.media-stat {
  min-height: 116px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(42, 54, 90, 0.1);
}

.media-stat strong {
  display: block;
  color: #f63289;
  font-size: 1.65rem;
  line-height: 1;
}

.media-stat small {
  color: #52627d;
  font-weight: 900;
}

.interest-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}

.interest-form .btn {
  min-width: 170px;
}

.story-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 22px;
  border-radius: 22px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(23, 39, 68, 0.05), rgba(23, 39, 68, 0.68)),
    url("assets/nuea-nara-hero-v2.png") center / cover;
  box-shadow: 0 22px 52px rgba(42, 54, 90, 0.14);
}

.story-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(246, 50, 137, 0.03), rgba(246, 50, 137, 0.7)),
    url("assets/nuea-nara-hero-v2.png") 58% center / cover;
}

.story-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(69, 180, 255, 0.03), rgba(45, 88, 156, 0.72)),
    url("assets/nuea-nara-hero.png") center / cover;
}

.story-card h3,
.story-card p {
  margin-bottom: 6px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.footer {
  margin-top: 60px;
  background:
    linear-gradient(180deg, rgba(14, 29, 53, 0.92), #0e1d35),
    url("assets/nuea-nara-hero-v2.png") center 62% / cover;
  color: #ffffff;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sparkle-row {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
  color: #d58a32;
  font-size: 1.15rem;
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 710px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 235, 0.98) 0%, rgba(255, 248, 235, 0.84) 45%, rgba(255, 248, 235, 0.24) 88%, var(--cream) 100%);
  }

  .hero img {
    object-position: 68% center;
  }

  .hero-content {
    align-content: start;
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.6rem);
  }

  .quick-grid,
  .card-grid,
  .split,
  .world-grid,
  .form-grid,
  .product-preview,
  .color-stack,
  .media-kit,
  .story-lane {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: block;
  }

  .story-band img {
    height: 310px;
  }
}

@media (max-width: 520px) {
  .nav {
    width: min(100% - 22px, 1180px);
  }

  .brand-text small {
    display: none;
  }

  .hero-content,
  .section,
  .page-hero,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .quick-card,
  .feature-card,
  .character-card,
  .video-card,
  .world-panel,
  .notice-card,
  .form-card,
  .shop-banner {
    padding: 20px;
  }
}

.reference-home {
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #f2fbff 0%, #fff8fb 46%, #ffffff 72%, #eef7ff 100%);
}

.glass-nav {
  position: fixed;
  left: 0;
  right: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76));
}

.glass-nav .nav {
  width: min(1160px, calc(100% - 34px));
}

.logo-lockup {
  position: relative;
  min-width: 162px;
  align-items: flex-start;
  gap: 3px;
  flex-direction: column;
}

.logo-crown {
  position: absolute;
  top: -18px;
  left: 44px;
  color: #ffb932;
  font-size: 1.25rem;
  transform: rotate(-10deg);
}

.logo-word {
  display: grid;
  color: #f6419a;
  font-size: 1.8rem;
  font-weight: 1000;
  line-height: 0.82;
  text-shadow: 0 2px 0 #ffffff, 0 5px 0 rgba(42, 139, 230, 0.18);
}

.logo-word span:last-child {
  color: #2f92ec;
}

.logo-lockup small {
  color: #1d2942;
  font-size: 0.58rem;
  font-weight: 1000;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #14223c;
  font-size: 0.86rem;
  font-weight: 900;
}

.poster-hero {
  position: relative;
  min-height: 720px;
  padding-top: 74px;
  overflow: hidden;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  background: #dff5ff;
}

.poster-hero::after {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.64) 28%, rgba(255, 255, 255, 0.05) 52%),
    linear-gradient(180deg, transparent 68%, rgba(255, 255, 255, 0.9) 100%);
}

.poster-hero img {
  position: absolute;
  inset: 74px 0 0;
  width: 100%;
  height: calc(100% - 74px);
  object-fit: cover;
  object-position: center;
}

.poster-copy {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
  padding: 125px 0 0;
}

.poster-title {
  max-width: 470px;
  margin-bottom: 20px;
  color: #172744;
  font-size: clamp(3rem, 6vw, 5.35rem);
  font-weight: 1000;
  line-height: 0.98;
  letter-spacing: 0;
}

.poster-thai {
  margin-bottom: 8px;
  color: #233753;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  font-weight: 1000;
}

.pink {
  background: linear-gradient(135deg, #ff4aa0, #f63289);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(246, 50, 137, 0.26);
}

.outline {
  border: 2px solid #14223c;
  background: rgba(255, 255, 255, 0.82);
  color: #14223c;
}

.hand-note,
.character-label {
  position: absolute;
  z-index: 3;
  color: #162844;
  font-weight: 1000;
  line-height: 1.06;
  transform: rotate(-6deg);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

.note-left {
  left: 11%;
  bottom: 170px;
  font-size: 1.35rem;
}

.note-center {
  left: 54%;
  bottom: 135px;
  color: #ffffff;
  font-size: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.26);
}

.note-right {
  right: 6%;
  bottom: 205px;
  font-size: 1.22rem;
  transform: rotate(6deg);
}

.label-nuea {
  top: 118px;
  left: 36%;
  font-size: 1.35rem;
}

.label-nara {
  right: 10%;
  top: 290px;
  font-size: 1.25rem;
  transform: rotate(4deg);
}

.signpost {
  position: absolute;
  z-index: 3;
  right: 14%;
  top: 115px;
  display: grid;
  gap: 7px;
  color: #ffffff;
  font-weight: 1000;
  text-align: center;
}

.signpost span {
  min-width: 158px;
  padding: 7px 12px;
  border-radius: 6px;
  box-shadow: 0 8px 14px rgba(34, 45, 72, 0.12);
}

.signpost span:nth-child(1) { background: #ff935f; }
.signpost span:nth-child(2) { background: #ffc35e; }
.signpost span:nth-child(3) { background: #77c79a; }
.signpost span:nth-child(4) { background: #8793d8; font-size: 0.8rem; }

.shortcut-wrap {
  position: relative;
  z-index: 5;
  width: min(1100px, calc(100% - 42px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  padding: 20px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(42, 54, 90, 0.16);
}

.shortcut-wrap a {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 18px;
  text-align: center;
}

.shortcut-wrap a:hover {
  background: #fff7fb;
}

.shortcut-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 1000;
}

.shortcut-icon.red { background: #ff3131; }
.shortcut-icon.face { background: #ffe1ec; color: #172744; }
.shortcut-icon.bag { background: #fa42a3; }
.shortcut-icon.game { background: #6d63e8; }
.shortcut-icon.heart { background: #ff4aa0; }
.shortcut-icon.chat { background: #33a9ff; }

.shortcut-wrap strong {
  color: #172744;
  font-size: 1.05rem;
}

.shortcut-wrap small {
  color: #61708b;
  font-weight: 800;
}

.home-section {
  padding-top: 40px;
}

.compact-head {
  margin-bottom: 18px;
}

.compact-head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.mini-play {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: #ff4aa0;
  color: #ffffff;
  font-size: 0.9rem;
}

.see-all {
  color: #14223c;
  font-weight: 1000;
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.mini-video h3 {
  margin: 12px 0 4px;
  color: #172744;
  font-size: 1rem;
  line-height: 1.25;
}

.mini-video p {
  color: #758198;
  font-size: 0.9rem;
  font-weight: 800;
}

.thumb {
  min-height: 142px;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 10px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 1000;
  box-shadow: inset 0 -40px 80px rgba(0, 0, 0, 0.22);
}

.minecraft { background: linear-gradient(135deg, #75c66e, #57b4ff); }
.room { background: linear-gradient(135deg, #ffc6d9, #8ec5ff); }
.vlog { background: linear-gradient(135deg, #ff73b6, #ffc773); }
.diy { background: linear-gradient(135deg, #ffb7d2, #dcc7ff); }

.promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding-top: 12px;
}

.promo-card {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 32px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(42, 54, 90, 0.12);
}

.merch-card {
  background: linear-gradient(135deg, #ffd9eb, #fff0f8 56%, #dfd5ff);
}

.world-card {
  background: linear-gradient(135deg, #dff4ff, #fff5cd);
}

.promo-card h2 {
  margin-bottom: 10px;
  color: #287ad7;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 0.96;
}

.promo-card h2 span {
  color: #b36ee5;
}

.promo-card p {
  color: #243653;
  font-weight: 900;
}

.merch-items {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: end;
}

.merch-items span {
  min-width: 82px;
  min-height: 92px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ffffff;
  color: #f6419a;
  font-weight: 1000;
  box-shadow: 0 14px 28px rgba(113, 68, 110, 0.12);
}

.world-bubble {
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url("assets/nuea-nara-hero.png") center / cover;
  color: #172744;
  font-weight: 1000;
  text-align: center;
  box-shadow: 0 16px 32px rgba(51, 64, 82, 0.16);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-row span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #ffffff;
  color: #172744;
  font-weight: 1000;
}

.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #ffffff;
  color: #172744;
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(42, 54, 90, 0.1);
}

.mini-video {
  display: block;
  color: inherit;
}

.values-row {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 0 48px;
}

.values-row article {
  min-height: 116px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  text-align: center;
  border-right: 1px solid rgba(51, 64, 82, 0.12);
}

.values-row article:last-child {
  border-right: 0;
}

.values-row span {
  font-size: 2.5rem;
}

.values-row article:nth-child(1) span { color: #ff9b25; }
.values-row article:nth-child(2) span { color: #ff4aa0; }
.values-row article:nth-child(3) span { color: #5fbf80; }
.values-row article:nth-child(4) span { color: #8f64df; }

.values-row strong {
  color: #172744;
  font-size: 1.05rem;
}

.values-row small {
  color: #334967;
  font-weight: 800;
}

.closing-banner {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 34px min(5vw, 60px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 218, 233, 0.86), rgba(255, 229, 172, 0.58), rgba(190, 230, 255, 0.72)),
    url("assets/nuea-nara-hero.png") center 62% / cover;
  color: #172744;
}

.closing-note,
.closing-brand,
.closing-banner blockquote {
  position: relative;
  z-index: 1;
  font-weight: 1000;
}

.closing-note {
  font-size: 1.45rem;
  transform: rotate(-4deg);
}

.closing-brand {
  display: grid;
  justify-items: center;
  line-height: 1.05;
}

.closing-brand strong {
  font-size: 2rem;
}

.closing-brand small {
  font-weight: 1000;
}

.closing-banner blockquote {
  margin: 0;
  font-size: 1.05rem;
}

.back-top {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  border-radius: 999px;
  background: #ff4aa0;
  color: #ffffff;
  padding: 12px 17px;
  font-weight: 1000;
}

.deep-footer {
  margin-top: 0;
  background: #0e1d35;
}

.footer-logo {
  display: grid;
}

@media (max-width: 980px) {
  .nav-tools,
  .signpost,
  .hand-note,
  .character-label {
    display: none;
  }

  .shortcut-wrap,
  .video-strip,
  .promo-grid,
  .values-row,
  .closing-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-hero {
    min-height: 690px;
  }

  .poster-hero img {
    object-position: 62% center;
  }
}

@media (max-width: 620px) {
  .logo-lockup {
    min-width: auto;
  }

  .logo-word {
    font-size: 1.35rem;
  }

  .poster-hero {
    min-height: 720px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .poster-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 34%, rgba(255, 255, 255, 0.16) 74%, rgba(255, 255, 255, 0.9) 100%);
  }

  .poster-hero img {
    object-position: 61% center;
  }

  .poster-copy {
    padding-top: 56px;
  }

  .page-hero {
    width: min(100% - 24px, 1180px);
    min-height: 390px;
    padding: 64px 22px 44px;
    border-radius: 24px;
  }

  .page-hero::before {
    right: 18px;
    top: 18px;
  }

  .page-hero::after {
    right: 20px;
    bottom: 14px;
    font-size: 1.55rem;
  }

  .poster-title {
    max-width: 320px;
    font-size: 3.15rem;
  }

  .poster-thai {
    max-width: 320px;
    font-size: 1.08rem;
  }

  .shortcut-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
    padding: 14px;
    border-radius: 22px;
  }

  .shortcut-wrap a {
    min-height: 98px;
  }

  .video-strip,
  .promo-grid,
  .values-row,
  .closing-banner,
  .promo-card,
  .interest-form,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .rainbow-band {
    width: min(100% - 24px, 1180px);
    padding: 22px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 230, 243, 0.9) 48%, rgba(221, 245, 255, 0.84)),
      url("assets/nuea-nara-hero-v2.png") center / cover;
  }

  .promo-card {
    padding: 24px;
  }

  .values-row article {
    border-right: 0;
    border-bottom: 1px solid rgba(51, 64, 82, 0.12);
  }

  .closing-banner {
    text-align: center;
    padding-bottom: 80px;
  }
}
