:root {
  --rui-bg: #fff8f8;
  --rui-surface: rgba(255, 255, 255, 0.86);
  --rui-pink: #ff526a;
  --rui-pink-2: #ff8fa0;
  --rui-pink-soft: #ffe7eb;
  --rui-navy: #07183f;
  --rui-muted: #607092;
  --rui-line: rgba(255, 82, 106, 0.28);
  --rui-shadow: 0 18px 45px rgba(255, 82, 106, 0.12);
  --rui-radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

.rui-site-template {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  font-family: Inter, Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--rui-navy);
  background:
    radial-gradient(circle at 15% 8%, rgba(255,82,106,0.08), transparent 28%),
    radial-gradient(circle at 90% 92%, rgba(255,143,160,0.10), transparent 30%),
    var(--rui-bg);
}

.rui-site-template::before {
  content: "";
  position: fixed;
  inset: -64px;
  z-index: 0;
  pointer-events: none;
  opacity: .78;
  background-image:
    linear-gradient(rgba(255,82,106,0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,82,106,0.085) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 0 0;
  animation: ruiGridSlide 11s linear infinite;
  will-change: background-position;
}

@keyframes ruiGridSlide {
  from { background-position: 0 0, 0 0; }
  to { background-position: -32px -32px, -32px -32px; }
}

@media (prefers-reduced-motion: reduce) {
  .rui-site-template::before { animation: none; }
}

/* First-format left navbar */
.rui-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 285px;
  height: 100vh;
  padding: 54px 38px 36px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  border-right: 1px solid rgba(255,82,106,0.12);
  box-shadow: 18px 0 55px rgba(7,24,63,0.04);
  display: flex;
  flex-direction: column;
}
.logo-wrap {
  min-height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
}
.rui-sidebar .logo-wrap { margin-left: -8px; margin-right: -8px; }
.rui-logo {
  display: block;
  width: min(255px, 150%);
  height: auto;
  max-height: 245px;
  object-fit: contain;
  object-position: center;
}
.logo-fallback {
  display: none;
  place-items: center;
  text-align: center;
  color: var(--rui-pink);
}
.logo-fallback strong { font-size: 46px; line-height: 1; letter-spacing: -4px; }
.logo-fallback span { letter-spacing: 7px; font-weight: 800; font-size: 13px; }
.logo-fallback small { color: var(--rui-navy); font-size: 11px; }
/* V32 navbar icon states */
.rui-nav {
  display: grid;
  gap: 4px;
}
.rui-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 61px;
  color: var(--rui-navy);
  text-decoration: none;
  font-weight: 750;
  border-bottom: 1px solid rgba(7,24,63,0.08);
  transition: color .2s ease, transform .2s ease;
}
.rui-nav a .nav-label {
  display: inline-block;
}
.rui-nav a .nav-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: block;
}
.rui-nav a .nav-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .18s ease;
}
.rui-nav a .nav-icon .icon-default {
  opacity: 1;
}
.rui-nav a .nav-icon .icon-hover {
  opacity: 0;
}
.rui-nav a:hover,
.rui-nav a.active {
  color: var(--rui-pink);
  transform: translateX(3px);
}
.rui-nav a:hover .nav-icon .icon-default,
.rui-nav a.active .nav-icon .icon-default {
  opacity: 0;
}
.rui-nav a:hover .nav-icon .icon-hover,
.rui-nav a.active .nav-icon .icon-hover {
  opacity: 1;
}
.social-row {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-row a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
  transition: transform .22s ease;
}
.social-row a:hover {
  transform: translateY(-2px);
}
.social-row a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .22s ease, transform .22s ease;
}
.social-row a .social-icon-default {
  opacity: 1;
  transform: scale(1);
}
.social-row a .social-icon-hover {
  opacity: 0;
  transform: scale(.96);
}
.social-row a:hover .social-icon-default,
.social-row a:focus-visible .social-icon-default {
  opacity: 0;
  transform: scale(1.02);
}
.social-row a:hover .social-icon-hover,
.social-row a:focus-visible .social-icon-hover {
  opacity: 1;
  transform: scale(1);
}
.copyright { margin: 58px 0 0; color: #8790a7; font-size: 12px; line-height: 1.6; }

.rui-main { position: relative; z-index: 1; margin-left: 285px; padding: 22px 88px 40px; max-width: 1500px; }
.rui-page { display: none; animation: ruiFade 0.24s ease; }
.rui-page.is-active { display: block; }
@keyframes ruiFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.top-brand-card {
  width: max-content;
  margin-left: auto;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,82,106,0.14);
  border-radius: 8px;
  box-shadow: var(--rui-shadow);
}
.brand-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rui-pink), var(--rui-pink-2));
  color: white;
  font-size: 24px;
}
.top-brand-card strong { display: block; color: var(--rui-pink); font-size: 24px; line-height: 1; }
.top-brand-card span { display: block; font-size: 13px; font-weight: 700; }

/* V37 soft breathing star animation */
.top-brand-card {
  overflow: visible;
}
.brand-icon {
  position: relative;
  overflow: visible;
  isolation: isolate;
  box-shadow: none;
  animation: none;
}
.brand-icon::before {
  content: none;
  display: none;
}
.brand-icon::after {
  content: "✦";
  position: absolute;
  top: -8px;
  right: -9px;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 3px rgba(255,255,255,.75),
    0 0 6px rgba(255,255,255,.42);
  transform-origin: center;
  animation: ruiBrandBreathingStar 3.4s ease-in-out infinite;
  will-change: transform, opacity;
}
.top-brand-card:hover .brand-icon::after {
  animation-duration: 2.7s;
}
@keyframes ruiBrandBreathingStar {
  0%, 100% {
    transform: scale(.58) rotate(0deg);
    opacity: .50;
  }
  35% {
    transform: scale(1.20) rotate(7deg);
    opacity: .92;
  }
  55% {
    transform: scale(1.38) rotate(-5deg);
    opacity: 1;
  }
  78% {
    transform: scale(.78) rotate(2deg);
    opacity: .70;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-icon::after {
    animation: none !important;
  }
}
.hero-slider-section { margin-bottom: 18px; }
.hero-slider {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--rui-line);
  border-radius: var(--rui-radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(255,239,243,0.84));
  box-shadow: var(--rui-shadow);
}
.hero-slider-viewport { overflow: hidden; border-radius: inherit; }
.hero-slider-track { display: flex; width: 100%; transform: translateX(-100%); }
.hero-slide { min-width: 100%; position: relative; aspect-ratio: 2048 / 750; background: linear-gradient(135deg, #fff, #ffe8ef); }
.hero-banner-link { display: block; width: 100%; height: 100%; cursor: pointer; }
.hero-slider-viewport { cursor: grab; user-select: none; }
.hero-slider.is-dragging .hero-slider-viewport { cursor: grabbing; }
.hero-slider.is-dragging .hero-banner-link { pointer-events: none; }
.hero-banner-image { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; user-drag: none;
  object-fit: cover;
}

.hero-banner-image[src^="YOUR_HOME_BANNER_"] { display: none; }
.slide-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--rui-pink); font-size: 14px; font-weight: 950; letter-spacing: 2px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,82,106,0.12), transparent 14%),
    radial-gradient(circle at 88% 22%, rgba(255,82,106,0.12), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,235,240,.85));
  border: 1px dashed rgba(255,82,106,.25);
}
.hero-banner-image:not([src^="YOUR_HOME_BANNER_"]) + .slide-placeholder { display: none; }
.hero-slider-dots {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px; z-index: 5;
  padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.72); backdrop-filter: blur(6px);
}
.hero-slider-dots button {
  width: 10px; height: 10px; padding: 0; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(7,24,63,.22); transition: .22s ease;
}
.hero-slider-dots button.is-active { width: 28px; background: linear-gradient(90deg, var(--rui-pink), #ff7b90); }
.hero-slider-help { margin: 10px 6px 0; color: var(--rui-muted); font-size: 12px; font-weight: 650; }
.hero-slider-help code { padding: 2px 6px; border-radius: 6px; background: rgba(255,255,255,.84); border: 1px solid rgba(255,82,106,.16); color: var(--rui-pink); }


.section-head { display: flex; align-items: center; gap: 12px; margin: 18px 0 10px; }
.section-head span { color: var(--rui-pink); font-size: 20px; }
.section-head h2 { margin: 0; font-size: 15px; letter-spacing: 5px; }
.section-head i { flex: 1; border-bottom: 1px dashed var(--rui-line); }
.package-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.package-card {
  position: relative;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--rui-line);
  border-radius: 12px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 26px rgba(7,24,63,0.05);
  padding: 18px 12px 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--rui-navy);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.package-card:after { content: ""; position: absolute; left: 10%; right: 10%; bottom: 17px; border-bottom: 1px dashed var(--rui-line); }
.package-card-has-image {
  justify-content: flex-end;
  padding: 0;
  background: #fff;
}
.package-card-has-image:after {
  display: none;
}
.package-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.package-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding: 18px 14px 20px;
}
.package-link { cursor: pointer; }
.package-link:hover {
  transform: translateY(-5px);
  border-color: var(--rui-pink);
  box-shadow: 0 20px 38px rgba(255,82,106,.16);
  background: rgba(255,255,255,.96);
}
.package-link:hover .icon-circle {
  width: 72px;
  height: 72px;
  margin: 6px auto 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--rui-line);
  color: var(--rui-pink);
  font-size: 28px;
  font-weight: 900;
  background: rgba(255,255,255,.65);
}
.package-link:hover .click-hint {
  opacity: 1;
  transform: translateY(0);
}
.icon-circle { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: var(--rui-pink-soft); color: var(--rui-pink); border: 1px solid var(--rui-line); font-size: 28px; margin-bottom: 10px; }
.package-card h3 {
  margin: 0 0 6px;
  color: var(--rui-navy);
  font-size: 17px;
  line-height: 1.22;
}
.package-card p {
  margin: 0 0 8px;
  color: #273d69;
  font-size: 14px;
  line-height: 1.45;
}
.price-label {
  display: block;
  margin-top: 2px;
  color: var(--rui-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.package-card strong { color: var(--rui-pink); font-size: 26px; line-height: 1; }
.click-hint {
  display: block;
  margin-top: 10px;
  color: var(--rui-pink);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(4px);
  transition: .2s ease;
}
.package-card.featured { border: 2px solid var(--rui-pink); }
.ribbon { position: absolute; top: 0; left: 18%; right: 18%; background: var(--rui-pink); color: white; font-size: 12px; font-weight: 900; padding: 6px 8px; border-radius: 0 0 7px 7px; }

.info-grid { display: grid; grid-template-columns: 1.05fr 1.55fr 1.2fr; gap: 16px; margin-top: 20px; }
.info-card { position: relative; background: rgba(255,255,255,0.86); border: 1px solid var(--rui-line); border-radius: 10px; box-shadow: 0 12px 25px rgba(7,24,63,0.045); padding: 22px 24px; }
.status-card h3 { margin: 0 0 8px; font-size: 16px; }
.status-card h3 strong { color: #12aa53; }
.status-card p { margin: 0; color: #253c68; }
.status-card b { display: block; color: var(--rui-pink); margin: 5px 0 20px; }
.status-card ul { list-style: none; padding: 0; margin: 0; color: #2a426f; font-size: 12px; line-height: 1.9; }
.status-chibi { position: absolute; right: 20px; bottom: 22px; width: 110px; max-height: 110px; object-fit: contain; opacity: .9; }
.status-chibi[src="YOUR_SMALL_CHIBI_IMAGE_URL"] { display: none; }
.cta-card h2 { margin: 0 0 9px; font-size: 26px; }
.cta-card p { margin: 0 0 20px; color: var(--rui-muted); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.primary-btn, .secondary-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 7px; text-decoration: none; font-weight: 900; transition: .2s ease; }
.primary-btn { color: white; background: linear-gradient(135deg, var(--rui-pink), #ff4564); box-shadow: 0 11px 22px rgba(255,82,106,.25); }
.secondary-btn { color: var(--rui-navy); background: white; border: 1px solid rgba(7,24,63,0.13); }
.primary-btn:hover, .secondary-btn:hover { transform: translateY(-2px); }
.store-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255,82,106,.14), transparent 42%),
    rgba(255,255,255,.9);
}
.store-card-kicker {
  margin-bottom: 8px;
  color: var(--rui-pink);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.6px;
}
.store-card h3 { margin: 0 0 8px; font-size: 21px; line-height: 1.2; }
.store-card p { margin: 0 0 17px; color: var(--rui-muted); font-size: 12px; line-height: 1.55; }
.store-card-btn { align-self: flex-start; min-height: 44px; padding: 0 18px; font-size: 12px; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quick-grid a { display: flex; align-items: center; justify-content: center; min-height: 48px; border: 1px solid var(--rui-line); border-radius: 7px; color: var(--rui-navy); text-decoration: none; font-weight: 850; background: rgba(255,255,255,0.74); }
.quick-grid a:hover { color: var(--rui-pink); }
.tagline { margin: 24px 0 0; text-align: center; letter-spacing: 14px; color: var(--rui-navy); font-weight: 800; }


/* Request form page */
.rui-request-page { min-height: calc(100vh - 62px); padding-top: 12px; }
.request-shell { max-width: 1240px; margin: 0 auto 48px; }
.request-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--rui-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 8%, rgba(255,82,106,.10), transparent 18%),
    radial-gradient(circle at 4% 100%, rgba(255,82,106,.07), transparent 18%),
    rgba(255,255,255,.88);
  box-shadow: var(--rui-shadow);
  padding: 32px 42px 28px;
}
.request-card:before, .request-card:after {
  content: "✦";
  position: absolute;
  color: var(--rui-pink);
  opacity: .46;
  font-size: 34px;
}
.request-card:before { right: 54px; top: 54px; }
.request-card:after { left: 28px; top: 46px; }
.request-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px dashed var(--rui-line);
  padding: 0 0 22px;
  margin-bottom: 24px;
}
.request-header h1 {
  margin: 0 0 8px;
  color: var(--rui-navy);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -1px;
}
.request-header h1 span { color: var(--rui-pink); margin-right: 12px; }
.request-header p { margin: 0; color: var(--rui-muted); font-size: 15px; font-weight: 700; }
.rui-request-form { position: relative; z-index: 1; }
.form-grid.two-col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 44px; row-gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field span { color: var(--rui-navy); font-weight: 900; font-size: 15px; }
.form-field small { color: var(--rui-muted); font-size: 12px; font-weight: 700; line-height: 1.45; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1.5px solid var(--rui-line);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  color: var(--rui-navy);
  outline: none;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: .2s ease;
}
.form-field input, .form-field select { height: 48px; padding: 0 18px; }
.form-field textarea { min-height: 108px; resize: vertical; padding: 16px 18px; line-height: 1.6; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--rui-pink);
  box-shadow: 0 0 0 4px rgba(255,82,106,.10);
  background: #fff;
}
.char-counter { text-align: right; margin-top: -4px; }
.upload-mock {
  position: relative;
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1.5px dashed var(--rui-line);
  border-radius: 10px;
  background: rgba(255,255,255,.52);
  text-align: center;
  padding: 14px;
  overflow: hidden;
}
.upload-mock input { position: absolute; inset: 0; opacity: 0; cursor: pointer; height: 100%; }
.upload-mock strong { display: block; color: var(--rui-pink); font-size: 28px; line-height: 1; }
.upload-mock p { margin: 4px 0 2px; color: var(--rui-muted); font-weight: 800; }
.upload-mock:hover { border-color: var(--rui-pink); background: rgba(255,246,248,.84); }
.agreement-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 0;
  color: var(--rui-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}
.agreement-row input { width: 22px; height: 22px; flex: 0 0 auto; accent-color: var(--rui-pink); }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 20px; }
.form-submit-row p { margin: 0; color: var(--rui-muted); font-size: 12px; font-weight: 700; }
.send-inquiry-btn { border: 0; min-width: 310px; cursor: pointer; font-size: 16px; }

/* Portfolio page */
.rui-portfolio-page { min-height: calc(100vh - 62px); padding-top: 56px; }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; max-width: 1060px; margin: 0 auto 24px; }
.portfolio-header .eyebrow { font-size: 18px; letter-spacing: 3px; margin-bottom: 6px; }
.portfolio-header h1 { margin: 0; font-size: clamp(36px, 4vw, 52px); line-height: 1; }
.portfolio-header p { margin: 12px 0 0; color: var(--rui-muted); font-weight: 650; }
.back-home-btn { min-height: 44px; flex-shrink: 0; }
.portfolio-toolbar { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 0 auto 18px; }
.portfolio-list-btn { min-height: 42px; border: 0; border-radius: 7px; padding: 0 18px; background: rgba(255,255,255,.94); color: var(--rui-navy); font-weight: 900; box-shadow: 0 10px 24px rgba(7,24,63,.07); }
.portfolio-search-label { position: relative; display: block; width: min(320px, 50vw); }
.portfolio-search-label input { width: 100%; min-height: 42px; border: 0; outline: 0; border-radius: 7px; background: rgba(255,255,255,.96); padding: 0 42px 0 16px; color: var(--rui-navy); font-weight: 750; box-shadow: 0 10px 24px rgba(7,24,63,.07); }
.portfolio-search-label span { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--rui-navy); font-weight: 900; }
.portfolio-count-row { max-width: 1060px; margin: 0 auto 16px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.portfolio-count-row h2 { margin: 0; font-size: 26px; letter-spacing: -0.5px; }
.portfolio-count-row h2 strong { color: var(--rui-pink); }
.portfolio-count-row p { margin: 0; color: var(--rui-muted); font-size: 13px; font-weight: 650; }
.client-video-grid { max-width: 1060px; margin: 0 auto 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.client-video-card { text-decoration: none; color: var(--rui-navy); background: rgba(255,255,255,.90); border: 1px solid rgba(255,82,106,.18); border-radius: 8px; overflow: hidden; box-shadow: 0 16px 32px rgba(7,24,63,.08); transition: .18s ease; }
.client-video-card:hover { transform: translateY(-4px); border-color: var(--rui-pink); box-shadow: 0 20px 38px rgba(255,82,106,.14); }
.thumb-wrap { position: relative; aspect-ratio: 16/8.3; overflow: hidden; background: linear-gradient(135deg, #fff, #ffe7eb); }
.thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-wrap img[src^="YOUR_CLIENT_"] { display: none; }
.thumb-placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: var(--rui-pink); font-size: 13px; font-weight: 950; letter-spacing: 2px; border: 1px dashed rgba(255,82,106,.35); }
.thumb-wrap img:not([src^="YOUR_CLIENT_"]) + .thumb-placeholder { display: none; }
.client-card-copy { padding: 14px 16px 16px; }
.client-card-copy h3 { margin: 0 0 7px; font-size: 20px; line-height: 1.15; }
.client-card-copy p { margin: 0; color: #77a5ff; font-weight: 800; font-size: 13px; }
.portfolio-empty { display: none; max-width: 1060px; margin: 10px auto 0; padding: 16px; text-align: center; color: var(--rui-muted); background: rgba(255,255,255,.86); border: 1px dashed var(--rui-line); border-radius: 10px; }
.portfolio-empty.is-visible { display: block; }

@media (max-width: 1180px) {
  .rui-main { padding: 22px 34px 40px; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .client-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .rui-sidebar { position: relative; width: 100%; height: auto; padding: 28px 24px 20px; }
  .logo-wrap { min-height: auto; margin-bottom: 18px; }
  .rui-nav { grid-template-columns: 1fr 1fr; }
  .rui-nav a { min-height: 46px; font-size: 13px; }
  .social-row { margin-top: 22px; }
  .copyright { margin-top: 18px; }
  .rui-main { margin-left: 0; padding: 22px 18px 34px; }
  .top-brand-card { margin: 0 0 16px; width: 100%; }
  .hero-slider-help { margin-left: 2px; margin-right: 2px; }
  .feature-chip { width: 100%; }
  .package-grid, .client-video-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .tagline { letter-spacing: 5px; font-size: 12px; }
  .portfolio-header, .portfolio-count-row, .portfolio-toolbar { align-items: stretch; flex-direction: column; }
  .portfolio-search-label { width: 100%; }
  .request-card { padding: 26px 18px 22px; border-radius: 14px; }
  .form-grid.two-col { grid-template-columns: 1fr; gap: 18px; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .send-inquiry-btn { min-width: 0; width: 100%; }
  .request-header h1 { font-size: 34px; }
  .rui-portfolio-page { padding-top: 8px; }
}

/* V26 fixed VTuber package card assets */
.package-section-fixed {
  position: relative;
  margin-top: 18px;
}
.package-section-fixed[hidden] {
  display: none !important;
}
.package-section-fixed .package-section-title {
  margin-bottom: 18px;
}
.package-grid-fixed {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch;
}
.package-card-asset,
.package-card-asset:hover {
  position: relative;
  display: block !important;
  min-height: 0 !important;
  width: 100%;
  aspect-ratio: 319 / 640;
  padding: 0 !important;
  border-radius: 18px !important;
  overflow: hidden;
  border: 1px solid rgba(255,82,106,.20) !important;
  background: transparent !important;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(7,24,63,0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.package-card-asset::before,
.package-card-asset::after {
  content: none !important;
  display: none !important;
}
.package-card-asset > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  pointer-events: none;
  user-select: none;
}
.package-card-asset:hover,
.package-card-asset:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255,82,106,.50) !important;
  box-shadow: 0 20px 40px rgba(255,82,106,.13);
}
.package-hover-slide {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  height: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--rui-pink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  text-shadow: 0 1px 0 rgba(255,255,255,.9), 0 3px 10px rgba(255,82,106,.18);
  transition: bottom .24s ease, opacity .24s ease;
  opacity: 0;
}
.package-hover-slide b {
  font-size: 16px;
  line-height: 1;
}
.package-card-asset:hover .package-hover-slide,
.package-card-asset:focus-visible .package-hover-slide {
  bottom: 18px;
  opacity: 1;
}
@media (max-width: 1280px) {
  .package-grid-fixed { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 980px) {
  .package-grid-fixed { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px !important; }
  .package-card-asset { border-radius: 16px !important; }
  .package-hover-slide { left: 0; right: 0; height: auto; font-size: 12px; }
}
@media (max-width: 520px) {
  .package-grid-fixed { grid-template-columns: 1fr !important; }
  .package-card-asset { max-width: 319px; margin: 0 auto; }
}


/* V29 package text and color labels */
.package-card-asset {
  --pkg-color: #5E8EFD;
}
.package-theme-fullbody { --pkg-color: #5E8EFD; }
.package-theme-semi { --pkg-color: #8816E6; }
.package-theme-chibi { --pkg-color: #FE3960; }
.package-theme-room { --pkg-color: #8816E6; }
.package-theme-collab { --pkg-color: #FE3960; }

.package-card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 58px;
  z-index: 3;
  text-align: center;
  pointer-events: none;
}
.package-card-copy h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--pkg-color);
}
.package-card-copy p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: #314977;
}
.package-price-kicker {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pkg-color);
}
.package-card-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: var(--pkg-color);
}
.package-theme-room .package-card-copy h3 {
  font-size: 14px;
  line-height: 1.22;
}
.package-theme-collab .package-card-copy h3 {
  font-size: 15px;
}
.package-theme-collab .package-card-copy p {
  font-size: 12px;
  line-height: 1.34;
  margin-bottom: 11px;
}
.package-hover-slide {
  color: var(--pkg-color);
}
@media (max-width: 980px) {
  .package-card-copy {
    left: 14px;
    right: 14px;
    bottom: 54px;
  }
  .package-card-copy h3 {
    font-size: 14px;
  }
  .package-card-copy p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .package-price-kicker {
    font-size: 10px;
  }
  .package-card-copy strong {
    font-size: 22px;
  }
  .package-theme-room .package-card-copy h3,
  .package-theme-collab .package-card-copy h3 {
    font-size: 13px;
  }
  .package-theme-collab .package-card-copy p {
    font-size: 11px;
  }
}


/* V31 Terms of Service Page */
.rui-tos-page {
  padding-top: 0;
}
.tos-shell {
  display: block;
}
.tos-card {
  position: relative;
  border: 1px solid rgba(255, 95, 130, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,252,253,.98)),
    linear-gradient(90deg, rgba(255,92,122,.05), rgba(94,142,253,.04));
  box-shadow: 0 18px 44px rgba(12, 24, 57, 0.06);
  padding: 22px 22px 18px;
  overflow: hidden;
}
.tos-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,116,149,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,116,149,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.42), transparent 40%);
  pointer-events: none;
}
.tos-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 18px;
}
.tos-header-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--rui-navy);
}
.tos-header-copy p {
  margin: 10px 0 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.45;
  color: #3d5180;
}
.tos-highlight-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255,95,130,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  overflow: hidden;
  margin-bottom: 12px;
}
.tos-highlight-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 14px 18px;
  position: relative;
  text-align: center;
}
.tos-highlight-item + .tos-highlight-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255,95,130,.18);
}
.tos-highlight-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #314977;
}
.tos-highlight-item strong {
  font-weight: 800;
}
.tos-list {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.tos-item {
  display: grid;
  grid-template-columns: 50px minmax(220px, 280px) 1fr 26px;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255,95,130,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
}
.tos-item-no {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--rui-pink);
  font-weight: 900;
  font-size: 18px;
  border: 1px solid rgba(255,95,130,.20);
  background: rgba(255,249,250,.95);
}
.tos-item-title {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--rui-navy);
}
.tos-item-copy {
  margin: 0;
  padding-left: 18px;
  color: #314977;
  font-size: 15px;
  line-height: 1.42;
}
.tos-item-plus {
  justify-self: end;
  color: rgba(255,95,130,.8);
  font-size: 22px;
  line-height: 1;
}
.tos-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px 270px;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,95,130,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.90);
  position: relative;
  z-index: 1;
}
.tos-cta-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.tos-cta-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: var(--rui-navy);
}
.tos-cta-note strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}
.tos-cta-note span {
  color: var(--rui-pink);
  font-weight: 900;
}
.tos-cta-btn {
  min-height: 64px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1280px) {
  .tos-highlight-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tos-item {
    grid-template-columns: 50px minmax(200px, 250px) 1fr 22px;
  }
  .tos-bottom-cta {
    grid-template-columns: minmax(0, 1fr) 240px 240px;
  }
}
@media (max-width: 980px) {
  .tos-card {
    padding: 18px 14px 14px;
    border-radius: 20px;
  }
  .tos-header {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tos-header-copy p {
    font-size: 15px;
  }
  .tos-highlight-row {
    grid-template-columns: 1fr;
  }
  .tos-item {
    grid-template-columns: 42px 1fr 24px;
    gap: 12px;
    align-items: start;
  }
  .tos-item-title {
    grid-column: 2 / 3;
    margin-top: 10px;
  }
  .tos-item-copy {
    grid-column: 2 / 4;
    padding-left: 18px;
    margin-top: -2px;
  }
  .tos-item-plus {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    margin-top: 11px;
  }
  .tos-bottom-cta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .tos-header-copy h1 {
    font-size: 28px;
  }
  .tos-header-copy p {
    font-size: 14px;
  }
  .tos-item-title {
    font-size: 16px;
  }
  .tos-item-copy {
    font-size: 14px;
  }
}


/* V35 slow seamless navbar sparkle hover effect */
.rui-nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 10px;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 12px;
}
.rui-nav a::before {
  content: "";
  position: absolute;
  inset: 7px 0;
  z-index: -1;
  border-radius: 12px;
  background-image:
    radial-gradient(circle, rgba(255,82,106,.72) 0 1.5px, transparent 2.6px),
    radial-gradient(circle, rgba(255,142,160,.70) 0 1.2px, transparent 2.4px),
    radial-gradient(circle, rgba(255,82,106,.50) 0 1px, transparent 2.2px),
    linear-gradient(90deg, rgba(255,82,106,.08), rgba(255,255,255,.52), rgba(255,82,106,.08));
  background-size:
    54px 54px,
    72px 72px,
    96px 96px,
    100% 100%;
  background-position:
    0 0,
    0 0,
    0 0,
    0 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .26s ease, transform .26s ease;
  pointer-events: none;
}
.rui-nav a::after {
  content: "✦ ✧ ✦";
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 1;
  color: rgba(255,82,106,.72);
  font-size: 11px;
  letter-spacing: 8px;
  opacity: 0;
  transform: translateY(-50%) translateX(-8px) scale(.92);
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}
.rui-nav a:hover,
.rui-nav a.active {
  background: rgba(255,246,248,.80);
  box-shadow: inset 4px 0 0 var(--rui-pink), 0 10px 24px rgba(255,82,106,.10);
}
.rui-nav a:hover::before,
.rui-nav a.active::before {
  opacity: 1;
  transform: translateX(0);
  animation: ruiNavSparkleSeamless 5.8s linear infinite;
}
.rui-nav a:hover::after,
.rui-nav a.active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
  animation: ruiNavSparkleTwinkle 2.4s ease-in-out infinite alternate;
}
.rui-nav a:hover .nav-icon,
.rui-nav a.active .nav-icon {
  animation: ruiNavIconPop .62s ease;
}
@keyframes ruiNavSparkleSeamless {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      54px -54px,
      72px -72px,
      96px -96px,
      0 0;
  }
}
@keyframes ruiNavSparkleTwinkle {
  from {
    opacity: .46;
    filter: blur(.2px);
  }
  to {
    opacity: .95;
    filter: blur(0);
  }
}
@keyframes ruiNavIconPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.08) rotate(-3deg); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .rui-nav a:hover::before,
  .rui-nav a.active::before,
  .rui-nav a:hover::after,
  .rui-nav a.active::after,
  .rui-nav a:hover .nav-icon,
  .rui-nav a.active .nav-icon {
    animation: none;
  }
}


/* V42 Navbar About + About Us page */
.nav-icon-about {
  position: relative;
  overflow: visible;
  border: none;
  background: transparent;
}
.nav-icon-about .about-icon-shape {
  position: absolute;
  inset: 0;
  transition: opacity .24s ease, transform .24s ease;
}
.nav-icon-about .about-icon-ring {
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 2.2px solid currentColor;
}
.nav-icon-about .about-icon-dot {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 999px;
  background: currentColor;
}
.nav-icon-about .about-icon-stem {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 2.6px;
  height: 12px;
  margin-left: -1.3px;
  border-radius: 999px;
  background: currentColor;
}
.nav-icon-about .about-icon-default {
  color: var(--rui-navy);
  opacity: 1;
  transform: scale(1);
}
.nav-icon-about .about-icon-hover {
  color: var(--rui-pink);
  opacity: 0;
  transform: scale(.92);
}
.rui-nav a:hover .nav-icon-about .about-icon-default,
.rui-nav a.active .nav-icon-about .about-icon-default {
  opacity: 0;
  transform: scale(1.04);
}
.rui-nav a:hover .nav-icon-about .about-icon-hover,
.rui-nav a.active .nav-icon-about .about-icon-hover {
  opacity: 1;
  transform: scale(1);
}

.rui-about-page { display: none; }
.about-v2-shell {
  display: grid;
  gap: 16px;
}
.about-v2-hero,
.about-v2-box,
.about-v2-process-box,
.about-v2-bottom-cta {
  border: 1px solid rgba(255,82,106,.18);
  border-radius: 20px;
  background-color: rgba(255,255,255,.93);
  box-shadow: 0 18px 36px rgba(10,24,57,.05);
}
.about-v2-hero {
  min-height: 332px;
  padding: 28px 28px 24px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.about-v2-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 58%;
  padding: 8px 0 0 108px;
}
.about-v2-hero h1 {
  margin: 0;
  color: var(--rui-navy);
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: .98;
  letter-spacing: -.04em;
}
.about-v2-hero p {
  margin: 18px 0 0;
  max-width: 660px;
  color: #425782;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
.about-v2-stat-row {
  margin-top: 28px;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255,82,106,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(3px);
  overflow: hidden;
}
.about-v2-stat-item {
  min-height: 102px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid rgba(255,82,106,.14);
}
.about-v2-stat-item:last-child { border-right: 0; }
.about-v2-stat-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff4f7, #ffe8ee);
  color: var(--rui-pink);
  font-size: 25px;
  font-weight: 900;
}
.about-v2-stat-copy strong {
  display: block;
  color: var(--rui-navy);
  font-size: 22px;
  line-height: 1.15;
}
.about-v2-stat-copy span {
  display: block;
  color: #506590;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  margin-top: 2px;
}

.about-v2-info-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  gap: 16px;
}
.about-v2-box {
  position: relative;
  min-height: 380px;
  padding: 26px 30px 28px;
  overflow: hidden;
}
.about-v2-box-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.about-v2-box-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff2f6, #ffe7ee);
  color: var(--rui-pink);
  font-size: 28px;
  font-weight: 900;
}
.about-v2-box-head h2 {
  margin: 0;
  color: var(--rui-navy);
  font-size: 24px;
  line-height: 1.15;
}
.about-v2-box-head i {
  display: block;
  width: 52px;
  margin-top: 10px;
  border-top: 3px solid var(--rui-pink);
  border-radius: 999px;
}
.about-v2-text-block p {
  margin: 0 0 18px;
  color: #425782;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}
.about-v2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.about-v2-list li {
  position: relative;
  padding-left: 34px;
  color: #425782;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}
.about-v2-list li::before {
  content: "◌";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rui-pink);
  font-size: 18px;
  font-weight: 900;
}
.about-v2-corner-sparkle {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(255,82,106,.55);
  font-size: 24px;
}

.about-v2-process-box {
  padding: 14px 22px 18px;
}
.about-v2-process-head h2 {
  margin: 0 0 14px;
  color: var(--rui-navy);
  font-size: 22px;
}
.about-v2-process-head h2 span {
  color: var(--rui-pink);
}
.about-v2-process-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.about-v2-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
}
.about-v2-step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff2f6, #ffe7ee);
  color: var(--rui-pink);
  font-size: 24px;
  font-weight: 900;
}
.about-v2-step-copy strong {
  display: block;
  color: var(--rui-navy);
  font-size: 14px;
  line-height: 1.2;
}
.about-v2-step-copy span {
  display: block;
  margin-top: 6px;
  color: #526792;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}
.about-v2-step-arrow {
  color: var(--rui-pink);
  font-size: 28px;
  font-weight: 800;
  opacity: .85;
}

.about-v2-bottom-cta {
  display: grid;
  grid-template-columns: 1fr 312px 312px;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(255,248,250,.96), rgba(255,255,255,.92));
}
.about-v2-bottom-copy {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
}
.about-v2-bottom-star {
  color: var(--rui-pink);
  font-size: 42px;
  line-height: 1;
}
.about-v2-bottom-copy h2 {
  margin: 0;
  color: var(--rui-navy);
  font-size: 22px;
}
.about-v2-bottom-copy p {
  margin: 6px 0 0;
  color: #4d628e;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}
.about-v2-bottom-cta .primary-btn,
.about-v2-bottom-cta .secondary-btn {
  min-height: 64px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

@media (max-width: 1300px) {
  .about-v2-hero-copy {
    max-width: 64%;
    padding-left: 46px;
  }
  .about-v2-info-grid {
    grid-template-columns: 1fr;
  }
  .about-v2-box {
    min-height: auto;
  }
  .about-v2-process-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-v2-step-arrow {
    display: none;
  }
  .about-v2-bottom-cta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .about-v2-hero {
    min-height: auto;
    padding: 22px 18px;
    background-position: 70% center;
  }
  .about-v2-hero-copy {
    max-width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .about-v2-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .about-v2-stat-row {
    grid-template-columns: 1fr;
  }
  .about-v2-stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,82,106,.14);
  }
  .about-v2-stat-item:last-child {
    border-bottom: 0;
  }
  .about-v2-bottom-copy {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* V41 VTuber Packages Page */
.rui-vtuber-packages-page {
  padding-bottom: 8px;
}
.vtpkg-shell {
  position: relative;
  display: grid;
  gap: 14px;
}
.vtpkg-header {
  position: relative;
  text-align: center;
  padding: 4px 24px 0;
}
.vtpkg-header::before,
.vtpkg-header::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 34%;
  height: 54px;
  border-top: 1.5px solid rgba(255,82,106,.28);
  border-radius: 50%;
  pointer-events: none;
}
.vtpkg-header::before {
  left: 4%;
  transform: rotate(-8deg);
}
.vtpkg-header::after {
  right: 4%;
  transform: rotate(8deg);
}
.vtpkg-header h1 {
  margin: 0;
  color: var(--rui-navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.035em;
}
.vtpkg-header p {
  margin: 8px 0 0;
  color: #3f5583;
  font-size: 17px;
  font-weight: 700;
}
.vtpkg-star {
  position: absolute;
  top: 28px;
  color: var(--rui-pink);
  opacity: .78;
  font-size: 28px;
}
.vtpkg-star-left { left: 5%; }
.vtpkg-star-right { right: 7%; }

.vtpkg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.vtpkg-card {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(255,82,106,.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,82,106,.05), transparent 36%),
    rgba(255,255,255,.92);
  box-shadow: 0 18px 36px rgba(10,24,57,.05);
  padding: 28px 22px 20px;
  overflow: hidden;
}
.vtpkg-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rui-pink), #ff7893);
  box-shadow: 0 10px 20px rgba(255,82,106,.20);
  margin-bottom: 18px;
}
.vtpkg-copy {
  max-width: 47%;
  position: relative;
  z-index: 2;
}
.vtpkg-copy h2 {
  margin: 0 0 12px;
  color: var(--rui-navy);
  font-size: 23px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.vtpkg-copy p {
  margin: 0;
  color: #4b5f88;
  line-height: 1.58;
  font-size: 15px;
  font-weight: 650;
}
.vtpkg-divider {
  width: 130px;
  border-top: 2px dotted rgba(255,82,106,.25);
  margin: 40px 0 14px;
}
.vtpkg-copy span {
  display: block;
  color: #64729a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.vtpkg-copy strong {
  display: block;
  margin-top: 4px;
  color: var(--rui-pink);
  font-size: 31px;
  line-height: 1;
}
.vtpkg-figure-wrap {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 49%;
  height: calc(100% - 52px);
  display: grid;
  place-items: end center;
}
.vtpkg-body-svg {
  width: 75%;
  height: 100%;
  overflow: visible;
}
.vtpkg-body-svg circle,
.vtpkg-body-svg path {
  fill: none;
  stroke: var(--rui-pink);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .88;
}
.vtpkg-chibi .vtpkg-body-svg {
  width: 82%;
  height: 82%;
}
.vtpkg-measure {
  position: absolute;
  right: 0;
  top: 26px;
  bottom: 18px;
  width: 72px;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--rui-pink);
  font-weight: 950;
  font-size: 15px;
  line-height: 1.25;
}
.vtpkg-measure i {
  display: block;
  height: 80%;
  border-right: 2px solid var(--rui-pink);
  position: relative;
}
.vtpkg-measure i::before,
.vtpkg-measure i::after {
  content: "";
  position: absolute;
  right: -7px;
  width: 13px;
  border-top: 2px solid var(--rui-pink);
}
.vtpkg-measure i::before { top: 0; }
.vtpkg-measure i::after { bottom: 0; }

.vtpkg-included,
.vtpkg-panel,
.vtpkg-bottom-cta {
  border: 1px solid rgba(255,82,106,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 36px rgba(10,24,57,.05);
}
.vtpkg-included {
  padding: 10px 18px 18px;
}
.vtpkg-included h2 {
  margin: 0 0 12px;
  text-align: center;
  color: var(--rui-navy);
  font-size: 23px;
}
.vtpkg-included h2 span,
.vtpkg-panel-head h2 span {
  color: var(--rui-pink);
}
.vtpkg-included-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.vtpkg-included-grid article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  color: var(--rui-navy);
  font-weight: 850;
  padding: 6px 8px;
  border-right: 2px dotted rgba(255,82,106,.22);
}
.vtpkg-included-grid article:last-child { border-right: 0; }
.vtpkg-included-grid img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}
.vtpkg-included-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.vtpkg-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vtpkg-panel {
  padding: 16px;
}
.vtpkg-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.vtpkg-panel-head h2 {
  margin: 0;
  color: var(--rui-navy);
  font-size: 20px;
}
.vtpkg-panel-head a {
  color: var(--rui-pink);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}
.vtpkg-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.vtpkg-work-card {
  min-height: 176px;
  border: 1px solid rgba(255,82,106,.18);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff4f6);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 38px;
  text-decoration: none;
  color: var(--rui-navy);
}
.vtpkg-work-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  display: block;
}
.vtpkg-work-card img[src^="YOUR_VTPKG_"] { display: none; }
.vtpkg-work-card div {
  display: grid;
  place-items: center;
  padding: 8px;
  background: rgba(255,240,244,.95);
  font-size: 12px;
  text-align: center;
}
.vtpkg-more-card {
  place-items: center;
}
.vtpkg-more-card b {
  display: grid;
  place-items: center;
  height: 138px;
  color: var(--rui-pink);
  font-size: 48px;
}
.vtpkg-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 9px;
}
.vtpkg-dots span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255,82,106,.22);
}
.vtpkg-dots span:first-child { background: var(--rui-pink); }

.vtpkg-addon-list {
  border: 1px solid rgba(255,82,106,.16);
  border-radius: 10px;
  overflow: hidden;
}
.vtpkg-addon-row {
  min-height: 40px;
  display: grid;
  grid-template-columns: 1fr 130px 42px;
  align-items: center;
  border-bottom: 1px solid rgba(255,82,106,.14);
  background: rgba(255,255,255,.82);
}
.vtpkg-addon-simple {
  grid-template-columns: 1fr 130px;
}
.vtpkg-addon-name {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  color: var(--rui-navy);
}
.vtpkg-addon-name span {
  width: 26px;
  text-align: center;
  color: var(--rui-pink);
  font-size: 19px;
}
.vtpkg-addon-name strong {
  font-size: 14px;
}
.vtpkg-addon-price {
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: end;
  padding-right: 18px;
  color: var(--rui-pink);
  font-weight: 850;
  border-left: 1px solid rgba(255,82,106,.14);
  font-size: 14px;
}
.vtpkg-addon-toggle {
  width: 42px;
  height: 40px;
  border: 0;
  border-left: 1px solid rgba(255,82,106,.14);
  background: #fff7f9;
  color: var(--rui-pink);
  font-size: 24px;
  line-height: 1;
  font-weight: 650;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.vtpkg-addon-toggle:hover {
  background: #ffe9ee;
}
.vtpkg-addon-item.is-open .vtpkg-addon-toggle {
  transform: rotate(45deg);
}
.vtpkg-addon-drop {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
  background: linear-gradient(180deg, rgba(255,247,249,.92), rgba(255,255,255,.92));
}
.vtpkg-addon-item.is-open .vtpkg-addon-drop {
  max-height: 720px;
}
.vtpkg-addon-drop-inner {
  padding: 14px 16px 16px;
  border-bottom: 1px solid rgba(255,82,106,.14);
}
.vtpkg-addon-drop-inner p {
  margin: 0 0 12px;
  color: #4b5f88;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}
.vtpkg-addon-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.vtpkg-addon-media {
  min-height: 116px;
  border: 1px dashed rgba(255,82,106,.42);
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,82,106,.10), transparent 28%),
    #fff;
  display: grid;
  place-items: center;
  color: var(--rui-pink);
  font-weight: 900;
  font-size: 12px;
  text-align: center;
  overflow: hidden;
}
.vtpkg-addon-media img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  display: block;
}
.vtpkg-addon-media img[src^="YOUR_ARKIT_"] { display: none; }
.vtpkg-addon-media span {
  padding: 10px;
}
.vtpkg-addon-video {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(200px, auto) 40px;
  place-items: stretch;
  border-style: solid;
  transition: border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.vtpkg-addon-video:not(.is-active) {
  opacity: .78;
}
.vtpkg-addon-video.is-active {
  border-color: rgba(255,82,106,.78);
  box-shadow: 0 12px 28px rgba(255,82,106,.14);
}
.vtpkg-addon-video iframe {
  width: 100%;
  min-height: 200px;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #10162f;
}
.vtpkg-addon-video span {
  display: grid;
  place-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,.94);
}

.vtpkg-bottom-cta {
  display: grid;
  grid-template-columns: 70px 1fr 260px 260px;
  gap: 18px;
  align-items: center;
  padding: 16px 24px;
  background:
    radial-gradient(circle at 60% 35%, rgba(255,82,106,.06), transparent 22%),
    rgba(255,255,255,.92);
}
.vtpkg-cta-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rui-pink), #ff7893);
  color: #fff;
  font-size: 28px;
}
.vtpkg-bottom-cta h2 {
  margin: 0 0 4px;
  color: var(--rui-navy);
  font-size: 22px;
}
.vtpkg-bottom-cta p {
  margin: 0;
  color: #4b5f88;
  font-weight: 700;
  line-height: 1.35;
}
.vtpkg-bottom-cta .primary-btn,
.vtpkg-bottom-cta .secondary-btn {
  min-height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.vtpkg-bottom-cta .secondary-btn {
  text-decoration: none;
}

@media (max-width: 1280px) {
  .vtpkg-card-grid { grid-template-columns: 1fr; }
  .vtpkg-card { min-height: 280px; }
  .vtpkg-lower-grid { grid-template-columns: 1fr; }
  .vtpkg-bottom-cta { grid-template-columns: 60px 1fr; }
  .vtpkg-bottom-cta .primary-btn,
  .vtpkg-bottom-cta .secondary-btn { grid-column: span 1; }
}
@media (max-width: 980px) {
  .vtpkg-included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vtpkg-included-grid article:nth-child(2n) { border-right: 0; }
  .vtpkg-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vtpkg-bottom-cta { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 640px) {
  .vtpkg-header h1 { font-size: 34px; }
  .vtpkg-header p { font-size: 14px; }
  .vtpkg-card { padding: 20px 16px; min-height: auto; }
  .vtpkg-copy { max-width: 100%; }
  .vtpkg-figure-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 240px;
    margin-top: 12px;
  }
  .vtpkg-measure { right: 8px; }
  .vtpkg-addon-media-grid { grid-template-columns: 1fr; }
  .vtpkg-addon-row,
  .vtpkg-addon-simple { grid-template-columns: 1fr 95px 38px; }
  .vtpkg-addon-simple .vtpkg-addon-price { grid-column: 2 / 4; }
}



/* V52 PHP form backend states */
.rui-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
#ruiFormNote.form-note-success {
  color: #248a54;
  font-weight: 900;
}
#ruiFormNote.form-note-error {
  color: #d14b5d;
  font-weight: 900;
}
.send-inquiry-btn:disabled {
  opacity: .65;
  cursor: wait;
  transform: none !important;
}


/* V55 Remove VTuber package measurement labels */
.vtpkg-measure {
  display: none !important;
}
.vtpkg-figure-wrap {
  right: 8px;
}
.vtpkg-figure-wrap.vtpkg-chibi {
  right: -8px;
}
@media (max-width: 640px) {
  .vtpkg-figure-wrap,
  .vtpkg-figure-wrap.vtpkg-chibi {
    right: auto;
  }
}

/* V61 Chibi zoom inside package box */
.vtpkg-card:nth-child(3) {
  min-height: 328px;
  overflow: hidden;
}
.vtpkg-card:nth-child(3) .vtpkg-copy {
  max-width: 45%;
  position: relative;
  z-index: 2;
}
.vtpkg-figure-wrap.vtpkg-chibi {
  position: absolute;
  width: 54%;
  right: 10px;
  top: 38px;
  bottom: 22px;
  height: auto;
  overflow: visible;
  display: grid;
  place-items: center;
  z-index: 1;
}
.vtpkg-chibi .vtpkg-chibi-gif {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 315px;
  object-fit: contain;
  display: block;
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 22px 24px rgba(10,24,57,.13));
  transform: scale(1.20) translateX(-100px);
  transform-origin: center center;
}
@media (max-width: 1280px) {
  .vtpkg-card:nth-child(3) {
    min-height: 325px;
  }
  .vtpkg-card:nth-child(3) .vtpkg-copy {
    max-width: 45%;
  }
  .vtpkg-figure-wrap.vtpkg-chibi {
    width: 54%;
    right: 14px;
    top: 38px;
    bottom: 26px;
  }
  .vtpkg-chibi .vtpkg-chibi-gif {
    max-height: 305px;
    transform: scale(1.15) translateX(-22px);
  }
}
@media (max-width: 640px) {
  .vtpkg-card:nth-child(3) {
    min-height: auto;
    overflow: hidden;
  }
  .vtpkg-card:nth-child(3) .vtpkg-copy {
    max-width: 100%;
  }
  .vtpkg-figure-wrap.vtpkg-chibi {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    bottom: auto;
    height: 335px;
    margin-top: 8px;
    overflow: hidden;
  }
  .vtpkg-chibi .vtpkg-chibi-gif {
    height: 100%;
    max-height: 335px;
    max-width: none;
    transform: scale(1.12);
  }
}


/* V63 Fullbody GIF update - match Chibi-style positioning */
.vtpkg-card:nth-child(1) {
  min-height: 328px;
  overflow: hidden;
}
.vtpkg-card:nth-child(1) .vtpkg-copy {
  max-width: 45%;
  position: relative;
  z-index: 2;
}
.vtpkg-figure-wrap.vtpkg-fullbody {
  position: absolute;
  width: 54%;
  right: 10px;
  top: 38px;
  bottom: 22px;
  height: auto;
  overflow: visible;
  display: grid;
  place-items: center;
  z-index: 1;
}
.vtpkg-fullbody .vtpkg-fullbody-gif {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 315px;
  object-fit: contain;
  display: block;
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 22px 24px rgba(10,24,57,.13));
  transform: scale(1.20) translateX(-100px);
  transform-origin: center center;
}
@media (max-width: 1280px) {
  .vtpkg-card:nth-child(1) {
    min-height: 325px;
  }
  .vtpkg-card:nth-child(1) .vtpkg-copy {
    max-width: 45%;
  }
  .vtpkg-figure-wrap.vtpkg-fullbody {
    width: 54%;
    right: 14px;
    top: 38px;
    bottom: 26px;
  }
  .vtpkg-fullbody .vtpkg-fullbody-gif {
    max-height: 305px;
    transform: scale(1.15) translateX(-22px);
  }
}
@media (max-width: 640px) {
  .vtpkg-card:nth-child(1) {
    min-height: auto;
    overflow: hidden;
  }
  .vtpkg-card:nth-child(1) .vtpkg-copy {
    max-width: 100%;
  }
  .vtpkg-figure-wrap.vtpkg-fullbody {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    bottom: auto;
    height: 335px;
    margin-top: 8px;
    overflow: hidden;
  }
  .vtpkg-fullbody .vtpkg-fullbody-gif {
    height: 100%;
    max-height: 335px;
    max-width: none;
    transform: scale(1.12);
  }
}


/* V64 Semi-Chibi GIF update - match Fullbody/Chibi positioning */
.vtpkg-card:nth-child(2) {
  min-height: 328px;
  overflow: hidden;
}
.vtpkg-card:nth-child(2) .vtpkg-copy {
  max-width: 45%;
  position: relative;
  z-index: 2;
}
.vtpkg-figure-wrap.vtpkg-semi {
  position: absolute;
  width: 54%;
  right: 10px;
  top: 38px;
  bottom: 22px;
  height: auto;
  overflow: visible;
  display: grid;
  place-items: center;
  z-index: 1;
}
.vtpkg-semi .vtpkg-semi-gif {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 300px;
  object-fit: contain;
  display: block;
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 22px 24px rgba(10,24,57,.13));
  transform: scale(1.20) translateX(-100px);
  transform-origin: center center;
}
@media (max-width: 1280px) {
  .vtpkg-card:nth-child(2) {
    min-height: 325px;
  }
  .vtpkg-card:nth-child(2) .vtpkg-copy {
    max-width: 45%;
  }
  .vtpkg-figure-wrap.vtpkg-semi {
    width: 54%;
    right: 14px;
    top: 38px;
    bottom: 26px;
  }
  .vtpkg-semi .vtpkg-semi-gif {
    max-height: 300px;
    transform: scale(1.15) translateX(-22px);
  }
}
@media (max-width: 640px) {
  .vtpkg-card:nth-child(2) {
    min-height: auto;
    overflow: hidden;
  }
  .vtpkg-card:nth-child(2) .vtpkg-copy {
    max-width: 100%;
  }
  .vtpkg-figure-wrap.vtpkg-semi {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    bottom: auto;
    height: 335px;
    margin-top: 8px;
    overflow: hidden;
  }
  .vtpkg-semi .vtpkg-semi-gif {
    height: 100%;
    max-height: 335px;
    max-width: none;
    transform: scale(1.12);
  }
}

/* V66 Package price alignment */
.vtpkg-card .vtpkg-copy {
  min-height: 214px;
  display: flex;
  flex-direction: column;
}
.vtpkg-card .vtpkg-copy p {
  min-height: 72px;
}
.vtpkg-card .vtpkg-divider {
  margin: auto 0 14px;
}
.vtpkg-card .vtpkg-copy span,
.vtpkg-card .vtpkg-copy strong {
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .vtpkg-card .vtpkg-copy {
    min-height: 0;
    display: block;
  }
  .vtpkg-card .vtpkg-copy p {
    min-height: 0;
  }
  .vtpkg-card .vtpkg-divider {
    margin: 28px 0 14px;
  }
}


/* V67 - Taller VTuber package cards to prevent GIF clipping */
.vtpkg-card {
  min-height: 380px !important;
}

.vtpkg-card:nth-child(1),
.vtpkg-card:nth-child(2),
.vtpkg-card:nth-child(3) {
  min-height: 380px !important;
}

.vtpkg-figure-wrap.vtpkg-fullbody,
.vtpkg-figure-wrap.vtpkg-semi,
.vtpkg-figure-wrap.vtpkg-chibi {
  top: 28px !important;
  bottom: 12px !important;
  height: auto !important;
}

@media (max-width: 1280px) {
  .vtpkg-card,
  .vtpkg-card:nth-child(1),
  .vtpkg-card:nth-child(2),
  .vtpkg-card:nth-child(3) {
    min-height: 360px !important;
  }
}

@media (max-width: 640px) {
  .vtpkg-card,
  .vtpkg-card:nth-child(1),
  .vtpkg-card:nth-child(2),
  .vtpkg-card:nth-child(3) {
    min-height: auto !important;
  }
}


/* V70 Bigger included icons */
.vtpkg-included-grid article {
  min-height: 132px;
  gap: 10px;
}
.vtpkg-included-grid img {
  width: 68px;
  height: 68px;
}
@media (max-width: 640px) {
  .vtpkg-included-grid article {
    min-height: 118px;
  }
  .vtpkg-included-grid img {
    width: 58px;
    height: 58px;
  }
}


/* Rui Production loading screen */
body.is-loading {
  overflow: hidden;
}

.rui-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  color: #14223d;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .98) 0 18%, rgba(255, 247, 249, .96) 52%, rgba(255, 232, 237, .98) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .52s ease, visibility .52s ease;
}

.rui-loading-screen::before,
.rui-loading-screen::after {
  content: "";
  position: absolute;
  width: min(64vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 93, 112, .18);
  border-radius: 50%;
  pointer-events: none;
}

.rui-loading-screen::before {
  transform: translate(-42%, -38%);
}

.rui-loading-screen::after {
  transform: translate(46%, 42%) scale(.72);
}

.rui-loading-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: clamp(210px, 34vw, 300px);
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(255, 79, 103, .16));
  animation: loader-logo-breathe 2s ease-in-out infinite;
}

.loader-message {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 0;
  color: #59627a;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: .02em;
}

.loader-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 28px;
}

.loader-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4f67;
  animation: loader-dot 1.05s ease-in-out infinite;
}

.loader-dots i:nth-child(2) { animation-delay: .14s; }
.loader-dots i:nth-child(3) { animation-delay: .28s; }

.loader-sparkle {
  position: absolute;
  color: #ff5a70;
  font-size: clamp(18px, 2vw, 30px);
  animation: loader-twinkle 1.8s ease-in-out infinite;
}

.loader-sparkle-one { top: 22%; left: 23%; }
.loader-sparkle-two { top: 28%; right: 24%; animation-delay: .5s; }
.loader-sparkle-three { right: 29%; bottom: 24%; animation-delay: 1s; }

@keyframes loader-logo-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.025); }
}

@keyframes loader-dot {
  0%, 55%, 100% { transform: translateY(0); opacity: .34; }
  28% { transform: translateY(-5px); opacity: 1; }
}

@keyframes loader-twinkle {
  0%, 100% { transform: scale(.65) rotate(0); opacity: .25; }
  50% { transform: scale(1.2) rotate(18deg); opacity: 1; }
}

@media (max-width: 640px) {
  .loader-sparkle-one { top: 19%; left: 13%; }
  .loader-sparkle-two { top: 25%; right: 13%; }
  .loader-sparkle-three { right: 18%; bottom: 23%; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo,
  .loader-dots i,
  .loader-sparkle {
    animation: none !important;
  }
}


/* V71 - Package-first VTuber Packages layout */
.rui-vtuber-packages-page .vtpkg-shell {
  gap: 20px;
}

.rui-vtuber-packages-page .vtpkg-card-grid {
  min-height: clamp(620px, 74vh, 780px);
  gap: 18px;
}

.rui-vtuber-packages-page .vtpkg-card,
.rui-vtuber-packages-page .vtpkg-card:nth-child(1),
.rui-vtuber-packages-page .vtpkg-card:nth-child(2),
.rui-vtuber-packages-page .vtpkg-card:nth-child(3) {
  min-height: clamp(620px, 74vh, 780px) !important;
  padding: 26px 24px 20px;
  background:
    radial-gradient(circle at 50% 78%, rgba(255,82,106,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,250,.95));
  box-shadow: 0 24px 52px rgba(10,24,57,.08);
  transition: none;
}

.rui-vtuber-packages-page .vtpkg-number {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  width: 50px;
  height: 50px;
  margin: 0;
}

.rui-vtuber-packages-page .vtpkg-copy,
.rui-vtuber-packages-page .vtpkg-card:nth-child(1) .vtpkg-copy,
.rui-vtuber-packages-page .vtpkg-card:nth-child(2) .vtpkg-copy,
.rui-vtuber-packages-page .vtpkg-card:nth-child(3) .vtpkg-copy {
  max-width: 100%;
  min-height: 120px;
  padding-left: 66px;
}

.rui-vtuber-packages-page .vtpkg-copy h2 {
  font-size: clamp(21px, 1.7vw, 27px);
}

.rui-vtuber-packages-page .vtpkg-copy p {
  min-height: 0;
  max-width: 95%;
  font-size: 14px;
  line-height: 1.48;
}

.rui-vtuber-packages-page .vtpkg-divider {
  width: 100%;
  margin: auto 0 10px;
}

.rui-vtuber-packages-page .vtpkg-copy strong {
  font-size: 34px;
}

.rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-fullbody,
.rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-semi,
.rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-chibi {
  position: absolute;
  top: 150px !important;
  right: 0 !important;
  bottom: 20px !important;
  left: 0;
  width: 100% !important;
  height: auto !important;
  display: block;
}

.rui-vtuber-packages-page .vtpkg-fullbody .vtpkg-fullbody-gif,
.rui-vtuber-packages-page .vtpkg-semi .vtpkg-semi-gif,
.rui-vtuber-packages-page .vtpkg-chibi .vtpkg-chibi-gif {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(1.08) !important;
  transform-origin: center center !important;
  filter: drop-shadow(0 26px 26px rgba(10,24,57,.15));
}

.rui-vtuber-packages-page .vtpkg-lower-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
}

.vtpkg-package-details-panel {
  padding: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(255,82,106,.08), transparent 34%),
    rgba(255,255,255,.94);
}

.vtpkg-package-details-panel .vtpkg-panel-head {
  margin-bottom: 14px;
}

.vtpkg-panel-eyebrow {
  margin: 0 0 5px;
  color: var(--rui-pink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
}

.vtpkg-package-details-list {
  display: grid;
  gap: 8px;
}

.vtpkg-package-details-list article {
  min-height: 54px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border: 1px solid rgba(255,82,106,.14);
  border-radius: 11px;
  background: linear-gradient(90deg, rgba(255,243,246,.92), rgba(255,255,255,.92));
}

.vtpkg-package-details-list article > b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--rui-pink), #ff7893);
  font-size: 12px;
  box-shadow: 0 7px 14px rgba(255,82,106,.16);
}

.vtpkg-package-details-list article div {
  display: grid;
  gap: 2px;
}

.vtpkg-package-details-list strong {
  color: var(--rui-navy);
  font-size: 14px;
}

.vtpkg-package-details-list span {
  color: #617099;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

@media (max-width: 1280px) {
  .rui-vtuber-packages-page .vtpkg-card-grid {
    min-height: 640px;
  }

  .rui-vtuber-packages-page .vtpkg-card,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(1),
  .rui-vtuber-packages-page .vtpkg-card:nth-child(2),
  .rui-vtuber-packages-page .vtpkg-card:nth-child(3) {
    min-height: 640px !important;
  }

  .rui-vtuber-packages-page .vtpkg-copy,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(1) .vtpkg-copy,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(2) .vtpkg-copy,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(3) .vtpkg-copy {
    padding-left: 60px;
  }
}

@media (max-width: 980px) {
  .rui-vtuber-packages-page .vtpkg-card-grid {
    min-height: 0;
  }

  .rui-vtuber-packages-page .vtpkg-card,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(1),
  .rui-vtuber-packages-page .vtpkg-card:nth-child(2),
  .rui-vtuber-packages-page .vtpkg-card:nth-child(3) {
    min-height: 620px !important;
  }

  .rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-fullbody,
  .rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-semi,
  .rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-chibi {
    top: 185px !important;
    bottom: 70px !important;
  }

  .rui-vtuber-packages-page .vtpkg-lower-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rui-vtuber-packages-page .vtpkg-card,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(1),
  .rui-vtuber-packages-page .vtpkg-card:nth-child(2),
  .rui-vtuber-packages-page .vtpkg-card:nth-child(3) {
    min-height: 570px !important;
    padding: 20px 16px 16px;
  }

  .rui-vtuber-packages-page .vtpkg-number {
    top: 18px;
    left: 16px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .rui-vtuber-packages-page .vtpkg-copy,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(1) .vtpkg-copy,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(2) .vtpkg-copy,
  .rui-vtuber-packages-page .vtpkg-card:nth-child(3) .vtpkg-copy {
    min-height: 174px;
    padding-left: 58px;
  }

  .rui-vtuber-packages-page .vtpkg-copy h2 {
    font-size: 21px;
  }

  .rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-fullbody,
  .rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-semi,
  .rui-vtuber-packages-page .vtpkg-figure-wrap.vtpkg-chibi {
    top: 220px !important;
    bottom: 10px !important;
  }

  .vtpkg-package-details-panel {
    padding: 16px;
  }
}

/* V73 Static package pricing */
.rui-vtuber-packages-page .vtpkg-price-overlay {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: 6;
  display: grid;
  width: 176px;
  min-width: 0;
  padding: 12px 18px;
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

.rui-vtuber-packages-page .vtpkg-price-overlay span {
  color: var(--rui-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.rui-vtuber-packages-page .vtpkg-price-overlay strong {
  color: var(--rui-pink);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
}

@media (max-width: 640px) {
  .rui-vtuber-packages-page .vtpkg-price-overlay {
    width: 164px;
    padding: 11px 16px;
  }
}

/* V75 About page - mockup matched layout */
.rui-about-page {
  --about-ink: #101b3d;
  --about-muted: #5d6886;
  --about-pink: #ff476d;
  --about-line: rgba(255, 71, 109, .18);
  padding: 30px 34px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 65% 34%, rgba(255, 71, 109, .055), transparent 26%),
    #fffbfe;
  box-shadow: 0 20px 56px rgba(58, 35, 73, .05);
}

.about-m3-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  color: var(--about-ink);
}

.about-m3-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: 18px;
  align-items: stretch;
  min-height: 438px;
}

.about-m3-intro {
  align-self: center;
  padding: 8px 0 14px;
}

.about-m3-eyebrow {
  margin: 0 0 18px;
  color: var(--about-pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .25em;
}

.about-m3-eyebrow span {
  margin-right: 8px;
  font-size: 14px;
  letter-spacing: 0;
}

.about-m3-intro h1 {
  max-width: 520px;
  margin: 0;
  color: var(--about-ink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(44px, 3.7vw, 58px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}

.about-m3-intro h1 strong {
  display: block;
  margin-top: 9px;
  color: var(--about-pink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
}

.about-m3-description {
  max-width: 535px;
  margin-top: 27px;
}

.about-m3-description p {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.about-m3-description p + p {
  margin-top: 18px;
}

.about-m3-portrait {
  position: relative;
  min-height: 438px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 70px;
}

.about-m3-portrait::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 54px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 71, 109, .12);
  filter: blur(32px);
}

.about-m3-mascot {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 440px);
  max-height: 430px;
  object-fit: contain;
  object-position: center top;
}

.about-m3-experience {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0;
  z-index: 3;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--about-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 15px 36px rgba(42, 31, 64, .08);
  backdrop-filter: blur(12px);
}

.about-m3-service-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--about-pink);
  background: #fff0f5;
  border: 1px solid rgba(255, 71, 109, .10);
}

.about-m3-experience-copy strong {
  display: block;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .02em;
}

.about-m3-experience-copy span {
  display: block;
  margin-top: 5px;
  color: var(--about-muted);
  font-size: 11px;
  font-weight: 650;
}

.about-m3-avatars {
  /* Temporarily hidden; change back to flex to restore the mascot thumbnails. */
  display: none;
  align-items: center;
  padding-left: 8px;
}

.about-m3-avatars img {
  width: 28px;
  height: 28px;
  margin-left: -5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ffeef3;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 4px 9px rgba(20, 29, 60, .10);
}

.about-m3-section-label {
  margin: 0 0 11px 4px;
  color: var(--about-ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .035em;
}

.about-m3-section-label span {
  margin-right: 9px;
  color: var(--about-pink);
}

.about-m3-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-m3-service-card {
  min-height: 145px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 13px;
  padding: 17px 15px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
}

.about-m3-service-icon {
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: 700;
}

.about-m3-service-card h3 {
  margin: 0;
  color: var(--about-ink);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .02em;
}

.about-m3-service-card p {
  margin: 7px 0 0;
  color: var(--about-muted);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.4;
}

.about-m3-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 29px 16px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
}

.about-m3-stat {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 71, 109, .13);
  text-align: center;
}

.about-m3-stat:last-child {
  border-right: 0;
}

.about-m3-stat strong {
  display: block;
  color: var(--about-ink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
}

.about-m3-stat strong span {
  color: var(--about-pink);
}

.about-m3-stat b {
  display: block;
  margin-top: 5px;
  color: var(--about-ink);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.2;
}

.about-m3-stat small {
  display: block;
  margin-top: 6px;
  color: #8b91a6;
  font-size: 8px;
  line-height: 1.25;
  white-space: nowrap;
}

.about-m3-stat-word strong {
  font-size: clamp(15px, 1.35vw, 19px);
}

.about-m3-cta {
  min-height: 112px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 58px 22px 42px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: linear-gradient(100deg, rgba(255, 255, 255, .92), rgba(255, 246, 250, .92));
  box-shadow: 0 14px 30px rgba(255, 71, 109, .045);
}

.about-m3-cta-sparkles {
  color: var(--about-pink);
  font-size: 31px;
  text-align: center;
}

.about-m3-cta-sparkles i {
  display: inline-block;
  margin-left: -7px;
  font-size: 16px;
  font-style: normal;
  transform: translateY(-18px);
}

.about-m3-cta-copy h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: 20px;
  line-height: 1.25;
}

.about-m3-cta-copy p {
  margin: 6px 0 0;
  color: var(--about-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.about-m3-cta-button {
  min-width: 200px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border-radius: 9px;
  color: #fff;
  background: var(--about-pink);
  box-shadow: 0 12px 26px rgba(255, 71, 109, .20);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-m3-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 71, 109, .27);
}

.about-m3-cta-button span {
  font-size: 19px;
  font-weight: 500;
}

@media (max-width: 1260px) {
  .rui-about-page {
    padding: 28px 26px 26px;
  }

  .about-m3-hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    gap: 18px;
  }

  .about-m3-intro h1 {
    font-size: clamp(44px, 3.7vw, 56px);
  }

  .about-m3-stat {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0 9px;
  }
}

@media (max-width: 1040px) {
  .about-m3-hero {
    grid-template-columns: 1fr;
  }

  .about-m3-intro {
    padding-bottom: 0;
  }

  .about-m3-portrait {
    min-height: 455px;
  }

  .about-m3-service-grid {
    grid-template-columns: 1fr;
  }

  .about-m3-service-card {
    min-height: 128px;
  }

  .about-m3-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .about-m3-stat {
    min-height: 64px;
  }

  .about-m3-stat:nth-child(2),
  .about-m3-stat:nth-child(4),
  .about-m3-stat:last-child {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .rui-about-page {
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .about-m3-intro h1 {
    font-size: 45px;
  }

  .about-m3-description p {
    font-size: 14px;
  }

  .about-m3-portrait {
    min-height: 390px;
    padding-bottom: 86px;
  }

  .about-m3-mascot {
    max-height: 340px;
  }

  .about-m3-experience {
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-m3-experience-copy strong {
    font-size: 17px;
  }

  .about-m3-avatars {
    display: none;
  }

  .about-m3-service-card {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .about-m3-service-icon {
    width: 50px;
    height: 50px;
  }

  .about-m3-stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
  }

  .about-m3-stat,
  .about-m3-stat:nth-child(2),
  .about-m3-stat:nth-child(4) {
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 71, 109, .13);
  }

  .about-m3-stat:last-child {
    border-bottom: 0;
  }

  .about-m3-stat strong,
  .about-m3-stat-word strong {
    font-size: 28px;
  }

  .about-m3-stat small {
    white-space: normal;
  }

  .about-m3-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 18px;
    text-align: center;
  }

  .about-m3-cta-sparkles {
    display: none;
  }

  .about-m3-cta-button {
    width: 100%;
  }
}
