@charset "UTF-8";
:root {
  --neopop-base: #FDFCFA;
  --neopop-pink: #FF3B80;
  --neopop-violet: #5C16C5;
  --neopop-yellow: #FFD900;
  --neopop-green: #00E87B;
  --neopop-anth: #1C1C1C;
  --neopop-cream: #FFF8E7;
  --shadow-hard: 6px 6px 0 var(--neopop-anth);
  --shadow-pink: 6px 6px 0 var(--neopop-pink);
  --shadow-yellow: 6px 6px 0 var(--neopop-yellow);
  --shadow-green: 6px 6px 0 var(--neopop-green);
  --shadow-violet: 8px 8px 0 var(--neopop-anth);
  --radius-soft: 28px;
  --radius-amoeba: 40px;
  --radius-pill: 60px;
  --radius-puf: 48px;
  --font-display: "Bebas Neue", "Anton", "Oswald", "Impact", sans-serif;
  --font-jp: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
  --gap-fluid: 28px;
  --gap-bloated: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-jp);
  background-color: var(--neopop-base);
  color: var(--neopop-anth);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  padding-left: 256px;
  min-height: 100vh;
}

strong, p, b, span, li, a, h1, h2, h3, h4, h5, h6 { color: inherit; }

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

a { text-decoration: none; color: inherit; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, textarea, select { font-family: inherit; }

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, var(--neopop-anth) 1px, transparent 0);
  background-size: 3px 3px;
}

.shell-floating {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 208px;
  background: rgba(253, 252, 250, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-puf);
  padding: 28px 20px;
  box-shadow: var(--shadow-pink);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.brand-cluster { display: flex; flex-direction: column; align-items: center; gap: 10px; padding-bottom: 22px; border-bottom: 2px dashed var(--neopop-anth); }

.brand-glyph {
  width: 60px;
  height: 60px;
  border-radius: 26px 38px 22px 32px;
  background: var(--neopop-anth);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neopop-yellow);
  font-size: 32px;
  font-weight: 900;
  font-family: var(--font-display);
  box-shadow: var(--shadow-yellow);
}

.brand-domain {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--neopop-anth);
  text-transform: uppercase;
  line-height: 1;
}

.brand-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neopop-anth);
  opacity: 0.78;
  text-align: center;
  line-height: 1.3;
}

.brand-name b { color: var(--neopop-violet); }

.shell-nav-list { display: flex; flex-direction: column; gap: 14px; }

.shell-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 18px;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.shell-nav-item:hover { background: var(--neopop-yellow); transform: translateX(4px); }

.shell-nav-glyph { font-size: 20px; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }

.shell-nav-item:hover .shell-nav-glyph { transform: translateY(-6px); }

.shell-nav-tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neopop-pink);
  opacity: 1;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
  left: 64px;
  white-space: nowrap;
  background: var(--neopop-base);
  padding: 4px 10px;
  border-radius: 14px;
  box-shadow: var(--shadow-pink);
}

.shell-nav-item:hover .shell-nav-tag { opacity: 1; transform: translateX(0); }

.shell-phone-pill {
  margin-top: auto;
  background: var(--neopop-violet);
  color: var(--neopop-base);
  border-radius: 24px;
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-pink);
}

.shell-phone-pill b { display: block; font-size: 18px; color: var(--neopop-yellow); }

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  border-bottom: 2px solid var(--neopop-anth);
}

.mobile-brand-cluster { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }

.mobile-brand-glyph {
  width: 40px;
  height: 40px;
  border-radius: 16px 22px 14px 20px;
  background: var(--neopop-anth);
  color: var(--neopop-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.mobile-brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }

.mobile-brand-domain { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--neopop-anth); }

.mobile-brand-name { font-size: 10px; font-weight: 700; color: var(--neopop-anth); opacity: 0.7; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.mobile-burger {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--neopop-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: var(--shadow-pink);
}

.mobile-burger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--neopop-anth);
  position: absolute;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
  border-radius: 2px;
}

.mobile-burger span:nth-child(1) { top: 16px; }
.mobile-burger span:nth-child(2) { top: 22.5px; }
.mobile-burger span:nth-child(3) { top: 29px; }

.mobile-burger[aria-expanded="true"] { background: var(--neopop-violet); }
.mobile-burger[aria-expanded="true"] span:nth-child(1) { top: 22.5px; transform: rotate(45deg); background: var(--neopop-yellow); }
.mobile-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-burger[aria-expanded="true"] span:nth-child(3) { top: 22.5px; transform: rotate(-45deg); background: var(--neopop-yellow); }

.mobile-drop {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--neopop-base);
  z-index: 999;
  border-bottom: 3px solid var(--neopop-anth);
  padding: 20px 18px 28px;
  box-shadow: 0 8px 0 rgba(28, 28, 28, 0.1);
  flex-direction: column;
  gap: 12px;
}

.mobile-drop.is-open { display: flex; }

.mobile-drop a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 18px;
  background: var(--neopop-cream);
  border-radius: 20px;
  color: var(--neopop-anth);
  border: 2px solid var(--neopop-anth);
  display: block;
}

.mobile-drop a:nth-child(odd) { background: var(--neopop-yellow); }
.mobile-drop a:nth-child(even) { background: var(--neopop-pink); color: var(--neopop-base); }

.site-frame { width: 100%; }

.blob-stripe {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 60px;
  text-align: center;
  background: var(--neopop-base);
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.blob-stripe.hero-canvas { min-height: calc(100vh - 0px); padding: 80px 60px 120px; }

.hero-amphora {
  background: var(--neopop-green);
  border-radius: 80px 120px 90px 140px / 100px 80px 130px 90px;
  padding: 70px 60px 90px;
  max-width: 1180px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-hard);
  position: relative;
  border: 3px solid var(--neopop-anth);
}

.hero-amphora::before, .hero-amphora::after {
  content: "";
  position: absolute;
  background: var(--neopop-anth);
  border-radius: 50%;
}

.hero-amphora::before { width: 24px; height: 24px; top: 32px; right: 56px; background: var(--neopop-pink); }
.hero-amphora::after { width: 16px; height: 16px; bottom: 40px; left: 60px; background: var(--neopop-yellow); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--neopop-anth);
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 38px;
}

.hero-headline .ln { display: block; opacity: 0; transform: translateX(-30px); animation: glitchSlide 0.6s forwards; }
.hero-headline .ln:nth-child(1) { animation-delay: 0.1s; }
.hero-headline .ln:nth-child(2) { animation-delay: 0.18s; color: var(--neopop-violet); }
.hero-headline .ln:nth-child(3) { animation-delay: 0.26s; }
.hero-headline .ln:nth-child(4) { animation-delay: 0.34s; color: var(--neopop-pink); }

@keyframes glitchSlide { to { opacity: 1; transform: translateX(0); } }

.hero-subline {
  display: inline-block;
  background: var(--neopop-violet);
  color: var(--neopop-base);
  padding: 18px 28px;
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 8px 8px 0 var(--neopop-pink);
  border-radius: 16px 28px 18px 30px;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.5;
  max-width: 760px;
}

.cta-yellow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--neopop-yellow);
  color: var(--neopop-anth);
  padding: 22px 38px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 3px solid var(--neopop-anth);
  min-height: 60px;
  white-space: nowrap;
}

.cta-yellow:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--neopop-anth); }

.cta-violet {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--neopop-violet);
  color: var(--neopop-base) !important;
  padding: 20px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-pink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 3px solid var(--neopop-anth);
  min-height: 56px;
  white-space: nowrap;
}

.cta-violet:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--neopop-pink); }

.cta-pink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neopop-pink);
  color: var(--neopop-base);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid var(--neopop-anth);
  min-height: 50px;
  white-space: nowrap;
}

.cta-pink:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--neopop-anth); }

.cta-anth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neopop-anth);
  color: var(--neopop-base);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-yellow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 50px;
  white-space: nowrap;
  border: 2px solid var(--neopop-anth);
}

.cta-anth:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--neopop-yellow); }

.cta-cream {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neopop-cream);
  color: var(--neopop-anth);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-pink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 50px;
  white-space: nowrap;
  border: 2px solid var(--neopop-anth);
}

.cta-cream:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--neopop-pink); }

.cta-stripe { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }

.hero-live {
  position: absolute;
  top: 28px;
  right: 32px;
  background: var(--neopop-pink);
  color: var(--neopop-base);
  border-radius: 24px;
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: var(--shadow-hard);
  border: 2px solid var(--neopop-anth);
  max-width: 220px;
  text-align: left;
}

.hero-live b { color: var(--neopop-yellow); display: block; font-size: 14px; font-weight: 800; }

.blob-cluster { display: flex; flex-wrap: wrap; gap: 24px; padding: 80px 60px; justify-content: center; }

.squish-card {
  border-radius: var(--radius-soft);
  padding: 32px 28px;
  border: 2.5px solid var(--neopop-anth);
  position: relative;
  transition: flex-grow 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  min-height: 200px;
}

.squish-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 10px 10px 0 var(--neopop-anth); }

.squish-pink { background: var(--neopop-pink); color: var(--neopop-base); box-shadow: var(--shadow-hard); }
.squish-violet { background: var(--neopop-violet); color: var(--neopop-base); box-shadow: var(--shadow-hard); }
.squish-yellow { background: var(--neopop-yellow); color: var(--neopop-anth); box-shadow: var(--shadow-hard); }
.squish-green { background: var(--neopop-green); color: var(--neopop-anth); box-shadow: var(--shadow-hard); }
.squish-anth { background: var(--neopop-anth); color: var(--neopop-base); box-shadow: var(--shadow-pink); }
.squish-cream { background: var(--neopop-cream); color: var(--neopop-anth); box-shadow: var(--shadow-hard); }

.squish-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.squish-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.1;
}

.squish-text { font-size: 14px; line-height: 1.55; opacity: 0.92; }

.blob-row { display: flex; flex-wrap: wrap; gap: 24px; }

.blob-row .squish-card { flex: 1 1 280px; }

.split-sticky {
  display: flex;
  gap: 60px;
  padding: 100px 60px;
  align-items: flex-start;
  background: var(--neopop-base);
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.split-sticky-photo {
  flex: 0 0 42%;
  position: sticky;
  top: 80px;
  border-radius: var(--radius-amoeba);
  overflow: hidden;
  border: 2.5px solid var(--neopop-pink);
  box-shadow: var(--shadow-yellow);
  transition: transform 0.3s ease;
}

.split-sticky-photo:hover { z-index: 5; }

.split-sticky-photo img { width: 100%; height: 480px; object-fit: cover; display: block; }

.split-sticky-body { flex: 1 1 auto; min-width: 0; }

.split-sticky-body p { margin-bottom: 18px; font-size: 16px; line-height: 1.7; }

.dropcap {
  font-family: var(--font-display);
  float: left;
  font-size: 96px;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--neopop-pink);
  font-weight: 900;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neopop-violet);
  margin-bottom: 12px;
  display: inline-block;
  background: var(--neopop-yellow);
  padding: 4px 12px;
  border-radius: 8px;
}

.section-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--neopop-anth);
}

.section-h1 span { display: inline-block; padding: 0 6px; border-radius: 10px; }
.section-h1 .underline-1 { background: var(--neopop-yellow); }
.section-h1 .underline-2 { color: var(--neopop-pink); }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--neopop-anth);
}

.lead-text { font-size: 17px; line-height: 1.7; margin-bottom: 22px; }

.spec-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  background: var(--neopop-violet);
  color: var(--neopop-base);
  padding: 24px;
  border-radius: 28px;
  margin: 28px 0;
  border: 2.5px solid var(--neopop-anth);
  box-shadow: var(--shadow-pink);
}

.spec-strip > div { display: flex; flex-direction: column; gap: 4px; }

.spec-strip b { font-family: var(--font-display); font-size: 30px; color: var(--neopop-yellow); letter-spacing: 0.04em; }
.spec-strip span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 28px 0 28px;
  margin: 30px 0;
  border-top: 4px solid var(--neopop-green);
  border-bottom: 4px solid var(--neopop-green);
  text-align: left;
  color: var(--neopop-anth);
}

.accordion-row {
  display: flex;
  gap: 0;
  margin: 60px 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.acc-panel {
  background: var(--neopop-cream);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 36px;
  padding: 32px 24px;
  flex: 0 0 80px;
  min-height: 360px;
  cursor: pointer;
  transition: flex-basis 0.4s ease, padding 0.4s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: var(--neopop-anth);
  margin-right: -1.5px;
}

.acc-panel:nth-child(1) { background: var(--neopop-pink); color: var(--neopop-base); }
.acc-panel:nth-child(2) { background: var(--neopop-yellow); }
.acc-panel:nth-child(3) { background: var(--neopop-violet); color: var(--neopop-base); }
.acc-panel:nth-child(4) { background: var(--neopop-green); }
.acc-panel:nth-child(5) { background: var(--neopop-anth); color: var(--neopop-base); }
.acc-panel:nth-child(6) { background: var(--neopop-cream); }

.acc-panel.is-open { flex-basis: 360px; padding: 32px 28px; box-shadow: var(--shadow-hard); }

.acc-panel:not(:last-child) { margin-right: -2.5px; }

.acc-vert-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin: auto 0;
  line-height: 1.1;
  white-space: nowrap;
}

.acc-panel.is-open .acc-vert-title { writing-mode: horizontal-tb; transform: none; margin: 0 0 16px; }

.acc-glyph { font-size: 28px; margin-bottom: 16px; }

.acc-panel.is-open .acc-glyph { margin-bottom: 8px; }

.acc-full { display: none; flex-direction: column; gap: 14px; }
.acc-panel.is-open .acc-full { display: flex; }

.acc-full h4 { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; }

.acc-full p { font-size: 14px; line-height: 1.6; }

.acc-full .acc-media { width: 100%; height: 140px; border-radius: 20px; overflow: hidden; border: 2px solid var(--neopop-anth); }
.acc-full .acc-media img { width: 100%; height: 100%; object-fit: cover; }

.acc-full .acc-price { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.05em; padding: 6px 0; }

.acc-full .acc-price small { font-family: var(--font-mono); font-size: 11px; display: block; letter-spacing: 0.1em; opacity: 0.75; text-transform: uppercase; }

.timeline {
  position: relative;
  padding: 80px 60px 80px 200px;
  background: var(--neopop-base);
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 140px;
  top: 80px;
  bottom: 80px;
  width: 0;
  border-left: 4px dashed var(--neopop-violet);
}

.tl-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.tl-step:last-child { margin-bottom: 0; }

.tl-node {
  flex: 0 0 80px;
  height: 80px;
  background: var(--neopop-violet);
  color: var(--neopop-base);
  border-radius: 32px 42px 28px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  position: absolute;
  left: -130px;
  top: 0;
  box-shadow: var(--shadow-pink);
  border: 2.5px solid var(--neopop-anth);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tl-step.is-active .tl-node { background: var(--neopop-yellow); color: var(--neopop-anth); transform: scale(1.08); }

.tl-card {
  background: var(--neopop-base);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 28px;
  padding: 24px 28px;
  flex: 1;
  margin-left: 80px;
  box-shadow: var(--shadow-hard);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}

.tl-card-img { width: 200px; height: 140px; border-radius: 18px; overflow: hidden; border: 2px solid var(--neopop-anth); }
.tl-card-img img { width: 100%; height: 100%; object-fit: cover; }

.tl-card-body h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.tl-card-body p { font-size: 15px; line-height: 1.6; margin-bottom: 8px; }
.tl-card-body .tl-time { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neopop-violet); }

.flex-grow-grid { display: flex; gap: 16px; padding: 60px; flex-wrap: wrap; align-items: stretch; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }

.fg-card {
  flex: 1 1 180px;
  background: var(--neopop-yellow);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 32px;
  padding: 26px 22px;
  box-shadow: var(--shadow-hard);
  transition: flex-grow 0.4s ease, transform 0.3s ease;
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--neopop-anth);
}

.fg-card:nth-child(odd) { background: var(--neopop-pink); color: var(--neopop-base); }
.fg-card:nth-child(even) { background: var(--neopop-green); }

.fg-card:nth-child(3) { background: var(--neopop-violet); color: var(--neopop-base); }
.fg-card:nth-child(4) { background: var(--neopop-yellow); color: var(--neopop-anth); }
.fg-card:nth-child(5) { background: var(--neopop-anth); color: var(--neopop-base); }
.fg-card:nth-child(6) { background: var(--neopop-cream); color: var(--neopop-anth); }

.fg-card:hover { flex-grow: 1.5; transform: translateY(-4px); }

.fg-num { font-family: var(--font-display); font-size: 56px; font-weight: 900; line-height: 0.9; }

.fg-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.15; }

.fg-text { font-size: 14px; line-height: 1.55; }

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.masonry-cell { border-radius: 28px; overflow: hidden; border: 2.5px solid var(--neopop-anth); box-shadow: var(--shadow-hard); position: relative; background: var(--neopop-cream); }
.masonry-cell img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.masonry-cell:hover img { transform: scale(1.05); }
.masonry-cell:hover { border-color: var(--neopop-pink); box-shadow: var(--shadow-yellow); }

.masonry-cell.tall img { height: 380px; }
.masonry-cell.short img { height: 220px; }

.masonry-cap { padding: 16px 18px; background: var(--neopop-base); }
.masonry-cap b { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.masonry-cap p { font-size: 13px; line-height: 1.5; color: var(--neopop-anth); opacity: 0.8; }

.team-strip { padding: 60px; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }

.team-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  background: var(--neopop-base);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 32px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, background-color 0.2s ease;
  min-height: 96px;
}

.team-row:nth-child(odd) { background: var(--neopop-cream); }
.team-row:nth-child(even) { background: var(--neopop-yellow); }
.team-row:hover { transform: translateX(8px); }

.team-num { font-family: var(--font-display); font-size: 44px; font-weight: 900; line-height: 0.9; color: var(--neopop-violet); min-width: 60px; }

.team-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; flex: 1; min-width: 0; }

.team-spec { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.78; }

.team-reveal {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translate(20px, -50%);
  background: var(--neopop-pink);
  color: var(--neopop-base);
  border-radius: 24px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 2.5px solid var(--neopop-anth);
  box-shadow: var(--shadow-yellow);
  z-index: 5;
  max-width: 320px;
}

.team-row:hover .team-reveal { opacity: 1; transform: translate(0, -50%); pointer-events: auto; }

.team-reveal img { width: 70px; height: 70px; border-radius: 18px; object-fit: cover; border: 2px solid var(--neopop-anth); flex-shrink: 0; }

.team-reveal-text b { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 4px; color: var(--neopop-yellow); }
.team-reveal-text p { font-size: 12px; line-height: 1.4; }

.faq-vertical { padding: 60px; display: flex; flex-direction: column; gap: 14px; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }

.faq-bubble {
  background: var(--neopop-base);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 28px;
  padding: 22px 26px 22px 76px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-hard);
}

.faq-bubble::before {
  content: "?";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--neopop-green);
  color: var(--neopop-anth);
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  border: 2px solid var(--neopop-anth);
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.faq-bubble.is-open { background: var(--neopop-yellow); transform: translateY(-2px); }
.faq-bubble.is-open::before { background: var(--neopop-pink); color: var(--neopop-base); transform: translateY(-50%) rotate(45deg); }

.faq-q { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase; padding-right: 32px; position: relative; }
.faq-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 28px; font-weight: 900; font-family: var(--font-display); color: var(--neopop-violet); transition: transform 0.3s ease; }
.faq-bubble.is-open .faq-toggle { transform: translateY(-50%) rotate(45deg); color: var(--neopop-anth); }

.faq-a {
  display: none;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px dashed var(--neopop-anth);
}

.faq-bubble.is-open .faq-a { display: block; }

.marquee-strip { padding: 60px 0; overflow: hidden; background: var(--neopop-base); }

.marquee-track { display: flex; gap: 22px; animation: marqueeMove 40s linear infinite; width: max-content; }

@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.review-card {
  background: var(--neopop-yellow);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 32px;
  padding: 22px;
  max-width: 320px;
  width: 100%;
  flex-shrink: 0;
  box-shadow: var(--shadow-hard);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.review-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 10px 10px 0 var(--neopop-violet); z-index: 5; }

.review-card:nth-child(3n) { background: var(--neopop-pink); color: var(--neopop-base); }
.review-card:nth-child(3n+1) { background: var(--neopop-green); }
.review-card:nth-child(3n+2) { background: var(--neopop-yellow); }

.review-photo { width: 100%; height: 180px; border-radius: 20px; overflow: hidden; border: 2px solid var(--neopop-anth); margin-bottom: 14px; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-quote { font-size: 14px; line-height: 1.55; margin-bottom: 12px; }
.review-author { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase; }

.contact-pod { padding: 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }

.map-stylized {
  background: var(--neopop-cream);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 56px 80px 60px 90px / 70px 60px 80px 50px;
  padding: 30px;
  position: relative;
  min-height: 480px;
  box-shadow: var(--shadow-pink);
  overflow: hidden;
}

.map-stylized::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 38%, rgba(92, 22, 197, 0.05) 38%, rgba(92, 22, 197, 0.05) 42%, transparent 42%), linear-gradient(20deg, transparent 60%, rgba(255, 59, 128, 0.05) 60%, rgba(255, 59, 128, 0.05) 63%, transparent 63%); }

.map-block { position: absolute; border: 2px solid var(--neopop-anth); border-radius: 16px; }
.map-block.b1 { top: 60px; left: 40px; width: 80px; height: 100px; background: var(--neopop-pink); }
.map-block.b2 { top: 90px; left: 130px; width: 110px; height: 70px; background: var(--neopop-yellow); }
.map-block.b3 { top: 40px; right: 60px; width: 90px; height: 120px; background: var(--neopop-violet); }
.map-block.b4 { bottom: 80px; left: 60px; width: 130px; height: 80px; background: var(--neopop-green); }
.map-block.b5 { bottom: 60px; right: 80px; width: 100px; height: 100px; background: var(--neopop-pink); }

.contact-capsule {
  background: var(--neopop-pink);
  color: var(--neopop-base);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 60px 80px 50px 90px / 70px 60px 80px 60px;
  padding: 50px 44px;
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.contact-capsule h2 { font-family: var(--font-display); font-size: 38px; line-height: 1; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-capsule h2 span { color: var(--neopop-yellow); }

.contact-row { display: flex; flex-direction: column; gap: 6px; }
.contact-row .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neopop-yellow); }
.contact-row .val { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; }
.contact-row .val a { color: inherit; border-bottom: 2px dashed currentColor; }

.contact-live-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.contact-live-strip span { background: var(--neopop-anth); color: var(--neopop-yellow); border-radius: 16px; padding: 8px 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; font-weight: 600; }

.form-stylized {
  background: var(--neopop-base);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 36px;
  padding: 36px 30px;
  box-shadow: var(--shadow-pink);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neopop-violet); font-weight: 600; }

.form-row input, .form-row textarea, .form-row select {
  background: var(--neopop-base);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 16px;
  color: var(--neopop-anth);
  width: 100%;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  font-family: var(--font-jp);
}

.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  background: var(--neopop-yellow);
  box-shadow: 4px 4px 0 var(--neopop-pink);
}

.form-row textarea { min-height: 120px; resize: vertical; }

.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-status {
  display: none;
  background: var(--neopop-green);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 22px;
  padding: 22px 26px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-pink);
  color: var(--neopop-anth);
}

.form-status.is-shown { display: block; }

.compact-hero {
  padding: 90px 60px 60px;
  background: var(--neopop-yellow);
  border-bottom: 4px solid var(--neopop-anth);
  position: relative;
  overflow: hidden;
}

.compact-hero::before { content: ""; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; background: var(--neopop-pink); border-radius: 50%; border: 3px solid var(--neopop-anth); }
.compact-hero::after { content: ""; position: absolute; left: -40px; bottom: -40px; width: 160px; height: 160px; background: var(--neopop-violet); border-radius: 60px; border: 3px solid var(--neopop-anth); }

.compact-hero-inner { position: relative; z-index: 2; max-width: 920px; }

.crumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--neopop-anth); }
.crumbs a { border-bottom: 2px solid currentColor; padding-bottom: 1px; }

.crumbs-sep { opacity: 0.6; }

.service-grid { padding: 80px 60px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }

.service-card {
  background: var(--neopop-base);
  border: 2.5px solid var(--neopop-anth);
  border-radius: 32px;
  padding: 28px 24px;
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--neopop-anth);
}

.service-card:hover { transform: translateY(-6px); box-shadow: 10px 10px 0 var(--neopop-pink); }

.service-card:nth-child(3n) { background: var(--neopop-cream); }
.service-card:nth-child(3n+1) { background: var(--neopop-base); }
.service-card:nth-child(3n+2) { background: var(--neopop-yellow); }

.service-photo { width: 100%; height: 180px; border-radius: 20px; overflow: hidden; border: 2px solid var(--neopop-anth); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }

.service-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neopop-violet); font-weight: 600; }

.service-h { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.05; }

.service-desc { font-size: 14px; line-height: 1.6; flex: 1; }

.service-price-row { display: flex; align-items: flex-end; justify-content: space-between; padding-top: 12px; border-top: 2px dashed var(--neopop-anth); gap: 12px; }
.service-price-row .price { font-family: var(--font-display); font-size: 26px; color: var(--neopop-pink); letter-spacing: 0.03em; }
.service-price-row .price small { font-family: var(--font-mono); font-size: 11px; color: var(--neopop-anth); display: block; letter-spacing: 0.1em; text-transform: uppercase; }

.service-card .cta-cream { font-size: 14px; padding: 12px 20px; }

.legal-strip { padding: 80px 60px; max-width: 980px; margin: 0 auto; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }
.legal-strip h1 { font-family: var(--font-display); font-size: 56px; line-height: 1; margin-bottom: 26px; letter-spacing: 0.04em; text-transform: uppercase; }
.legal-strip h2 { font-family: var(--font-display); font-size: 28px; margin: 30px 0 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--neopop-violet); }
.legal-strip p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.legal-strip ul { padding-left: 24px; margin-bottom: 18px; }
.legal-strip li { font-size: 16px; line-height: 1.7; margin-bottom: 6px; }

.thanks-pod {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 30px;
  background: var(--neopop-base);
}

.thanks-card {
  max-width: 720px;
  background: var(--neopop-green);
  border: 3px solid var(--neopop-anth);
  border-radius: 80px 60px 100px 70px / 60px 100px 70px 80px;
  padding: 60px 44px;
  box-shadow: 10px 10px 0 var(--neopop-pink);
  text-align: center;
  color: var(--neopop-anth);
}

.thanks-glyph { font-size: 80px; line-height: 1; margin-bottom: 12px; }
.thanks-card h1 { font-family: var(--font-display); font-size: 56px; line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.thanks-card p { font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: var(--neopop-yellow);
  color: var(--neopop-anth);
  border: 3px solid var(--neopop-anth);
  border-radius: 28px;
  padding: 22px 24px;
  max-width: 380px;
  width: auto;
  box-shadow: var(--shadow-pink);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner h4 { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }

.cookie-banner p { margin-bottom: 12px; }

.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.cookie-actions button {
  background: var(--neopop-anth);
  color: var(--neopop-base);
  border: 2px solid var(--neopop-anth);
  border-radius: 18px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  min-height: 40px;
  cursor: pointer;
}
.cookie-actions button.alt { background: var(--neopop-pink); color: var(--neopop-base); }
.cookie-actions button:hover { background: var(--neopop-violet); }

.cookie-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.cookie-meta a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }

.site-footer {
  background: var(--neopop-anth);
  color: var(--neopop-base);
  padding: 80px 60px 36px;
  border-top: 6px solid var(--neopop-pink);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.site-footer::before { content: ""; position: absolute; top: 40px; right: 50px; width: 140px; height: 140px; background: var(--neopop-yellow); border-radius: 50%; border: 3px solid var(--neopop-pink); opacity: 0.18; }

.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; position: relative; z-index: 2; }

.foot-col h5 { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; color: var(--neopop-yellow); }

.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }

.foot-col li a { font-size: 14px; line-height: 1.4; opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; display: inline-block; border-bottom: 1px dashed transparent; padding-bottom: 1px; }
.foot-col li a:hover { opacity: 1; color: var(--neopop-yellow); border-bottom-color: var(--neopop-yellow); }

.foot-brand { display: flex; flex-direction: column; gap: 12px; }
.foot-brand-glyph { width: 56px; height: 56px; background: var(--neopop-pink); color: var(--neopop-yellow); border-radius: 24px 32px 18px 28px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 900; box-shadow: 4px 4px 0 var(--neopop-yellow); border: 2.5px solid var(--neopop-yellow); }
.foot-brand-name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; }
.foot-brand-name span { color: var(--neopop-pink); }
.foot-brand p { font-size: 13px; line-height: 1.6; opacity: 0.78; }

.foot-contact-row { display: flex; flex-direction: column; gap: 4px; font-size: 13px; line-height: 1.5; }
.foot-contact-row b { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neopop-green); margin-bottom: 2px; }
.foot-contact-row address { font-style: normal; font-size: 13px; line-height: 1.5; opacity: 0.85; }

.foot-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 2px dashed var(--neopop-base); gap: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
.foot-copy { font-size: 12px; opacity: 0.7; font-family: var(--font-mono); letter-spacing: 0.04em; }
.foot-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-legal a { font-size: 12px; opacity: 0.75; border-bottom: 1px solid transparent; }
.foot-legal a:hover { opacity: 1; border-bottom-color: currentColor; }

.cta-banner {
  background: var(--neopop-pink);
  color: var(--neopop-base);
  padding: 80px 60px;
  text-align: center;
  border-top: 4px solid var(--neopop-anth);
  border-bottom: 4px solid var(--neopop-anth);
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.cta-banner h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px); line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.cta-banner h2 span { color: var(--neopop-yellow); }
.cta-banner p { font-size: 17px; line-height: 1.6; max-width: 720px; margin: 0 auto 28px; }

.blog-grid { padding: 80px 60px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }

.blog-card { background: var(--neopop-base); border: 2.5px solid var(--neopop-anth); border-radius: 32px; padding: 24px; box-shadow: var(--shadow-hard); display: flex; flex-direction: column; gap: 14px; }
.blog-card:nth-child(2) { background: var(--neopop-cream); }
.blog-card:nth-child(3) { background: var(--neopop-yellow); }
.blog-card:nth-child(4) { background: var(--neopop-green); }
.blog-card:nth-child(5) { background: var(--neopop-pink); color: var(--neopop-base); }

.blog-photo { width: 100%; height: 200px; border-radius: 22px; overflow: hidden; border: 2px solid var(--neopop-anth); }
.blog-photo img { width: 100%; height: 100%; object-fit: cover; }

.blog-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neopop-violet); font-weight: 600; }

.blog-h { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.05; }

.blog-text { font-size: 14px; line-height: 1.6; flex: 1; }

.blog-link { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--neopop-violet); border-bottom: 2px solid currentColor; padding-bottom: 1px; align-self: flex-start; }

.cta-stripe { background: var(--neopop-violet); color: var(--neopop-base); padding: 60px; border-radius: 48px 80px 56px 90px / 60px 90px 50px 80px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-yellow); border: 3px solid var(--neopop-anth); margin: 60px; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }

.cta-stripe h3 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; }
.cta-stripe h3 span { color: var(--neopop-yellow); }
.cta-stripe p { font-size: 14px; opacity: 0.88; margin-top: 6px; }

.section-block { padding: 60px; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }
.section-block.tight { padding: 40px 60px; }

.text-only-block { padding: 60px; max-width: 900px; margin: 0 auto; box-sizing: border-box; max-width: 100%; overflow-x: hidden; }
.text-only-block p { font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.text-only-block p:nth-child(odd) { background: var(--neopop-cream); padding: 14px 18px; border-radius: 18px; border: 2px solid var(--neopop-anth); }

.pricing-callout { background: var(--neopop-yellow); border: 2.5px solid var(--neopop-anth); border-radius: 28px; padding: 24px 28px; box-shadow: var(--shadow-pink); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.pricing-callout b { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.03em; }
.pricing-callout span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.78; }

.tabular-block { background: var(--neopop-base); border: 2.5px solid var(--neopop-anth); border-radius: 28px; padding: 24px 28px; box-shadow: var(--shadow-hard); }
.tabular-block h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; color: var(--neopop-violet); }
.tabular-block ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.tabular-block li { font-family: var(--font-mono); font-size: 13px; line-height: 1.5; padding: 10px 14px; background: var(--neopop-cream); border-radius: 14px; border: 2px solid var(--neopop-anth); }
.tabular-block li b { color: var(--neopop-violet); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 60px; }
.two-col > * { min-width: 0; }

.text-image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 60px; align-items: center; }
.text-image-row img { width: 100%; height: 360px; object-fit: cover; border-radius: 28px; border: 2.5px solid var(--neopop-anth); box-shadow: var(--shadow-hard); }
.text-image-row.reverse > div:first-child { order: 2; }

.process-pill { background: var(--neopop-cream); border: 2.5px solid var(--neopop-anth); border-radius: 28px; padding: 24px 28px; box-shadow: var(--shadow-hard); display: flex; gap: 18px; align-items: flex-start; }
.process-pill .pn-num { flex: 0 0 50px; height: 50px; background: var(--neopop-pink); color: var(--neopop-base); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 900; border: 2px solid var(--neopop-anth); }
.process-pill h4 { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.process-pill p { font-size: 14px; line-height: 1.6; }

.split-callout { background: var(--neopop-pink); color: var(--neopop-base); border: 2.5px solid var(--neopop-anth); border-radius: 36px; padding: 36px 30px; box-shadow: var(--shadow-hard); display: flex; flex-direction: column; gap: 16px; }
.split-callout h3 { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }
.split-callout h3 span { color: var(--neopop-yellow); }
.split-callout p { font-size: 15px; line-height: 1.7; }
.split-callout .stat-row { display: flex; gap: 24px; flex-wrap: wrap; }
.split-callout .stat-row b { font-family: var(--font-display); font-size: 36px; color: var(--neopop-yellow); display: block; }
.split-callout .stat-row span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

.skip-link { position: absolute; left: -1000px; top: 0; background: var(--neopop-anth); color: var(--neopop-base); padding: 8px 12px; z-index: 99999; }
.skip-link:focus { left: 0; }

@media (max-width: 1100px) {
  body { padding-left: 0; padding-top: 68px; }
  .shell-floating { display: none; }
  .mobile-bar { display: flex; }
  .split-sticky { flex-direction: column; }
  .split-sticky-photo { position: relative; top: 0; flex: 0 0 auto; width: 100%; }
  .split-sticky-photo img { height: 320px; }
  .contact-pod { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot-grid > .foot-brand { grid-column: 1 / -1; }
  .masonry-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .blob-stripe, .blob-stripe.hero-canvas { padding: 60px 24px; }
  .hero-amphora { padding: 50px 30px 60px; }
  .hero-live { position: relative; top: 0; right: 0; margin: 0 0 24px; max-width: 100%; display: inline-block; }
  .blob-cluster, .split-sticky, .service-grid, .blog-grid, .team-strip, .faq-vertical, .legal-strip, .text-only-block, .section-block, .cta-stripe, .cta-banner, .site-footer, .contact-pod, .masonry-grid, .flex-grow-grid, .text-image-row, .two-col, .timeline { padding: 50px 22px; }
  .masonry-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bar { flex-direction: column; align-items: flex-start; }
  .hero-headline { font-size: 56px; }
  .acc-panel { flex-basis: 60px; min-height: 200px; padding: 18px 14px; }
  .acc-panel.is-open { flex-basis: 100%; }
  .accordion-row { flex-direction: column; }
  .acc-panel { margin-right: 0; margin-bottom: -2.5px; }
  .acc-vert-title { font-size: 16px; }
  .fg-card { flex: 1 1 100%; }
  .tl-card { grid-template-columns: 1fr; margin-left: 0; }
  .tl-card-img { width: 100%; height: 160px; }
  .timeline { padding-left: 22px; }
  .timeline::before { left: 32px; }
  .tl-node { left: -8px; position: relative; flex: 0 0 50px; width: 50px; height: 50px; font-size: 22px; }
  .tl-step { flex-direction: column; align-items: flex-start; gap: 12px; padding-left: 76px; }
  .form-row-grid { grid-template-columns: 1fr; }
  .text-image-row { grid-template-columns: 1fr; }
  .text-image-row.reverse > div:first-child { order: 0; }
  .spec-strip { grid-template-columns: 1fr 1fr; }
  .compact-hero { padding: 60px 24px 40px; }
  .cta-stripe { flex-direction: column; align-items: flex-start; margin: 30px 22px; padding: 36px 24px; }
  .team-reveal { position: relative; right: auto; top: auto; transform: none; opacity: 1; pointer-events: auto; margin-top: 12px; max-width: 100%; }
  .team-row { flex-wrap: wrap; }
  .team-name { font-size: 18px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .thanks-card { padding: 40px 24px; }
  .thanks-card h1 { font-size: 40px; }
  .section-h1 { font-size: 36px; }
  .section-h2 { font-size: 26px; }
  .legal-strip h1 { font-size: 36px; }
  .map-stylized { min-height: 320px; }
  .map-block.b1, .map-block.b2, .map-block.b3, .map-block.b4, .map-block.b5 { transform: scale(0.7); transform-origin: top left; }
  .map-block.b3 { transform-origin: top right; }
  .map-block.b4, .map-block.b5 { transform-origin: bottom left; }
  .map-block.b5 { transform-origin: bottom right; }
  .map-block.b1 { transform-origin: top left; }
}

@media (max-width: 380px) {
  .hero-headline { font-size: 44px; }
  .cta-yellow, .cta-violet, .cta-pink, .cta-anth, .cta-cream { padding: 14px 22px; font-size: 14px; }
  .spec-strip { grid-template-columns: 1fr; }
  .squish-card { flex: 1 1 100%; }
}
