:root {
  /* --color-soft-white: #fafafa;
  --color-soft-black: #0a0a0a;
  --color-basic-white: #ffffff;
  --color-basic-black: #000000;
  --color-main-pink: #ff6e6e;
  --color-main-purple: #d382e6;
  --color-pink-purple-mid: #e978aa;
  --color-pink-purple-mid-light: #f8f0f4;
  --color-grad-pink-purple: linear-gradient(106deg, var(--color-main-pink) 13.77%, var(--color-main-purple) 86.23%);
  --color-main-pink-hover: #f76767;
  --color-main-purple-hover: #c373e0;
  --color-pink-purple-mid-hover: #e06fa6;
  --color-grad-pink-purple-hover: linear-gradient(106deg, var(--color-main-pink-hover) 13.77%, var(--color-main-purple-hover) 86.23%);
  --color-gray-800: #333333;
  --color-gray-600: #7f7f7f;
  --color-gray-500: #9a9da0;
  --color-gray-400: #c1c2c7;
  --color-gray-200: #d7d9dd;
  --color-gray-100: #e7e8eb;
  --color-gray-50: #f3f4f6;
  --color-emphasis-red: #e53935;
  --color-error-red: #8f2d2d; */
  --shadow-soft: 0 30px 60px rgba(10, 10, 10, 0.08);
  --shadow-card: 0 20px 40px rgba(10, 10, 10, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --page-bg:
    linear-gradient(145deg, rgba(255, 110, 110, 0.08) 0%, rgba(211, 130, 230, 0.08) 48%, rgba(250, 250, 250, 0) 100%),
    radial-gradient(circle at top left, rgba(255, 110, 110, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(211, 130, 230, 0.16), transparent 24%),
    var(--color-soft-white);
  --surface-card: rgba(255, 255, 255, 0.92);
  --surface-card-strong: rgba(255, 255, 255, 0.94);
  --surface-strip: rgba(250, 250, 250, 0.86);
  --surface-soft: rgba(248, 240, 244, 0.92);
  --surface-input: rgba(255, 255, 255, 0.96);
  --border-soft: rgba(215, 217, 221, 0.8);
  --border-card: rgba(215, 217, 221, 0.76);
  --text-main: var(--color-soft-black);
  --text-muted: var(--color-gray-600);
  --text-soft: var(--color-gray-500);
  --theme-toggle-bg: rgba(255, 255, 255, 0.9);
  --theme-toggle-fg: var(--color-soft-black);
  --footer-bg: var(--color-soft-black);
  --footer-text: rgba(255, 255, 255, 0.88);
  --footer-muted: rgba(255, 255, 255, 0.68);
  --scrollbar-size: 12px;
  --scrollbar-thumb: rgba(142, 145, 154, 0.72);
  --scrollbar-thumb-hover: rgba(112, 115, 126, 0.92);
  --scrollbar-track: transparent;
  --site-header-height: 92px;
  --section-title-size: clamp(1.8rem, calc(1.5vw + 0.9rem), 2.6rem);
  --story-split-title-size: clamp(1.65rem, calc(1.5vw + 0.75rem), 2.45rem);
  --story-split-nowrap-size: clamp(0.96rem, calc(1.5vw + 0.2rem), 2.35rem);
}

body.theme-dark {
  --page-bg:
    linear-gradient(145deg, rgba(255, 110, 110, 0.14) 0%, rgba(211, 130, 230, 0.18) 52%, rgba(10, 12, 18, 0.8) 100%),
    radial-gradient(circle at top left, rgba(255, 110, 110, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(211, 130, 230, 0.22), transparent 28%),
    #0b0f16;
  --surface-card: rgba(18, 22, 33, 0.88);
  --surface-card-strong: rgba(18, 22, 33, 0.94);
  --surface-strip: rgba(14, 18, 29, 0.84);
  --surface-soft: rgba(41, 32, 52, 0.7);
  --surface-input: rgba(12, 16, 24, 0.96);
  --border-soft: rgba(123, 135, 160, 0.32);
  --border-card: rgba(123, 135, 160, 0.28);
  --text-main: #f5f7fb;
  --text-muted: rgba(223, 229, 242, 0.78);
  --text-soft: rgba(190, 197, 214, 0.68);
  --theme-toggle-bg: rgba(24, 30, 43, 0.96);
  --theme-toggle-fg: #f5f7fb;
  --footer-bg: rgba(7, 10, 16, 0.96);
  --footer-text: rgba(255, 255, 255, 0.92);
  --footer-muted: rgba(226, 232, 245, 0.72);
  --scrollbar-thumb: rgba(185, 192, 210, 0.42);
  --scrollbar-thumb-hover: rgba(219, 225, 240, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: fit-content;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

body {
  margin: 0;
  color: var(--text-main);
  background: var(--page-bg);
  font-family: "Kosugi Maru", sans-serif;
  transition: background 0.25s ease, color 0.25s ease;
  height: 100%;
  overflow-x: clip;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

*::-webkit-scrollbar-track-piece,
*::-webkit-scrollbar-corner {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

body.contact-page {
  min-height: 100dvh;
}

body.pricing-page {
  min-height: 100dvh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.contact-page .page-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.pricing-page .page-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main>section,
.site-footer {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 8px 0;
  backdrop-filter: none;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface-strip);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: -1;
}

.site-header.index-header::before {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-header.index-header.is-scrolled::before,
.site-header.index-header.is-open::before {
  opacity: 1;
}

.site-header.is-open::before {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.site-header-simple::before {
  inset: 8px -8px;
}

.brand-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo-icon {
  display: none;
  height: 54px;
  width: auto;
}

.brand-logo-full {
  display: block;
  height: 60px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  justify-self: stretch;
  width: 100%;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 2px;
  border-radius: 14px;
}

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: var(--theme-toggle-bg);
  color: var(--theme-toggle-fg);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.theme-icon-dark,
body.theme-dark .theme-icon-light {
  display: none;
}

body.theme-dark .theme-icon-dark {
  display: inline;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: var(--theme-toggle-bg);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--theme-toggle-fg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.site-nav a:hover,
.footer-links a:hover {
  background: var(--color-grad-pink-purple);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.text-gradient-inline {
  display: inline-block;
  background: var(--color-grad-pink-purple);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-form .button,
.contact-modal .button,
.contact-modal-close {
  cursor: pointer;
}

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

.button-gradient {
  color: var(--color-basic-white);
  background: var(--color-grad-pink-purple);
  box-shadow: 0 18px 30px rgba(233, 120, 170, 0.28);
}

.button-gradient:hover {
  background: var(--color-grad-pink-purple-hover);
}

.button-soft {
  color: var(--color-pink-purple-mid);
  background: var(--surface-soft);
}

.button-soft:hover {
  background: #f5e8ef;
}

.button-dark {
  width: 100%;
  color: var(--color-basic-white);
  background: var(--color-soft-black);
}

.button-dark:hover {
  background: #161616;
}

.button-header {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.95rem;
}

.button-large {
  min-width: 220px;
}

.hero-section {
  display: block;
  min-height: 100dvh;
  width: auto;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  margin-top: calc(var(--site-header-height) * -1);
  margin-bottom: 0;
  padding: 0;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(233, 120, 170, 0.14);
  color: var(--color-pink-purple-mid);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-copy h1,
.section-heading h2,
.pricing-page-hero h1,
.contact-hero h1,
.contact-side h2 {
  margin: 18px 0 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-copy h1,
.hero-stage-copy h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  text-wrap: balance;
}

.hero-description,
.section-heading p,
.value-item p,
.workflow-step p,
.feature-item p,
.use-case-item p,
.contact-cta-copy p,
.footer-brand p,
.pricing-page-hero p,
.contact-hero p,
.contact-side p {
  color: var(--text-muted);
  line-height: 1.85;
}

.hero-description {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 1rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  height: 100dvh;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.hero-stage,
.hero-stage::before,
.hero-stage-media,
.hero-stage-video {
  border-radius: 0;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -24% auto;
  width: 38%;
  height: 56%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 130, 230, 0.24), transparent 68%);
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  background: #000000;
}

.hero-stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0.95;
  filter: brightness(0.95);
}

.hero-stage.is-transitioning .hero-stage-video {
  opacity: 0.78;
}

.hero-stage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  height: 100%;
  max-width: 100%;
  padding: clamp(88px, 12dvh, 140px) 40px clamp(44px, 8dvh, 88px);
  text-align: center;
}

.hero-stage-copy h1 {
  margin: 18px 0 0;
  color: var(--color-basic-white);
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: nowrap;
}

.hero-stage-copy .hero-description {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-top: 22px;
  font-size: 0.98rem;
}

.hero-stage-copy .hero-description .keep-phrase {
  display: block;
}

.hero-stage-copy .hero-actions {
  justify-content: center;
}

.hero-auth-note {
  max-width: 520px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.immersive-video-section {
  scroll-margin-top: var(--site-header-height);
  padding: clamp(32px, 5vw, 56px) 0 150px;
}

.immersive-video-stage {
  position: relative;
  overflow: hidden;
  width: min(100%, 1920px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  min-height: auto;
  max-height: 1080px;
  border-radius: 0;
  background: #000000;
}

.immersive-video-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.08) 0%, rgba(7, 10, 16, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.immersive-video-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.immersive-video-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
}

.immersive-video-summary {
  max-width: 920px;
  margin: 24px auto 0;
  text-align: center;
}

.immersive-video-summary-lead {
  margin: 0 0 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.immersive-video-summary p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.story-split-section {
  padding: 0px 0 0px;
}

.story-split-section + .story-split-section {
  margin-top: clamp(96px, 11vw, 150px);
}

.story-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
}

.story-split-copy,
.story-split-media {
  min-width: 0;
}

.story-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 0;
}

.story-split-copy .section-label {
  align-self: flex-start;
}

.story-split-section:not(.story-split-section-reverse) .story-split-copy {
  padding-left: clamp(20px, 3vw, 52px);
}

.story-split-copy h2 {
  margin: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: var(--story-split-title-size);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.story-split-copy .keep-phrase {
  display: block;
}

.story-split-mobile-break {
  display: inline;
}

.story-split-heading-single-line {
  font-size: var(--story-split-nowrap-size);
  white-space: nowrap;
  text-wrap: nowrap;
}

.story-split-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}

.story-split-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  line-height: 1.85;
}

.story-split-note {
  display: block;
  margin-top: 6px;
}

.story-split-list li::before {
  content: "";
  position: absolute;
  top: 0.925em;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-grad-pink-purple);
  transform: translateY(-50%);
}

.story-split-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.story-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-split-section-reverse .story-split-copy {
  order: 2;
  padding-left: clamp(20px, 3vw, 52px);
}

.story-split-section-reverse .story-split-media {
  order: 1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
}

.orb-pink {
  top: 60px;
  left: 18px;
  width: 280px;
  height: 280px;
  background: rgba(255, 110, 110, 0.3);
}

.orb-purple {
  right: 0;
  bottom: 90px;
  width: 320px;
  height: 320px;
  background: rgba(211, 130, 230, 0.32);
}

.hero-card,
.section-card,
.workflow-step,
.feature-item,
.use-case-item,
.pricing-card,
.contact-form,
.contact-side {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.hero-card {
  position: absolute;
}

.hero-storyboard {
  top: 28px;
  right: 0;
  width: min(440px, 100%);
  padding: 24px;
}

.hero-card-top,
.timeline-caption {
  display: flex;
  justify-content: space-between;
  color: var(--color-gray-500);
  font-size: 0.88rem;
}

.hero-storyboard p {
  margin: 22px 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.35rem;
  line-height: 1.6;
}

.storyboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.storyboard-grid span,
.timeline-bars span {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(233, 120, 170, 0.2), rgba(211, 130, 230, 0.12));
}

.storyboard-grid span {
  height: 98px;
}

.hero-timeline {
  left: 36px;
  bottom: 72px;
  width: min(380px, 86%);
  padding: 22px;
}

.timeline-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.timeline-bars span {
  height: 76px;
}

.hero-brand-card {
  right: 48px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(360px, 82%);
  padding: 20px 22px;
}

.brand-symbol {
  width: 62px;
  height: 62px;
}

.hero-brand-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.2rem;
}

.hero-brand-card p {
  margin: 0;
  color: var(--color-gray-600);
}

section {
  margin: 0;
}

.section-card,
.workflow-section,
.use-cases-section,
.pricing-section,
.trial-cta-section,
.contact-main {
  padding: 42px;
  width: 100%;
}

.section-body-card {
  padding: 42px;
}

.section-heading {
  max-width: 100%;
  margin-bottom: 28px;
}

.section-heading h2,
.pricing-page-hero h1,
.contact-hero h1 {
  font-size: var(--section-title-size);
}

.value-grid,
.features-grid,
.use-cases-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-cases-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-item,
.feature-item,
.use-case-item {
  padding: 24px;
}

.item-visual {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  width: 100%;
  margin-bottom: 22px;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 110, 110, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(211, 130, 230, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 240, 244, 0.85));
}

.visual-chip,
.visual-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 217, 221, 0.84);
  color: var(--color-gray-800);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.visual-idea-seed,
.visual-tool-flow,
.visual-fast-track,
.visual-input,
.visual-story-map,
.visual-media-stack,
.visual-finetune,
.visual-feature-story,
.visual-feature-scene,
.visual-feature-multi,
.visual-feature-control,
.visual-feature-dashboard,
.visual-feature-speed,
.visual-use-short,
.visual-use-mv,
.visual-use-prototype,
.visual-use-narration {
  padding: 18px;
}

.visual-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workflow-step .item-visual {
  min-height: 188px;
}

.feature-item .item-visual {
  min-height: 188px;
}

.visual-idea-seed .visual-chip {
  position: absolute;
  top: 16px;
  left: 16px;
}

.visual-stage {
  position: absolute;
  inset: 52px 20px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.visual-orb {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-grad-pink-purple);
  box-shadow: 0 12px 22px rgba(233, 120, 170, 0.24);
}

.visual-line {
  position: absolute;
  left: 22px;
  height: 10px;
  border-radius: 999px;
  background: rgba(233, 120, 170, 0.34);
}

.visual-line.short {
  bottom: 78px;
  width: 42%;
}

.visual-line.medium {
  bottom: 54px;
  width: 60%;
  background: rgba(211, 130, 230, 0.32);
}

.visual-line.long {
  bottom: 30px;
  width: 78%;
}

.visual-tool-flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.visual-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visual-wave {
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 110, 110, 0.62) 0 12%, transparent 13%),
    radial-gradient(circle at 38% 50%, rgba(233, 120, 170, 0.62) 0 12%, transparent 13%),
    radial-gradient(circle at 56% 50%, rgba(211, 130, 230, 0.62) 0 12%, transparent 13%),
    radial-gradient(circle at 74% 50%, rgba(255, 110, 110, 0.62) 0 12%, transparent 13%),
    rgba(255, 255, 255, 0.7);
}

.visual-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.visual-track span {
  height: 94px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 110, 110, 0.22), rgba(211, 130, 230, 0.18));
}

.visual-meter {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.visual-meter i {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-grad-pink-purple);
}

.visual-input .visual-prompt {
  width: calc(100% - 36px);
  height: 58px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.visual-prompt-lines {
  display: grid;
  gap: 12px;
  width: calc(100% - 56px);
  margin: 16px auto 0;
}

.visual-prompt-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(211, 130, 230, 0.26);
}

.visual-story-map .story-node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-basic-white);
  border: 8px solid rgba(233, 120, 170, 0.46);
}

.visual-story-map .story-node.large {
  top: 24px;
  left: 20px;
  width: 62px;
  height: 62px;
}

.visual-story-map .story-node:nth-of-type(2) {
  top: 34px;
  right: 30px;
}

.visual-story-map .story-node:nth-of-type(3) {
  bottom: 22px;
  left: 52%;
}

.story-link {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: rgba(211, 130, 230, 0.48);
  transform-origin: left center;
}

.story-link.one {
  top: 58px;
  left: 74px;
  width: 120px;
  transform: rotate(-10deg);
}

.story-link.two {
  left: 126px;
  bottom: 58px;
  width: 90px;
  transform: rotate(26deg);
}

.visual-media-stack {
  display: grid;
  place-items: center;
}

.stack-card {
  position: absolute;
  width: 72%;
  height: 58%;
  border-radius: 22px;
  border: 1px solid rgba(215, 217, 221, 0.8);
  background: rgba(255, 255, 255, 0.74);
}

.stack-card.top {
  top: 22px;
  z-index: 3;
}

.stack-card.middle {
  top: 36px;
  transform: rotate(-5deg);
  z-index: 2;
}

.stack-card.bottom {
  top: 48px;
  transform: rotate(6deg);
  z-index: 1;
}

.visual-finetune .fine-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(211, 130, 230, 0.22);
}

.visual-finetune .fine-knob {
  position: absolute;
  top: 55px;
  left: 62%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-grad-pink-purple);
  box-shadow: 0 10px 18px rgba(233, 120, 170, 0.24);
}

.fine-captions {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
}

.fine-captions span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.visual-feature-story .visual-book {
  position: absolute;
  inset: 18px auto 18px 18px;
  width: 44%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.visual-feature-story .visual-quote {
  position: absolute;
  right: 20px;
  top: 30px;
  width: 34%;
  height: 60%;
  border-radius: 18px;
  background: var(--color-grad-pink-purple);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  height: 100%;
}

.scene-grid span {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.visual-feature-multi {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
}

.control-sliders {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.control-sliders span {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.control-sliders span::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 55%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-grad-pink-purple);
}

.visual-feature-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.dashboard-panel {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.dashboard-panel.large {
  min-height: 132px;
}

.dashboard-panel.small {
  min-height: 61px;
}

.visual-feature-speed .speed-arc {
  position: absolute;
  inset: 24px;
  border: 14px solid rgba(211, 130, 230, 0.22);
  border-right-color: rgba(255, 110, 110, 0.62);
  border-bottom-color: rgba(233, 120, 170, 0.62);
  border-radius: 50%;
}

.visual-feature-speed .speed-dot {
  position: absolute;
  right: 24px;
  top: 42px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-main-pink);
}

.phone-frame {
  display: grid;
  gap: 10px;
  width: 120px;
  height: 100%;
  margin: 0 auto;
  padding: 18px 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
}

.phone-frame span {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 110, 110, 0.22), rgba(211, 130, 230, 0.18));
}

.visual-use-mv .mv-wave {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.mv-light {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(6px);
}

.mv-light.one {
  top: 26px;
  left: 34px;
  background: rgba(255, 110, 110, 0.48);
}

.mv-light.two {
  top: 18px;
  right: 24px;
  background: rgba(211, 130, 230, 0.54);
}

.proto-window,
.proto-window.small {
  position: absolute;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.proto-window {
  inset: 24px 90px 24px 24px;
}

.proto-window.small {
  inset: 44px 24px 44px auto;
  width: 88px;
}

.narration-bubble {
  position: absolute;
  top: 24px;
  left: 20px;
  right: 20px;
  height: 72px;
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 255, 255, 0.82);
}

.narration-bars {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.narration-bars span {
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 110, 110, 0.28), rgba(211, 130, 230, 0.24));
}

.value-item h3,
.workflow-step h3,
.feature-item h3,
.use-case-item h3,
.pricing-head h3 {
  margin: 0 0 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.3rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.workflow-step {
  padding: 26px;
  min-width: 0;
}

.workflow-step span {
  display: inline-flex;
  margin-bottom: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-pink-purple-mid);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  min-height: 100%;
}

.pricing-card-featured {
  border-color: rgba(233, 120, 170, 0.8);
  box-shadow: 0 25px 45px rgba(233, 120, 170, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--color-grad-pink-purple);
  color: var(--color-basic-white);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}

.pricing-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-gray-100);
}

.pricing-head p {
  margin: 0;
  color: var(--color-gray-500);
}

.pricing-price {
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--color-gray-100);
  text-align: center;
}

.pricing-price strong {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(2.8rem, 3vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pricing-price strong span {
  margin-left: 8px;
  font-size: 0.45em;
}

.pricing-price p {
  margin: 10px 0 0;
  color: var(--color-gray-500);
}

.pricing-card .button-dark {
  margin: 28px 0;
}

.pricing-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.pricing-list li {
  position: relative;
  padding-left: 30px;
}

.pricing-list li::before,
.contact-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-soft-black);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}

.contact-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 34px 32px;
  background: var(--surface-card);
  color: var(--text-main);
}

.contact-cta-section .contact-cta-copy p {
  color: var(--text-muted);
}

.pricing-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  width: 100%;
}

.pricing-teaser-copy strong {
  display: block;
  margin-bottom: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
}

.pricing-teaser-copy p {
  margin: 0;
  color: var(--text-muted);
}

.pricing-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.trial-cta-summary {
  margin: 0;
  padding: clamp(132px, 18vw, 264px) 0 clamp(156px, 21vw, 312px);
  text-align: center;
}

.trial-cta-summary p {
  margin: 0;
  color: var(--text-main);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(0.98rem, 1.45vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.75;
}

.trial-cta-summary .button {
  width: fit-content;
  min-width: 0;
  min-height: 44px;
  margin: 28px auto 0;
  padding: 0 16px;
  font-size: 0.92rem;
}

.trial-cta-summary .trial-cta-note {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  text-wrap: pretty;
}

.index-contact-cta {
  margin-bottom: 32px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  margin: 0 0 32px;
  padding: 34px 32px;
  border-radius: var(--radius-xl);
  background: var(--footer-bg);
  color: var(--footer-text);
}

.site-footer--flush {
  width: auto;
  margin: 0 calc(50% - 50dvw);
  padding: 50px 50px 24px;
  border-radius: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo-light {
  height: 72px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-copy {
  margin: 0;
  max-width: 100%;
  color: var(--footer-muted);
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.56rem, 3.1vw, 0.9rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.footer-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6px;
}

.contact-main {
  padding: 48px 0 72px;
}

.contact-page .contact-main {
  flex: 1;
}

.pricing-page-main {
  padding: 48px 0 72px;
}

.pricing-page .pricing-page-main {
  flex: 1;
}

.pricing-page-hero,
.contact-hero {
  padding: 38px 42px;
}

.pricing-page-cards {
  padding-left: 0;
  padding-right: 0;
}

.pricing-cards-host {
  width: 100%;
  --mysacca-plan-card-bg: var(--color-soft-white);
  --mysacca-plan-card-border: var(--color-gray-100);
  --mysacca-plan-card-preview-bg: var(--color-soft-white);
  --mysacca-plan-card-preview-border: var(--color-gray-200);
  --mysacca-plan-card-text: var(--color-soft-black);
  --mysacca-plan-card-muted: var(--color-gray-600);
  --mysacca-plan-card-check: var(--color-soft-black);
  --mysacca-plan-card-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  --mysacca-plan-card-hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  --mysacca-plan-card-recommended-border: var(--color-pink-purple-mid);
  --mysacca-plan-card-recommended-shadow: 0 6px 18px rgba(233, 120, 170, 0.18);
  --mysacca-plan-card-badge-color: var(--color-pink-purple-mid);
}

.pricing-cards-host .mysacca-plan-card-tagline,
.pricing-cards-host .mysacca-plan-card-price-unit {
  white-space: nowrap;
}

.pricing-cards-host .mysacca-plan-cards-root,
.pricing-cards-host .mysacca-plan-card-feature-box,
.pricing-cards-host .plan-cards-preview-change {
  margin-bottom: 0;
}

.pricing-cards-host .mysacca-plan-cards-list {
  --_mysacca-plan-card-columns: 3;
}

.pricing-cards-state {
  margin-bottom: 18px;
  padding: 18px 22px;
  border: 1px solid var(--border-card);
  border-radius: 22px;
  background: var(--surface-card);
  color: var(--text-muted);
  line-height: 1.75;
}

.pricing-cards-state.is-error {
  border-color: rgba(229, 57, 53, 0.24);
  background: rgba(229, 57, 53, 0.08);
  color: var(--color-error-red);
}

.faq-section {
  padding: 38px 42px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-card);
  border-radius: 22px;
  background: var(--surface-card-strong);
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-hero {
  padding: 38px 42px;
}

.contact-hero-email {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.contact-hero-email span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-hero-email a {
  justify-self: start;
  color: var(--text-main);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.12rem, 1.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  word-break: break-all;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.contact-form .contact-field {
  display: grid;
  gap: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
}

.contact-field-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.contact-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 110, 110, 0.12);
  color: #b53b52;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.contact-field-help {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.contact-attachment-field {
  position: relative;
}

.contact-form .contact-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-attachment-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.contact-attachment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid rgba(233, 120, 170, 0.28);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--color-pink-purple-mid);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-attachment-button:hover {
  transform: translateY(-1px);
  border-color: rgba(233, 120, 170, 0.46);
  background: #f5e8ef;
}

.contact-attachment-button:focus-visible,
.contact-attachment-preview:focus-visible,
.contact-attachment-badge:focus-visible,
.contact-attachment-name:focus-visible,
.contact-attachment-remove:focus-visible {
  outline: 2px solid rgba(233, 120, 170, 0.28);
  outline-offset: 3px;
}

.contact-attachment-count {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-attachment-list {
  display: grid;
  gap: 10px;
}

.contact-attachment-list[hidden] {
  display: none;
}

.contact-attachment-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: var(--surface-input);
}

.contact-attachment-preview {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: var(--surface-soft);
}

.contact-attachment-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-attachment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 110, 110, 0.12);
  color: #b53b52;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-attachment-details {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-attachment-name {
  min-width: 0;
  overflow: hidden;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.contact-attachment-name:hover {
  color: var(--color-pink-purple-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-attachment-meta {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-attachment-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: var(--surface-card);
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.contact-attachment-remove:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.contact-form-status,
.contact-modal-status {
  padding: 16px 18px;
  border: 1px solid var(--border-card);
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-form-status[data-state="error"],
.contact-modal-status[data-state="error"] {
  border-color: rgba(229, 57, 53, 0.24);
  background: rgba(229, 57, 53, 0.08);
  color: var(--color-error-red);
}

.contact-form-status[data-state="success"] {
  border-color: rgba(233, 120, 170, 0.24);
  background: rgba(248, 240, 244, 0.92);
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: var(--surface-input);
  color: var(--text-main);
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(233, 120, 170, 0.18);
  border-color: var(--color-pink-purple-mid);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.contact-form select.is-invalid {
  border-color: rgba(229, 57, 53, 0.45);
  background: rgba(255, 245, 245, 0.96);
}

.contact-field-error {
  display: block;
  color: var(--color-error-red);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-field-error:empty {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.46);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-modal-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: 95%;
  overflow: auto;
  padding: 34px;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  background: var(--surface-card-strong);
  box-shadow: var(--shadow-soft);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: var(--surface-input);
  color: var(--text-main);
  cursor: pointer;
}

.contact-modal-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(248, 240, 244, 0.92);
  color: var(--color-pink-purple-mid);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-modal-head h2 {
  margin: 18px 0 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.contact-modal-head p {
  margin: 14px 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-confirm-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.contact-confirm-row {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: var(--surface-input);
  overflow: hidden;
}

.contact-confirm-row[hidden] {
  display: none;
}

.contact-confirm-row dt {
  color: var(--text-muted);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-confirm-row dd {
  margin: 0;
  min-height: 0;
  max-height: 156px;
  overflow: auto;
  padding-right: 6px;
  color: var(--text-main);
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.7;
  scrollbar-gutter: stable;
}

.contact-confirm-row dd.is-empty {
  color: var(--text-soft);
}

.contact-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.contact-modal-actions .button:disabled,
.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

body.is-contact-modal-open {
  overflow: hidden;
}

.contact-side {
  padding: 32px;
}

.contact-brand-full {
  width: min(220px, 100%);
  margin-bottom: 18px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.contact-points li {
  position: relative;
  padding-left: 28px;
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .hero-section,
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-grid,
  .features-grid,
  .workflow-grid,
  .pricing-grid,
  .story-split-grid,
  .pricing-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .brand-logo-full {
    display: none;
  }

  .brand-logo-icon {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background: var(--surface-strip);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(10, 10, 10, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    min-height: 68px;
    justify-content: flex-start;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 1.15rem;
    font-weight: 700;
  }

  .site-nav a + a {
    margin-top: 2px;
  }

  .site-nav a:hover {
    background: rgba(233, 120, 170, 0.12);
    color: var(--color-pink-purple-mid);
    -webkit-text-fill-color: currentColor;
  }

  .story-split-grid,
  .pricing-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-split-copy,
  .story-split-media {
    min-height: auto;
  }

  .story-split-section:not(.story-split-section-reverse) .story-split-copy,
  .story-split-section-reverse .story-split-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .story-split-section-reverse .story-split-copy,
  .story-split-section-reverse .story-split-media {
    order: initial;
  }

  .story-split-media img {
    object-fit: contain;
    background: var(--surface-card);
  }

  .story-split-mobile-break {
    display: block;
  }

  .pricing-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-cards-host .mysacca-plan-cards-list {
    --_mysacca-plan-card-columns: 2;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1280px);
  }

  .site-header {
    gap: 14px;
    column-gap: 0px;
    padding: 16px 0;
  }

  .site-header::before {
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
  }

  .brand-logo-icon {
    height: 44px;
  }

  .button-header {
    min-height: 44px;
    padding: 0 16px;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100lvh;
    padding: 0;
  }

  .hero-stage {
    min-height: 100vh;
    min-height: 100lvh;
    height: 100vh;
    height: 100lvh;
  }

  .immersive-video-stage {
    width: 100%;
  }

  .section-card,
  .workflow-section,
  .use-cases-section,
  .pricing-section,
  .trial-cta-section,
  .contact-hero,
  .pricing-page-hero,
  .faq-section {
    padding: 24px;
  }

  .section-body-card {
    padding: 24px;
  }

  .value-grid,
  .features-grid,
  .use-cases-grid,
  .workflow-grid,
  .pricing-grid,
  .contact-form-wrap,
  .story-split-grid,
  .pricing-intro-grid {
    grid-template-columns: 1fr;
  }

  .story-split-copy,
  .story-split-media {
    min-height: auto;
  }

  .story-split-section:not(.story-split-section-reverse) .story-split-copy,
  .story-split-section-reverse .story-split-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .story-split-section-reverse .story-split-copy,
  .story-split-section-reverse .story-split-media {
    order: initial;
  }

  .contact-cta-section,
  .site-footer,
  .pricing-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .immersive-video-summary {
    margin-top: 20px;
  }

  .trial-cta-summary {
    padding: 108px 0 156px;
  }

  .index-contact-cta {
    margin-bottom: 24px;
  }

  .site-footer--flush {
    padding: 0 24px 24px;
  }

  .button,
  .button-header {
    width: 100%;
  }

  .contact-modal {
    padding: 0;
    align-items: stretch;
  }

  .contact-modal-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    padding: 28px 20px 24px;
    border: 0;
    border-radius: 0;
  }

  .contact-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-attachment-control {
    align-items: stretch;
  }

  .contact-attachment-button {
    width: 100%;
  }

  .contact-attachment-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
  }

  .contact-attachment-preview,
  .contact-attachment-badge {
    width: 48px;
    height: 48px;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-stage-copy {
    min-height: 100%;
    height: 100%;
    padding: clamp(72px, 12vh, 104px) 20px clamp(40px, 7vh, 56px);
    padding: clamp(72px, 12lvh, 104px) 20px clamp(40px, 7lvh, 56px);
    justify-content: flex-end;
  }

  .immersive-video-section {
    padding: clamp(24px, 6vw, 40px) 0 32px;
  }

  .hero-stage-copy h1 {
    max-width: 9ch;
    margin-inline: auto;
    font-size: clamp(2.3rem, 8.4vw, 4rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    text-wrap: wrap;
    white-space: normal;
    word-break: keep-all;
  }

  .header-actions {
    gap: 10px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }

  .header-actions .button-header {
    width: auto;
  }

  .pricing-cards-host .mysacca-plan-cards-list {
    --_mysacca-plan-card-columns: 1;
  }
}

body.theme-dark .eyebrow,
body.theme-dark .section-label {
  background: rgba(56, 41, 72, 0.68);
  color: #f0b7d6;
}

body.theme-dark .button-soft {
  color: #ffd6e5;
}

body.theme-dark .item-visual {
  background:
    radial-gradient(circle at top left, rgba(255, 110, 110, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(211, 130, 230, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(26, 31, 43, 0.98), rgba(34, 28, 44, 0.88));
}

body.theme-dark .hero-stage::before {
  background: transparent;
}

body.theme-dark .hero-stage-video {
  opacity: 0.9;
  filter: brightness(0.9);
}

body.theme-dark .hero-video-frame,
body.theme-dark .visual-stage,
body.theme-dark .visual-input .visual-prompt,
body.theme-dark .dashboard-panel,
body.theme-dark .phone-frame,
body.theme-dark .proto-window,
body.theme-dark .proto-window.small,
body.theme-dark .narration-bubble,
body.theme-dark .visual-use-mv .mv-wave,
body.theme-dark .faq-item,
body.theme-dark .contact-form input,
body.theme-dark .contact-form textarea,
body.theme-dark .contact-form select {
  background-color: rgba(22, 28, 40, 0.92);
}

body.theme-dark .faq-item,
body.theme-dark .contact-form input,
body.theme-dark .contact-form textarea,
body.theme-dark .contact-form select {
  color-scheme: dark;
}

body.theme-dark .contact-required,
body.theme-dark .contact-modal-kicker {
  background: rgba(56, 41, 72, 0.7);
  color: #f0b7d6;
}

body.theme-dark .contact-hero-email {
  border-top-color: var(--border-card);
}

body.theme-dark .contact-form input.is-invalid,
body.theme-dark .contact-form textarea.is-invalid,
body.theme-dark .contact-form select.is-invalid {
  border-color: rgba(255, 148, 148, 0.4);
  background: rgba(79, 30, 38, 0.42);
}

body.theme-dark .contact-form-status[data-state="error"],
body.theme-dark .contact-modal-status[data-state="error"] {
  border-color: rgba(229, 57, 53, 0.3);
  background: rgba(143, 45, 45, 0.24);
  color: #ffd4d4;
}

body.theme-dark .contact-form-status[data-state="success"] {
  border-color: rgba(240, 183, 214, 0.22);
  background: rgba(56, 41, 72, 0.52);
  color: var(--text-main);
}

body.theme-dark .contact-attachment-button {
  border-color: rgba(240, 183, 214, 0.22);
  background: rgba(56, 41, 72, 0.52);
  color: #f0b7d6;
}

body.theme-dark .contact-attachment-button:hover {
  border-color: rgba(240, 183, 214, 0.42);
  background: rgba(74, 51, 94, 0.62);
}

body.theme-dark .contact-attachment-item,
body.theme-dark .contact-attachment-remove,
body.theme-dark .contact-attachment-preview {
  background: rgba(22, 28, 40, 0.92);
}

body.theme-dark .contact-attachment-badge {
  background: rgba(56, 41, 72, 0.7);
  color: #f0b7d6;
}

body.theme-dark .contact-modal-backdrop {
  background: rgba(3, 6, 12, 0.72);
}

body.theme-dark .contact-modal-close,
body.theme-dark .contact-confirm-row {
  background: rgba(22, 28, 40, 0.92);
}

body.theme-dark .pricing-cards-host {
  --mysacca-plan-card-bg: var(--surface-card-strong);
  --mysacca-plan-card-border: var(--border-card);
  --mysacca-plan-card-preview-bg: var(--surface-card);
  --mysacca-plan-card-preview-border: var(--border-card);
  --mysacca-plan-card-text: var(--text-main);
  --mysacca-plan-card-muted: var(--text-muted);
  --mysacca-plan-card-check: var(--text-main);
  --mysacca-plan-card-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  --mysacca-plan-card-hover-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
  --mysacca-plan-card-recommended-border: var(--color-pink-purple-mid);
  --mysacca-plan-card-recommended-shadow: 0 14px 32px rgba(233, 120, 170, 0.22);
  --mysacca-plan-card-badge-color: #f0b7d6;
}

body.theme-dark .pricing-cards-state {
  background: var(--surface-card-strong);
  border-color: var(--border-card);
  color: var(--text-muted);
}

body.theme-dark .pricing-cards-state.is-error {
  border-color: rgba(229, 57, 53, 0.3);
  background: rgba(143, 45, 45, 0.24);
  color: #ffd4d4;
}

body.theme-dark .pricing-cards-host .mysacca-plan-cards-root {
  color: var(--mysacca-plan-card-text);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card {
  background: var(--mysacca-plan-card-bg);
  border-color: var(--mysacca-plan-card-border);
  box-shadow: var(--mysacca-plan-card-shadow);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card:hover {
  box-shadow: var(--mysacca-plan-card-hover-shadow);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card.is-current {
  border-color: var(--mysacca-plan-card-border);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card.is-recommended {
  border-color: var(--mysacca-plan-card-recommended-border);
  box-shadow: var(--mysacca-plan-card-recommended-shadow);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card-badge {
  color: var(--mysacca-plan-card-badge-color);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card-name,
body.theme-dark .pricing-cards-host .mysacca-plan-card-price-main,
body.theme-dark .pricing-cards-host .mysacca-plan-card-price-value,
body.theme-dark .pricing-cards-host .plan-cards-preview-change-title,
body.theme-dark .pricing-cards-host .plan-cards-preview-change-value {
  color: var(--mysacca-plan-card-text);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card-tagline,
body.theme-dark .pricing-cards-host .mysacca-plan-card-price-unit,
body.theme-dark .pricing-cards-host .mysacca-plan-card-feature-text,
body.theme-dark .pricing-cards-host .plan-cards-preview-change-desc,
body.theme-dark .pricing-cards-host .plan-cards-preview-change-label {
  color: var(--mysacca-plan-card-muted);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card-price {
  border-top-color: var(--mysacca-plan-card-border);
  border-bottom-color: var(--mysacca-plan-card-border);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card-feature-check {
  color: var(--mysacca-plan-card-check);
}

body.theme-dark .pricing-cards-host .mysacca-plan-card-feature-check svg,
body.theme-dark .pricing-cards-host .mysacca-plan-card-feature-check svg * {
  fill: var(--mysacca-plan-card-check);
}

body.theme-dark .pricing-cards-host .plan-cards-preview-change,
body.theme-dark .pricing-cards-host .plan-cards-preview-change-row {
  background: var(--mysacca-plan-card-preview-bg);
  border-color: var(--mysacca-plan-card-preview-border);
}

.policy-page .policy-main {
  flex: 1;
}

.policy-main {
  padding: 48px 0 72px;
}

.policy-page-card {
  padding: 38px 42px;
}

.policy-page-card h1 {
  margin: 18px 0 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: var(--section-title-size);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.policy-document-content {
  margin-top: 36px;
  min-height: 320px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
}

.policy-document-content a {
  color: var(--color-pink-purple-mid);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-document-content a:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--color-pink-purple-mid);
  outline-offset: 2px;
}

body.theme-dark .policy-document-content.is-error {
  color: #ffd4d4;
}

@media (max-width: 640px) {
  .policy-main {
    padding: 32px 0 56px;
  }

  .policy-page-card {
    padding: 24px;
  }

  .policy-document-content {
    min-height: 260px;
    margin-top: 28px;
    font-size: 0.96rem;
    line-height: 1.85;
  }
}
