:root {
  --ink: #493653;
  --ink-soft: #705d79;
  --purple: #7443a7;
  --pink: #ef88c1;
  --aqua: #b8ece9;
  --aqua-deep: #6dcac5;
  --mint: #ccf3dd;
  --lavender: #d8c9ff;
  --paper: rgba(255, 255, 255, .88);
  --shadow: 0 20px 55px rgba(61, 51, 80, .14);
  --rounded: "Arial Rounded MT Bold", "Avenir Next Rounded", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", Avenir, "Trebuchet MS", Verdana, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.72;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 190, 221, .36), transparent 27rem),
    radial-gradient(circle at 92% 15%, rgba(167, 235, 230, .48), transparent 29rem),
    radial-gradient(circle at 48% 74%, rgba(186, 243, 224, .42), transparent 34rem),
    linear-gradient(180deg, #effcfc 0%, #d8f5f1 45%, #eefcff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .33;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.95) 0 2px, transparent 2.5px),
    radial-gradient(circle at 72% 57%, rgba(255,255,255,.9) 0 1.5px, transparent 2px),
    radial-gradient(circle at 42% 82%, rgba(255,255,255,.85) 0 2px, transparent 2.5px);
  background-size: 170px 170px, 230px 230px, 290px 290px;
}

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

a { color: inherit; }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 99;
  background: white;
  padding: 8px 12px;
  border-radius: 10px;
}

.site-header { padding: 26px 0 20px; }

.banner-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.7);
}

.banner-logo { width: 100%; height: auto; }

.hero-intro {
  text-align: center;
  padding: 28px 16px 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  font-family: var(--rounded);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #9b4d8e;
}

.brand-heading {
  margin: 4px auto 10px;
  max-width: 1050px;
  font-family: "Arial Rounded MT Bold", "Arial Rounded MT", "Avenir Next Rounded", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 6.4vw, 5.4rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: .015em;
  color: #fff;
  text-transform: uppercase;
  -webkit-text-stroke: clamp(2px, .32vw, 5px) #54214f;
  paint-order: stroke fill;
  text-shadow:
    0 5px 0 rgba(171, 132, 190, .56),
    0 11px 20px rgba(84, 38, 86, .13);
}


.hero-tagline {
  width: min(710px, 100%);
  margin: 6px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.mini-nav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.mini-nav a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(85, 60, 101, .12);
  font-family: var(--rounded);
  font-weight: 800;
  font-size: .86rem;
  transition: transform .18s ease, background .18s ease;
}

.mini-nav a:hover {
  transform: translateY(-2px);
  background: white;
}

main {
  display: grid;
  gap: 28px;
  padding: 10px 0 20px;
}

.section-card,
.order-card,
.burakku-feature {
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(75, 65, 91, .12);
}

.section-card {
  padding: clamp(25px, 4.7vw, 56px);
  background: var(--paper);
  backdrop-filter: blur(14px);
}

.section-copy h2,
.order-card h2 {
  margin: 0;
  font-family: var(--rounded);
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #5f2a60;
}

.section-copy p,
.order-card p {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.section-copy p { margin: 18px 0 0; }
.section-copy strong { color: #70366e; }

/* ---------- BURAKKU / HALLOWEEN ---------- */
.burakku-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  color: #fff5fb;
  background:
    radial-gradient(circle at 86% 13%, rgba(255, 177, 77, .32) 0 4.2rem, transparent 4.35rem),
    radial-gradient(circle at 86% 13%, rgba(255, 215, 139, .13) 0 7.2rem, transparent 7.4rem),
    radial-gradient(circle at 10% 16%, rgba(255, 42, 160, .27), transparent 19rem),
    radial-gradient(circle at 82% 76%, rgba(111, 51, 176, .34), transparent 24rem),
    radial-gradient(circle at 43% 108%, rgba(16, 172, 171, .18), transparent 28rem),
    linear-gradient(150deg, #0d0911 0%, #1d0c24 30%, #310d35 57%, #0c2932 100%);
  border-color: rgba(255, 141, 63, .25);
  box-shadow:
    0 24px 65px rgba(39, 9, 45, .31),
    inset 0 0 90px rgba(255, 65, 168, .045);
}

.burakku-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .58;
  background:
    repeating-conic-gradient(
      from 7deg at 0% 0%,
      rgba(255, 185, 224, .14) 0deg 1deg,
      transparent 1.3deg 18deg
    ),
    radial-gradient(
      circle at 0% 0%,
      transparent 0 44px,
      rgba(255, 174, 219, .13) 45px 46px,
      transparent 47px 78px,
      rgba(255, 174, 219, .10) 79px 80px,
      transparent 81px 116px,
      rgba(255, 174, 219, .07) 117px 118px,
      transparent 119px
    ),
    radial-gradient(circle at 11% 73%, transparent 0 5px, rgba(255, 105, 190, .22) 6px 7px, transparent 8px),
    radial-gradient(circle at 72% 30%, transparent 0 3px, rgba(158, 239, 230, .20) 4px 5px, transparent 6px),
    radial-gradient(circle at 61% 83%, transparent 0 4px, rgba(255, 169, 72, .17) 5px 6px, transparent 7px);
  background-size:
    210px 210px,
    210px 210px,
    92px 92px,
    126px 126px,
    150px 150px;
}


.burakku-feature::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -8%;
  right: -8%;
  bottom: -20%;
  height: 46%;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(255, 78, 176, .18), transparent 43%),
    radial-gradient(ellipse at 72% 100%, rgba(115, 62, 184, .27), transparent 46%),
    radial-gradient(ellipse at 51% 100%, rgba(17, 149, 153, .18), transparent 49%);
  filter: blur(10px);
}

.burakku-image-panel,
.burakku-copy {
  position: relative;
  z-index: 2;
}

.burakku-image-panel {
  padding: clamp(10px, 2vw, 18px);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.burakku-image-panel img {
  width: 100%;
  border-radius: 24px;
  background: white;
}

.halloween-stamp {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 9px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff913d, #ff4eae);
  color: #201124;
  font-family: var(--rounded);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .72rem;
  box-shadow: 0 8px 24px rgba(255, 119, 52, .24), 0 0 22px rgba(255, 63, 169, .18);
}

.spooky-kicker { color: #ff9cd2; }

.burakku-copy h1 {
  margin: 0;
  font-family: var(--rounded);
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: .98;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow:
    0 0 18px rgba(255, 67, 176, .25),
    0 8px 30px rgba(0,0,0,.28);
}

.burakku-copy p {
  font-size: clamp(1rem, 1.65vw, 1.12rem);
  color: #eee7f1;
  margin: 18px 0 0;
}

.burakku-copy strong { color: #ffb3dc; }

.burakku-lead {
  font-size: clamp(1.12rem, 2vw, 1.28rem) !important;
}

.edition-note {
  font-family: var(--rounded);
  color: #a9ece7 !important;
  font-size: .92rem !important;
}

.spooky-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.spooky-orb-one {
  width: 150px; height: 150px;
  right: -55px; top: 55px;
  border: 2px solid rgba(255, 79, 179, .18);
}
.spooky-orb-two {
  width: 92px; height: 92px;
  left: 38%; bottom: -38px;
  border: 2px solid rgba(111, 231, 223, .17);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.round-logo-wrap {
  width: min(100%, 440px);
  aspect-ratio: 1;
  position: relative;
  isolation: isolate;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(84,38,86,.16);
  background: #dff5fb;
}

.round-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mios-logo-card {
  margin-top: 28px;
  padding: 8px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(228,245,244,.72));
  border: 1px solid rgba(118,71,136,.10);
}
.mios-logo-card img {
  width: 100%;
  border-radius: 18px;
}

/* ---------- AXOMIE ---------- */
.axomie-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(255,182,218,.18), transparent 24rem),
    radial-gradient(circle at 94% 38%, rgba(151,232,224,.26), transparent 28rem),
    rgba(255,255,255,.88);
}

.axomie-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.character-figure {
  margin: 0;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f2fbfa);
  box-shadow: 0 16px 40px rgba(84,38,86,.11);
  transform: rotate(1deg);
}

.character-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}

.character-figure figcaption {
  padding: 12px 10px 4px;
  text-align: center;
  color: #806384;
  font-size: .88rem;
}

.power-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.power-pills span {
  padding: 8px 13px;
  border-radius: 999px;
  font-family: var(--rounded);
  font-weight: 900;
  font-size: .83rem;
  color: #623260;
  border: 1px solid rgba(107,54,105,.11);
  background: linear-gradient(135deg, #fbe1f0, #e2f7f3);
}

.dark-pills span {
  color: #fff4fb;
  border-color: rgba(255,255,255,.15);
  background: linear-gradient(135deg, rgba(255,74,178,.2), rgba(101,213,207,.12));
}

.product-reveal {
  margin-top: clamp(34px, 6vw, 64px);
  padding-top: clamp(30px, 5vw, 54px);
  border-top: 1px solid rgba(95,62,107,.12);
}

.product-copy {
  width: min(800px, 100%);
  margin: 0 auto 26px;
  text-align: center;
}

.available-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9dcc, #bff3e8);
  color: #52334f;
  font-family: var(--rounded);
  font-weight: 900;
  letter-spacing: .07em;
  font-size: .76rem;
}

.product-copy h3 {
  margin: 0;
  font-family: var(--rounded);
  color: #5f2a60;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.product-copy p {
  margin: 14px auto 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 28px);
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  padding: 9px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 14px 34px rgba(63,53,80,.12);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}

/* ---------- ORDER ---------- */
.order-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(42px, 7vw, 76px) clamp(22px, 7vw, 88px);
  background:
    radial-gradient(circle at 14% 20%, rgba(255,176,216,.32), transparent 20rem),
    radial-gradient(circle at 86% 80%, rgba(140,228,220,.34), transparent 22rem),
    linear-gradient(140deg, #fff7fc, #eafaf7);
}

.order-card p {
  width: min(720px, 100%);
  margin: 16px auto 0;
  color: var(--ink-soft);
}

.order-sparkles {
  font-size: 1.1rem;
  color: #9d61b4;
  margin-bottom: 12px;
}

.email-button {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--rounded);
  font-weight: 900;
  font-size: clamp(.95rem, 2vw, 1.08rem);
  color: white;
  background: linear-gradient(135deg, #8a4bb3, #e05fa7);
  box-shadow: 0 12px 28px rgba(135,71,166,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.email-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(135,71,166,.28);
}

.order-small {
  font-size: .88rem !important;
  opacity: .8;
}

footer {
  text-align: center;
  padding: 26px 0 42px;
  color: #6f6877;
  font-size: .9rem;
}

@media (max-width: 880px) {
  .site-header,
  main,
  footer {
    width: min(100% - 22px, 740px);
  }

  .site-header { padding-top: 12px; }
  .banner-frame { border-radius: 18px; }

  .burakku-feature,
  .about-grid,
  .axomie-intro {
    grid-template-columns: 1fr;
  }

  .burakku-image-panel {
    width: min(100%, 560px);
    justify-self: center;
  }

  .burakku-copy { text-align: center; }
  .burakku-copy .power-pills { justify-content: center; }

  .round-logo-wrap { width: min(78vw, 430px); }

  .character-figure {
    width: min(100%, 520px);
    justify-self: center;
    transform: none;
  }

  .section-card,
  .order-card,
  .burakku-feature { border-radius: 26px; }
}

@media (max-width: 580px) {
  .hero-intro { padding-top: 22px; }

  .section-card { padding: 24px 19px; }
  .burakku-feature { padding: 24px 18px 32px; }
  .order-card { padding: 40px 18px; }

  .burakku-image-panel { border-radius: 24px; }
  .burakku-image-panel img { border-radius: 18px; }

  .halloween-stamp {
    top: 14px;
    left: 14px;
    font-size: .65rem;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .round-logo-wrap { width: min(86vw, 360px); }

  .mini-nav a {
    padding: 7px 11px;
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mini-nav a,
  .email-button { transition: none; }
}


@media (max-width: 580px) {
  .brand-heading {
    font-size: clamp(1.95rem, 10vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: 0;
    -webkit-text-stroke: 2px #54214f;
    text-shadow:
      0 3px 0 rgba(171, 132, 190, .5),
      0 8px 15px rgba(84, 38, 86, .1);
  }
}


.product-safety {
  width: min(860px, 100%);
  margin: 24px auto 0;
  padding: 15px 18px;
  text-align: center;
  border-radius: 18px;
  color: #6c596f;
  background: rgba(255, 249, 252, .82);
  border: 1px solid rgba(134, 83, 137, .14);
  font-size: .88rem;
  line-height: 1.55;
}

.product-safety strong {
  color: #733f71;
}
