@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Shippori+Mincho:wght@400;700;800&family=Space+Mono:wght@400;700&display=swap";
.ay-root {
  --yellow: #f5c842;
  --dark-yellow: #e0b030;
  --red: #d94f3d;
  --dark-red: #8b2010;
  --cream: #fffdf5;
  --ink: #000000;
  --mid: #111111;
  --green: #6b9e3a;
  --white: #fefcf7;
  --tan: #c8956b;
  --shadow: rgba(26, 18, 8, 0.15);
  background: var(--cream);
  color: var(--ink);
  font-family: Space Mono, monospace;
  overflow-x: hidden;
}
.ay-root *,
.ay-root *:before,
.ay-root *:after {
  box-sizing: border-box;
}
.ay-root:before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.ay-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--yellow);
  padding: 0 3rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0.5;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: #fffcf78c;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--yellow);
}
.nav-cta {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  padding: 0.45rem 1.2rem !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--dark-yellow) !important;
}
.ticker-wrap {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--dark-yellow);
}
.ticker-inner {
  display: inline-block;
  animation: tickerScroll 25s linear infinite;
  font-family: Noto Sans JP, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.ticker-inner span {
  margin: 0 2.5rem;
}
@keyframes tickerScroll {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.hero {
  margin-top: 80px;
  background: #000;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 80% at 20% 50%,
      rgba(107, 158, 58, 0.05) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 50%,
      rgba(217, 79, 61, 0.05) 0%,
      transparent 70%
    );
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(245, 200, 66, 0.3));
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5vw;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 50px rgba(217, 79, 61, 0.25))
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
  animation: floatDog 4s ease-in-out infinite;
}
@keyframes floatDog {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.8rem;
  font-family: Noto Sans JP, sans-serif;
}
.hero-title-jp {
  font-family: Shippori Mincho, serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-title-en {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #fffcf773;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-desc {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fffcf7bf;
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 252, 247, 0.1);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
  background: #ffffff0d;
}
.h-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1.4rem;
  gap: 0.15rem;
}
.h-stat-val {
  font-family: Shippori Mincho, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.h-stat-lbl {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: #fffcf759;
  text-transform: uppercase;
}
.h-stat-div {
  width: 1px;
  background: #fffcf71a;
  align-self: stretch;
}
.btn-pri {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.7rem 2rem;
  font-family: Space Mono, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-pri:hover {
  background: var(--dark-yellow);
  transform: translateY(-2px);
}
.btn-sec {
  background: transparent;
  color: #000000b3;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0.7rem 2rem;
  font-family: Space Mono, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-sec:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.hero-text-col .btn-pri {
  background: var(--yellow);
  color: var(--ink);
}
.hero-text-col .btn-pri:hover {
  background: var(--dark-yellow);
  transform: translateY(-2px);
}
.hero-text-col .btn-sec {
  border-color: #fffcf740;
  color: #fffcf7cc;
}
.hero-text-col .btn-sec:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(26, 18, 8, 0.15),
    transparent
  );
  margin: 0;
  position: relative;
  z-index: 1;
}
.divider-red {
  height: 3px;
  background: linear-gradient(
    to right,
    var(--red),
    var(--dark-red),
    var(--red)
  );
  position: relative;
  z-index: 1;
}
.section {
  padding: 6rem 5vw;
  position: relative;
  z-index: 1;
}
.section-alt {
  background: var(--yellow);
  color: var(--ink);
}
.section-dark {
  background: #111;
  color: var(--white);
}
.section-dark .sec-label {
  color: var(--yellow);
}
.section-dark .sec-label:before {
  background: var(--yellow);
}
.section-dark h2 {
  color: var(--white);
}
.section-dark .kanji-bg {
  color: #fffcf708;
}
.section-dark .story-text p {
  color: #fffcf7d9 !important;
  font-weight: 400 !important;
  font-size: 0.88rem;
  line-height: 2;
}
.section-dark .story-text p strong {
  color: var(--red) !important;
  font-weight: 700 !important;
}
.section-dark .story-text p em {
  color: var(--yellow) !important;
  font-style: normal;
  font-weight: 700;
}
.section-dark .step {
  background: #fffcf70a;
  border: 1px solid rgba(255, 252, 247, 0.08);
}
.section-dark .step:hover {
  background: #fffcf712;
  box-shadow: 0 8px 32px #0006;
}
.section-dark .step h3 {
  color: var(--white);
}
.section-dark .step p {
  color: #fffcf799;
}
.section-dark .step p strong {
  color: var(--red);
}
.section-dark .step:after {
  color: #fffcf70a;
}
.sec-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  font-family: Noto Sans JP, sans-serif;
}
.sec-label:before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-alt .sec-label {
  color: var(--red);
}
.section-alt .sec-label:before {
  background: var(--red);
}
h2 {
  font-family: Shippori Mincho, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.section-alt h2 {
  color: var(--ink);
}
.kanji-bg {
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
  font-family: Shippori Mincho, serif;
  font-weight: 800;
  font-size: clamp(8rem, 20vw, 18rem);
  color: #1a12080a;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  writing-mode: vertical-rl;
  z-index: 0;
}
.section-alt .kanji-bg {
  color: #0000000f;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.story-text p {
  font-size: 0.82rem;
  line-height: 2;
  color: #1a1208a6;
  margin-bottom: 1.2rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 300;
}
.story-text p strong {
  color: var(--ink);
  font-weight: 700;
}
.story-text p em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}
.photo-frame {
  position: relative;
}
.photo-frame:before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--yellow);
  border-radius: 2px;
  z-index: 0;
}
.photo-frame img {
  width: 100%;
  border-radius: 2px;
  display: block;
  position: relative;
  z-index: 1;
  filter: contrast(1.05) saturate(0.95);
  min-height: 300px;
  object-fit: cover;
  background: #1a1a1a;
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(transparent, #1a1208d9);
  padding: 2rem 1.2rem 1rem;
  border-radius: 0 0 2px 2px;
}
.photo-caption .jp-text {
  font-family: Shippori Mincho, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
}
.photo-caption .sub {
  font-size: 0.65rem;
  color: #fffcf780;
  letter-spacing: 0.2em;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  counter-reset: steps;
}
.step {
  background: var(--white);
  border: 1px solid rgba(26, 18, 8, 0.08);
  border-radius: 2px;
  padding: 2rem;
  position: relative;
  counter-increment: steps;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover {
  box-shadow: 0 8px 32px #1a12081a;
  transform: translateY(-3px);
}
.step:after {
  content: "0" counter(steps);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: Shippori Mincho, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a12080d;
  line-height: 1;
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: Shippori Mincho, serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.72rem;
  color: #1a120880;
  line-height: 1.8;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 300;
}
.step p strong {
  color: var(--red);
  font-weight: 700;
}
.step-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to right, var(--red), var(--dark-red));
}
.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2rem;
}
.meme-card {
  background: #0d0d0d;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.meme-card:hover {
  transform: scale(1.02);
  z-index: 2;
}
.meme-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.meme-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  background: #1a1a1a;
}
.meme-card:hover .meme-img {
  transform: scale(1.05);
}
.meme-tag {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--red);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.meme-info {
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.meme-jp {
  font-family: Shippori Mincho, serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.meme-caption {
  font-size: 0.7rem;
  color: #fffcf780;
  line-height: 1.6;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 300;
}
.meme-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 252, 247, 0.07);
  border-radius: 2px;
  flex-wrap: wrap;
}
.meme-cta-text {
  font-size: 0.78rem;
  color: #fffcf773;
  font-family: Noto Sans JP, sans-serif;
  letter-spacing: 0.05em;
}
.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
#community .social-a {
  background: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--yellow);
}
#community .social-a:hover {
  box-shadow: 0 6px 24px #0000004d;
  transform: translateY(-3px);
}
#community .social-a .s-name {
  color: #fffcf799;
}
#community .social-a .s-icon-svg {
  color: var(--yellow);
}
.social-a {
  background: var(--white);
  border: 1px solid rgba(26, 18, 8, 0.1);
  border-radius: 2px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 130px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.social-a:hover {
  box-shadow: 0 6px 24px #1a12081f;
  transform: translateY(-3px);
}
.s-icon-svg {
  width: 36px;
  height: 36px;
  display: block;
  transition: transform 0.2s;
}
.social-a:hover .s-icon-svg {
  transform: scale(1.15);
}
.s-name {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
footer {
  background: var(--ink);
  border-top: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
.footer-banner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 2rem 0;
  background: var(--ink);
}
.footer-banner-img {
  width: auto;
  max-width: min(700px, 90%);
  max-height: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  border-radius: 3px;
}
.footer-inner {
  padding: 3rem 5vw 2.5rem;
  text-align: center;
  border-top: 3px solid var(--yellow);
}
.footer-logo {
  font-family: Shippori Mincho, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}
.footer-jp {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #fffcf740;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}
.footer-links a {
  font-size: 0.7rem;
  color: #fffcf773;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-disc {
  font-size: 0.62rem;
  color: #fffcf726;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 300;
}
.footer-copy {
  margin-top: 2rem;
  font-size: 0.58rem;
  color: #fffcf71a;
  letter-spacing: 0.25em;
}
@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-logo-col {
    order: -1;
  }
  .hero-logo-img {
    max-width: 260px;
    margin: 0 auto;
    display: block;
  }
  .hero-stat-row,
  .hero-btns {
    justify-content: center;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .meme-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .ay-nav {
    padding: 0 1.2rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}
@media (max-width: 500px) {
  .meme-grid {
    grid-template-columns: 1fr;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
