:root {
  --blue: #0961ff;
  --blue-deep: #003ecb;
  --pink: #ff0b72;
  --violet: #7751ff;
  --navy: #071535;
  --muted: #62708d;
  --line: #c9d9ff;
  --ice: #eff6ff;
  --white: #fff;
  --shadow: 0 28px 80px rgba(38, 77, 160, 0.16);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 600;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 1000; padding: 12px 18px; background: #fff; }
.skip-link:focus { top: 20px; }

.site-header {
  height: 78px;
  padding: 0 clamp(24px, 4vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(121,155,226,.2);
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 27px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark { width: 25px; height: 21px; position: relative; display: inline-block; }
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; top: 1px; border-style: solid; transform: skewX(-12deg);
}
.brand-mark::before { left: 0; border-width: 10px 20px 10px 0; border-color: transparent var(--blue) transparent transparent; }
.brand-mark::after { right: 0; border-width: 10px 0 10px 13px; border-color: transparent transparent transparent #65b5ff; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.3vw, 40px); margin-left: auto; font-size: 12px; font-weight: 800; }
.desktop-nav a { position: relative; padding: 10px 0; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--pink); transition: right .25s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { background: var(--pink); color: white; padding: 15px 24px; border-radius: 999px; font-size: 13px; font-weight: 900; box-shadow: 0 10px 28px rgba(255,11,114,.25); white-space: nowrap; }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 11px; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: var(--navy); transition: .2s; }

.hero {
  min-height: 780px;
  padding-top: 78px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(600px, 1.4fr);
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 0%, #fff 30%, #f2f8ff 62%, #e6f1ff 100%);
}
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; border: 1px solid rgba(62,125,255,.14); border-radius: 50%; top: -320px; left: 23%; box-shadow: 0 0 0 80px rgba(134,183,255,.035), 0 0 0 170px rgba(134,183,255,.025); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(9,97,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(9,97,255,.22) 1px, transparent 1px); background-size: 86px 86px; mask-image: linear-gradient(90deg, #000, transparent 58%); }
.hero-ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.ambient-line { position: absolute; left: 22%; width: 110%; height: 2px; border-radius: 50%; background: linear-gradient(90deg, transparent, rgba(17,116,255,.72), rgba(255,53,139,.5), transparent); filter: blur(.2px); transform-origin: left center; }
.ambient-line::after { content: ""; position: absolute; inset: -10px 15%; background: inherit; filter: blur(13px); opacity: .45; }
.ambient-line-1 { top: 66%; transform: rotate(-8deg); animation: lightSweep 8s ease-in-out infinite; }
.ambient-line-2 { top: 78%; transform: rotate(-4deg); animation: lightSweep 10s ease-in-out -3s infinite reverse; opacity: .6; }
.ambient-triangle { position: absolute; width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 20px solid rgba(9,97,255,.24); filter: drop-shadow(0 8px 10px rgba(9,97,255,.15)); animation: triangleDrift 7s ease-in-out infinite; }
.ambient-triangle-1 { left: 38%; top: 18%; transform: rotate(28deg); }
.ambient-triangle-2 { left: 49%; top: 70%; border-bottom-color: rgba(255,11,114,.32); animation-delay: -2s; transform: rotate(-38deg) scale(.7); }
.ambient-triangle-3 { right: 5%; top: 15%; animation-delay: -4s; transform: rotate(55deg) scale(1.3); }
.ambient-orb { position: absolute; border-radius: 50%; background: white; box-shadow: 0 0 16px 5px rgba(66,142,255,.38); animation: orbPulse 3.5s ease-in-out infinite; }
.ambient-orb-1 { width: 7px; height: 7px; left: 57%; top: 24%; }
.ambient-orb-2 { width: 5px; height: 5px; right: 12%; top: 69%; animation-delay: -1.4s; }
.hero-copy { position: relative; z-index: 3; padding: 120px 0 88px clamp(36px, 7vw, 126px); align-self: center; }
.eyebrow, .kicker { color: var(--blue); letter-spacing: .13em; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.hero h1 { font-size: clamp(52px, 4.5vw, 78px); line-height: 1.18; letter-spacing: -.055em; margin: 22px 0 25px; font-weight: 900; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { color: var(--muted); font-size: 15px; line-height: 2; margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; }
.button { min-height: 54px; padding: 0 27px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 14px; font-weight: 900; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); color: white; box-shadow: 0 14px 34px rgba(255,11,114,.25); }
.button-secondary { color: var(--blue); background: rgba(255,255,255,.84); border: 1px solid var(--blue); }
.hero-points { display: flex; margin: 31px 0 0; padding: 0; list-style: none; gap: 20px; }
.hero-points li { display: flex; align-items: center; gap: 9px; min-width: 110px; }
.hero-points b { color: var(--blue); font: 900 28px/1 Arial, sans-serif; letter-spacing: -.06em; }
.hero-points b small { font-size: 14px; }
.hero-points span { font-size: 9px; line-height: 1.45; color: var(--muted); }
.hero-art { position: relative; z-index: 2; min-width: 0; height: 100%; transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0); transition: transform .45s ease-out; }
.hero-art::before { content: ""; position: absolute; width: 180px; height: 180px; right: 9%; top: 16%; background: linear-gradient(135deg, var(--pink), #f8b); clip-path: polygon(50% 0,100% 100%,0 70%); filter: blur(30px); opacity: .12; }
.hero-art img { width: 112%; height: calc(100% + 20px); max-width: none; object-fit: cover; object-position: 62% center; mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.55) 8%, #000 22%), linear-gradient(0deg, transparent 0, #000 12%); mask-composite: intersect; animation: heroFloat 7s ease-in-out infinite; transform-origin: 64% 54%; }
.hero-index { position: absolute; right: 30px; bottom: 30px; display: flex; align-items: center; gap: 10px; color: var(--blue); writing-mode: vertical-rl; z-index: 4; }
.hero-index span { width: 1px; height: 70px; background: var(--blue); }
.hero-index small { font: 700 8px/1 Arial; letter-spacing: .18em; }

.news-section { position: relative; min-height: 720px; padding: 70px 0 64px; color: #fff; background: radial-gradient(circle at 50% 130%, #9e5eff 0, transparent 48%), linear-gradient(125deg, #072fc9 0%, #4f24dc 48%, #711cf0 100%); overflow: hidden; }
.news-section::before, .news-section::after { content: ""; position: absolute; width: 260px; height: 260px; border: 70px solid rgba(255,255,255,.035); border-radius: 50%; }
.news-section::before { left: -120px; bottom: -130px; }
.news-section::after { right: -100px; top: -140px; }
.news-wallpaper { position: absolute; inset: 50px -40px auto; font: 900 clamp(80px, 10vw, 170px)/.8 Arial, sans-serif; letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.12); white-space: nowrap; user-select: none; animation: newsTypeDrift 18s ease-in-out infinite alternate; }
.news-heading { width: min(var(--max), calc(100% - 48px)); margin: 0 auto 42px; display: flex; align-items: flex-end; justify-content: space-between; position: relative; z-index: 2; }
.news-heading p { margin: 0; }
.news-heading > div > p { color: #82efff; font-size: 11px; letter-spacing: .2em; }
.news-heading h2 { font: 900 clamp(42px, 5.2vw, 78px)/1 Arial, sans-serif; margin: 8px 0 0; letter-spacing: -.05em; }
.news-heading-copy { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.75); padding-bottom: 7px; }
.carousel { position: relative; z-index: 2; }
.carousel-viewport { overflow: hidden; padding: 18px 0 30px; }
.carousel-track { display: flex; align-items: center; gap: 28px; transition: transform .65s cubic-bezier(.22,.7,.15,1); will-change: transform; }
.news-card { flex: 0 0 min(72vw, 860px); aspect-ratio: 16/8.35; position: relative; overflow: hidden; border-radius: 16px; background: #dfeaff; box-shadow: 0 30px 64px rgba(0,0,50,.3); transform: scale(.83); opacity: .52; filter: saturate(.72); transition: transform .55s, opacity .55s, filter .55s; pointer-events: none; }
.news-card.is-active { transform: scale(1); opacity: 1; filter: saturate(1); pointer-events: auto; animation: cardBreath 5.4s ease-in-out infinite; }
.news-card img { width: 100%; height: 100%; object-fit: cover; }
.news-card-hit-area { position: absolute; z-index: 3; inset: 0; padding: 0; border: 0; background: transparent; cursor: pointer; }
.news-card-hit-area:focus-visible { outline: 4px solid #fff; outline-offset: -7px; border-radius: inherit; }
.news-card-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,18,58,.88) 0, rgba(7,21,53,.53) 40%, transparent 70%); }
.news-card:not(.is-dark) .news-card-shade { background: linear-gradient(90deg, rgba(255,255,255,.97) 0, rgba(255,255,255,.8) 40%, transparent 72%); }
.news-card-copy { position: absolute; z-index: 2; left: 0; top: 0; bottom: 0; width: 52%; padding: clamp(30px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.news-card:not(.is-dark) .news-card-copy { color: var(--navy); }
.news-meta { display: flex; align-items: center; gap: 14px; font: 800 10px/1 Arial, sans-serif; letter-spacing: .1em; }
.news-meta b { background: var(--pink); color: white; padding: 8px 10px; }
.news-meta time { opacity: .65; }
.news-card h3 { margin: 20px 0 12px; font-size: clamp(24px, 2.7vw, 40px); line-height: 1.42; letter-spacing: -.035em; }
.news-card p { font-size: 12px; line-height: 1.8; opacity: .75; margin: 0; }
.news-card-copy a { margin-top: 25px; font: 800 10px/1 Arial, sans-serif; letter-spacing: .14em; }
.news-card-copy a span { color: var(--pink); margin-left: 8px; }
.news-card-read { margin-top: 25px; font: 800 10px/1 Arial, sans-serif; letter-spacing: .14em; }
.news-card-read span { color: var(--pink); margin-left: 8px; }
.carousel-button { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border: 0; border-radius: 50%; color: var(--blue); background: white; font-size: 21px; box-shadow: 0 10px 25px rgba(0,0,0,.18); cursor: pointer; }
.carousel-prev { left: calc(50% - min(39vw, 470px)); }
.carousel-next { right: calc(50% - min(39vw, 470px)); }
.carousel-footer { width: min(var(--max), calc(100% - 48px)); margin: 2px auto 0; display: flex; align-items: center; justify-content: center; gap: 32px; }
.carousel-dots { display: flex; gap: 9px; }
.carousel-dots button { width: 24px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: width .25s, background .25s; }
.carousel-dots button[aria-current="true"] { width: 52px; background: var(--pink); }
.carousel-footer p { margin: 0; font: 700 10px/1 Arial, sans-serif; letter-spacing: .12em; }
.carousel-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.section { padding: 120px max(24px, calc((100vw - var(--max)) / 2)); }
.section-heading { text-align: center; }
.section-heading h2, .comparison-copy h2, .report-card h2 { margin: 14px 0 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.3; letter-spacing: -.045em; }
.mobile-only { display: none; }
.worries-section { position: relative; background: radial-gradient(circle at 8% 30%, rgba(255,91,156,.08), transparent 20%), radial-gradient(circle at 93% 80%, rgba(39,126,255,.1), transparent 24%), linear-gradient(180deg, #f7faff, #eaf3ff); overflow: hidden; }
.worries-section::before, .worries-section::after { content: ""; position: absolute; width: 0; height: 0; border-left: 16px solid transparent; border-right: 16px solid transparent; border-bottom: 28px solid rgba(9,97,255,.11); animation: triangleDrift 8s ease-in-out infinite; }
.worries-section::before { left: 6%; top: 21%; transform: rotate(-28deg); }
.worries-section::after { right: 4%; bottom: 13%; border-bottom-color: rgba(255,11,114,.12); animation-delay: -3s; }
.worry-stage { max-width: var(--max); margin: 62px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.worry-card { min-height: 365px; padding: 34px; position: relative; background: linear-gradient(150deg, rgba(255,255,255,.96), rgba(246,250,255,.87)); border: 1px solid #bdd3ff; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 55px rgba(34,86,167,.11); transition: transform .3s, box-shadow .3s; }
.worry-card:hover { transform: translateY(-8px); box-shadow: 0 34px 68px rgba(34,86,167,.17); }
.worry-card-center { transform: translateY(-17px); }
.worry-card-center:hover { transform: translateY(-25px); }
.worry-no { font: 900 68px/1 Arial; color: #e4ecff; letter-spacing: -.08em; }
.worry-label { color: var(--blue); font: 800 10px/1 Arial; letter-spacing: .2em; }
.worry-card h3 { font-size: 25px; line-height: 1.45; margin: 15px 0 10px; }
.worry-card > p:last-of-type { position: relative; z-index: 3; max-width: 67%; color: var(--muted); font-size: 12px; line-height: 1.8; }
.worry-motif { position: absolute; width: 125px; height: 125px; right: -8px; bottom: -8px; border: 2px solid #c7d9ff; border-radius: 34% 66% 57% 43% / 45% 38% 62% 55%; transform: rotate(-16deg); opacity: .65; }
.motif-goods { border-radius: 50%; box-shadow: inset 0 0 0 22px rgba(9,97,255,.03), 0 0 0 1px #dbe6ff; }
.motif-package { border-radius: 8px; transform: rotate(15deg); box-shadow: -30px 23px 0 -1px rgba(255,255,255,.7), -30px 23px 0 1px #c7d9ff; }
.worry-character { position: absolute; z-index: 2; width: 176px; height: 176px; object-fit: contain; right: -20px; bottom: -12px; filter: drop-shadow(0 18px 22px rgba(63,51,134,.16)); transition: transform .35s; }
.worry-card:hover .worry-character { transform: translateY(-5px) rotate(2deg) scale(1.03); }

.three-steps { background: #fff; }
.simple-steps { max-width: 1100px; margin: 60px auto 0; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 20px; }
.simple-steps article { min-height: 300px; padding: 35px 30px 28px; text-align: center; border: 1px solid var(--line); border-radius: 120px 120px 18px 18px; background: linear-gradient(180deg, #f4f8ff, #fff); position: relative; }
.simple-steps article > span { position: absolute; top: 18px; left: 22px; color: var(--blue); font: 900 11px/1 Arial; letter-spacing: .15em; }
.simple-steps > i { color: var(--blue); font-style: normal; font-size: 20px; }
.simple-icon { width: 80px; height: 80px; margin: 16px auto 24px; position: relative; border-radius: 50%; background: white; box-shadow: 0 12px 30px rgba(9,97,255,.13); }
.simple-icon::before, .simple-icon::after { content: ""; position: absolute; border: 3px solid var(--blue); }
.chat-icon::before { width: 38px; height: 27px; left: 18px; top: 21px; border-radius: 50%; }
.chat-icon::after { width: 9px; height: 9px; border-width: 0 0 3px 3px; left: 24px; top: 44px; transform: rotate(-28deg); }
.review-icon::before { width: 39px; height: 30px; left: 18px; top: 20px; border-radius: 4px; }
.review-icon::after { width: 19px; height: 9px; border-width: 0 0 3px 3px; right: 13px; bottom: 17px; transform: rotate(-45deg); }
.payment-icon::before { width: 38px; height: 32px; left: 19px; top: 18px; border-radius: 18px 18px 5px 5px; }
.payment-icon::after { content: "¥"; border: 0; color: var(--blue); font: 900 25px/1 Arial; left: 32px; top: 33px; }
.simple-steps h3 { font-size: 19px; margin: 0 0 12px; }
.simple-steps p { color: var(--muted); font-size: 12px; line-height: 1.8; margin: 0; }

.support-section { position: relative; background: linear-gradient(180deg, #eff5ff, #fff 92%); overflow: hidden; }
.support-section::before { content: "0"; position: absolute; right: -60px; top: 20px; color: rgba(9,97,255,.035); font: 900 520px/1 Arial; }
.support-heading { position: relative; }
.zero-plan { max-width: var(--max); margin: 62px auto 32px; display: grid; grid-template-columns: .42fr .58fr; border-radius: 24px; overflow: hidden; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.zero-panel { min-height: 565px; position: relative; padding: 55px 48px; background: radial-gradient(circle at 15% 35%, #fff 0, transparent 27%), linear-gradient(145deg, #edf5ff, #fff); overflow: hidden; }
.zero-panel::after { content: "0"; position: absolute; bottom: -150px; right: -45px; font: 900 430px/1 Arial; color: rgba(9,97,255,.035); }
.zero-confetti { position: absolute; inset: 0; pointer-events: none; }
.zero-confetti i { position: absolute; display: block; width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 14px solid rgba(9,97,255,.28); animation: confettiFloat 6s ease-in-out infinite; }
.zero-confetti i:nth-child(1) { left: 12%; top: 16%; transform: rotate(30deg); }
.zero-confetti i:nth-child(2) { right: 12%; top: 13%; border-bottom-color: rgba(255,11,114,.34); animation-delay: -1.2s; }
.zero-confetti i:nth-child(3) { right: 7%; top: 48%; transform: rotate(-50deg) scale(.7); animation-delay: -2.5s; }
.zero-confetti i:nth-child(4) { left: 17%; bottom: 10%; border-bottom-color: rgba(104,74,255,.25); animation-delay: -3.8s; }
.zero-confetti i:nth-child(5) { right: 25%; bottom: 13%; border-bottom-color: rgba(61,193,255,.32); transform: scale(.55); animation-delay: -4.5s; }
.zero-panel > p { margin: 0; color: var(--blue); font-size: 14px; font-weight: 900; }
.vertical-label { writing-mode: vertical-rl; position: absolute; left: 25px; top: 114px; color: var(--blue); font: 800 9px/1 Arial; letter-spacing: .22em; }
.zero-price { margin: 18px 0 0; display: flex; align-items: flex-end; color: var(--blue); }
.zero-price strong { font: 900 190px/.82 Arial; letter-spacing: -.09em; text-shadow: 0 20px 35px rgba(9,97,255,.15); animation: zeroGlow 4s ease-in-out infinite; }
.zero-price small { font-size: 30px; font-weight: 900; padding-bottom: 14px; }
.zero-panel h3 { position: relative; z-index: 1; margin: 32px 0 20px; font-size: 31px; line-height: 1.5; }
.zero-badges { display: flex; gap: 8px; position: relative; z-index: 1; }
.zero-badges span { border: 1px solid #ff78ad; color: var(--pink); border-radius: 999px; padding: 8px 13px; font-size: 11px; }
.preorder-story { padding: 54px 38px 40px; background: linear-gradient(140deg, #eaf2ff, #f6f1ff); }
.story-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; border-bottom: 1px solid #bcd1ff; padding-bottom: 26px; }
.story-head p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.story-head > div > p { color: var(--blue); font: 900 10px/1 Arial; letter-spacing: .16em; margin-bottom: 12px; }
.story-head h3 { font-size: 28px; line-height: 1.45; margin: 0; }
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 30px; gap: 8px; }
.story-grid article { min-width: 0; position: relative; text-align: center; background: rgba(255,255,255,.82); border: 1px solid rgba(188,209,255,.5); border-radius: 17px; padding: 17px 9px 20px; box-shadow: 0 14px 28px rgba(49,79,154,.06); transition: transform .25s, background .25s; }
.story-grid article:hover { transform: translateY(-6px); background: #fff; }
.story-grid article.is-highlighted { transform: translateY(-7px); background: #fff; border-color: #86adff; box-shadow: 0 18px 38px rgba(9,97,255,.15); }
.story-grid article.is-highlighted span { background: var(--pink); box-shadow: 0 7px 18px rgba(255,11,114,.25); }
.story-grid article:not(:last-child)::after { content: "→"; position: absolute; right: -10px; top: 43%; z-index: 2; color: var(--blue); }
.story-grid span { position: absolute; left: 12px; top: 12px; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); font: 800 9px/1 Arial; }
.story-grid img { width: 100%; height: 128px; object-fit: contain; margin: 4px auto 10px; }
.story-grid h4 { margin: 0 0 7px; font-size: 13px; }
.story-grid p { margin: 0; color: var(--muted); font-size: 9px; }
.full-support { max-width: var(--max); margin: 0 auto; padding: 42px 34px 34px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.full-support-head { display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid #dce7ff; padding-bottom: 23px; }
.full-support-head p { color: var(--blue); font: 900 10px/1 Arial; letter-spacing: .18em; margin: 0; }
.full-support-head h3 { font-size: 25px; margin: 0; }
.support-flow { list-style: none; padding: 30px 0 0; margin: 0; display: grid; grid-template-columns: repeat(7, 1fr); }
.support-flow li { position: relative; text-align: center; padding: 0 8px; }
.support-flow li:not(:last-child)::after { content: ""; position: absolute; top: 51px; right: -8px; width: 16px; height: 1px; background: linear-gradient(90deg, var(--blue), #78a9ff); }
.support-flow span { position: absolute; top: -4px; left: calc(50% - 35px); display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: white; background: var(--blue); font: 800 7px/1 Arial; box-shadow: 0 6px 13px rgba(9,97,255,.18); }
.support-flow img { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 13px; filter: drop-shadow(0 10px 16px rgba(9,97,255,.12)); transition: transform .25s; }
.support-flow li:hover img { transform: translateY(-5px) scale(1.04); }
.support-flow b { display: block; font-size: 12px; margin-bottom: 7px; }
.support-flow small { display: block; color: var(--muted); font-size: 8px; line-height: 1.5; }

.comparison-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; background: #fff; }
.comparison-copy > p:not(.kicker) { color: var(--muted); font-size: 14px; line-height: 2; max-width: 470px; }
.comparison-table { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.comparison-row { display: grid; grid-template-columns: 1fr 1.2fr 1.2fr; min-height: 70px; align-items: center; border-bottom: 1px solid #e1e9fb; }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row > * { height: 100%; padding: 20px 22px; display: flex; align-items: center; margin: 0; font-size: 12px; border-right: 1px solid #e1e9fb; }
.comparison-row > *:last-child { border-right: 0; }
.heading-row { min-height: 54px; color: white; background: var(--navy); }
.heading-row b:nth-child(2) { background: var(--blue); }
.comparison-row .good { color: var(--blue); background: #f0f6ff; }
.comparison-row p { color: var(--muted); }

.works-section { background: var(--navy); color: white; overflow: hidden; }
.works-heading .kicker { color: #78e8ff; }
.product-marquee { width: max-content; display: flex; gap: 18px; margin-top: 60px; transform: translateX(-3vw); animation: drift 22s linear infinite alternate; }
.product-pill { width: 300px; aspect-ratio: 1.2; border-radius: 22px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.product-pill::before { content: ""; position: absolute; width: 130px; height: 130px; top: 32px; left: 85px; background: rgba(255,255,255,.75); border-radius: 50%; box-shadow: 0 0 0 24px rgba(255,255,255,.09); }
.product-pill::after { content: ""; position: absolute; width: 62px; height: 85px; border: 5px solid currentColor; border-radius: 8px; top: 54px; left: 118px; transform: rotate(8deg); opacity: .55; }
.product-pill b { position: relative; font: 900 21px/1 Arial; letter-spacing: -.02em; z-index: 2; }
.product-pill span { position: relative; font-size: 11px; margin-top: 8px; z-index: 2; }
.product-pill.hot { background: linear-gradient(135deg, #ff2b87, #ff78a9); }
.product-pill.blue { background: linear-gradient(135deg, #075cff, #19b8ff); }
.product-pill.pale { color: var(--navy); background: linear-gradient(135deg, #eef5ff, #fff); }
.product-pill.violet { background: linear-gradient(135deg, #6944ff, #b76cff); }
.product-pill.white { color: var(--navy); background: white; }
@keyframes drift { to { transform: translateX(calc(-3vw - 240px)); } }

.report-section { background: linear-gradient(180deg, #fff, #f0f6ff); }
.report-card { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; padding: 70px; border-radius: 26px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.report-card > div > p:not(.kicker) { color: var(--muted); line-height: 2; font-size: 14px; }
.text-link { color: var(--blue); font-size: 12px; font-weight: 900; }
.report-chart { height: 300px; display: flex; align-items: flex-end; gap: 18px; padding: 35px; border-left: 1px solid #dbe6ff; border-bottom: 1px solid #dbe6ff; background-image: linear-gradient(#edf3ff 1px, transparent 1px); background-size: 100% 50px; }
.report-chart span { flex: 1; height: var(--h); border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #21b8ff, var(--blue)); box-shadow: 0 8px 20px rgba(9,97,255,.18); }
.report-chart span:last-child { background: linear-gradient(180deg, #ff52a1, var(--pink)); }

.contact-section { min-height: 560px; padding: 100px 24px; display: flex; align-items: center; flex-direction: column; justify-content: center; text-align: center; color: white; background: radial-gradient(circle at 80% 20%, #9a57ff, transparent 25%), radial-gradient(circle at 20% 120%, #006bff, transparent 32%), linear-gradient(135deg, #061842, #3920b7); }
.contact-section > p { color: #86eeff; font: 800 11px/1 Arial; letter-spacing: .22em; }
.contact-section h2 { font-size: clamp(48px, 6vw, 82px); line-height: 1.25; letter-spacing: -.05em; margin: 20px 0 36px; }
.contact-button { min-width: 290px; color: white; background: var(--pink); border-radius: 999px; box-shadow: 0 16px 40px rgba(255,11,114,.3); }
.contact-section small { margin-top: 20px; color: rgba(255,255,255,.55); font-size: 9px; }
footer { min-height: 170px; padding: 45px clamp(24px, 5vw, 80px); display: flex; align-items: center; gap: 30px; background: #fff; }
.footer-brand { margin-right: auto; }
footer p { color: var(--muted); font: 700 9px/1 Arial; letter-spacing: .18em; }
footer small { color: #95a1b8; font: 700 9px/1 Arial; }
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; }
.footer-legal a { color: #53647e; font-size: 11px; font-weight: 700; text-decoration: none; }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: #ef5264; text-decoration: underline; text-underline-offset: 4px; }
.form-consent a { color: #145da9; font-weight: 800; text-underline-offset: 3px; }
.form-consent a:hover,
.form-consent a:focus-visible { color: #ef5264; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

.legal-page { background: linear-gradient(135deg, #fffaf2 0%, #f8fcff 48%, #fff4f7 100%); color: #0a2858; }
.legal-main { min-height: 100vh; padding: 150px 24px 90px; }
.legal-document { width: min(920px, 100%); margin: 0 auto; padding: clamp(32px, 6vw, 76px); background: rgba(255, 255, 255, .94); border: 1px solid rgba(72, 156, 219, .28); border-radius: 30px; box-shadow: 0 28px 70px rgba(15, 48, 95, .12); }
.legal-document-heading { margin-bottom: 46px; padding-bottom: 28px; border-bottom: 1px solid rgba(72, 156, 219, .24); }
.legal-document-heading p { margin: 0 0 12px; color: #ed5368; font: 800 12px/1 Arial, sans-serif; letter-spacing: .18em; }
.legal-document-heading h1 { margin: 0 0 12px; font-size: clamp(32px, 5vw, 54px); line-height: 1.2; }
.legal-document-heading span { color: #61718b; font-weight: 700; }
.legal-document > p,
.legal-document section { margin: 0 0 34px; }
.legal-document h2 { margin: 0 0 13px; color: #0a2858; font-size: clamp(19px, 2.3vw, 25px); line-height: 1.45; }
.legal-document p,
.legal-document li { color: #40516d; font-size: 15px; line-height: 2; }
.legal-document ul { margin: 0; padding-left: 1.5em; }
.legal-document a { color: #1376c9; font-weight: 750; text-underline-offset: 3px; }
.legal-date { text-align: right; font-weight: 700; }
.legal-note { padding: 16px 18px; background: #fff8df; border-radius: 12px; font-size: 12px !important; line-height: 1.7 !important; }
@media (max-width: 720px) {
  .legal-main { padding: 112px 14px 55px; }
  .legal-document { padding: 30px 22px; border-radius: 22px; }
  .legal-document-heading { margin-bottom: 32px; }
  .legal-document p,
  .legal-document li { font-size: 14px; line-height: 1.9; }
}

.reveal-ready { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.7,.15,1); }
.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-8px,0) scale(1.012); }
}
@keyframes lightSweep {
  0%, 100% { translate: -8% 0; opacity: .25; }
  50% { translate: 7% -8px; opacity: .9; }
}
@keyframes triangleDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px -16px; rotate: 10deg; }
}
@keyframes orbPulse {
  0%, 100% { transform: scale(.6); opacity: .25; }
  50% { transform: scale(1.4); opacity: 1; }
}
@keyframes newsTypeDrift {
  to { transform: translateX(-4%); }
}
@keyframes cardBreath {
  0%, 100% { box-shadow: 0 30px 64px rgba(0,0,50,.3); }
  50% { box-shadow: 0 36px 82px rgba(10,0,72,.48); }
}
@keyframes confettiFloat {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 4px -13px; rotate: 18deg; }
}
@keyframes zeroGlow {
  0%, 100% { color: var(--blue); text-shadow: 0 20px 35px rgba(9,97,255,.15); }
  50% { color: #185dff; text-shadow: 0 20px 45px rgba(9,97,255,.28); }
}

@media (max-width: 980px) {
  .site-header { height: 70px; padding: 0 20px; position: fixed; }
  .brand { font-size: 24px; }
  .header-cta { display: none; }
  .menu-button { display: block; }
  .desktop-nav { position: fixed; top: 70px; left: 0; right: 0; display: grid; gap: 0; padding: 15px 24px 25px; background: rgba(255,255,255,.96); transform: translateY(-130%); opacity: 0; transition: .25s; box-shadow: 0 20px 30px rgba(18,49,108,.1); }
  .desktop-nav.is-open { transform: translateY(0); opacity: 1; }
  .desktop-nav a { padding: 15px 4px; border-bottom: 1px solid #e4ebfa; }
  .hero { min-height: 910px; padding-top: 70px; grid-template-columns: 1fr; grid-template-rows: auto 380px; }
  .hero-copy { padding: 75px 24px 15px; text-align: center; }
  .hero h1 { font-size: clamp(40px, 10vw, 60px); }
  .hero-lead br { display: none; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-art img { width: 100%; height: 420px; object-fit: cover; object-position: 62% center; }
  .hero-index { display: none; }
  .zero-plan { grid-template-columns: 1fr; }
  .zero-panel { min-height: 470px; }
  .comparison-section { grid-template-columns: 1fr; }
  .comparison-copy { text-align: center; }
  .comparison-copy > p:not(.kicker) { margin-inline: auto; }
}

@media (max-width: 720px) {
  .mobile-only { display: block; }
  .section { padding: 82px 20px; }
  .section-heading h2, .comparison-copy h2, .report-card h2 { font-size: 32px; }
  .hero { min-height: 920px; grid-template-rows: auto 330px; }
  .hero-copy { padding-top: 62px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: 39px; margin-top: 18px; }
  .hero-lead { font-size: 13px; line-height: 1.8; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-points { gap: 11px; }
  .hero-points li { min-width: 0; flex: 1; display: block; text-align: center; padding: 12px 4px; border: 1px solid #d3e1ff; border-radius: 10px; background: rgba(255,255,255,.72); }
  .hero-points b, .hero-points span { display: block; }
  .hero-art img { height: 370px; width: 115%; margin-left: -7.5%; mask-image: linear-gradient(0deg, transparent 0, #000 12%); }
  .news-section { min-height: 610px; padding-top: 65px; }
  .news-heading { display: block; text-align: center; }
  .news-heading h2 { font-size: 48px; }
  .news-heading-copy { margin-top: 12px !important; }
  .news-wallpaper { font-size: 75px; top: 34px; }
  .news-card { flex-basis: 84vw; aspect-ratio: 4/5; }
  .news-card img { object-position: 60% center; }
  .news-card-shade, .news-card:not(.is-dark) .news-card-shade { background: linear-gradient(0deg, rgba(7,21,53,.94), rgba(7,21,53,.12) 75%); }
  .news-card:not(.is-dark) .news-card-copy { color: white; }
  .news-card-copy { top: auto; width: 100%; min-height: 48%; padding: 26px; justify-content: flex-end; }
  .news-card h3 { font-size: 24px; }
  .news-card p { display: none; }
  .carousel-button { width: 44px; height: 44px; top: 46%; }
  .carousel-prev { left: 7px; }
  .carousel-next { right: 7px; }
  .worry-stage { grid-template-columns: 1fr; gap: 13px; margin-top: 40px; }
  .worry-card, .worry-card-center { min-height: 230px; padding: 26px; transform: none; }
  .worry-card h3 { font-size: 22px; }
  .worry-character { width: 132px; height: 132px; right: -7px; bottom: -5px; }
  .simple-steps { grid-template-columns: 1fr; gap: 12px; margin-top: 42px; }
  .simple-steps > i { transform: rotate(90deg); text-align: center; }
  .simple-steps article { min-height: 250px; border-radius: 80px 80px 16px 16px; }
  .zero-panel { padding: 44px 28px; min-height: 460px; text-align: center; }
  .vertical-label { left: 16px; }
  .zero-price { justify-content: center; }
  .zero-price strong { font-size: 160px; }
  .zero-panel h3 { font-size: 27px; }
  .zero-badges { justify-content: center; }
  .preorder-story { padding: 38px 18px 24px; }
  .story-head { display: block; text-align: center; }
  .story-head > p { margin-top: 12px; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid article:not(:last-child)::after { display: none; }
  .story-grid img { height: 120px; }
  .full-support { padding: 30px 20px; }
  .full-support-head { display: block; text-align: center; }
  .full-support-head h3 { margin-top: 12px; }
  .support-flow { grid-template-columns: 1fr; padding-top: 22px; }
  .support-flow li { min-height: 82px; display: grid; grid-template-columns: 68px 1fr; text-align: left; align-items: center; column-gap: 12px; border-bottom: 1px solid #e3ebfb; }
  .support-flow li:not(:last-child)::after { display: none; }
  .support-flow span { top: 9px; left: 2px; }
  .support-flow img { grid-row: 1 / span 2; width: 58px; height: 58px; margin: 0; }
  .support-flow b { margin: 14px 0 0; }
  .support-flow small { margin: 0 0 14px; }
  .comparison-section { gap: 35px; }
  .comparison-row { grid-template-columns: .8fr 1fr 1fr; }
  .comparison-row > * { padding: 14px 8px; font-size: 9px; }
  .product-pill { width: 240px; }
  .report-card { grid-template-columns: 1fr; gap: 30px; padding: 35px 24px; }
  .report-chart { height: 230px; padding: 20px; gap: 10px; }
  .contact-section { min-height: 500px; }
  .contact-section h2 { font-size: 44px; }
  footer { display: grid; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-ready { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Ver.2 lower-page art direction
   Rebuilt as an entertainment-brand site: large type, layered depth,
   continuous editorial motion, and reusable merchandise / creator assets.
   -------------------------------------------------------------------------- */

.news-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 30, 136, .32), transparent 27%),
    radial-gradient(circle at 10% 92%, rgba(16, 214, 255, .24), transparent 24%),
    linear-gradient(118deg, #133ad9 0%, #3e20da 47%, #7b20f2 100%);
  background-size: 130% 130%;
  animation: newsGradientDrift 13s ease-in-out infinite alternate;
}

.news-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.news-ambient i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 0 24px rgba(255, 255, 255, .68);
  animation: newsParticle 8s ease-in-out infinite;
}

.news-ambient i:nth-child(1) { left: 8%; top: 24%; animation-delay: -1s; }
.news-ambient i:nth-child(2) { left: 22%; top: 74%; animation-delay: -5s; transform: rotate(45deg); }
.news-ambient i:nth-child(3) { left: 49%; top: 13%; animation-delay: -3s; }
.news-ambient i:nth-child(4) { left: 71%; top: 80%; animation-delay: -6s; transform: rotate(45deg); }
.news-ambient i:nth-child(5) { left: 90%; top: 33%; animation-delay: -2s; }
.news-ambient i:nth-child(6) { left: 61%; top: 54%; animation-delay: -7s; width: 5px; height: 5px; }

.news-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  animation: orbitBreathe 10s ease-in-out infinite alternate;
}

.news-orbit-a {
  width: 390px;
  height: 390px;
  right: -82px;
  top: -145px;
}

.news-orbit-b {
  width: 230px;
  height: 230px;
  left: -52px;
  bottom: -92px;
  animation-delay: -4s;
}

.news-wallpaper {
  animation: wallpaperSlide 18s linear infinite;
}

.news-card img {
  --news-x: 0px;
  --news-y: 0px;
  transform: translate(var(--news-x), var(--news-y)) scale(1.04);
  transition: transform .75s cubic-bezier(.2, .75, .2, 1), filter .4s ease;
}

.news-card.is-active img {
  animation: newsKenBurns 7s ease-out both;
}

.news-card.is-side {
  animation: newsSideFloat 5.4s ease-in-out infinite;
}

.carousel-dots button {
  position: relative;
  overflow: hidden;
}

.carousel-dots button.is-progressing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform-origin: left;
  animation: newsDotProgress 4.5s linear both;
}

.comparison-section,
.works-section,
.report-section,
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.comparison-wallpaper,
.works-wallpaper,
.report-wallpaper,
.contact-wallpaper {
  position: absolute;
  left: -8vw;
  top: 50%;
  width: 116vw;
  color: transparent;
  font-family: "Arial Black", "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: .82;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  transform: translateY(-50%);
}

.comparison-section {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(580px, 1.22fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  min-height: 820px;
  padding: clamp(92px, 10vw, 150px) max(6vw, calc((100vw - 1280px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(19, 102, 255, .48), transparent 28%),
    radial-gradient(circle at 86% 74%, rgba(249, 23, 123, .22), transparent 24%),
    linear-gradient(135deg, #06122e 0%, #0a2056 58%, #14103d 100%);
}

.comparison-wallpaper {
  font-size: clamp(8rem, 17vw, 18rem);
  -webkit-text-stroke: 1px rgba(135, 179, 255, .12);
  opacity: .9;
  animation: wallpaperSlide 26s linear infinite;
}

.comparison-copy,
.comparison-stage {
  position: relative;
  z-index: 1;
}

.comparison-copy .eyebrow {
  color: #73e5ff;
}

.comparison-copy h2 {
  max-width: 720px;
  margin: 16px 0 26px;
  font-size: clamp(2.55rem, 4.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.comparison-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 2;
}

.comparison-promise {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.comparison-promise span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  color: #071a48;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #83eaff);
  box-shadow: 0 14px 34px rgba(39, 194, 255, .2);
}

.comparison-promise strong,
.comparison-promise small {
  display: block;
}

.comparison-promise strong {
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.comparison-promise small {
  color: rgba(255, 255, 255, .62);
  line-height: 1.6;
}

.comparison-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.comparison-column {
  position: relative;
  padding: 34px 28px 28px;
  border-radius: 30px;
}

.comparison-column.vpop {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(51, 211, 255, .24), transparent 30%),
    linear-gradient(145deg, #fff, #edf5ff);
  box-shadow: 0 35px 75px rgba(0, 0, 0, .28), inset 0 1px #fff;
  transform: translateY(-22px);
}

.comparison-column.self {
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.vpop .comparison-label {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), #7756ff);
}

.self .comparison-label {
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .22);
}

.comparison-column h3 {
  margin: 20px 0 26px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  letter-spacing: -.04em;
}

.comparison-column ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 62px;
  padding: 11px 12px;
  border-radius: 16px;
  font-size: .92rem;
  font-weight: 750;
  transition: transform .3s ease, background .3s ease;
}

.comparison-column li:hover {
  transform: translateX(5px);
}

.vpop li {
  background: rgba(255, 255, 255, .72);
}

.self li {
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .045);
}

.comparison-column li span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  font-size: .76rem;
}

.vpop li span {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 6px 15px rgba(15, 102, 255, .26);
}

.self li span {
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .18);
}

.comparison-result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(9, 29, 70, .1);
}

.comparison-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.comparison-result strong {
  font-size: 1.1rem;
}

.works-section {
  padding: clamp(90px, 10vw, 150px) 0 clamp(105px, 11vw, 165px);
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, .38), transparent 21%),
    linear-gradient(150deg, #9a65ff 0%, #7338ed 48%, #c75af4 100%);
}

.works-wallpaper {
  top: 19%;
  font-size: clamp(7rem, 15vw, 16rem);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .24);
  opacity: .9;
  animation: wallpaperSlideReverse 24s linear infinite;
}

.works-topline {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: min(1280px, 88vw);
  margin: 0 auto 48px;
  color: #fff;
}

.works-topline .eyebrow {
  color: #fff;
}

.works-topline h2 {
  max-width: 850px;
  margin: 14px 0 0;
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.works-intro {
  align-self: flex-end;
  max-width: 390px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.9;
}

.merch-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 58px;
}

.merch-window::before,
.merch-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 38px;
  z-index: 4;
  width: min(9vw, 150px);
  pointer-events: none;
}

.merch-window::before {
  left: 0;
  background: linear-gradient(90deg, #9560fb, transparent);
}

.merch-window::after {
  right: 0;
  background: linear-gradient(-90deg, #b94df1, transparent);
}

.merch-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding-left: 22px;
  animation: merchLoop 30s linear infinite;
  will-change: transform;
}

/* マウスが載る端末でだけ一時停止する。
   タッチ端末では :hover がタップ後に貼り付いたままになり、
   「クリックすると画像が止まったまま動かない」状態になるため除外する。 */
@media (hover: hover) and (pointer: fine) {
  .merch-window:hover .merch-track {
    animation-play-state: paused;
  }
}

.merch-card {
  position: relative;
  flex: 0 0 clamp(290px, 30vw, 460px);
  min-height: 390px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .58);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 26px 55px rgba(41, 7, 97, .28);
  transform: translateZ(0);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .merch-card:hover {
    z-index: 3;
    transform: translateY(-12px) rotate(-.7deg);
    box-shadow: 0 38px 75px rgba(41, 7, 97, .38);
  }
}

.merch-card img {
  width: 100%;
  height: 292px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 54%, #fff 0%, #f5f2ff 54%, #e7e2ff 100%);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.merch-card-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* 販売中カードと制作例カードの区別。
   全部が同じ見た目だと「押せそうなのに何も起きない」カードが生まれるため、
   購入できるものだけを明示する。 */
.merch-flag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  padding: 6px 12px;
  border-radius: 999px;
  font: 700 11px/1 "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  letter-spacing: .04em;
  color: #4a5570;
  background: rgba(255, 255, 255, .92);
  border: 1.5px solid rgba(120, 136, 170, .3);
  box-shadow: 0 4px 12px rgba(41, 7, 97, .12);
}

.merch-flag.is-buy {
  color: #fff;
  background: var(--pink);
  border-color: transparent;
  padding-right: 26px;
}

/* 購入できるカードにだけ矢印を出す */
.merch-flag.is-buy::after {
  content: "↗";
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
}

/* 制作例カードは押せないことを明示する */
.merch-card:not(:has(.merch-card-image-link)) img {
  cursor: default;
}


.merch-card-image-link:focus-visible {
  outline: 4px solid rgba(33, 112, 255, .72);
  outline-offset: -7px;
  border-radius: 20px 20px 8px 8px;
}

.merch-card-image-link img {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .merch-card:hover img {
    transform: scale(1.06);
  }
}

/* Hand-drawn product artwork is displayed exactly as supplied.
   Only its layout box and the CSS background around it are styled. */
.merch-card-handdrawn img {
  box-sizing: border-box;
  padding: 18px 24px 12px;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
  transition: none;
}

.merch-card-handdrawn:hover img {
  transform: none;
}

.merch-card-handdrawn-pink img {
  background:
    radial-gradient(circle at 47% 42%, rgba(255, 255, 255, .98) 0 18%, transparent 48%),
    linear-gradient(138deg, #fffaf5 0%, #ffe8eb 52%, #f7efff 100%);
}

.merch-card-handdrawn-mix img {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .98) 0 20%, transparent 52%),
    linear-gradient(138deg, #fff8ef 0%, #ffe9ee 44%, #edf5ff 100%);
}

.merch-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 6px;
  color: #fff;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .11em;
  background: linear-gradient(90deg, #ff167d, #ff6b46);
}

.merch-card h3 {
  margin: 19px 22px 5px;
  font-size: 1.18rem;
}

.merch-card p {
  margin: 0 22px 22px;
  color: var(--muted);
  font-size: .84rem;
}

.creator-feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  width: min(1280px, 88vw);
  margin: 62px auto 0;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  box-shadow: inset 0 1px rgba(255, 255, 255, .34), 0 30px 70px rgba(50, 10, 110, .2);
  backdrop-filter: blur(18px);
}

.creator-copy h3 {
  margin: 15px 0 20px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.creator-copy p {
  max-width: 510px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.9;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.creator-link::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #6624dd;
  background: #fff;
  transition: transform .3s ease;
}

.creator-link:hover::after {
  transform: translate(4px, -4px);
}

.creator-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 14px;
}

.creator-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .58);
  border-radius: 26px 26px 14px 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .92), rgba(234, 226, 255, .82));
  box-shadow: 0 22px 35px rgba(38, 7, 79, .24);
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
}

.creator-card:nth-child(1) { transform: rotate(-3deg) translateY(12px); }
.creator-card:nth-child(2) { transform: translateY(-16px); z-index: 2; }
.creator-card:nth-child(3) { transform: rotate(3deg) translateY(12px); }

.creator-card:hover {
  z-index: 4;
  transform: translateY(-26px) rotate(0);
}

.creator-card img {
  width: 100%;
  height: clamp(250px, 27vw, 410px);
  object-fit: cover;
  object-position: top center;
}

.creator-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 50px 16px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(15, 10, 44, .92));
}

.creator-card span,
.creator-card strong {
  display: block;
}

.creator-card span {
  margin-bottom: 3px;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
  opacity: .72;
}

.creator-card strong {
  font-size: clamp(.84rem, 1.1vw, 1.08rem);
}

.report-section {
  min-height: 800px;
  padding: clamp(100px, 11vw, 165px) max(6vw, calc((100vw - 1280px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(131, 69, 255, .7), transparent 29%),
    radial-gradient(circle at 15% 80%, rgba(0, 213, 255, .27), transparent 25%),
    linear-gradient(130deg, #061c61 0%, #0c43cb 50%, #27177a 100%);
}

.report-wallpaper {
  font-size: clamp(8rem, 17vw, 18rem);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .12);
  animation: wallpaperSlide 27s linear infinite;
}

.report-heading {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
  margin-bottom: 45px;
}

.report-heading .eyebrow {
  color: #86eaff;
}

.report-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(2.65rem, 5vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.report-note {
  max-width: 390px;
  color: rgba(255, 255, 255, .67);
  line-height: 1.8;
}

.report-dashboard {
  position: relative;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 36px;
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px rgba(255, 255, 255, .22), 0 35px 80px rgba(1, 10, 51, .32);
  backdrop-filter: blur(22px);
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.report-metric {
  padding: 4px clamp(10px, 2vw, 28px);
}

.report-metric + .report-metric {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.report-metric span,
.report-metric strong,
.report-metric small {
  display: block;
}

.report-metric span {
  margin-bottom: 11px;
  color: #8feaff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.report-metric strong {
  font-family: "Arial Black", "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.report-metric small {
  margin-top: 10px;
  color: rgba(255, 255, 255, .58);
}

.report-visual {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: 46px;
}

.report-chart {
  display: flex;
  align-items: end;
  gap: clamp(12px, 2vw, 28px);
  min-height: 250px;
  padding: 30px 30px 0;
  border-left: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.report-bar {
  position: relative;
  flex: 1;
  min-width: 28px;
  height: var(--bar);
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #7feaff, #376cff 58%, #824cff);
  box-shadow: 0 0 35px rgba(67, 182, 255, .3);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1s cubic-bezier(.17, .84, .24, 1);
}

.report-dashboard.is-visible .report-bar {
  transform: scaleY(1);
}

.report-bar:nth-child(2) { transition-delay: .1s; }
.report-bar:nth-child(3) { transition-delay: .2s; }
.report-bar:nth-child(4) { transition-delay: .3s; }
.report-bar:nth-child(5) { transition-delay: .4s; }
.report-bar:nth-child(6) { transition-delay: .5s; }

.report-bar::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: -26px;
  color: rgba(255, 255, 255, .55);
  font-size: .64rem;
  transform: translateX(-50%);
}

.report-insight {
  padding: 28px;
  border-radius: 26px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 25px 45px rgba(0, 8, 45, .2);
}

.report-insight span {
  display: block;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.report-insight h3 {
  margin: 12px 0;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.35;
}

.report-insight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-section {
  display: grid;
  place-items: center;
  min-height: 680px;
  padding: 100px 8vw;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 55%, rgba(32, 102, 255, .55), transparent 34%),
    linear-gradient(135deg, #050b25, #100944 52%, #27094b);
}

.contact-wallpaper {
  top: 50%;
  font-size: clamp(8rem, 18vw, 20rem);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .1);
  animation: wallpaperSlideReverse 24s linear infinite;
}

.contact-aurora {
  position: absolute;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .38;
  pointer-events: none;
  animation: auroraMove 11s ease-in-out infinite alternate;
}

.contact-aurora.a {
  left: -15vw;
  top: -16vw;
  background: #076cff;
}

.contact-aurora.b {
  right: -14vw;
  bottom: -18vw;
  background: #ff1688;
  animation-delay: -5s;
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.contact-copy .eyebrow {
  color: #8deeff;
}

.contact-copy h2 {
  margin: 18px 0 20px;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: .95;
  letter-spacing: -.07em;
}

.contact-copy p {
  margin: 0 auto;
  max-width: 600px;
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  line-height: 1.9;
}

.contact-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: min(420px, 82vw);
  min-height: 72px;
  margin-top: 38px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(90deg, #ff147b, #ff4aa7);
  box-shadow: 0 22px 50px rgba(255, 20, 123, .35);
  transition: transform .35s ease, box-shadow .35s ease;
}

.contact-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 65px rgba(255, 20, 123, .5);
}

.contact-mascot {
  position: absolute;
  right: clamp(18px, 5vw, 90px);
  bottom: -35px;
  z-index: 1;
  width: clamp(180px, 22vw, 330px);
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .25));
  animation: contactMascotFloat 4.8s ease-in-out infinite;
}

.worry-card:not(:last-of-type)::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 50%;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid var(--blue);
  filter: drop-shadow(0 4px 6px rgba(24, 103, 255, .18));
  transform: translateY(-50%);
}

.worry-stage {
  overflow: visible;
}

@keyframes newsGradientDrift {
  to { background-position: 100% 70%; }
}

@keyframes newsParticle {
  0%, 100% { opacity: .18; transform: translate3d(0, 18px, 0) rotate(0deg) scale(.7); }
  45% { opacity: .88; }
  55% { transform: translate3d(22px, -28px, 0) rotate(135deg) scale(1.05); }
}

@keyframes orbitBreathe {
  to { transform: scale(1.22) rotate(12deg); opacity: .35; }
}

@keyframes newsKenBurns {
  from { transform: translate(var(--news-x), var(--news-y)) scale(1.04); }
  to { transform: translate(var(--news-x), var(--news-y)) scale(1.11); }
}

@keyframes newsSideFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

@keyframes newsDotProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes wallpaperSlide {
  from { translate: 0 0; }
  to { translate: -14vw 0; }
}

@keyframes wallpaperSlideReverse {
  from { translate: -15vw 0; }
  to { translate: 0 0; }
}

@keyframes merchLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 11px), 0, 0); }
}

@keyframes auroraMove {
  from { transform: translate3d(-4%, -3%, 0) scale(.92); }
  to { transform: translate3d(10%, 8%, 0) scale(1.18); }
}

@keyframes contactMascotFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@media (max-width: 1100px) {
  .comparison-section {
    grid-template-columns: 1fr;
  }

  .comparison-copy {
    max-width: 820px;
  }

  .comparison-stage {
    max-width: 840px;
  }

  .creator-feature {
    grid-template-columns: 1fr;
  }

  .creator-copy {
    max-width: 720px;
  }

  .creator-card img {
    height: clamp(290px, 46vw, 450px);
  }
}

@media (max-width: 760px) {
  .news-section {
    animation-duration: 18s;
  }

  .news-orbit-a {
    width: 250px;
    height: 250px;
  }

  .comparison-section {
    min-height: 0;
    padding: 88px 20px 100px;
  }

  .comparison-copy h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .comparison-stage {
    grid-template-columns: 1fr;
  }

  .comparison-column.vpop {
    transform: none;
  }

  .works-topline,
  .report-heading {
    display: block;
  }

  .works-intro,
  .report-note {
    margin-top: 24px;
  }

  .merch-card {
    flex-basis: 78vw;
    min-height: 335px;
  }

  .merch-card img {
    height: 245px;
  }

  .creator-feature {
    width: calc(100% - 32px);
    padding: 32px 20px 38px;
    border-radius: 28px;
  }

  .creator-cards {
    gap: 7px;
  }

  .creator-card {
    border-radius: 16px 16px 9px 9px;
  }

  .creator-card img {
    height: 48vw;
  }

  .creator-card div {
    padding: 34px 8px 9px;
  }

  .creator-card strong {
    font-size: .68rem;
  }

  .creator-card span {
    font-size: .48rem;
  }

  .report-section {
    min-height: 0;
    padding: 94px 20px 115px;
  }

  .report-dashboard {
    padding: 25px 18px 35px;
    border-radius: 26px;
  }

  .report-metrics {
    grid-template-columns: 1fr;
  }

  .report-metric {
    padding: 19px 8px;
  }

  .report-metric + .report-metric {
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 0;
  }

  .report-metric strong {
    font-size: 3.5rem;
  }

  .report-visual {
    grid-template-columns: 1fr;
  }

  .report-chart {
    min-height: 215px;
    padding-inline: 14px;
  }

  .contact-section {
    min-height: 650px;
    padding: 90px 20px 185px;
  }

  .contact-copy h2 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .contact-mascot {
    right: 50%;
    width: 200px;
    transform: translateX(50%);
    opacity: .42;
  }

  .worry-card:not(:last-of-type)::after {
    right: 50%;
    top: auto;
    bottom: -20px;
    border-top: 12px solid var(--blue);
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    transform: translateX(50%);
  }
}

/* Hand-drawn artwork only: preserve supplied pixels and use layout scaling only. */
.handdrawn-character {
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: none !important;
  animation: none !important;
  transition: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.worry-card:hover .handdrawn-character,
.simple-steps article:hover .handdrawn-character,
.simple-steps article.is-active .handdrawn-character {
  transform: none !important;
}

.creator-cards-handdrawn {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.creator-card-handdrawn {
  position: relative;
  width: min(360px, 100%);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(23, 59, 122, .14);
  border-radius: 34px 34px 18px 18px;
  background: linear-gradient(145deg, #fff8ee, #f5fbff 55%, #fff2f6);
  box-shadow: 0 24px 55px rgba(24, 57, 112, .14);
}

.creator-card-handdrawn > img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: contain;
  object-position: center bottom;
  filter: none !important;
  transform: none !important;
}

.creator-card-handdrawn > span {
  position: absolute;
  inset: auto 0 0;
  display: block;
  padding: 68px 22px 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(10, 35, 80, .9));
}

.creator-card-handdrawn > span b,
.creator-card-handdrawn > span small { display: block; }
.creator-card-handdrawn > span small { margin-top: 4px; font-size: .7rem; letter-spacing: .15em; }

.merch-card-design-sheet img { object-fit: contain; padding: 10px; }

@media (max-width: 760px) {
  .creator-card-handdrawn,
  .creator-card-handdrawn > img { min-height: 360px; height: 360px; }
}

/* VER.3 cohesion pass: keep full-page surfaces light and reserve depth for UI cards. */
.section-divider {
  opacity: .72;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(239, 79, 101, .82) 0 11px,
      #fff 11px 19px,
      rgba(253, 187, 31, .84) 19px 30px,
      #fff 30px 38px,
      rgba(75, 155, 211, .82) 38px 49px,
      #fff 49px 57px,
      rgba(23, 59, 122, .82) 57px 68px,
      #fff 68px 76px
    );
}

.section-divider span {
  background: #fff;
  color: var(--brand-navy);
  border-color: rgba(23, 59, 122, .22);
  box-shadow: 0 2px 10px rgba(23, 59, 122, .08);
}

.comparison-section {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(239, 79, 101, .2), transparent 27%),
    radial-gradient(circle at 52% 108%, rgba(253, 187, 31, .12), transparent 27%),
    radial-gradient(circle at 93% 16%, rgba(75, 155, 211, .17), transparent 28%),
    linear-gradient(112deg, #fff0f2 0%, #fff 45%, #fff 59%, #eef7fc 100%);
}

.comparison-section::before {
  opacity: .13;
}

.comparison-section .comparison-wallpaper {
  color: rgba(23, 59, 122, .035);
  -webkit-text-stroke-color: rgba(23, 59, 122, .07);
}

.comparison-section .comparison-word-track {
  color: rgba(23, 59, 122, .055);
}

.comparison-section .comparison-copy .kicker {
  color: var(--coral) !important;
}

.comparison-section .comparison-copy h2,
.comparison-section .comparison-copy > p:not(.kicker) {
  color: var(--brand-ink);
  text-shadow: none;
}

.comparison-section .comparison-copy > p:not(.kicker) {
  opacity: .72;
}

.comparison-title-accent,
.comparison-card-head h3 span {
  background: linear-gradient(95deg, var(--sky), var(--brand-navy) 34%, var(--sun) 64%, var(--coral));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
}

.compare-vpop {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 90% 5%, rgba(239, 79, 101, .11), transparent 24%),
    radial-gradient(circle at 7% 96%, rgba(253, 187, 31, .11), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 249, 252, .96));
  border-color: rgba(75, 155, 211, .42);
  box-shadow:
    0 30px 74px rgba(23, 59, 122, .14),
    inset 3px 0 0 rgba(75, 155, 211, .72),
    inset -3px 0 0 rgba(239, 79, 101, .62);
}

.compare-brand {
  color: var(--brand-navy);
  border-color: rgba(75, 155, 211, .42);
  background: rgba(255, 255, 255, .82);
}

.comparison-card-head > p {
  color: rgba(16, 42, 86, .66);
}

.comparison-benefits > li {
  color: var(--brand-ink);
  border-color: rgba(23, 59, 122, .13);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(23, 59, 122, .055);
}

.benefit-main {
  color: var(--brand-ink);
}

.benefit-arrow {
  color: var(--sky);
}

.benefit-burden {
  color: var(--brand-ink);
  background: #f2f5f9;
  border-color: rgba(23, 59, 122, .1);
}

.benefit-burden small {
  color: var(--coral-deep);
  border-color: rgba(239, 79, 101, .42);
  background: rgba(255, 255, 255, .74);
}

.benefit-burden p {
  color: #3e4e69;
}

.comparison-chat {
  color: var(--brand-navy);
  border-color: rgba(75, 155, 211, .24);
  background: rgba(255, 255, 255, .6);
}

.contact-section {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 6% 16%, rgba(75, 155, 211, .18), transparent 25%),
    radial-gradient(circle at 50% 106%, rgba(253, 187, 31, .18), transparent 29%),
    radial-gradient(circle at 94% 14%, rgba(239, 79, 101, .15), transparent 27%),
    linear-gradient(135deg, #f5fafc 0%, #fff 48%, #fff7eb 100%);
}

.contact-section::before {
  opacity: .12;
  background-image: radial-gradient(circle, rgba(23, 59, 122, .42) 0 1.2px, transparent 1.5px);
}

.contact-type {
  color: transparent;
  -webkit-text-stroke-color: rgba(23, 59, 122, .055);
}

.contact-copy {
  width: min(920px, calc(100% - 48px));
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  border: 1px solid rgba(75, 155, 211, .28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 79, 101, .08), transparent 26%),
    rgba(255, 255, 255, .86);
  box-shadow:
    0 32px 80px rgba(23, 59, 122, .13),
    inset 0 3px 0 rgba(253, 187, 31, .72);
  backdrop-filter: blur(12px);
}

.contact-live {
  color: var(--brand-navy);
  border-color: rgba(75, 155, 211, .36);
  background: #f7fafc;
  box-shadow:
    inset 3px 0 0 var(--sky),
    inset -3px 0 0 var(--coral);
}

.contact-live small {
  color: #66758d;
}

.contact-copy > p:not(.contact-reassurance):not(.contact-note),
.contact-section > p {
  color: var(--sky);
}

.contact-copy h2,
.contact-context,
.contact-reassurance {
  color: var(--brand-ink) !important;
  text-shadow: none;
}

.contact-title-accent {
  background: linear-gradient(92deg, var(--sky) 0%, var(--brand-navy) 30%, var(--sun) 62%, var(--coral) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
}

.contact-note,
.contact-copy > small {
  color: rgba(16, 42, 86, .6);
}

.contact-x-button {
  color: var(--brand-navy);
  border-color: rgba(23, 59, 122, .3);
  background: #fff;
}

.contact-mascot {
  filter: drop-shadow(0 22px 28px rgba(23, 59, 122, .18));
}

@media (max-width: 760px) {
  .comparison-section {
    background:
      radial-gradient(circle at 6% 12%, rgba(239, 79, 101, .18), transparent 25%),
      radial-gradient(circle at 94% 10%, rgba(75, 155, 211, .15), transparent 25%),
      radial-gradient(circle at 50% 100%, rgba(253, 187, 31, .11), transparent 24%),
      linear-gradient(155deg, #fff0f2, #fff 48%, #eef7fc);
  }

  .contact-section {
    background:
      radial-gradient(circle at 6% 10%, rgba(75, 155, 211, .16), transparent 23%),
      radial-gradient(circle at 94% 8%, rgba(239, 79, 101, .13), transparent 25%),
      radial-gradient(circle at 50% 100%, rgba(253, 187, 31, .15), transparent 24%),
      linear-gradient(155deg, #f6fafc, #fff 48%, #fff8ed);
  }

  .contact-copy {
    width: calc(100% - 28px);
    padding: 28px 18px 94px;
    border-radius: 22px;
  }
}

/* Use the supplied official logo artwork without reconstruction. */
.brand-mark,
.brand-word {
  display: none !important;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 132px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  height: 58px;
  max-width: 158px;
}

@media (max-width: 760px) {
  .brand-logo {
    height: 44px;
    max-width: 120px;
  }

  .footer-brand .brand-logo {
    height: 50px;
    max-width: 138px;
  }
}

/* VER.3 palette polish: expand the logo colors and lock light-section contrast. */
.worries-section .section-heading h2,
.report-section .report-heading h2,
.report-section .report-heading > p,
.report-section .report-heading h2 span:not(.story-title-accent) {
  color: var(--brand-ink) !important;
  text-shadow: none !important;
}

.worries-section .section-heading .kicker {
  color: var(--coral) !important;
}

.worries-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(253, 187, 31, .17), transparent 22%),
    radial-gradient(circle at 88% 24%, rgba(239, 79, 101, .12), transparent 24%),
    radial-gradient(circle at 50% 95%, rgba(75, 155, 211, .13), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff 45%, #f5fafc 100%);
}

.comparison-section {
  background:
    radial-gradient(circle at 9% 22%, rgba(75, 155, 211, .78), transparent 30%),
    radial-gradient(circle at 48% 108%, rgba(253, 187, 31, .42), transparent 30%),
    radial-gradient(circle at 93% 18%, rgba(239, 79, 101, .62), transparent 31%),
    linear-gradient(125deg, #12356c 0%, #173b7a 45%, #493252 100%);
}

.comparison-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background:
    radial-gradient(ellipse at 12% 18%, var(--sky) 0 2.2%, transparent 2.4%),
    radial-gradient(ellipse at 18% 25%, var(--sun) 0 1.5%, transparent 1.7%),
    radial-gradient(ellipse at 88% 22%, var(--coral) 0 2%, transparent 2.2%);
  filter: blur(1px);
}

.compare-vpop {
  background:
    radial-gradient(circle at 88% 8%, rgba(239, 79, 101, .28), transparent 25%),
    radial-gradient(circle at 9% 94%, rgba(253, 187, 31, .16), transparent 28%),
    linear-gradient(145deg, rgba(75, 155, 211, .2), rgba(255, 255, 255, .09) 50%, rgba(239, 79, 101, .13));
  border-color: rgba(255, 255, 255, .52);
  box-shadow:
    0 28px 70px rgba(8, 28, 69, .32),
    inset 3px 0 0 rgba(75, 155, 211, .72),
    inset -3px 0 0 rgba(239, 79, 101, .62);
}

.comparison-benefits > li:nth-child(1) .benefit-check {
  background: linear-gradient(135deg, #fff, #ffdce1);
  color: var(--coral-deep);
}

.comparison-benefits > li:nth-child(2) .benefit-check {
  background: linear-gradient(135deg, #fff, var(--sun-soft));
  color: #a96800;
}

.comparison-benefits > li:nth-child(3) .benefit-check {
  background: linear-gradient(135deg, #fff, var(--sky-soft));
  color: var(--brand-navy);
}

.comparison-benefits > li:nth-child(4) .benefit-check {
  background: linear-gradient(135deg, #fff, #e7eef8);
  color: var(--brand-navy);
}

.comparison-benefits > li:nth-child(1) { border-left-color: rgba(239, 79, 101, .72); }
.comparison-benefits > li:nth-child(2) { border-left-color: rgba(253, 187, 31, .78); }
.comparison-benefits > li:nth-child(3) { border-left-color: rgba(75, 155, 211, .8); }
.comparison-benefits > li:nth-child(4) { border-left-color: rgba(255, 255, 255, .62); }

.report-section {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(253, 187, 31, .14), transparent 23%),
    radial-gradient(circle at 90% 18%, rgba(75, 155, 211, .14), transparent 28%),
    radial-gradient(circle at 78% 90%, rgba(239, 79, 101, .08), transparent 23%),
    linear-gradient(180deg, #fffdf9 0%, #fff 38%, #f4f8fb 100%);
}

.report-section .report-heading .kicker {
  color: var(--sky) !important;
}

.report-section .report-heading > p {
  opacity: .76;
}

.report-dashboard {
  background:
    radial-gradient(circle at 90% 8%, rgba(239, 79, 101, .3), transparent 25%),
    radial-gradient(circle at 12% 100%, rgba(75, 155, 211, .26), transparent 28%),
    linear-gradient(138deg, #102d62 0%, #173b7a 62%, #3e3157 100%);
  border-color: rgba(75, 155, 211, .68);
  box-shadow:
    0 34px 80px rgba(23, 59, 122, .2),
    inset 0 3px 0 rgba(253, 187, 31, .76);
}

.report-metrics article:nth-child(1) {
  border-top: 3px solid var(--sky);
  background: rgba(75, 155, 211, .13);
}

.report-metrics article:nth-child(2) {
  border-top: 3px solid var(--sun);
  background: rgba(253, 187, 31, .1);
}

.report-metrics article:nth-child(3) {
  border-top: 3px solid var(--coral);
  background: rgba(239, 79, 101, .12);
}

.report-metrics article:nth-child(1) small { color: #91d3ff; }
.report-metrics article:nth-child(2) small { color: #ffdc6d; }
.report-metrics article:nth-child(3) small { color: #ff9daa; }

.report-insight {
  border: 1px solid rgba(239, 79, 101, .34);
  background:
    radial-gradient(circle at 95% 10%, rgba(253, 187, 31, .12), transparent 30%),
    rgba(39, 35, 92, .78);
}

.contact-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(75, 155, 211, .8), transparent 30%),
    radial-gradient(circle at 48% 112%, rgba(253, 187, 31, .38), transparent 31%),
    radial-gradient(circle at 94% 16%, rgba(239, 79, 101, .74), transparent 34%),
    linear-gradient(125deg, #12366e 0%, #173b7a 47%, #4b294c 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .9) 0 1.2px, transparent 1.5px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000, transparent 46%, #000);
}

.contact-live {
  background: rgba(16, 42, 86, .36);
  box-shadow:
    inset 3px 0 0 var(--sky),
    inset -3px 0 0 var(--coral);
}

.contact-reassurance {
  color: #fff;
}

.contact-note {
  color: rgba(255, 255, 255, .72);
}

.contact-form-button {
  background: linear-gradient(110deg, var(--sun) 0%, var(--coral) 64%, #f56b7b 100%);
  color: #fff;
}

.contact-x-button {
  background: rgba(16, 42, 86, .46);
}

@media (max-width: 760px) {
  .worries-section .section-heading h2,
  .report-section .report-heading h2,
  .report-section .report-heading > p {
    color: var(--brand-ink) !important;
  }

  .comparison-section {
    background:
      radial-gradient(circle at 5% 15%, rgba(75, 155, 211, .68), transparent 27%),
      radial-gradient(circle at 92% 10%, rgba(239, 79, 101, .5), transparent 25%),
      radial-gradient(circle at 48% 100%, rgba(253, 187, 31, .24), transparent 26%),
      linear-gradient(150deg, #12356c, #173b7a 58%, #403052);
  }

  .contact-section {
    background:
      radial-gradient(circle at 7% 14%, rgba(75, 155, 211, .7), transparent 25%),
      radial-gradient(circle at 94% 10%, rgba(239, 79, 101, .58), transparent 28%),
      radial-gradient(circle at 50% 100%, rgba(253, 187, 31, .22), transparent 25%),
      linear-gradient(150deg, #12356c, #173b7a 56%, #472c4e);
  }
}

/* Read the benefit first, then its proof value. */
.hero-points {
  gap: clamp(18px, 2vw, 30px);
}

.hero-points li {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) max-content;
  align-items: center;
  gap: 10px;
  min-width: 138px;
}

.hero-points li > span {
  display: grid;
  gap: 2px;
  order: 1;
  color: var(--muted);
  line-height: 1.25;
}

.hero-points li > span strong {
  color: #13254c;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-points li > span small {
  color: #64728f;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-points li > b {
  order: 2;
  min-width: 42px;
  color: #0968f6;
  font-size: 31px;
  text-align: right;
  background: linear-gradient(105deg, #0868f7 0%, #3188ff 58%, #875eff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-points li > b small {
  margin-left: 1px;
  font-size: 12px;
  letter-spacing: 0;
}

@media (max-width: 560px) {
  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
  }

  .hero-points li > span {
    text-align: center;
  }

  .hero-points li > b {
    min-width: 0;
    text-align: center;
  }
}

/* Rebalance the hero artwork toward the copy on every viewport. */
@media (min-width: 981px) {
  .hero-art {
    left: -3.5%;
    width: 103.5%;
  }
}

@media (min-width: 561px) and (max-width: 980px) {
  .hero-art {
    left: -5%;
    width: 105%;
  }
}

@media (max-width: 560px) {
  .hero-art {
    width: 100%;
  }

  .hero-art img {
    width: 126%;
    margin-left: -26%;
    object-position: right center;
  }
}

/* Compact, intentional WHY VPOP layout for phone screens. */
@media (max-width: 560px) {
  .comparison-section {
    padding: 62px 16px 76px;
  }

  .comparison-copy h2 {
    margin-top: 14px;
    font-size: clamp(2.15rem, 10.4vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -.055em;
  }

  .comparison-title-accent {
    margin-top: .12em;
  }

  .comparison-copy > p:not(.kicker) {
    max-width: 100%;
    margin-top: 24px;
    font-size: .85rem;
    line-height: 1.8;
  }

  .comparison-stage {
    margin-top: 26px;
  }

  .comparison-column.vpop {
    padding: 20px 16px 18px;
    border-radius: 22px;
  }

  .comparison-card-head {
    min-height: 0;
    padding-right: 0;
  }

  .comparison-column.vpop .comparison-card-head h3 {
    max-width: none;
    margin: 58px 0 10px;
    font-size: clamp(1.8rem, 8vw, 2.08rem);
    line-height: 1.08;
    letter-spacing: -.045em;
  }

  .comparison-card-head p {
    max-width: none;
    margin-top: 14px;
    font-size: .78rem;
    line-height: 1.7;
  }

  .comparison-character {
    top: 14px;
    right: 4px;
    width: 84px;
  }

  .comparison-benefits {
    gap: 10px;
    margin-top: 22px;
  }

  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4) {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    transform: none !important;
  }

  .comparison-column.vpop .benefit-main {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 66px;
    padding: 11px 13px;
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .comparison-column.vpop .benefit-main > b {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .comparison-column.vpop .benefit-arrow {
    display: none !important;
  }

  .comparison-column.vpop .benefit-burden {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    min-height: 52px;
    margin: 0;
    padding: 10px 13px;
    border-radius: 0;
  }

  .comparison-column.vpop .benefit-burden small {
    min-width: 92px;
    padding-right: 11px !important;
    font-size: .62rem;
  }

  .comparison-column.vpop .benefit-burden p {
    font-size: .69rem;
    font-weight: 700;
    line-height: 1.45;
  }
}

/* --------------------------------------------------------------------------
   2026-07-30 final desktop composition and animated section backgrounds
   -------------------------------------------------------------------------- */

.worries-section {
  background:
    radial-gradient(circle, rgba(21, 103, 255, .13) 1.5px, transparent 1.8px),
    radial-gradient(circle at 8% 24%, rgba(255, 77, 162, .16), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(36, 127, 255, .2), transparent 27%),
    linear-gradient(120deg, #f9fbff 0%, #edf5ff 46%, #f4efff 100%);
  background-size: 24px 24px, 150% 150%, 165% 165%, 180% 180%;
  animation: popSectionDrift 18s ease-in-out infinite alternate;
}

.three-steps {
  background:
    repeating-linear-gradient(-45deg, rgba(22, 102, 255, .045) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 10% 18%, rgba(57, 178, 255, .23), transparent 27%),
    radial-gradient(circle at 90% 82%, rgba(153, 74, 255, .23), transparent 28%),
    linear-gradient(125deg, #fbfdff 0%, #edf6ff 50%, #f6f0ff 100%);
  background-size: 32px 32px, 155% 155%, 165% 165%, 180% 180%;
  animation: popSectionDrift 20s ease-in-out -6s infinite alternate;
}

.full-support {
  background-size: 165% 165%, 170% 170%, 180% 180%;
  animation: deepSectionDrift 17s ease-in-out infinite alternate;
}

.comparison-section {
  background-size: 150% 150%, 160% 160%, 180% 180%;
  animation: deepSectionDrift 20s ease-in-out -7s infinite alternate;
}

.zero-price {
  gap: 12px;
}

.zero-price strong {
  letter-spacing: -.035em;
}

.zero-price small {
  flex: 0 0 auto;
  padding-bottom: 16px;
}

.support-flow li:nth-child(odd),
.support-flow li:nth-child(even) {
  transform: none;
}

.support-flow li.is-active,
.support-flow li:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px rgba(255, 255, 255, .35), 0 25px 48px rgba(29, 7, 93, .3);
}

@media (min-width: 761px) {
  .hero {
    grid-template-columns: minmax(610px, .96fr) minmax(680px, 1.04fr);
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero h1 {
    font-size: clamp(52px, 3.55vw, 68px);
    line-height: 1.08;
  }

  .hero-art img {
    object-position: 58% center;
  }

  .worry-stage {
    align-items: stretch;
  }

  .worry-card,
  .worry-card-center {
    min-height: 365px;
    transform: none;
  }

  .worry-card:hover,
  .worry-card-center:hover {
    transform: translateY(-7px);
  }

  .simple-steps {
    align-items: stretch;
  }

  .simple-steps article,
  .simple-steps article:nth-of-type(1),
  .simple-steps article:nth-of-type(2),
  .simple-steps article:nth-of-type(3) {
    min-height: 412px;
    transform: none;
  }

  .simple-steps article.is-active,
  .simple-steps article:hover {
    transform: none;
    border-color: rgba(30, 105, 255, .58);
    box-shadow: 0 32px 72px rgba(29, 71, 148, .2), 0 0 0 5px rgba(78, 145, 255, .055);
  }

  .simple-icon {
    top: 27px;
    right: 27px;
    width: 52px;
    height: 52px;
  }

  .simple-step-character {
    height: 228px;
    margin-top: 20px;
  }

  .comparison-section {
    grid-template-columns: minmax(350px, 420px) minmax(820px, 1080px);
    justify-content: center;
    gap: clamp(42px, 4vw, 72px);
    min-height: 900px;
    padding-inline: clamp(48px, 6vw, 118px);
  }

  .comparison-copy h2 {
    font-size: clamp(3.2rem, 4.1vw, 4.85rem);
  }

  .comparison-stage {
    width: 100%;
    max-width: 1080px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .comparison-column,
  .comparison-column.vpop,
  .comparison-column.self {
    align-self: stretch;
    min-width: 0;
    min-height: 650px;
    padding: 34px 30px 30px;
    transform: none;
  }

  .comparison-column h3,
  .comparison-column.vpop h3,
  .comparison-column.self h3 {
    max-width: 68%;
    margin: 24px 0 0;
    font-size: clamp(1.85rem, 2.05vw, 2.35rem);
    line-height: 1.12;
    word-break: keep-all;
  }

  .comparison-character {
    top: 138px;
    right: -12px;
    width: 245px;
  }

  .comparison-column ul,
  .comparison-column.vpop ul,
  .comparison-column.self ul {
    position: absolute;
    z-index: 4;
    right: 26px;
    bottom: 28px;
    left: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: none;
  }

  .comparison-column li,
  .comparison-column.vpop li,
  .comparison-column.self li,
  .comparison-column.vpop li:nth-child(1),
  .comparison-column.vpop li:nth-child(2),
  .comparison-column.vpop li:nth-child(3),
  .comparison-column.vpop li:nth-child(4),
  .comparison-column.self li:nth-child(1),
  .comparison-column.self li:nth-child(2),
  .comparison-column.self li:nth-child(3),
  .comparison-column.self li:nth-child(4) {
    min-height: 116px;
    padding: 15px 13px;
    border-radius: 20px;
    transform: none;
  }

  .comparison-column li:hover,
  .comparison-column.vpop li:hover,
  .comparison-column.self li:hover {
    transform: translateY(-5px);
  }

  .comparison-column.self h3 {
    max-width: 72%;
  }

  .self-lead {
    max-width: 70%;
    margin-top: 18px;
  }

  .self-character {
    right: 8px;
    bottom: 234px;
    width: 218px;
  }

  .comparison-vs {
    top: 50%;
  }
}

@keyframes pastelSectionDrift {
  0% { background-position: 0% 10%, 100% 90%, 0% 50%; }
  100% { background-position: 18% 28%, 82% 68%, 100% 50%; }
}

@keyframes deepSectionDrift {
  0% { background-position: 0% 0%, 100% 100%, 0% 50%; }
  100% { background-position: 22% 18%, 78% 82%, 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .worries-section,
  .three-steps,
  .full-support,
  .comparison-section {
    animation: none !important;
  }
}

/* VTuber-pop layer learned from the rhythm of leading industry sites:
   oversized type, repeating dots, vivid accents, and motion without layout shift. */
.worries-section {
  background:
    radial-gradient(circle, rgba(21, 103, 255, .13) 1.5px, transparent 1.8px),
    radial-gradient(circle at 8% 24%, rgba(255, 77, 162, .16), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(36, 127, 255, .2), transparent 27%),
    linear-gradient(120deg, #f9fbff 0%, #edf5ff 46%, #f4efff 100%);
  background-size: 24px 24px, 150% 150%, 165% 165%, 180% 180%;
  animation: popSectionDrift 18s ease-in-out infinite alternate;
}

.worries-section .section-heading {
  position: relative;
  z-index: 2;
}

.worries-section .section-heading::before {
  content: "FIRST MERCH";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 46%;
  color: transparent;
  font: 900 clamp(6rem, 13vw, 12rem)/.8 "Arial Black", sans-serif;
  letter-spacing: -.07em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(40, 107, 255, .075);
  transform: translate(-50%, -50%);
  animation: typePulse 7s ease-in-out infinite;
}

.worry-card {
  border-top: 4px solid #1688ff;
}

.worry-card:nth-child(2) {
  border-top-color: #7657ff;
}

.worry-card:nth-child(3) {
  border-top-color: #ff4b9b;
}

.three-steps {
  background:
    repeating-linear-gradient(-45deg, rgba(22, 102, 255, .045) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 10% 18%, rgba(57, 178, 255, .23), transparent 27%),
    radial-gradient(circle at 90% 82%, rgba(153, 74, 255, .23), transparent 28%),
    linear-gradient(125deg, #fbfdff 0%, #edf6ff 50%, #f6f0ff 100%);
  background-size: 32px 32px, 155% 155%, 165% 165%, 180% 180%;
  animation: popSectionDrift 20s ease-in-out -6s infinite alternate;
}

.simple-steps article {
  border-top: 4px solid #1688ff;
}

.simple-steps article:nth-of-type(2) {
  border-top-color: #7657ff;
}

.simple-steps article:nth-of-type(3) {
  border-top-color: #ff4b9b;
}

.simple-steps article.is-active,
.simple-steps article:hover {
  transform: none !important;
  border-color: rgba(30, 105, 255, .58);
  box-shadow: 0 32px 72px rgba(29, 71, 148, .2), 0 0 0 5px rgba(78, 145, 255, .055);
}

.support-flow li.is-active,
.support-flow li:hover {
  transform: none !important;
  border-color: rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px rgba(255, 255, 255, .35), 0 25px 48px rgba(29, 7, 93, .3);
}

@keyframes popSectionDrift {
  0% { background-position: 0 0, 0% 10%, 100% 90%, 0% 50%; }
  100% { background-position: 36px 22px, 18% 28%, 82% 68%, 100% 50%; }
}

@keyframes typePulse {
  0%, 100% { opacity: .45; transform: translate(-50%, -50%) scale(.98); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .worries-section .section-heading::before {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-section,
  .news-wallpaper,
  .news-ambient i,
  .news-orbit,
  .news-card.is-active img,
  .news-card.is-side,
  .comparison-wallpaper,
  .works-wallpaper,
  .report-wallpaper,
  .contact-wallpaper,
  .merch-track,
  .contact-aurora,
  .contact-mascot {
    animation: none !important;
  }

  .report-bar {
    transform: scaleY(1);
  }
}

/* Compatibility with the original ver.2 markup kept for Claude handoff. */
.comparison-copy > p:not(.kicker):not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 2;
}

.comparison-label small,
.comparison-label strong {
  display: inline;
}

.comparison-label small {
  margin-right: 6px;
}

.comparison-promise > span {
  width: 82px;
  height: 66px;
  padding: 0 8px;
  font-size: .78rem;
  line-height: 1.08;
  letter-spacing: .08em;
  text-align: center;
}

.comparison-column li {
  grid-template-columns: 31px 1fr auto;
}

.comparison-column li div b,
.comparison-column li div small {
  display: block;
}

.comparison-column li div small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
}

.self li div small {
  color: rgba(255, 255, 255, .48);
}

.comparison-column li i {
  color: var(--blue);
  font-style: normal;
}

.merch-card > div {
  padding: 19px 22px 22px;
}

.merch-card > div b,
.merch-card > div small {
  display: block;
}

.merch-card > div b {
  color: var(--ink);
  font-size: 1.18rem;
}

.merch-card-handdrawn-mix > div b {
  font-size: clamp(.92rem, 1.15vw, 1.08rem);
  line-height: 1.45;
}

.merch-card > div small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .84rem;
}

.creator-cards .creator-card > span {
  position: absolute;
  inset: auto 0 0;
  display: block;
  padding: 50px 16px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(15, 10, 44, .92));
}

.creator-cards .creator-card > span b,
.creator-cards .creator-card > span small {
  display: block;
}

.creator-copy .text-link {
  color: #fff;
}

.creator-cards .creator-card > span small {
  margin-top: 3px;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
  opacity: .72;
}

.report-heading > .kicker {
  color: #86eaff;
}

.report-heading > p:last-child {
  max-width: 390px;
  color: rgba(255, 255, 255, .67);
  line-height: 1.8;
}

.report-metric > small:first-child {
  display: block;
  margin-bottom: 11px;
  color: #8feaff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.report-metric > span:last-child {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0;
}

.report-bar i {
  position: absolute;
  left: 50%;
  bottom: -26px;
  color: rgba(255, 255, 255, .55);
  font-size: .64rem;
  font-style: normal;
  transform: translateX(-50%);
}

.report-bar[data-label]::after {
  display: none;
}

.report-insight b,
.report-insight small {
  display: block;
}

.report-insight b {
  margin: 12px 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.35;
}

.report-insight small {
  color: var(--muted);
  line-height: 1.8;
}

.report-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.contact-section > .contact-aurora {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  filter: none;
  opacity: 1;
  background: none;
  animation: none;
}

.contact-aurora-orb {
  position: absolute;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .38;
  animation: auroraMove 11s ease-in-out infinite alternate;
}

.contact-aurora-orb.a {
  left: -15vw;
  top: -16vw;
  background: #076cff;
}

.contact-aurora-orb.b {
  right: -14vw;
  bottom: -18vw;
  background: #ff1688;
  animation-delay: -5s;
}

.contact-copy > p:first-child {
  color: #8deeff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.contact-copy > small {
  display: block;
  max-width: 590px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, .48);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .comparison-column li {
    grid-template-columns: 31px 1fr auto;
  }

  .report-heading > p:last-child {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-aurora-orb {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Mobile-first polish: three actions / full support / comparison
   -------------------------------------------------------------------------- */

.three-steps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(74, 174, 255, .18), transparent 25%),
    radial-gradient(circle at 92% 84%, rgba(133, 82, 255, .16), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.three-steps,
.full-support,
.comparison-section {
  scroll-margin-top: 88px;
}

.three-steps::before {
  content: "ONLY THREE STEPS";
  position: absolute;
  z-index: -1;
  left: -2vw;
  top: 42%;
  color: transparent;
  font: 900 clamp(6rem, 14vw, 14rem)/.8 "Arial Black", sans-serif;
  letter-spacing: -.06em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(20, 99, 255, .07);
  animation: wallpaperSlide 28s linear infinite;
}

.simple-steps {
  max-width: 1220px;
  gap: 18px;
  align-items: stretch;
}

.simple-steps article {
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  padding: 30px 28px 28px;
  border: 1px solid rgba(46, 118, 255, .18);
  border-radius: 32px;
  text-align: left;
  background:
    radial-gradient(circle at 88% 20%, rgba(74, 181, 255, .18), transparent 30%),
    rgba(255, 255, 255, .9);
  box-shadow: 0 25px 55px rgba(29, 71, 148, .11);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease, border-color .45s ease;
}

.simple-steps article:nth-of-type(2) {
  background:
    radial-gradient(circle at 88% 20%, rgba(146, 87, 255, .18), transparent 30%),
    rgba(255, 255, 255, .9);
}

.simple-steps article:nth-of-type(3) {
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 43, 139, .14), transparent 30%),
    rgba(255, 255, 255, .9);
}

.simple-steps article.is-active,
.simple-steps article:hover {
  border-color: rgba(30, 105, 255, .48);
  box-shadow: 0 34px 70px rgba(29, 71, 148, .2);
  transform: translateY(-12px);
}

.simple-steps article > span {
  z-index: 3;
  top: 24px;
  left: 26px;
  font-size: .72rem;
}

.simple-steps article > span::before {
  content: "STEP ";
  opacity: .55;
}

.simple-icon {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 16px;
  transform: scale(.72);
  transform-origin: center;
}

.simple-step-character {
  display: block;
  width: 100%;
  height: 220px;
  margin: 18px 0 5px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 18px rgba(35, 70, 137, .16));
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.simple-steps article:hover .simple-step-character,
.simple-steps article.is-active .simple-step-character {
  transform: translateY(-6px) scale(1.04);
}

.simple-steps h3 {
  position: relative;
  z-index: 2;
  margin: 3px 0 10px;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.simple-steps p {
  position: relative;
  z-index: 2;
  font-size: .84rem;
}

.simple-steps > i {
  align-self: center;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(24, 103, 255, .18);
  border-radius: 50%;
  color: #fff;
  font-size: 0;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(24, 103, 255, .22);
}

.simple-steps > i::after {
  content: "→";
  font-size: 1rem;
}

.full-support {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px);
  border: 0;
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(25, 137, 255, .55), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(147, 51, 255, .45), transparent 30%),
    linear-gradient(135deg, #071a53 0%, #102d80 58%, #24145f 100%);
  box-shadow: 0 35px 80px rgba(12, 36, 91, .22);
}

.full-support::before {
  content: "VPOP FULL SUPPORT";
  position: absolute;
  right: -3%;
  bottom: -5%;
  color: transparent;
  font: 900 clamp(5rem, 11vw, 11rem)/.75 "Arial Black", sans-serif;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
  pointer-events: none;
}

.full-support-head {
  position: relative;
  z-index: 2;
  align-items: center;
  border-bottom-color: rgba(255, 255, 255, .18);
}

.full-support-head p {
  color: #7fe7ff;
}

.full-support-head h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -.045em;
}

.support-flow {
  position: relative;
  z-index: 2;
  gap: 10px;
  padding-top: 34px;
}

.support-flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 5%;
  right: 5%;
  top: 83px;
  height: 2px;
  background: linear-gradient(90deg, #42d9ff, #4678ff 55%, #f546b1);
  opacity: .65;
}

.support-flow li {
  min-width: 0;
  padding: 18px 7px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(8px);
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.support-flow li.is-active,
.support-flow li:hover {
  border-color: rgba(121, 226, 255, .58);
  background: rgba(255, 255, 255, .15);
  transform: translateY(-9px);
}

.support-flow li:not(:last-child)::after {
  display: none;
}

.support-flow span {
  top: 10px;
  left: 10px;
  width: 27px;
  height: 27px;
  background: linear-gradient(135deg, #18bfff, #3163ff);
}

.support-flow img {
  width: 80px;
  height: 80px;
  margin: 0 auto 11px;
  filter: drop-shadow(0 12px 18px rgba(0, 15, 59, .3));
}

.support-flow b {
  min-height: 2.7em;
  color: #fff;
  font-size: .82rem;
  line-height: 1.35;
}

.support-flow small {
  min-height: 2.8em;
  color: rgba(255, 255, 255, .58);
  font-size: .65rem;
}

.comparison-column {
  overflow: hidden;
}

.comparison-column.vpop::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(72, 218, 255, .18);
  filter: blur(2px);
}

.comparison-column.vpop::after {
  content: "RECOMMENDED";
  position: absolute;
  top: 20px;
  right: -36px;
  width: 150px;
  padding: 7px 0;
  color: #fff;
  font: 900 .56rem/1 Arial, sans-serif;
  letter-spacing: .1em;
  text-align: center;
  background: linear-gradient(90deg, #ff167d, #ff4ca8);
  transform: rotate(38deg);
}

.comparison-column li {
  position: relative;
  overflow: hidden;
}

.comparison-column.vpop li::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #6bdfff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.comparison-column.vpop li:hover::after {
  transform: scaleX(1);
}

@media (max-width: 760px) {
  .three-steps {
    padding-top: 84px;
    padding-bottom: 96px;
  }

  .three-steps .section-heading {
    text-align: left;
  }

  .three-steps .section-heading h2 {
    max-width: 420px;
    font-size: clamp(1.9rem, 8.3vw, 2.35rem);
    line-height: 1.16;
    letter-spacing: -.055em;
  }

  .three-steps .section-heading .mobile-only {
    display: none;
  }

  .three-steps::before {
    top: 28%;
    font-size: 7rem;
    animation-duration: 34s;
  }

  .simple-steps {
    gap: 16px;
    margin-top: 38px;
  }

  .simple-steps article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 205px;
    padding: 58px 20px 24px 25px;
    border-radius: 28px;
  }

  .simple-steps article.is-active,
  .simple-steps article:hover {
    transform: translateY(-4px);
  }

  .simple-steps article > span {
    top: 22px;
    left: 25px;
  }

  .simple-icon {
    display: none;
  }

  .simple-step-character {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    width: 145px;
    height: 155px;
    margin: 0 -12px -24px -5px;
  }

  .simple-steps h3 {
    grid-column: 1;
    margin: 0 0 8px;
    font-size: 1.32rem;
  }

  .simple-steps p {
    grid-column: 1;
    align-self: start;
    font-size: .78rem;
    line-height: 1.7;
  }

  .simple-steps > i {
    width: 34px;
    height: 34px;
    margin: -7px auto;
    transform: none;
  }

  .simple-steps > i::after {
    content: "↓";
  }

  .full-support {
    margin-inline: -4px;
    padding: 38px 18px 24px;
    border-radius: 30px;
  }

  .full-support-head {
    text-align: left;
  }

  .full-support-head h3 {
    max-width: 360px;
    margin-top: 10px;
    font-size: 2.15rem;
    line-height: 1.15;
  }

  .support-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding-top: 26px;
  }

  .support-flow::before {
    display: none;
  }

  .support-flow li {
    display: block;
    min-height: 175px;
    padding: 16px 11px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
  }

  .support-flow li:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 82px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    min-height: 104px;
    padding-inline: 28px;
    text-align: left;
  }

  .support-flow span {
    top: 10px;
    left: 10px;
  }

  .support-flow img {
    width: 72px;
    height: 72px;
    margin: 3px auto 7px;
  }

  .support-flow li:last-child img {
    grid-row: 1 / span 2;
    width: 76px;
    height: 76px;
    margin: 0;
  }

  .support-flow b {
    min-height: 0;
    margin: 0 0 5px;
    font-size: .84rem;
  }

  .support-flow small {
    min-height: 0;
    margin: 0;
    font-size: .64rem;
  }

  .comparison-section {
    gap: 30px;
    padding-top: 82px;
  }

  .comparison-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .comparison-promise {
    margin-top: 28px;
  }

  .comparison-column {
    padding: 28px 20px 22px;
    border-radius: 28px;
  }

  .comparison-column h3 {
    margin-bottom: 20px;
  }

  .comparison-column ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .comparison-column li {
    display: block;
    min-height: 132px;
    padding: 15px 12px;
    font-size: .8rem;
    line-height: 1.5;
  }

  .comparison-column li > span:first-child {
    margin-bottom: 13px;
  }

  .comparison-column li div small {
    margin-top: 6px;
  }

  .comparison-column li i {
    position: absolute;
    right: 13px;
    top: 15px;
  }

  .comparison-column.self {
    background: rgba(255, 255, 255, .055);
  }
}

@media (prefers-reduced-motion: reduce) {
  .three-steps::before {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Story-driven support journey and VPOP transformation card
   -------------------------------------------------------------------------- */

.full-support {
  min-height: 570px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 207, 255, .42), transparent 22%),
    radial-gradient(circle at 90% 95%, rgba(255, 44, 153, .36), transparent 25%),
    linear-gradient(135deg, #1723c8 0%, #5423db 48%, #922df0 100%);
}

.full-support-head {
  max-width: 720px;
}

.full-support-head h3 {
  max-width: 650px;
  line-height: 1.08;
}

.support-flow {
  max-width: 940px;
  margin-right: auto;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
}

.support-flow::before {
  top: 79px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7cecff, #fff 50%, #ff7ac5);
  box-shadow: 0 0 30px rgba(255, 255, 255, .38);
}

.support-flow li {
  min-height: 180px;
  padding: 72px 10px 18px;
  border-color: rgba(255, 255, 255, .2);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .055));
  box-shadow: inset 0 1px rgba(255, 255, 255, .2), 0 18px 35px rgba(37, 9, 113, .18);
}

.support-flow li:nth-child(odd) {
  transform: translateY(13px);
}

.support-flow li:nth-child(even) {
  transform: translateY(-7px);
}

.support-flow li.is-active,
.support-flow li:hover {
  border-color: rgba(255, 255, 255, .62);
  background: linear-gradient(155deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .11));
  box-shadow: inset 0 1px rgba(255, 255, 255, .35), 0 25px 48px rgba(29, 7, 93, .3);
  transform: translateY(-16px) scale(1.025);
}

.support-flow img {
  display: none;
}

.support-flow span {
  top: 25px;
  left: 50%;
  width: 39px;
  height: 39px;
  border: 3px solid rgba(255, 255, 255, .7);
  font-size: .62rem;
  background: linear-gradient(135deg, #09d7ff, #2765ff 55%, #ff42a5);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .1), 0 10px 25px rgba(19, 6, 88, .3);
  transform: translateX(-50%);
}

.support-flow b {
  min-height: 2.8em;
  font-size: .85rem;
}

.support-flow small {
  font-size: .66rem;
}

.support-mascot {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: -34px;
  width: clamp(190px, 19vw, 280px);
  filter: drop-shadow(0 28px 32px rgba(25, 5, 74, .32));
  pointer-events: none;
  animation: supportMascotFloat 5s ease-in-out infinite;
}

.comparison-stage::before {
  display: none;
  content: "";
}

.comparison-vs {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: #fff;
  font: 900 .74rem/1 "Arial Black", sans-serif;
  letter-spacing: .05em;
  background: linear-gradient(135deg, #0bd5ff, #6b3dff 60%, #ff278d);
  box-shadow: 0 16px 34px rgba(10, 5, 64, .35);
  transform: translate(-50%, -50%);
}

.comparison-column.vpop {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(81, 231, 255, .52), transparent 25%),
    radial-gradient(circle at 14% 100%, rgba(255, 73, 168, .3), transparent 27%),
    linear-gradient(145deg, #1d4be5 0%, #5a2ee0 53%, #9825e9 100%);
  box-shadow: 0 35px 75px rgba(9, 7, 75, .42), inset 0 1px rgba(255, 255, 255, .35);
}

.comparison-column.vpop::before {
  right: -65px;
  top: -75px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .19);
  background: transparent;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, .035), 0 0 0 72px rgba(255, 255, 255, .025);
}

.comparison-column h3 {
  position: relative;
  z-index: 3;
  max-width: 72%;
  margin: 23px 0 30px;
  font-size: clamp(1.65rem, 2.2vw, 2.5rem);
  line-height: 1.08;
}

.comparison-column.vpop .comparison-label,
.compare-vpop .compare-brand {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
}

.comparison-character {
  position: absolute;
  z-index: 1;
  right: -58px;
  top: 42px;
  width: 270px;
  opacity: .9;
  filter: drop-shadow(0 24px 25px rgba(16, 3, 65, .28));
  pointer-events: none;
  transform: rotate(3deg);
  animation: comparisonCharacterFloat 5.4s ease-in-out infinite;
}

.comparison-column.vpop ul {
  position: relative;
  z-index: 3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-column.vpop li {
  min-height: 88px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px rgba(255, 255, 255, .2);
  backdrop-filter: blur(11px);
}

.comparison-column.vpop li:nth-child(1) { transform: rotate(-1deg); }
.comparison-column.vpop li:nth-child(2) { transform: rotate(1deg); }
.comparison-column.vpop li:nth-child(3) { transform: rotate(.7deg); }
.comparison-column.vpop li:nth-child(4) { transform: rotate(-.7deg); }

.comparison-column.vpop li:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-5px) rotate(0);
}

.comparison-column.vpop li div small {
  color: rgba(255, 255, 255, .65);
}

.comparison-column.vpop li > span:first-child {
  color: #1833b8;
  background: linear-gradient(135deg, #fff, #83f0ff);
}

.comparison-column.vpop li i {
  color: #8cf5ff;
}

.comparison-column.self {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px rgba(255, 255, 255, .11);
}

.comparison-column.self h3 {
  max-width: 100%;
  color: #fff;
}

.comparison-column.self ul {
  gap: 0;
}

.comparison-column.self li {
  min-height: 66px;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
}

.comparison-column.self li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@keyframes supportMascotFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-13px) rotate(2deg); }
}

@keyframes comparisonCharacterFloat {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@media (max-width: 1100px) {
  .support-flow {
    max-width: calc(100% - 155px);
  }
}

@media (max-width: 760px) {
  .full-support {
    min-height: 0;
    padding: 43px 18px 150px;
    border-radius: 34px;
  }

  .full-support-head {
    position: relative;
    z-index: 4;
    padding-bottom: 24px;
  }

  .full-support-head h3 {
    max-width: 310px;
    font-size: 2.35rem;
  }

  .support-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    padding: 28px 0 0 37px;
  }

  .support-flow::before {
    display: block;
    left: 18px;
    right: auto;
    top: 28px;
    bottom: 24px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, #7cecff, #fff 52%, #ff70bd);
  }

  .support-flow li,
  .support-flow li:last-child {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-column: auto;
    min-height: 90px;
    padding: 18px 18px 16px 22px;
    border-radius: 20px;
    text-align: left;
    transform: none;
  }

  .support-flow li:nth-child(even) {
    margin-left: 16px;
  }

  .support-flow li:nth-child(odd) {
    margin-right: 16px;
  }

  .support-flow li.is-active,
  .support-flow li:hover {
    transform: translateX(7px);
  }

  .support-flow span {
    left: -38px;
    top: 50%;
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
  }

  .support-flow b {
    min-height: 0;
    margin: 0 0 5px;
    font-size: 1rem;
  }

  .support-flow small {
    min-height: 0;
    font-size: .72rem;
  }

  .support-mascot {
    right: -8px;
    bottom: -31px;
    width: 185px;
  }

  .comparison-stage::before {
    display: none;
  }

  .comparison-vs {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    width: 48px;
    height: 48px;
    margin: -34px auto;
    transform: none;
  }

  .comparison-column.vpop {
    min-height: 620px;
    padding: 30px 20px 25px;
  }

  .comparison-column h3 {
    max-width: 70%;
    margin: 24px 0 170px;
    font-size: 2.15rem;
  }

  .comparison-character {
    right: -42px;
    top: 75px;
    width: 250px;
    opacity: .92;
  }

  .comparison-column.vpop ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .comparison-column.vpop li {
    min-height: 128px;
    padding: 15px 12px;
  }

  .comparison-column.self {
    padding: 30px 20px 24px;
  }

  .comparison-column.self h3 {
    margin: 22px 0 17px;
    font-size: 1.65rem;
  }

  .comparison-column.self ul {
    grid-template-columns: 1fr;
  }

  .comparison-column.self li {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: 68px;
    padding: 12px 5px;
  }

  .comparison-column.self li > span:first-child {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-mascot,
  .comparison-character {
    animation: none !important;
  }
}

/* Alignment correction + visual self-sales burden scene */

.comparison-column.self {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 65, 164, .2), transparent 27%),
    radial-gradient(circle at 10% 95%, rgba(66, 113, 255, .22), transparent 26%),
    linear-gradient(150deg, rgba(31, 43, 107, .94), rgba(41, 21, 82, .9));
}

.comparison-column.self::before {
  content: "TOO MANY TASKS";
  position: absolute;
  left: -20px;
  bottom: 18px;
  color: transparent;
  font: 900 4.5rem/.82 "Arial Black", sans-serif;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .065);
  transform: rotate(-8deg);
}

.comparison-column.self h3 {
  position: relative;
  z-index: 4;
  max-width: 68%;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 8px 28px rgba(5, 2, 35, .34);
}

.self-lead {
  position: relative;
  z-index: 4;
  max-width: 65%;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  line-height: 1.8;
}

.self-character {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: -15px;
  width: 245px;
  filter: drop-shadow(0 25px 28px rgba(6, 5, 42, .34));
  pointer-events: none;
  animation: selfCharacterDrift 5.2s ease-in-out infinite;
}

.comparison-column.self ul {
  position: relative;
  z-index: 3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 76%;
}

.comparison-column.self li {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .11);
  box-shadow: inset 0 1px rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
}

.comparison-column.self li b {
  color: #fff;
  text-shadow: 0 3px 14px rgba(4, 3, 32, .28);
}

.comparison-column.self li:nth-child(1) { transform: rotate(-2deg); }
.comparison-column.self li:nth-child(2) { transform: translateY(-8px) rotate(2deg); }
.comparison-column.self li:nth-child(3) { transform: translateX(8px) rotate(1deg); }
.comparison-column.self li:nth-child(4) { transform: translateY(-4px) rotate(-2deg); }

.comparison-column.self li:hover {
  border-color: rgba(255, 119, 191, .42);
  background: rgba(255, 255, 255, .12);
  transform: translateY(-5px) rotate(0);
}

@keyframes selfCharacterDrift {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-11px) rotate(-2deg); }
}

@media (max-width: 760px) {
  .support-flow li:nth-child(even),
  .support-flow li:nth-child(odd) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .support-flow li.is-active,
  .support-flow li:hover {
    transform: none;
  }

  .comparison-column.self {
    min-height: 650px;
    padding: 30px 20px 22px;
  }

  .comparison-column.self h3 {
    max-width: 82%;
    margin: 24px 0 9px;
    font-size: 2.05rem;
  }

  .self-lead {
    max-width: 78%;
    margin-bottom: 0;
    font-size: .75rem;
  }

  .self-character {
    right: 50%;
    bottom: 198px;
    width: 215px;
    opacity: 1;
    transform: translateX(50%);
  }

  .comparison-column.self ul {
    position: absolute;
    inset: auto 16px 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    max-width: none;
  }

  .comparison-column.self li {
    display: block;
    min-height: 105px;
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
  }

  .comparison-column.self li:nth-child(1) { transform: rotate(-1.5deg); }
  .comparison-column.self li:nth-child(2) { transform: translateY(-7px) rotate(1.5deg); }
  .comparison-column.self li:nth-child(3) { transform: translateX(3px) rotate(1deg); }
  .comparison-column.self li:nth-child(4) { transform: translateY(-4px) rotate(-1deg); }

  .comparison-column.self li > span:first-child {
    margin-bottom: 10px;
  }

  .comparison-column.self::before {
    bottom: 195px;
    font-size: 3.7rem;
  }

  .comparison-section {
    padding-bottom: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .self-character {
    animation: none !important;
  }
}

/* Final mobile alignment pass:
   keep every timeline/card on one grid and separate artwork from copy. */
@media (max-width: 760px) {
  .support-flow li,
  .support-flow li:nth-child(even),
  .support-flow li:nth-child(odd),
  .support-flow li.is-active,
  .support-flow li:hover {
    left: auto !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    transform: none !important;
  }

  .comparison-column.vpop {
    min-height: 680px;
  }

  .comparison-column.vpop h3 {
    max-width: 72%;
    margin: 24px 0 210px;
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .comparison-character {
    top: 202px;
    right: -6px;
    width: 182px;
  }

  .comparison-column.vpop li,
  .comparison-column.vpop li:nth-child(1),
  .comparison-column.vpop li:nth-child(2),
  .comparison-column.vpop li:nth-child(3),
  .comparison-column.vpop li:nth-child(4) {
    transform: none !important;
  }

  .comparison-column.self {
    min-height: 700px;
  }

  .self-character {
    right: 50%;
    bottom: 264px;
    width: 178px;
    transform: translateX(50%) !important;
  }

  .comparison-column.self li,
  .comparison-column.self li:nth-child(1),
  .comparison-column.self li:nth-child(2),
  .comparison-column.self li:nth-child(3),
  .comparison-column.self li:nth-child(4) {
    transform: none !important;
  }
}

/* Final cascade lock — keep this block last. */
.worries-section {
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 77, 162, .13), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(36, 127, 255, .17), transparent 27%),
    linear-gradient(120deg, #f9fbff 0%, #edf5ff 46%, #f4efff 100%);
  background-size: 150% 150%, 165% 165%, 180% 180%;
  animation: pastelSectionDrift 16s ease-in-out infinite alternate;
}

.three-steps {
  background:
    radial-gradient(circle at 10% 18%, rgba(57, 178, 255, .2), transparent 27%),
    radial-gradient(circle at 90% 82%, rgba(153, 74, 255, .2), transparent 28%),
    linear-gradient(125deg, #fbfdff 0%, #edf6ff 50%, #f6f0ff 100%);
  background-size: 155% 155%, 165% 165%, 180% 180%;
  animation: pastelSectionDrift 18s ease-in-out -5s infinite alternate;
}

.full-support {
  background-size: 165% 165%, 170% 170%, 180% 180%;
  animation: deepSectionDrift 17s ease-in-out infinite alternate;
}

.comparison-section {
  background-size: 150% 150%, 160% 160%, 180% 180%;
  animation: deepSectionDrift 20s ease-in-out -7s infinite alternate;
}

.zero-price {
  gap: 12px;
}

.zero-price strong {
  letter-spacing: -.035em;
}

.zero-price small {
  flex: 0 0 auto;
  padding-bottom: 16px;
}

.support-flow li:nth-child(odd),
.support-flow li:nth-child(even) {
  transform: none;
}

.support-flow li.is-active,
.support-flow li:hover {
  transform: translateY(-8px);
}

@media (min-width: 761px) {
  .hero {
    grid-template-columns: minmax(610px, .96fr) minmax(680px, 1.04fr);
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero h1 {
    font-size: clamp(52px, 3.55vw, 68px);
    line-height: 1.08;
  }

  .hero-art img {
    object-position: 58% center;
  }

  .worry-stage {
    align-items: stretch;
  }

  .worry-card,
  .worry-card-center {
    min-height: 365px;
    transform: none;
  }

  .worry-card:hover,
  .worry-card-center:hover {
    transform: translateY(-7px);
  }

  .simple-steps {
    align-items: stretch;
  }

  .simple-steps article,
  .simple-steps article:nth-of-type(1),
  .simple-steps article:nth-of-type(2),
  .simple-steps article:nth-of-type(3) {
    min-height: 412px;
    transform: none;
  }

  .simple-steps article.is-active,
  .simple-steps article:hover {
    transform: translateY(-8px);
  }

  .simple-icon {
    top: 27px;
    right: 27px;
    width: 52px;
    height: 52px;
  }

  .simple-step-character {
    height: 228px;
    margin-top: 20px;
  }

  .comparison-section {
    grid-template-columns: minmax(350px, 420px) minmax(820px, 1080px);
    justify-content: center;
    gap: clamp(42px, 4vw, 72px);
    min-height: 900px;
    padding-inline: clamp(48px, 6vw, 118px);
  }

  .comparison-copy h2 {
    font-size: clamp(3.2rem, 4.1vw, 4.85rem);
  }

  .comparison-stage {
    width: 100%;
    max-width: 1080px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .comparison-column,
  .comparison-column.vpop,
  .comparison-column.self {
    align-self: stretch;
    min-width: 0;
    min-height: 650px;
    padding: 34px 30px 30px;
    transform: none;
  }

  .comparison-column h3,
  .comparison-column.vpop h3,
  .comparison-column.self h3 {
    max-width: 68%;
    margin: 24px 0 0;
    font-size: clamp(1.85rem, 2.05vw, 2.35rem);
    line-height: 1.12;
    word-break: keep-all;
  }

  .comparison-character {
    top: 138px;
    right: -12px;
    width: 245px;
  }

  .comparison-column ul,
  .comparison-column.vpop ul,
  .comparison-column.self ul {
    position: absolute;
    z-index: 4;
    right: 26px;
    bottom: 28px;
    left: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: none;
  }

  .comparison-column li,
  .comparison-column.vpop li,
  .comparison-column.self li,
  .comparison-column.vpop li:nth-child(1),
  .comparison-column.vpop li:nth-child(2),
  .comparison-column.vpop li:nth-child(3),
  .comparison-column.vpop li:nth-child(4),
  .comparison-column.self li:nth-child(1),
  .comparison-column.self li:nth-child(2),
  .comparison-column.self li:nth-child(3),
  .comparison-column.self li:nth-child(4) {
    min-height: 116px;
    padding: 15px 13px;
    border-radius: 20px;
    transform: none;
  }

  .comparison-column li:hover,
  .comparison-column.vpop li:hover,
  .comparison-column.self li:hover {
    transform: translateY(-5px);
  }

  .comparison-column.self h3 {
    max-width: 72%;
  }

  .self-lead {
    max-width: 70%;
    margin-top: 18px;
  }

  .self-character {
    right: 8px;
    bottom: 234px;
    width: 218px;
  }

  .comparison-vs {
    top: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .worries-section,
  .three-steps,
  .full-support,
  .comparison-section {
    animation: none !important;
  }
}

/* Absolute final visual lock. */
.worries-section {
  background:
    radial-gradient(circle, rgba(21, 103, 255, .13) 1.5px, transparent 1.8px),
    radial-gradient(circle at 8% 24%, rgba(255, 77, 162, .16), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(36, 127, 255, .2), transparent 27%),
    linear-gradient(120deg, #f9fbff 0%, #edf5ff 46%, #f4efff 100%);
  background-size: 24px 24px, 150% 150%, 165% 165%, 180% 180%;
  animation: popSectionDrift 18s ease-in-out infinite alternate;
}

.three-steps {
  background:
    repeating-linear-gradient(-45deg, rgba(22, 102, 255, .045) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 10% 18%, rgba(57, 178, 255, .23), transparent 27%),
    radial-gradient(circle at 90% 82%, rgba(153, 74, 255, .23), transparent 28%),
    linear-gradient(125deg, #fbfdff 0%, #edf6ff 50%, #f6f0ff 100%);
  background-size: 32px 32px, 155% 155%, 165% 165%, 180% 180%;
  animation: popSectionDrift 20s ease-in-out -6s infinite alternate;
}

.simple-steps article.is-active,
.simple-steps article:hover,
.support-flow li.is-active,
.support-flow li:hover {
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .worries-section,
  .three-steps {
    animation: none !important;
  }
}

/* Re-center the three step pictograms inside their common 52px tile. */
.simple-icon {
  width: 52px;
  height: 52px;
  transform: none;
  transform-origin: center;
}

/* Hololive-inspired multi-line type wallpaper for the three-step section. */
.three-steps::before {
  content: none;
}

.three-steps > .section-heading,
.three-steps > .simple-steps {
  position: relative;
  z-index: 2;
}

.steps-wallpaper {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  opacity: .72;
  transform: rotate(-1.5deg) scale(1.04);
}

.steps-wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 252, 255, .72) 0%,
    transparent 18%,
    transparent 82%,
    rgba(248, 245, 255, .72) 100%
  );
}

.steps-wallpaper-row {
  display: flex;
  width: max-content;
  gap: clamp(28px, 3.2vw, 64px);
  color: rgba(62, 117, 255, .105);
  font: 300 clamp(4.4rem, 8.2vw, 9.8rem)/.82 Arial, sans-serif;
  letter-spacing: -.055em;
  white-space: nowrap;
  will-change: transform;
  animation: stepsTypeFlow 42s linear infinite;
}

.steps-wallpaper-row:nth-child(even) {
  color: rgba(143, 78, 255, .095);
}

.steps-wallpaper-row.is-reverse {
  animation-name: stepsTypeFlowReverse;
  animation-duration: 48s;
}

@keyframes stepsTypeFlow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-25% - 16px), 0, 0); }
}

@keyframes stepsTypeFlowReverse {
  from { transform: translate3d(calc(-25% - 16px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 760px) {
  .steps-wallpaper {
    inset: 10% -12% 3%;
    opacity: .62;
    transform: rotate(-2deg) scale(1.08);
  }

  .steps-wallpaper-row {
    gap: 24px;
    font-size: clamp(3.7rem, 20vw, 6rem);
    animation-duration: 48s;
  }

  .steps-wallpaper-row.is-reverse {
    animation-duration: 54s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .steps-wallpaper-row {
    animation: none !important;
  }
}

/* Distinct background motion: luminous editorial energy for NEWS. */
.news-ambient {
  mix-blend-mode: screen;
}

.news-aurora {
  position: absolute;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(82px);
  opacity: .24;
  will-change: transform;
}

.news-aurora-a {
  left: -18%;
  top: 5%;
  background: radial-gradient(circle, #18d9ff 0%, rgba(24, 217, 255, 0) 68%);
  animation: newsAuroraA 16s ease-in-out infinite alternate;
}

.news-aurora-b {
  right: -15%;
  bottom: -52%;
  background: radial-gradient(circle, #ff43bd 0%, rgba(255, 67, 189, 0) 68%);
  animation: newsAuroraB 19s ease-in-out -6s infinite alternate;
}

.news-light-beam {
  position: absolute;
  width: 28vw;
  min-width: 260px;
  height: 150%;
  left: -36%;
  top: -25%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(153, 240, 255, .08) 32%,
    rgba(255, 255, 255, .2) 50%,
    rgba(203, 164, 255, .08) 68%,
    transparent
  );
  filter: blur(12px);
  transform: rotate(18deg);
  animation: newsBeamSweep 13s cubic-bezier(.45, 0, .55, 1) infinite;
}

@keyframes newsAuroraA {
  from { transform: translate3d(-4%, -4%, 0) scale(.88); }
  to { transform: translate3d(38%, 12%, 0) scale(1.18); }
}

@keyframes newsAuroraB {
  from { transform: translate3d(8%, 6%, 0) scale(1.08); }
  to { transform: translate3d(-32%, -18%, 0) scale(.86); }
}

@keyframes newsBeamSweep {
  0%, 8% { transform: translate3d(0, 0, 0) rotate(18deg); opacity: 0; }
  18% { opacity: .85; }
  58% { opacity: .42; }
  74%, 100% { transform: translate3d(580%, 0, 0) rotate(18deg); opacity: 0; }
}

/* Distinct background motion: a calm moving dot field for WORRIES. */
.worries-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 77, 162, .14), transparent 25%),
    radial-gradient(circle at 90% 78%, rgba(36, 127, 255, .2), transparent 28%),
    linear-gradient(120deg, #f9fbff 0%, #edf5ff 46%, #f4efff 100%);
  background-size: 155% 155%, 165% 165%, 180% 180%;
  animation: worriesColorDrift 18s ease-in-out infinite alternate;
}

.worries-section > .section-heading,
.worries-section > .worry-stage {
  position: relative;
  z-index: 2;
}

.worries-ambient {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.worries-dot-field {
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(circle, rgba(20, 105, 255, .14) 1.4px, transparent 1.8px);
  background-size: 24px 24px;
  transform: rotate(-4deg);
  animation: worriesDotDrift 24s linear infinite;
}

.worries-wave {
  position: absolute;
  left: -12%;
  top: 34%;
  width: 124%;
  height: 150px;
  border: 1px solid rgba(55, 136, 255, .12);
  border-width: 1px 0;
  border-radius: 50%;
  box-shadow:
    0 28px 0 -27px rgba(93, 80, 255, .13),
    0 -28px 0 -27px rgba(255, 80, 169, .1);
  animation: worriesWaveFloat 9s ease-in-out infinite alternate;
}

.worries-ring {
  position: absolute;
  width: clamp(180px, 20vw, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(40, 118, 255, .13);
  border-radius: 50%;
  animation: worriesRingFloat 14s ease-in-out infinite;
}

.worries-ring::before,
.worries-ring::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.worries-ring::before { inset: 18%; }
.worries-ring::after { inset: 38%; }
.worries-ring-a { left: -8%; bottom: -22%; }
.worries-ring-b { right: -7%; top: -18%; animation-delay: -7s; }

.worries-diamond {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 54, 149, .22);
  transform: rotate(45deg);
  animation: worriesDiamondFloat 8s ease-in-out infinite;
}

.worries-diamond-a { left: 12%; top: 22%; }
.worries-diamond-b { right: 11%; bottom: 18%; animation-delay: -4s; border-color: rgba(32, 119, 255, .2); }

@keyframes worriesColorDrift {
  from { background-position: 0% 5%, 100% 90%, 0% 50%; }
  to { background-position: 18% 24%, 80% 68%, 100% 50%; }
}

@keyframes worriesDotDrift {
  from { transform: translate3d(0, 0, 0) rotate(-4deg); }
  to { transform: translate3d(48px, 24px, 0) rotate(-4deg); }
}

@keyframes worriesWaveFloat {
  from { transform: translate3d(-2%, -12px, 0) rotate(-2deg); }
  to { transform: translate3d(2%, 18px, 0) rotate(2deg); }
}

@keyframes worriesRingFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.9); opacity: .55; }
  50% { transform: translate3d(18px, -22px, 0) scale(1.08); opacity: 1; }
}

@keyframes worriesDiamondFloat {
  0%, 100% { translate: 0 0; rotate: 0deg; opacity: .35; }
  50% { translate: 10px -24px; rotate: 90deg; opacity: 1; }
}

@media (max-width: 760px) {
  .news-aurora { width: 110vw; filter: blur(64px); }
  .news-light-beam { animation-duration: 16s; }
  .worries-wave { top: 42%; }
  .worries-ring { width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .news-aurora,
  .news-light-beam,
  .worries-section,
  .worries-dot-field,
  .worries-wave,
  .worries-ring,
  .worries-diamond {
    animation: none !important;
  }
}

/* High-energy editorial mode for the worries section. */
.worries-section {
  background:
    radial-gradient(circle at 82% 7%, rgba(255, 67, 196, .55), transparent 26%),
    radial-gradient(circle at 8% 34%, rgba(0, 209, 255, .28), transparent 30%),
    linear-gradient(
      180deg,
      #233bdc 0%,
      #5727e7 23%,
      #8b24ef 45%,
      #f8f6ff 45.2%,
      #f5f8ff 100%
    );
  background-size: 145% 145%, 155% 155%, 100% 100%;
  animation: worriesStagePulse 12s ease-in-out infinite alternate;
}

.worries-section .section-heading .kicker {
  color: #8ff5ff;
  text-shadow: 0 0 18px rgba(87, 232, 255, .5);
}

.worries-section .section-heading h2 {
  color: #fff;
  text-shadow: 0 8px 28px rgba(16, 14, 100, .3);
}

.worries-section .section-heading::before {
  content: none;
}

.worries-type-wallpaper {
  position: absolute;
  inset: -1% 0 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  align-content: space-between;
  transform: rotate(-1deg) scale(1.03);
  opacity: .96;
}

.worries-type-row {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(32px, 4vw, 76px);
  color: rgba(255, 255, 255, .16);
  font: 300 clamp(5.6rem, 9.3vw, 11rem)/.78 Arial, sans-serif;
  letter-spacing: -.06em;
  white-space: nowrap;
  will-change: transform;
  animation: worriesTypeRush 24s linear infinite;
}

.worries-type-row:nth-child(2) {
  color: rgba(255, 255, 255, .1);
  font-size: clamp(4.7rem, 8vw, 9.5rem);
}

.worries-type-row.is-reverse {
  animation-name: worriesTypeRushReverse;
  animation-duration: 28s;
}

.worries-type-row.is-lower {
  color: rgba(94, 54, 226, .105);
  font-size: clamp(5rem, 8.6vw, 10rem);
}

.worries-dot-field {
  opacity: .5;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle, rgba(178, 231, 255, .55) 1.4px, transparent 1.9px);
  animation-duration: 13s;
}

.worries-wave {
  border-color: rgba(255, 255, 255, .2);
  box-shadow:
    0 28px 0 -27px rgba(255, 107, 206, .28),
    0 -28px 0 -27px rgba(97, 238, 255, .25);
  animation-duration: 6s;
}

.worries-ring {
  border-color: rgba(255, 255, 255, .16);
  animation-duration: 9s;
}

.worries-ring-b {
  border-color: rgba(112, 69, 238, .16);
}

.worries-diamond {
  width: 30px;
  height: 30px;
  border-width: 2px;
  border-color: rgba(255, 193, 237, .5);
  animation-duration: 5.5s;
}

.worry-card {
  border-color: rgba(111, 112, 255, .28);
  box-shadow:
    0 30px 70px rgba(29, 24, 128, .16),
    0 0 0 1px rgba(255, 255, 255, .7) inset;
  backdrop-filter: blur(14px);
}

@keyframes worriesStagePulse {
  from { background-position: 0% 8%, 100% 78%, 0 0; }
  to { background-position: 28% 24%, 76% 52%, 0 0; }
}

@keyframes worriesTypeRush {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-25% - 19px), 0, 0); }
}

@keyframes worriesTypeRushReverse {
  from { transform: translate3d(calc(-25% - 19px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 760px) {
  .worries-section {
    background:
      radial-gradient(circle at 85% 8%, rgba(255, 67, 196, .5), transparent 26%),
      linear-gradient(180deg, #253bdc 0%, #7427eb 30%, #9225ed 32%, #f7f7ff 32.2%, #f5f8ff 100%);
  }

  .worries-type-wallpaper {
    inset: 0 -20%;
    grid-template-rows: repeat(4, 1fr);
    opacity: .88;
  }

  .worries-type-row {
    font-size: clamp(4.8rem, 24vw, 7rem);
    animation-duration: 30s;
  }

  .worries-type-row.is-reverse {
    animation-duration: 34s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .worries-type-row,
  .worries-section {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Global character integration pass
   Give transparent illustrations a shared light source and a grounded pivot.
   -------------------------------------------------------------------------- */
.worry-card {
  background:
    radial-gradient(ellipse at 91% 100%, rgba(101, 87, 255, .2) 0%, rgba(74, 175, 255, .1) 30%, transparent 58%),
    linear-gradient(150deg, rgba(255, 255, 255, .97), rgba(246, 250, 255, .91));
}

.worry-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 7px;
  width: 158px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(59, 70, 190, .23), transparent 68%);
  filter: blur(5px);
  opacity: .72;
}

.worry-character {
  right: -7px;
  bottom: -4px;
  transform-origin: 52% 100%;
  background: radial-gradient(circle at 52% 58%, rgba(186, 228, 255, .28), transparent 58%);
  border-radius: 46%;
  filter:
    drop-shadow(0 17px 17px rgba(34, 31, 119, .17))
    drop-shadow(0 0 12px rgba(98, 190, 255, .12));
}

.worry-card:hover {
  transform: translateY(-3px);
}

.worry-card:hover .worry-character {
  transform: rotate(1.5deg) scale(1.025);
}

.simple-step-character {
  transform-origin: 50% 100%;
  border-radius: 42%;
  background: radial-gradient(circle at 50% 60%, rgba(119, 202, 255, .2), transparent 58%);
  filter:
    drop-shadow(0 15px 14px rgba(35, 45, 126, .17))
    drop-shadow(0 0 12px rgba(107, 177, 255, .1));
}

.simple-steps article:hover .simple-step-character,
.simple-steps article.is-active .simple-step-character {
  transform: rotate(1deg) scale(1.025);
}

.story-grid img {
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 62%, rgba(116, 191, 255, .16), transparent 60%),
    linear-gradient(180deg, rgba(239, 246, 255, .7), rgba(255, 255, 255, 0));
  filter: drop-shadow(0 12px 12px rgba(41, 54, 145, .11));
}

.support-mascot {
  transform-origin: 52% 100%;
  border-radius: 46% 46% 12% 12%;
  background: radial-gradient(circle at 50% 58%, rgba(123, 227, 255, .24), transparent 58%);
  filter:
    drop-shadow(0 20px 17px rgba(14, 6, 74, .28))
    drop-shadow(0 0 16px rgba(114, 222, 255, .16));
}

.comparison-character {
  opacity: 1;
  transform-origin: 52% 100%;
  border-radius: 48% 48% 24% 24%;
  background:
    radial-gradient(circle at 50% 56%, rgba(129, 240, 255, .36), transparent 54%),
    radial-gradient(ellipse at 50% 100%, rgba(23, 15, 121, .28), transparent 64%);
  filter:
    drop-shadow(0 22px 18px rgba(16, 3, 65, .26))
    drop-shadow(0 0 18px rgba(117, 232, 255, .2));
}

.self-character {
  transform-origin: 52% 100%;
  border-radius: 48% 48% 20% 20%;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 117, 197, .17), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(7, 5, 45, .4), transparent 63%);
  filter:
    drop-shadow(0 22px 17px rgba(6, 5, 42, .32))
    drop-shadow(0 0 16px rgba(255, 109, 194, .12));
}

.contact-mascot {
  bottom: -16px;
  transform-origin: 50% 100%;
  border-radius: 48% 48% 12% 12%;
  background:
    radial-gradient(circle at 52% 58%, rgba(255, 80, 190, .24), transparent 57%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 20, .5), transparent 62%);
  filter:
    drop-shadow(0 24px 18px rgba(0, 0, 0, .3))
    drop-shadow(0 0 20px rgba(255, 64, 182, .18));
}

/* Keep characters alive without lifting them away from their surface. */
@keyframes supportMascotFloat {
  0%, 100% { transform: rotate(-1.5deg) scale(1); }
  50% { transform: rotate(1.5deg) scale(1.018); }
}

@keyframes comparisonCharacterFloat {
  0%, 100% { transform: rotate(2deg) scale(1); }
  50% { transform: rotate(-1deg) scale(1.018); }
}

@keyframes selfCharacterDrift {
  0%, 100% { transform: rotate(.8deg) scale(1); }
  50% { transform: rotate(-1.4deg) scale(1.015); }
}

@keyframes contactMascotFloat {
  0%, 100% { transform: rotate(-1deg) scale(1); }
  50% { transform: rotate(1deg) scale(1.018); }
}

/* A quiet data-scan adds motion where the report previously felt static. */
.report-dashboard {
  overflow: hidden;
}

.report-dashboard::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -15%;
  top: -30%;
  width: 34%;
  height: 165%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(111, 231, 255, .08) 35%,
    rgba(255, 255, 255, .18) 50%,
    rgba(149, 102, 255, .08) 65%,
    transparent
  );
  filter: blur(8px);
  transform: rotate(12deg);
  animation: reportScanSweep 10s ease-in-out infinite;
}

.report-dashboard > * {
  position: relative;
  z-index: 1;
}

@keyframes reportScanSweep {
  0%, 14% { translate: -60% 0; opacity: 0; }
  24% { opacity: .8; }
  68% { opacity: .35; }
  82%, 100% { translate: 430% 0; opacity: 0; }
}

@media (max-width: 760px) {
  .worry-character {
    right: -2px;
    bottom: -2px;
  }

  .contact-mascot {
    bottom: -10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-mascot,
  .comparison-character,
  .self-character,
  .contact-mascot,
  .report-dashboard::before {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Section boundary rails
   Diagonal editorial stripes make each color chapter read as intentional.
   -------------------------------------------------------------------------- */
.section-divider {
  --divider-a: #176dff;
  --divider-b: #7d35f2;
  position: relative;
  z-index: 10;
  height: 22px;
  margin: -1px 0;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  box-shadow:
    0 -1px rgba(255, 255, 255, .55),
    0 1px rgba(13, 37, 105, .12);
}

.section-divider::before {
  content: "";
  position: absolute;
  inset: 4px 0;
  background:
    repeating-linear-gradient(
      122deg,
      var(--divider-a) 0 13px,
      var(--divider-b) 13px 25px,
      rgba(255, 255, 255, .96) 25px 31px
    );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .4),
    inset 0 -1px rgba(11, 35, 107, .16);
}

.section-divider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 4px;
  bottom: 4px;
  left: -180px;
  width: 150px;
  opacity: .9;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
  transform: skewX(-24deg);
  animation: dividerLightRun 7s cubic-bezier(.4, 0, .2, 1) infinite;
}

.section-divider span {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  min-width: 148px;
  padding: 5px 18px 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font: 900 8px/1 Arial, sans-serif;
  letter-spacing: .2em;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--divider-a), var(--divider-b));
  box-shadow: 0 5px 16px rgba(18, 27, 96, .24);
  transform: translate(-50%, -50%);
}

.divider-hero { --divider-a: #137fff; --divider-b: #4734ed; }
.divider-news { --divider-a: #253bdc; --divider-b: #a126ee; }
.divider-worries { --divider-a: #8d27ef; --divider-b: #4c9cff; }
.divider-steps { --divider-a: #249cff; --divider-b: #6752f2; }
.divider-support { --divider-a: #6328e9; --divider-b: #142cae; }
.divider-compare { --divider-a: #102d87; --divider-b: #8d32ef; }
.divider-works { --divider-a: #9c32ef; --divider-b: #ff3c9e; }
.divider-report { --divider-a: #2363e8; --divider-b: #150f67; }
.divider-contact { --divider-a: #102672; --divider-b: #ff2993; }

@keyframes dividerLightRun {
  0%, 18% { translate: 0 0; opacity: 0; }
  24% { opacity: .95; }
  64% { opacity: .5; }
  78%, 100% { translate: calc(100vw + 360px) 0; opacity: 0; }
}

@media (max-width: 760px) {
  .section-divider {
    height: 18px;
  }

  .section-divider::before,
  .section-divider::after {
    top: 3px;
    bottom: 3px;
  }

  .section-divider span {
    min-width: 126px;
    padding: 4px 13px 3px;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider::after {
    animation: none !important;
  }
}

/* Keep the primary navigation available throughout the page. */
html {
  scroll-padding-top: 92px;
}

.site-header {
  position: fixed;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 28px rgba(23, 52, 118, .08);
  transform: translateZ(0);
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }
}

/* Animated delivery-route background for the support chapter. */
.support-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 20%, rgba(55, 166, 255, .14), transparent 25%),
    radial-gradient(circle at 88% 68%, rgba(156, 79, 255, .13), transparent 28%),
    linear-gradient(180deg, #eff5ff, #fff 92%);
  background-size: 150% 150%, 160% 160%, 100% 100%;
  animation: supportSkyDrift 18s ease-in-out infinite alternate;
}

.support-section > :not(.support-ambient) {
  position: relative;
  z-index: 2;
}

.support-ambient {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.support-route-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.support-route {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 18;
  vector-effect: non-scaling-stroke;
  animation: supportRouteDash 14s linear infinite;
}

.support-route.route-a { stroke: rgba(18, 124, 255, .2); }
.support-route.route-b { stroke: rgba(129, 73, 244, .17); animation-direction: reverse; animation-duration: 18s; }
.support-route.route-c { stroke: rgba(255, 62, 153, .13); animation-duration: 21s; }

.support-route-map circle {
  fill: rgba(255, 255, 255, .95);
  stroke: rgba(49, 127, 255, .22);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: supportNodePulse 3.6s ease-in-out infinite;
}

.support-route-map circle:nth-of-type(2n) { animation-delay: -1.8s; }
.support-route-map circle:nth-of-type(3n) { animation-delay: -2.7s; }

.support-packet {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(39, 119, 255, .22);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(39, 119, 255, .18) 47% 53%, transparent 53%),
    linear-gradient(rgba(255, 255, 255, .9), rgba(226, 239, 255, .78));
  box-shadow: 0 10px 25px rgba(31, 86, 173, .12);
  opacity: .7;
}

.support-packet::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 8px;
  height: 2px;
  background: rgba(255, 76, 160, .28);
}

.packet-a {
  left: 4%;
  top: 16%;
  animation: supportPacketA 12s ease-in-out infinite;
}

.packet-b {
  right: 7%;
  top: 42%;
  width: 24px;
  height: 24px;
  animation: supportPacketB 15s ease-in-out -5s infinite;
}

.packet-c {
  left: 14%;
  bottom: 13%;
  width: 20px;
  height: 20px;
  animation: supportPacketC 11s ease-in-out -3s infinite;
}

.support-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -22%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(93, 206, 255, .09), transparent);
  filter: blur(12px);
  transform: skewX(-13deg);
  animation: supportScanMove 13s ease-in-out infinite;
}

@keyframes supportSkyDrift {
  from { background-position: 0% 10%, 100% 90%, 0 0; }
  to { background-position: 24% 24%, 76% 68%, 0 0; }
}

@keyframes supportRouteDash {
  to { stroke-dashoffset: -280; }
}

@keyframes supportNodePulse {
  0%, 100% { transform: scale(.65); opacity: .35; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes supportPacketA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(42vw, 105px, 0) rotate(8deg); }
}

@keyframes supportPacketB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
  50% { transform: translate3d(-35vw, 130px, 0) rotate(-10deg); }
}

@keyframes supportPacketC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-12deg); }
  50% { transform: translate3d(28vw, -90px, 0) rotate(12deg); }
}

@keyframes supportScanMove {
  0%, 12% { translate: 0 0; opacity: 0; }
  24% { opacity: 1; }
  72% { opacity: .45; }
  86%, 100% { translate: 720% 0; opacity: 0; }
}

@media (max-width: 760px) {
  .support-route-map {
    width: 165%;
    left: -32%;
  }

  .support-packet {
    opacity: .5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-section,
  .support-route,
  .support-route-map circle,
  .support-packet,
  .support-scan {
    animation: none !important;
  }
}

/* Icon-led full-support journey: reuse the coherent blue line-art asset set. */
.support-flow {
  gap: 11px;
}

.support-flow::before {
  top: 65px;
  height: 3px;
  background: linear-gradient(90deg, #7cecff, #fff 48%, #ff7ac5);
  box-shadow: 0 0 20px rgba(132, 231, 255, .44);
  opacity: .78;
}

.support-flow li,
.support-flow li:nth-child(odd),
.support-flow li:nth-child(even) {
  --support-accent: #55d9ff;
  min-height: 236px;
  padding: 20px 10px 18px;
  border: 1px solid color-mix(in srgb, var(--support-accent) 38%, transparent);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--support-accent) 23%, transparent), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .065));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .28),
    0 20px 34px rgba(30, 8, 104, .2);
  transform: none;
}

.support-flow li:nth-child(2) { --support-accent: #74c8ff; }
.support-flow li:nth-child(3) { --support-accent: #8aa8ff; }
.support-flow li:nth-child(4) { --support-accent: #a68cff; }
.support-flow li:nth-child(5) { --support-accent: #d17df2; }
.support-flow li:nth-child(6) { --support-accent: #ef72c4; }
.support-flow li:nth-child(7) { --support-accent: #ff72a7; }

.support-flow li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 23px;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow:
    0 14px 28px rgba(22, 23, 111, .2),
    0 0 0 5px color-mix(in srgb, var(--support-accent) 13%, transparent);
  transform: translateX(-50%) rotate(-2deg);
  transition: transform .4s ease, box-shadow .4s ease;
}

.support-flow span {
  z-index: 4;
  top: 12px;
  left: 10px;
  width: 31px;
  height: 31px;
  border: 2px solid rgba(255, 255, 255, .75);
  background: linear-gradient(135deg, #13c8ff, var(--support-accent));
  box-shadow: 0 8px 18px rgba(18, 24, 119, .25);
}

.support-flow img {
  position: relative;
  z-index: 2;
  display: block;
  width: 76px;
  height: 76px;
  margin: 6px auto 15px;
  padding: 7px;
  object-fit: cover;
  object-position: center top;
  border-radius: 21px;
  clip-path: inset(0 0 32% 0 round 18px);
  mix-blend-mode: multiply;
  filter: none;
  transform-origin: 50% 75%;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.support-flow b {
  position: relative;
  z-index: 2;
  min-height: 2.7em;
  display: grid;
  place-items: center;
  margin: 0 0 8px;
  font-size: .82rem;
  line-height: 1.35;
}

.support-flow small {
  position: relative;
  z-index: 2;
  min-height: 3em;
  color: rgba(255, 255, 255, .68);
  font-size: .66rem;
  line-height: 1.5;
}

.support-flow li.is-active,
.support-flow li:hover {
  border-color: color-mix(in srgb, var(--support-accent) 82%, #fff);
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--support-accent) 38%, transparent), transparent 38%),
    linear-gradient(155deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .11));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .4),
    0 26px 48px rgba(28, 7, 102, .3),
    0 0 24px color-mix(in srgb, var(--support-accent) 24%, transparent);
  transform: none !important;
}

.support-flow li.is-active::before,
.support-flow li:hover::before {
  box-shadow:
    0 17px 32px rgba(22, 23, 111, .25),
    0 0 0 7px color-mix(in srgb, var(--support-accent) 22%, transparent),
    0 0 28px color-mix(in srgb, var(--support-accent) 38%, transparent);
  transform: translateX(-50%) rotate(2deg) scale(1.04);
}

.support-flow li.is-active img,
.support-flow li:hover img {
  transform: scale(1.08) rotate(-2deg);
}

@media (max-width: 760px) {
  .support-flow li,
  .support-flow li:nth-child(odd),
  .support-flow li:nth-child(even),
  .support-flow li:last-child {
    grid-template-columns: 82px 1fr !important;
    grid-template-rows: auto auto !important;
    min-height: 118px;
    padding: 17px 17px 15px 98px;
    text-align: left;
  }

  .support-flow li::before {
    left: 50px;
    top: 19px;
    width: 67px;
    height: 67px;
  }

  .support-flow img,
  .support-flow li:last-child img {
    position: absolute;
    left: 16px;
    top: 18px;
    width: 67px;
    height: 67px;
    margin: 0;
  }

  .support-flow span {
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
  }

  .support-flow b,
  .support-flow small {
    display: block;
    min-height: 0;
  }
}

/* Compact horizontal journey, inspired by the supplied six-step reference. */
.full-support {
  min-height: 390px;
  padding: 34px 42px 28px;
}

.full-support-head {
  max-width: 760px;
  padding-bottom: 20px;
}

.full-support-head h3 {
  max-width: 620px;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.support-flow {
  max-width: calc(100% - 145px);
  margin-top: 22px;
  padding: 8px 0 0;
  gap: 0;
}

.support-flow::before {
  top: 51px;
  left: 6%;
  right: 3%;
  height: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(118, 236, 255, .95) 0 5px,
      transparent 5px 12px
    );
  box-shadow: 0 0 16px rgba(119, 229, 255, .35);
}

.support-flow li,
.support-flow li:nth-child(odd),
.support-flow li:nth-child(even) {
  min-height: 155px;
  padding: 6px 5px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.support-flow li::before {
  top: 8px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--support-accent) 44%, #fff);
  background:
    radial-gradient(circle at 35% 28%, #fff, rgba(255, 255, 255, .9) 58%, rgba(225, 239, 255, .9));
  box-shadow:
    0 13px 26px rgba(17, 18, 98, .2),
    0 0 0 5px rgba(255, 255, 255, .09);
  transform: translateX(-50%);
}

.support-flow span {
  top: 1px;
  left: calc(50% - 44px);
  width: 27px;
  height: 27px;
  font-size: .55rem;
}

.support-flow img {
  width: 72px;
  height: 72px;
  margin: 12px auto 7px;
  padding: 8px;
  border-radius: 50%;
  clip-path: inset(0 0 32% 0 round 50%);
}

.support-flow b {
  min-height: 0;
  margin: 3px 0 5px;
  font-size: .72rem;
  line-height: 1.35;
}

.support-flow small {
  min-height: 0;
  max-width: 118px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .6);
  font-size: .56rem;
  line-height: 1.45;
}

.support-flow li.is-active,
.support-flow li:hover {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.support-flow li.is-active::before,
.support-flow li:hover::before {
  border-color: color-mix(in srgb, var(--support-accent) 78%, #fff);
  box-shadow:
    0 17px 30px rgba(16, 18, 98, .24),
    0 0 0 7px color-mix(in srgb, var(--support-accent) 18%, transparent),
    0 0 28px color-mix(in srgb, var(--support-accent) 32%, transparent);
  transform: translateX(-50%) scale(1.04);
}

.support-mascot {
  right: -14px;
  bottom: -26px;
  width: 170px;
}

@media (max-width: 980px) and (min-width: 761px) {
  .support-flow {
    max-width: calc(100% - 110px);
  }

  .support-flow li::before {
    width: 68px;
    height: 68px;
  }

  .support-flow img {
    width: 60px;
    height: 60px;
  }

  .support-mascot {
    width: 135px;
  }
}

@media (max-width: 760px) {
  .full-support {
    min-height: 0;
    padding: 35px 18px 120px;
  }

  .support-flow {
    max-width: none;
    margin-left: 36px;
    padding-top: 8px;
  }

  .support-flow::before {
    top: 20px;
    bottom: 20px;
    left: -20px;
    right: auto;
    width: 2px;
    height: auto;
    background:
      repeating-linear-gradient(
        180deg,
        rgba(118, 236, 255, .95) 0 5px,
        transparent 5px 12px
      );
  }

  .support-flow li,
  .support-flow li:nth-child(odd),
  .support-flow li:nth-child(even),
  .support-flow li:last-child {
    display: grid;
    grid-template-columns: 72px 1fr !important;
    grid-template-rows: auto auto !important;
    min-height: 92px;
    padding: 8px 8px 8px 82px;
    text-align: left;
  }

  .support-flow li::before {
    left: 38px;
    top: 10px;
    width: 62px;
    height: 62px;
  }

  .support-flow img,
  .support-flow li:last-child img {
    left: 6px;
    top: 9px;
    width: 62px;
    height: 62px;
  }

  .support-flow span {
    left: -36px;
    top: 42px;
  }

  .support-flow b {
    margin-top: 17px;
    font-size: .86rem;
  }

  .support-flow small {
    max-width: none;
    margin: 0;
    font-size: .65rem;
  }

  .support-mascot {
    right: -6px;
    bottom: -24px;
    width: 145px;
  }
}

/* Stronger VPOP advantage card + animated comparison atmosphere. */
.comparison-section {
  background:
    radial-gradient(circle at 13% 24%, rgba(20, 116, 255, .6), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(152, 45, 244, .3), transparent 29%),
    radial-gradient(circle at 96% 25%, rgba(255, 42, 145, .16), transparent 21%),
    linear-gradient(135deg, #06122e 0%, #0a2056 48%, #17103f 100%);
  background-size: 150% 150%, 165% 165%, 150% 150%, 100% 100%;
  animation: comparisonColorFlow 16s ease-in-out infinite alternate;
}

.comparison-ambient {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.comparison-light-wave {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .18;
  will-change: transform;
}

.comparison-light-wave.wave-a {
  left: -28vw;
  top: -31vw;
  background: radial-gradient(circle, #0ee7ff, transparent 66%);
  animation: comparisonWaveA 13s ease-in-out infinite alternate;
}

.comparison-light-wave.wave-b {
  right: -30vw;
  bottom: -35vw;
  background: radial-gradient(circle, #ff2caa, transparent 65%);
  animation: comparisonWaveB 17s ease-in-out -6s infinite alternate;
}

.comparison-orbit-ring {
  position: absolute;
  right: 4%;
  top: 7%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(116, 211, 255, .11);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(132, 83, 255, .035),
    0 0 0 104px rgba(255, 71, 168, .025);
  animation: comparisonOrbitBreathe 10s ease-in-out infinite;
}

.comparison-ambient i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(119, 230, 255, .7);
  box-shadow: 0 0 18px rgba(77, 208, 255, .65);
  animation: comparisonParticle 8s ease-in-out infinite;
}

.comparison-ambient i:nth-of-type(1) { left: 7%; top: 20%; animation-delay: -1s; }
.comparison-ambient i:nth-of-type(2) { left: 22%; top: 77%; animation-delay: -4s; }
.comparison-ambient i:nth-of-type(3) { left: 39%; top: 14%; animation-delay: -6s; }
.comparison-ambient i:nth-of-type(4) { left: 56%; top: 84%; animation-delay: -2s; }
.comparison-ambient i:nth-of-type(5) { left: 69%; top: 24%; animation-delay: -5s; }
.comparison-ambient i:nth-of-type(6) { left: 82%; top: 69%; animation-delay: -7s; }
.comparison-ambient i:nth-of-type(7) { left: 92%; top: 17%; animation-delay: -3s; }
.comparison-ambient i:nth-of-type(8) { left: 48%; top: 48%; animation-delay: -8s; }

.comparison-copy,
.comparison-stage,
.comparison-wallpaper {
  z-index: 2;
}

.comparison-stage {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 20px;
}

.comparison-column.vpop {
  min-height: 590px;
  border: 1px solid rgba(133, 231, 255, .42);
  box-shadow:
    0 42px 90px rgba(7, 4, 72, .48),
    0 0 0 1px rgba(255, 255, 255, .22) inset,
    0 0 45px rgba(53, 177, 255, .16);
}

.comparison-column.vpop h3 {
  max-width: 68%;
  margin-top: 28px;
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-shadow: 0 8px 32px rgba(16, 4, 91, .4);
}

.comparison-column.vpop h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin-top: 22px;
  border-radius: 99px;
  background: linear-gradient(90deg, #7deeff, #fff, #ff80c6);
  box-shadow: 0 0 22px rgba(113, 227, 255, .6);
  animation: comparisonHeadlinePulse 3.8s ease-in-out infinite;
}

.comparison-character {
  right: -30px;
  top: 120px;
  width: 245px;
  opacity: .88;
}

.comparison-column.self {
  min-height: 590px;
  padding-inline: 24px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 65, 164, .11), transparent 27%),
    linear-gradient(150deg, rgba(25, 34, 91, .88), rgba(32, 18, 70, .84));
}

.comparison-column.self h3,
.self-lead {
  max-width: 100%;
}

.comparison-column.self ul {
  position: relative;
  inset: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 100%;
  grid-template-columns: 1fr;
  margin-top: 36px;
}

.comparison-column.self li {
  min-height: 67px;
}

.comparison-vs {
  left: 60%;
}

@keyframes comparisonColorFlow {
  from { background-position: 0% 10%, 100% 86%, 100% 0%, 0 0; }
  to { background-position: 24% 30%, 74% 62%, 80% 24%, 0 0; }
}

@keyframes comparisonWaveA {
  from { transform: translate3d(-5%, -4%, 0) scale(.85); }
  to { transform: translate3d(38%, 22%, 0) scale(1.12); }
}

@keyframes comparisonWaveB {
  from { transform: translate3d(6%, 4%, 0) scale(1.08); }
  to { transform: translate3d(-32%, -18%, 0) scale(.88); }
}

@keyframes comparisonOrbitBreathe {
  0%, 100% { transform: scale(.82) rotate(0); opacity: .35; }
  50% { transform: scale(1.12) rotate(12deg); opacity: .9; }
}

@keyframes comparisonParticle {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); opacity: .18; }
  50% { transform: translate3d(20px, -30px, 0) rotate(90deg); opacity: 1; }
}

@keyframes comparisonHeadlinePulse {
  0%, 100% { transform: scaleX(.75); opacity: .55; transform-origin: left; }
  50% { transform: scaleX(1); opacity: 1; transform-origin: left; }
}

@media (max-width: 1100px) {
  .comparison-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  }
}

@media (max-width: 760px) {
  .comparison-stage {
    grid-template-columns: 1fr;
  }

  .comparison-column.vpop,
  .comparison-column.self {
    min-height: 0;
  }

  .comparison-column.vpop h3 {
    max-width: 72%;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .comparison-character {
    top: 150px;
    right: -22px;
    width: 190px;
  }

  .comparison-vs {
    left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-section,
  .comparison-light-wave,
  .comparison-orbit-ring,
  .comparison-ambient i,
  .comparison-column.vpop h3::after {
    animation: none !important;
  }
}

.simple-icon::before,
.simple-icon::after {
  border-width: 2.5px;
}

.chat-icon::before {
  left: 10px;
  top: 12px;
  width: 28px;
  height: 20px;
}

.chat-icon::after {
  left: 15px;
  top: 29px;
  width: 7px;
  height: 7px;
  border-width: 0 0 2.5px 2.5px;
}

.review-icon::before {
  left: 10px;
  top: 11px;
  width: 28px;
  height: 21px;
}

.review-icon::after {
  right: 8px;
  bottom: 10px;
  width: 14px;
  height: 7px;
  border-width: 0 0 2.5px 2.5px;
}

.payment-icon::before {
  left: 10px;
  top: 9px;
  width: 28px;
  height: 25px;
  border-radius: 14px 14px 5px 5px;
}

.payment-icon::after {
  content: "¥";
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 50px;
  border: 0;
  font: 900 18px/1 Arial, sans-serif;
}

/* Keep the full VTuber group visible on wide hero layouts. */
@media (min-width: 981px) {
  .hero-art img {
    width: 100%;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    object-position: right center;
    transform-origin: 60% 54%;
  }
}

/* Semantic Japanese headline rhythm: emphasize ideas, not isolated particles. */
.section-heading h2,
.hero h1,
.comparison-copy h2,
.works-topline h2,
.report-heading h2,
.contact-copy h2 {
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.headline-key {
  display: inline-block;
  color: #0968f6;
  background: linear-gradient(100deg, #0a68f6 0%, #568fff 52%, #eb70bd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-copy h2 .contact-context {
  display: inline-block;
  margin-right: .16em;
  color: rgba(241, 247, 255, .94);
  font-size: .76em;
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1;
  vertical-align: .08em;
  -webkit-text-fill-color: rgba(241, 247, 255, .94);
}

.contact-copy h2 em .contact-context {
  font-size: .84em;
  color: rgba(234, 243, 255, .92);
  -webkit-text-fill-color: rgba(234, 243, 255, .92);
}

.contact-copy h2 .contact-title-accent {
  letter-spacing: -.06em;
}

.contact-copy h2 em {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .section-heading h2,
  .hero h1,
  .comparison-copy h2,
  .works-topline h2,
  .report-heading h2,
  .contact-copy h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .contact-copy h2 .contact-context {
    margin-right: .1em;
    font-size: .72em;
  }

  .contact-copy h2 em .contact-context {
    font-size: .8em;
  }
}

/* WHY VPOP: benefits first, self-production burdens as supporting context. */
.comparison-section {
  display: block;
  min-height: 0;
  padding: clamp(92px, 8vw, 132px) max(5vw, calc((100vw - 1280px) / 2)) clamp(104px, 9vw, 144px);
}

.comparison-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: left;
}

.comparison-copy h2 {
  max-width: none;
  margin: 10px 0 18px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.comparison-copy > p:not(.kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(231, 242, 255, .78);
  font-size: clamp(.9rem, 1.15vw, 1.08rem);
  line-height: 1.9;
}

.comparison-stage {
  position: relative;
  z-index: 3;
  display: block;
  width: min(1180px, 100%);
  margin: clamp(38px, 4vw, 58px) auto 0;
}

.comparison-column.vpop {
  position: relative;
  min-height: 0;
  padding: clamp(32px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(150, 236, 255, .5);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(91, 196, 255, .34), transparent 25%),
    radial-gradient(circle at 15% 100%, rgba(255, 75, 190, .19), transparent 30%),
    linear-gradient(135deg, rgba(39, 88, 246, .96), rgba(116, 37, 234, .96));
  box-shadow:
    0 42px 90px rgba(7, 4, 72, .48),
    inset 0 1px rgba(255, 255, 255, .28),
    0 0 48px rgba(53, 177, 255, .16);
}

.comparison-card-head {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding-right: 130px;
}

.comparison-column.vpop .comparison-card-head h3 {
  max-width: none;
  margin: 24px 0 14px;
  font-size: clamp(2.45rem, 4.8vw, 5rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.comparison-card-head p {
  margin: 0;
  color: rgba(241, 247, 255, .78);
  font-size: .9rem;
}

.comparison-character {
  z-index: 2;
  top: 24px;
  right: 28px;
  width: clamp(132px, 13vw, 190px);
  opacity: .9;
  filter: drop-shadow(0 18px 32px rgba(19, 5, 96, .35));
}

.comparison-benefits {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-benefits > li {
  display: block;
  grid-template-columns: none;
  gap: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .27);
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  transform: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.comparison-column.vpop .comparison-benefits > li::after {
  display: none;
}

.comparison-benefits > li:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 239, 255, .72);
  background: rgba(255, 255, 255, .17);
}

.benefit-main {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  min-height: 112px;
  padding: 20px 22px;
}

.comparison-column.vpop .benefit-main > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #1768ff;
  background: linear-gradient(145deg, #fff, #bff7ff);
  font: 900 .72rem/1 Arial, sans-serif;
  box-shadow: 0 7px 20px rgba(6, 20, 105, .25);
}

.benefit-main b,
.benefit-main small {
  display: block;
}

.benefit-main b {
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(1.02rem, 1.55vw, 1.32rem);
  line-height: 1.3;
}

.benefit-main small {
  color: rgba(237, 246, 255, .72);
  font-size: .72rem;
  line-height: 1.55;
}

.comparison-column.vpop .benefit-main i {
  position: static;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #0678ff;
  background: #bff8ff;
  font-style: normal;
  font-size: .8rem;
  box-shadow: 0 0 18px rgba(111, 238, 255, .48);
}

.benefit-burden {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  background: rgba(18, 15, 71, .34);
}

.benefit-burden small {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 144, 194, .42);
  border-radius: 99px;
  color: #ffd1e7;
  white-space: nowrap;
  font-size: .62rem;
  letter-spacing: .08em;
}

.benefit-burden p {
  margin: 0;
  color: rgba(236, 239, 255, .75);
  font-size: .72rem;
  line-height: 1.55;
}

.comparison-column.vpop > .comparison-promise {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 26px 0 0;
  padding: 10px 18px 10px 10px;
  border-color: rgba(255, 255, 255, .3);
  background: rgba(11, 31, 112, .3);
}

.comparison-column.vpop > .comparison-promise strong {
  font-size: .82rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .comparison-section {
    padding: 82px 20px 96px;
  }

  .comparison-copy {
    text-align: left;
  }

  .comparison-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .comparison-stage {
    margin-top: 32px;
  }

  .comparison-column.vpop {
    padding: 26px 18px 24px;
    border-radius: 24px;
  }

  .comparison-card-head {
    padding-right: 86px;
  }

  .comparison-column.vpop .comparison-card-head h3 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .comparison-card-head p {
    max-width: 220px;
    line-height: 1.7;
  }

  .comparison-character {
    top: 20px;
    right: -10px;
    width: 112px;
  }

  .comparison-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .benefit-main {
    grid-template-columns: 38px minmax(0, 1fr) 25px;
    gap: 10px;
    min-height: 102px;
    padding: 17px 15px;
  }

  .comparison-column.vpop .benefit-main > span {
    width: 38px;
    height: 38px;
  }

  .benefit-burden {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px 15px 15px;
  }

  .benefit-burden small {
    width: fit-content;
  }

  .comparison-column.vpop > .comparison-promise {
    align-items: flex-start;
  }
}

/* Wide, quieter WHY VPOP composition. */
.comparison-word-track {
  position: absolute;
  z-index: 0;
  left: 0;
  width: max-content;
  color: rgba(164, 202, 255, .075);
  white-space: nowrap;
  font: 800 clamp(4.6rem, 8vw, 9rem)/1 Arial, sans-serif;
  letter-spacing: -.045em;
  will-change: transform;
}

.comparison-word-track.track-a {
  top: 27%;
  animation: comparisonWordsLeft 28s linear infinite;
}

.comparison-word-track.track-b {
  bottom: 7%;
  color: rgba(236, 186, 255, .065);
  animation: comparisonWordsRight 34s linear infinite;
}

@keyframes comparisonWordsLeft {
  from { transform: translate3d(-6%, 0, 0); }
  to { transform: translate3d(-49%, 0, 0); }
}

@keyframes comparisonWordsRight {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(-7%, 0, 0); }
}

@media (min-width: 761px) {
  .comparison-section {
    padding: clamp(82px, 6vw, 112px) max(3.5vw, calc((100vw - 1520px) / 2)) clamp(92px, 7vw, 120px);
  }

  .comparison-copy,
  .comparison-stage {
    width: min(1480px, 100%);
    max-width: none;
  }

  .comparison-copy h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(3rem, 4.3vw, 5.15rem);
  }

  .comparison-copy > p:not(.kicker) {
    max-width: none;
    white-space: nowrap;
  }

  .comparison-stage {
    margin-top: clamp(30px, 3vw, 44px);
  }

  .comparison-column.vpop {
    padding: clamp(30px, 3vw, 44px);
    border-color: rgba(188, 226, 255, .42);
    background:
      radial-gradient(circle at 88% 4%, rgba(137, 206, 255, .22), transparent 24%),
      radial-gradient(circle at 8% 100%, rgba(230, 151, 255, .12), transparent 30%),
      linear-gradient(135deg, rgba(47, 94, 184, .78), rgba(92, 61, 160, .72));
    box-shadow:
      0 34px 76px rgba(4, 10, 55, .32),
      inset 0 1px rgba(255, 255, 255, .22);
    backdrop-filter: blur(18px);
  }

  .comparison-card-head {
    max-width: none;
    min-height: 116px;
    padding-right: 180px;
  }

  .comparison-column.vpop .comparison-card-head h3 {
    margin: 18px 0 10px;
    white-space: nowrap;
    font-size: clamp(2.55rem, 3.6vw, 4.5rem);
    line-height: 1;
  }

  .comparison-character {
    top: 15px;
    right: 32px;
    width: clamp(120px, 10vw, 165px);
  }

  .comparison-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .comparison-benefits > li {
    display: grid;
    grid-template-columns: minmax(470px, .9fr) minmax(620px, 1.1fr);
    align-items: stretch;
    min-height: 84px;
    border-radius: 15px;
    background: rgba(246, 250, 255, .085);
  }

  .comparison-benefits > li:hover {
    transform: translateX(5px);
    background: rgba(246, 250, 255, .13);
  }

  .benefit-main {
    grid-template-columns: 38px minmax(0, 1fr) 25px;
    gap: 12px;
    min-height: 84px;
    padding: 14px 18px;
  }

  .comparison-column.vpop .benefit-main > span {
    width: 38px;
    height: 38px;
  }

  .benefit-main > div {
    display: flex;
    align-items: baseline;
    gap: 14px;
    min-width: 0;
  }

  .benefit-main b {
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
    font-size: clamp(.98rem, 1.18vw, 1.18rem);
  }

  .benefit-main small {
    min-width: 0;
    overflow: hidden;
    color: rgba(239, 246, 255, .68);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .68rem;
  }

  .benefit-burden {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    min-height: 84px;
    padding: 14px 18px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .12);
    background: rgba(8, 18, 61, .19);
  }

  .benefit-burden p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: clamp(.68rem, .8vw, .78rem);
  }

  .comparison-column.vpop > .comparison-promise {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-word-track {
    animation: none !important;
  }
}

/* Editorial flow: benefit first, then the hidden workload it replaces. */
.comparison-card-head .comparison-promise {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: auto;
  margin: 16px 0 13px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.comparison-card-head .comparison-promise span {
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid rgba(157, 240, 255, .55);
  border-radius: 99px;
  color: #d5fbff;
  background: rgba(97, 219, 255, .12);
  font: 900 .6rem/1 Arial, sans-serif;
  letter-spacing: .15em;
}

.comparison-card-head .comparison-promise strong {
  position: relative;
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.32rem);
  line-height: 1.4;
  letter-spacing: .015em;
  text-shadow: 0 5px 22px rgba(10, 21, 80, .28);
}

.comparison-card-head .comparison-promise strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #88ecff, #fff 52%, rgba(255, 138, 207, .2));
  box-shadow: 0 0 14px rgba(111, 231, 255, .48);
  transform-origin: left;
  animation: promiseLineGlow 4s ease-in-out infinite;
}

@keyframes promiseLineGlow {
  0%, 100% { transform: scaleX(.62); opacity: .55; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (min-width: 761px) {
  .comparison-column.vpop {
    background:
      radial-gradient(circle at 90% 2%, rgba(167, 218, 255, .17), transparent 25%),
      radial-gradient(circle at 7% 100%, rgba(218, 171, 255, .1), transparent 32%),
      linear-gradient(135deg, rgba(45, 84, 160, .66), rgba(75, 53, 126, .58));
  }

  .comparison-card-head {
    min-height: 155px;
  }

  .comparison-card-head p {
    margin-top: 5px;
  }

  .comparison-benefits {
    gap: 0;
    overflow: hidden;
    border-top: 1px solid rgba(211, 237, 255, .18);
    border-bottom: 1px solid rgba(211, 237, 255, .14);
    background: rgba(8, 25, 75, .1);
  }

  .comparison-benefits > li {
    position: relative;
    display: grid;
    grid-template-columns: minmax(390px, .78fr) 76px minmax(570px, 1.22fr);
    align-items: center;
    min-height: 86px;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid rgba(210, 235, 255, .12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .comparison-benefits > li:last-child {
    border-bottom: 0;
  }

  .comparison-benefits > li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(117, 224, 255, .1), transparent 42%, rgba(255, 149, 212, .05));
    opacity: 0;
    transform: translateX(-12%);
    transition: opacity .3s ease, transform .5s ease;
    pointer-events: none;
  }

  .comparison-benefits > li:hover {
    transform: none;
    background: transparent;
  }

  .comparison-benefits > li:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

  .benefit-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 86px;
    padding: 12px 22px;
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 15px;
    color: #0b65e9;
    background: linear-gradient(145deg, #fff, #b7f5ff);
    font: 900 1.05rem/1 Arial, sans-serif;
    box-shadow:
      0 10px 24px rgba(2, 20, 86, .24),
      0 0 22px rgba(111, 229, 255, .2);
    transform: rotate(-3deg);
  }

  .benefit-main > b {
    display: block;
    margin: 0;
    color: #fff;
    white-space: nowrap;
    font-size: clamp(1.25rem, 1.65vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: -.025em;
  }

  .benefit-arrow {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    color: #b7f5ff;
    font: 400 1.8rem/1 Arial, sans-serif;
    text-shadow: 0 0 18px rgba(113, 229, 255, .8);
    animation: benefitArrowFlow 2.8s ease-in-out infinite;
  }

  .benefit-burden {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 17px;
    align-items: center;
    min-height: 86px;
    padding: 12px 24px;
    border: 0;
    background: transparent;
  }

  .benefit-burden small {
    min-height: 29px;
    border-color: rgba(255, 168, 211, .34);
    color: rgba(255, 222, 238, .82);
    background: rgba(255, 101, 175, .06);
  }

  .benefit-burden p {
    color: rgba(238, 242, 255, .8);
    white-space: nowrap;
    font-size: clamp(.78rem, .95vw, .92rem);
  }
}

@keyframes benefitArrowFlow {
  0%, 100% { transform: translateX(-4px); opacity: .55; }
  50% { transform: translateX(5px); opacity: 1; }
}

@media (max-width: 760px) {
  .comparison-card-head .comparison-promise {
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
  }

  .comparison-card-head .comparison-promise span {
    min-width: 63px;
    min-height: 28px;
    padding-inline: 9px;
  }

  .comparison-card-head .comparison-promise strong {
    max-width: 200px;
    font-size: .9rem;
  }

  .comparison-card-head p {
    margin-top: 14px;
  }

  .comparison-benefits > li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .benefit-main {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    min-height: 78px;
    padding: 14px 15px;
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: #0b65e9;
    background: linear-gradient(145deg, #fff, #b7f5ff);
    font: 900 1rem/1 Arial, sans-serif;
  }

  .benefit-main > b {
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.3;
  }

  .benefit-arrow {
    display: none;
  }

  .benefit-burden {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    min-height: 62px;
    padding: 12px 15px;
  }

  .benefit-burden p {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-card-head .comparison-promise strong::after,
  .benefit-arrow {
    animation: none !important;
  }
}

@media (min-width: 761px) {
  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4) {
    min-height: 86px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(210, 235, 255, .12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .comparison-column.vpop .comparison-benefits > li:last-child {
    border-bottom: 0;
  }

  .comparison-column.vpop .benefit-arrow {
    display: grid;
    place-items: center;
    width: 76px;
    height: auto;
    border: 0;
    border-radius: 0;
    color: #b7f5ff;
    background: transparent;
    box-shadow: none;
    font: 400 1.8rem/1 Arial, sans-serif;
  }
}

/* Stream-overlay frame inspired by the supplied reference, without character art. */
.comparison-section {
  background:
    radial-gradient(circle, rgba(157, 235, 255, .34) 0 1px, transparent 1.7px) 7px 13px / 74px 74px,
    radial-gradient(circle, rgba(255, 172, 227, .22) 0 1px, transparent 1.6px) 42px 20px / 116px 116px,
    radial-gradient(circle at 15% 28%, rgba(17, 150, 255, .5), transparent 30%),
    radial-gradient(circle at 82% 68%, rgba(166, 59, 230, .32), transparent 31%),
    linear-gradient(135deg, #06142f 0%, #0a2458 47%, #1a1042 100%);
}

.comparison-chat {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(161, 231, 255, .28);
  border-radius: 10px;
  color: rgba(222, 246, 255, .38);
  background: rgba(13, 34, 92, .28);
  box-shadow: 0 0 22px rgba(89, 194, 255, .08);
  backdrop-filter: blur(6px);
  font: 800 .68rem/1 Arial, sans-serif;
  letter-spacing: .08em;
  animation: streamChatFloat 8s ease-in-out infinite;
}

.comparison-chat::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border: inherit;
  border-width: 0 1px 1px 0;
  background: inherit;
  transform: rotate(45deg);
}

.comparison-chat.chat-a { left: 3%; top: 18%; animation-delay: -1s; }
.comparison-chat.chat-b { right: 3.5%; top: 31%; color: rgba(255, 171, 218, .5); animation-delay: -4s; }
.comparison-chat.chat-c { left: 5%; bottom: 14%; animation-delay: -6s; }
.comparison-chat.chat-d { right: 5%; bottom: 11%; color: rgba(255, 223, 136, .48); animation-delay: -2s; }

@keyframes streamChatFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); opacity: .36; }
  50% { transform: translate3d(8px, -14px, 0) rotate(2deg); opacity: .8; }
}

@media (min-width: 761px) {
  .comparison-column.vpop {
    padding: clamp(32px, 3vw, 46px);
    border: 2px solid transparent;
    border-radius: 34px;
    background:
      radial-gradient(circle at 76% 4%, rgba(70, 206, 255, .12), transparent 27%),
      radial-gradient(circle at 22% 100%, rgba(255, 102, 204, .1), transparent 34%),
      linear-gradient(135deg, rgba(11, 32, 82, .86), rgba(21, 29, 82, .78)) padding-box,
      linear-gradient(102deg, #77eaff, rgba(135, 216, 255, .86) 42%, #f19bd8) border-box;
    box-shadow:
      0 36px 90px rgba(2, 7, 39, .48),
      0 0 32px rgba(91, 213, 255, .12),
      inset 0 0 45px rgba(78, 173, 255, .065);
    backdrop-filter: blur(18px);
  }

  .comparison-column.vpop::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 10px;
    width: auto;
    height: auto;
    border: 1px solid rgba(174, 225, 255, .2);
    border-radius: 25px;
    background:
      linear-gradient(90deg, rgba(111, 235, 255, .12), transparent 24%, transparent 76%, rgba(255, 146, 215, .1));
    box-shadow:
      inset 0 0 26px rgba(85, 200, 255, .06),
      0 0 16px rgba(255, 137, 211, .04);
    pointer-events: none;
  }

  .comparison-column.vpop::after {
    content: "STREAMER PICK";
    top: 20px;
    right: -42px;
    width: 166px;
    padding: 7px 0;
    color: #fff;
    background: linear-gradient(90deg, #ff4c9d, #ff6a87);
    box-shadow: 0 0 22px rgba(255, 75, 159, .34);
    font-size: .6rem;
    letter-spacing: .11em;
  }

  .comparison-card-head {
    min-height: 150px;
    padding-right: 90px;
  }

  .compare-vpop .compare-brand {
    border-color: rgba(126, 238, 255, .68);
    color: #eafcff;
    background: rgba(43, 161, 215, .13);
    box-shadow:
      0 0 0 1px rgba(255, 123, 214, .14) inset,
      0 0 18px rgba(88, 224, 255, .24),
      9px 0 22px rgba(255, 104, 199, .1);
  }

  .comparison-column.vpop .comparison-card-head h3 {
    text-shadow:
      0 4px 0 rgba(1, 7, 35, .35),
      0 9px 30px rgba(9, 25, 89, .42);
  }

  .comparison-benefits {
    gap: 11px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4) {
    min-height: 88px;
    border: 1px solid transparent;
    border-radius: 17px;
    background:
      linear-gradient(90deg, rgba(56, 86, 149, .24), rgba(43, 37, 107, .3)) padding-box,
      linear-gradient(96deg, rgba(107, 233, 255, .9), rgba(126, 213, 255, .5) 46%, rgba(255, 143, 215, .82)) border-box;
    box-shadow:
      0 12px 28px rgba(2, 12, 58, .2),
      0 0 16px rgba(102, 225, 255, .08),
      inset 0 1px rgba(255, 255, 255, .06);
  }

  .comparison-column.vpop .comparison-benefits > li:nth-child(even) {
    transform: translateX(7px);
  }

  .comparison-column.vpop .comparison-benefits > li:hover {
    transform: translateX(5px);
    box-shadow:
      0 16px 34px rgba(2, 12, 58, .28),
      0 0 26px rgba(112, 230, 255, .16),
      inset 0 1px rgba(255, 255, 255, .09);
  }

  .comparison-column.vpop .comparison-benefits > li:nth-child(even):hover {
    transform: translateX(12px);
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    border-radius: 50% 44% 50% 43%;
    color: #fff;
    background: linear-gradient(145deg, #25bfe9, #6964f4 58%, #ef72c7);
    box-shadow:
      0 8px 22px rgba(4, 18, 86, .3),
      0 0 20px rgba(98, 226, 255, .28);
  }

  .comparison-column.vpop .benefit-arrow {
    color: #91efff;
    text-shadow:
      0 0 10px rgba(115, 235, 255, .9),
      0 0 24px rgba(255, 124, 213, .34);
  }

  .benefit-burden {
    margin: 10px 12px 10px 0;
    min-height: 66px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(16, 24, 72, .48), rgba(37, 29, 88, .34));
    box-shadow: inset 0 1px rgba(255, 255, 255, .035);
  }

  .benefit-burden small {
    border-color: rgba(245, 118, 211, .55);
    color: #b8f4ff;
    background: rgba(91, 43, 142, .2);
    box-shadow:
      0 0 13px rgba(255, 100, 202, .1),
      inset 0 0 8px rgba(91, 221, 255, .06);
  }
}

@media (max-width: 760px) {
  .comparison-chat {
    display: none;
  }

  .comparison-column.vpop {
    border: 1px solid transparent;
    background:
      linear-gradient(145deg, rgba(16, 43, 102, .9), rgba(44, 24, 91, .87)) padding-box,
      linear-gradient(110deg, #76eaff, #f495d8) border-box;
    box-shadow: 0 24px 55px rgba(3, 9, 48, .42);
  }

  .comparison-column.vpop .comparison-benefits > li {
    border: 1px solid rgba(125, 221, 255, .36);
    background: linear-gradient(145deg, rgba(79, 108, 176, .18), rgba(67, 43, 126, .22));
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-chat {
    animation: none !important;
  }
}

/* Alignment and contrast correction for the negative-workload column. */
@media (min-width: 761px) {
  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4),
  .comparison-column.vpop .comparison-benefits > li:hover,
  .comparison-column.vpop .comparison-benefits > li:nth-child(even):hover {
    transform: none !important;
  }

  .comparison-column.vpop .benefit-burden {
    margin: 10px 12px 10px 0;
    min-height: 68px;
    background: linear-gradient(90deg, rgba(7, 15, 57, .76), rgba(27, 18, 68, .7));
    box-shadow:
      inset 0 1px rgba(255, 255, 255, .07),
      0 6px 18px rgba(2, 7, 36, .12);
  }

  .comparison-column.vpop .benefit-burden small {
    min-height: 31px;
    padding-inline: 12px;
    border-color: rgba(255, 128, 207, .72);
    color: #fff;
    background: rgba(192, 55, 151, .23);
    font-size: .72rem;
    font-weight: 800;
  }

  .comparison-column.vpop .benefit-burden p {
    color: rgba(255, 255, 255, .96);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    text-shadow: 0 2px 9px rgba(0, 0, 0, .28);
  }
}

/* Unified zero-cost + one-stop support story. */
.support-section {
  min-height: 0;
  padding-bottom: clamp(96px, 8vw, 132px);
}

.unified-support {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(720px, 1.78fr);
  width: min(1420px, 100%);
  min-height: 560px;
  margin: 56px auto 0;
  overflow: hidden;
  border: 1px solid rgba(117, 171, 255, .42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 10%, rgba(170, 125, 255, .12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(239, 244, 255, .92));
  box-shadow: 0 34px 80px rgba(40, 77, 153, .18);
}

.unified-support-intro {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 4vw, 54px);
  border-right: 1px solid rgba(111, 159, 255, .22);
  background:
    radial-gradient(circle at 20% 5%, rgba(61, 189, 255, .14), transparent 30%),
    linear-gradient(145deg, rgba(238, 247, 255, .95), rgba(246, 243, 255, .92));
}

.unified-support-label {
  margin: 0 0 20px;
  color: #0b63ff;
  font: 900 .68rem/1 Arial, sans-serif;
  letter-spacing: .18em;
}

.unified-support-intro h3 {
  margin: 0;
  color: #071535;
  font-size: clamp(2.15rem, 3.3vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.unified-support-intro h3 strong {
  color: #0a60ff;
  font-size: 1.35em;
  text-shadow: 0 12px 30px rgba(15, 99, 255, .18);
}

.unified-support-intro > p:not(.unified-support-label) {
  margin: 24px 0 0;
  color: #53617d;
  font-size: .84rem;
  line-height: 1.9;
}

.unified-support-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.unified-support-facts span {
  min-width: 0;
  padding: 13px 7px;
  border: 1px solid rgba(91, 145, 255, .25);
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, .72);
}

.unified-support-facts b,
.unified-support-facts small {
  display: block;
}

.unified-support-facts b {
  color: #0a60ff;
  font-size: 1.18rem;
}

.unified-support-facts small {
  margin-top: 4px;
  color: #71809c;
  font-size: .56rem;
  white-space: nowrap;
}

.creator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.creator-actions small {
  flex-basis: 100%;
  color: #8995ab;
  font-size: .62rem;
}

.creator-actions span {
  padding: 7px 11px;
  border-radius: 99px;
  color: #0d5be5;
  background: #fff;
  box-shadow: 0 6px 15px rgba(34, 90, 176, .09);
  font-size: .66rem;
}

.unified-flow-board {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(32px, 3vw, 48px) clamp(30px, 3vw, 48px) 42px;
}

.unified-flow-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(89, 139, 235, .2);
}

.unified-flow-head small {
  color: #0a61ff;
  font: 900 .63rem/1 Arial, sans-serif;
  letter-spacing: .17em;
}

.unified-flow-head h3 {
  margin: 9px 0 0;
  color: #071535;
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  line-height: 1.2;
}

.flow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(56, 183, 255, .3);
  border-radius: 99px;
  color: #1161e8;
  background: rgba(234, 248, 255, .78);
  white-space: nowrap;
  font: 800 .58rem/1 Arial, sans-serif;
  letter-spacing: .11em;
}

.flow-live i,
.quest-status i,
.report-livebar i,
.contact-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff297d;
  box-shadow: 0 0 0 5px rgba(255, 41, 125, .12), 0 0 16px rgba(255, 41, 125, .5);
  animation: liveDotPulse 2s ease-in-out infinite;
}

.unified-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.unified-flow::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 6%;
  right: 6%;
  top: 62px;
  height: 2px;
  background: linear-gradient(90deg, #34c9ff, #5578ff 48%, #cf62ef 78%, #ff6cae);
  box-shadow: 0 0 15px rgba(72, 171, 255, .32);
}

.unified-flow li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 5px;
  text-align: center;
}

.unified-flow li > span {
  display: none;
}

.unified-flow img,
.unified-flow .flow-symbol {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  padding: 10px;
  border: 1px solid rgba(93, 157, 255, .25);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 25px rgba(33, 91, 175, .13);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.unified-flow .flow-symbol {
  fill: none;
  stroke: #176cff;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.unified-flow li.is-active img,
.unified-flow li:hover img,
.unified-flow li.is-active .flow-symbol,
.unified-flow li:hover .flow-symbol {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(61, 199, 255, .6);
  box-shadow: 0 16px 30px rgba(33, 91, 175, .18), 0 0 24px rgba(91, 211, 255, .18);
}

.unified-flow b,
.unified-flow small {
  display: block;
}

.unified-flow b {
  margin-top: 13px;
  color: #0a1737;
  font-size: .77rem;
  white-space: nowrap;
}

.unified-flow small {
  margin-top: 6px;
  color: #75809a;
  font-size: .57rem;
  line-height: 1.5;
}

.unified-support-mascot {
  position: absolute;
  z-index: 4;
  right: -25px;
  bottom: -28px;
  width: 142px;
  filter: drop-shadow(0 20px 25px rgba(29, 44, 108, .22));
  pointer-events: none;
  animation: supportMascotFloat 5s ease-in-out infinite;
}

/* Viewer questions as streaming chat cards. */
.worry-stage {
  gap: 24px;
}

.worry-card {
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .93), rgba(246, 249, 255, .88)) padding-box,
    linear-gradient(120deg, rgba(57, 170, 255, .7), rgba(148, 111, 255, .35), rgba(255, 92, 163, .55)) border-box;
  box-shadow: 0 22px 48px rgba(44, 83, 158, .14);
}

.worry-card::before {
  content: "VIEWER QUESTION";
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 17px;
  width: auto;
  height: auto;
  color: #8a96af;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
  transform: none;
  clip-path: none;
  font: 900 .55rem/1 Arial, sans-serif;
  letter-spacing: .13em;
}

.worry-card::after {
  display: none !important;
  content: none !important;
}

.worry-card:not(:last-of-type)::after {
  display: none !important;
  content: none !important;
}

.worry-no {
  position: absolute !important;
  top: 20px !important;
  left: 22px !important;
  display: grid !important;
  place-items: center;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: linear-gradient(145deg, #188bff, #7454ef) !important;
  box-shadow: 0 8px 18px rgba(38, 101, 218, .23);
  font-size: .82rem !important;
}

.worry-label {
  position: absolute;
  z-index: 4;
  top: 31px;
  left: 82px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 99px;
  color: #0b63f5 !important;
  background: rgba(36, 132, 255, .09);
}

.worry-card {
  padding-top: 98px;
}

/* Three-step quest/progress presentation. */
.quest-status {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, 100%);
  margin: 34px auto 0;
  padding: 13px 18px;
  border: 1px solid rgba(113, 162, 255, .32);
  border-radius: 16px 16px 0 0;
  color: #fff;
  background: linear-gradient(90deg, #0b3d98, #344bd0 55%, #7041d6);
  box-shadow: 0 15px 35px rgba(35, 67, 153, .18);
}

.quest-status > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 900 .66rem/1 Arial, sans-serif;
  letter-spacing: .14em;
}

.quest-status > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quest-status b {
  font-size: .72rem;
}

.quest-status em {
  color: rgba(255, 255, 255, .68);
  font-size: .64rem;
  font-style: normal;
}

.quest-status strong {
  padding: 7px 11px;
  border-radius: 99px;
  color: #1633aa;
  background: #c6f8ff;
  font: 900 .6rem/1 Arial, sans-serif;
}

.simple-steps {
  margin-top: 0 !important;
  padding: 28px;
  border: 1px solid rgba(113, 162, 255, .28);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 28px 60px rgba(48, 83, 158, .13);
}

.simple-steps article {
  position: relative;
  border-color: rgba(85, 151, 255, .28);
  box-shadow: 0 16px 36px rgba(43, 83, 160, .12);
}

.simple-steps article::after {
  position: absolute;
  z-index: 5;
  right: 18px;
  top: 15px;
  padding: 6px 9px;
  border-radius: 99px;
  color: #0b5ee8;
  background: #dff9ff;
  font: 900 .54rem/1 Arial, sans-serif;
  letter-spacing: .08em;
}

.simple-steps article:nth-of-type(1)::after { content: "TALK"; }
.simple-steps article:nth-of-type(2)::after { content: "CHECK"; }
.simple-steps article:nth-of-type(3)::after { content: "RECEIVE"; }

/* Streaming analytics treatment for the sales report. */
.report-dashboard {
  overflow: hidden;
  border: 1px solid transparent;
  background:
    radial-gradient(circle at 88% 8%, rgba(62, 194, 255, .14), transparent 28%),
    linear-gradient(145deg, rgba(7, 26, 72, .96), rgba(31, 20, 78, .94)) padding-box,
    linear-gradient(110deg, #64e4ff, #6d83ff 48%, #f281ce) border-box;
  box-shadow: 0 36px 80px rgba(6, 14, 61, .32);
}

.report-livebar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin: -1px -1px 24px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(125, 211, 255, .2);
  color: #fff;
  background: rgba(13, 46, 111, .66);
}

.report-livebar > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 900 .64rem/1 Arial, sans-serif;
  letter-spacing: .13em;
}

.report-livebar p {
  margin: 0;
  color: rgba(220, 237, 255, .67);
  font-size: .65rem;
}

.report-livebar strong {
  padding: 7px 11px;
  border-radius: 99px;
  color: #082e8d;
  background: #bff7ff;
  font: 900 .58rem/1 Arial, sans-serif;
}

.report-metrics article {
  border-color: rgba(134, 218, 255, .18);
  color: #fff;
  background: rgba(255, 255, 255, .075);
}

.report-metrics article small,
.report-metrics article span {
  color: rgba(218, 233, 255, .68);
}

.report-metrics article strong {
  color: #fff;
  text-shadow: 0 0 24px rgba(89, 217, 255, .28);
}

.report-visual {
  border-color: rgba(132, 215, 255, .18);
  background: rgba(4, 15, 55, .38);
}

.report-chart {
  background:
    linear-gradient(rgba(98, 180, 255, .08) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(98, 180, 255, .06) 1px, transparent 1px) 0 0 / 16.66% 100%;
}

.report-insight {
  border-color: rgba(255, 117, 207, .3);
  color: #fff;
  background: rgba(80, 36, 123, .28);
}

.report-link {
  color: #fff;
  border-color: rgba(116, 225, 255, .42);
  background: rgba(48, 109, 214, .34);
}

/* Final CTA as a live support launch screen. */
.contact-live {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(121, 230, 255, .35);
  border-radius: 99px;
  color: #fff;
  background: rgba(33, 100, 184, .2);
  box-shadow: 0 0 25px rgba(78, 211, 255, .1);
}

.contact-live span {
  font: 900 .64rem/1 Arial, sans-serif;
  letter-spacing: .13em;
}

.contact-live small {
  color: rgba(221, 240, 255, .68);
  font-size: .62rem;
}

.contact-button {
  position: relative;
  overflow: visible;
  box-shadow:
    0 14px 30px rgba(220, 78, 101, .2),
    0 0 0 0 rgba(239, 79, 101, .16);
  animation: contactButtonLive 3.6s ease-in-out infinite;
}

@keyframes liveDotPulse {
  0%, 100% { transform: scale(.8); opacity: .65; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes contactButtonLive {
  0%, 100% { box-shadow: 0 14px 30px rgba(220, 78, 101, .18), 0 0 0 0 rgba(239, 79, 101, .13); }
  50% { box-shadow: 0 17px 34px rgba(220, 78, 101, .24), 0 0 0 7px rgba(239, 79, 101, 0); }
}

@media (max-width: 980px) {
  .unified-support {
    grid-template-columns: 1fr;
  }

  .unified-support-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(111, 159, 255, .22);
  }

  .unified-flow {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 28px;
  }

  .unified-flow::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .unified-support {
    margin-top: 36px;
    border-radius: 25px;
  }

  .unified-support-intro,
  .unified-flow-board {
    padding: 28px 20px;
  }

  .unified-support-intro h3 {
    font-size: 2.45rem;
  }

  .unified-flow-head {
    display: block;
  }

  .flow-live {
    margin-top: 15px;
  }

  .unified-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .unified-support-mascot {
    width: 112px;
  }

  .quest-status {
    margin-top: 25px;
    padding: 12px 14px;
  }

  .quest-status > div {
    display: none;
  }

  .simple-steps {
    padding: 16px;
  }

  .report-livebar {
    grid-template-columns: 1fr auto;
  }

  .report-livebar p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-live i,
  .quest-status i,
  .report-livebar i,
  .contact-live i,
  .contact-button {
    animation: none !important;
  }
}

/* Final copy system: concise, creator-first and selectively expressive. */
.comparison-copy h2 {
  line-height: 1.08;
}

.comparison-title-accent {
  display: inline-block;
  margin-top: .08em;
  color: #fff;
  background: linear-gradient(100deg, #79ebff 0%, #82a7ff 46%, #ff8bce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 9px 24px rgba(87, 189, 255, .2));
}

.comparison-card-head h3 {
  max-width: none;
  font-family: ui-rounded, "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

.comparison-card-head h3 > span {
  color: #fff;
  background: linear-gradient(100deg, #86edff 0%, #a4b0ff 50%, #ff9bd6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comparison-benefits > li:nth-child(-n + 2) .benefit-main > b {
  color: #fff;
  background: linear-gradient(100deg, #fff 0%, #e4fbff 52%, #ffd1eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 8px rgba(4, 35, 104, .42));
}

.contact-reassurance {
  margin: 24px 0 0 !important;
  color: #fff !important;
  font-family: ui-rounded, "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem) !important;
  font-weight: 900;
  line-height: 1.45 !important;
}

.contact-note {
  margin: 5px 0 0 !important;
  color: rgba(224, 239, 255, .78) !important;
  font-size: .76rem !important;
  line-height: 1.6 !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.contact-actions .button {
  min-width: 210px;
  min-height: 64px;
}

.contact-actions .contact-button {
  margin-top: 0;
}

.contact-x-button {
  border: 1px solid rgba(147, 225, 255, .46);
  color: #fff;
  background: rgba(9, 25, 65, .6);
  box-shadow: 0 16px 38px rgba(2, 10, 42, .22);
}

.contact-x-button:hover {
  box-shadow: 0 20px 44px rgba(2, 10, 42, .3), 0 0 24px rgba(93, 216, 255, .14);
}

@media (max-width: 760px) {
  .comparison-title-accent {
    margin-top: .15em;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
    min-width: 0;
  }
}

/* Layout and typography polish across the main story beats. */
.hero h1 {
  text-wrap: balance;
}

.hero-world-accent,
.hero h1 em {
  position: relative;
  display: inline-block;
  color: #0a63f5;
  font-style: normal;
  background: linear-gradient(100deg, #0b67f5 0%, #588dff 48%, #ef6fbd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -7%;
  bottom: -.06em;
  height: .08em;
  border-radius: 99px;
  background: linear-gradient(90deg, #36d8ff, #5e83ff 56%, #ff75bd);
  box-shadow: 0 0 16px rgba(75, 172, 255, .28);
}

.comparison-card-head h3,
.comparison-card-head h3 > span {
  text-shadow: none !important;
  filter: none !important;
}

.comparison-card-head h3 > span {
  background: linear-gradient(100deg, #66eaff 0%, #9da9ff 48%, #ff83cd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.works-section {
  padding-top: clamp(76px, 7vw, 108px);
}

.works-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: end;
  column-gap: clamp(52px, 7vw, 110px);
}

.works-topline h2 {
  font-size: clamp(2.8rem, 4.7vw, 5.25rem);
  line-height: 1;
}

.works-topline > p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(.9rem, 1.15vw, 1.08rem);
  line-height: 1.85;
}

.report-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.report-heading > div {
  min-width: 0;
}

.report-heading > div > .kicker {
  margin: 0;
  color: #86eaff;
}

.report-heading > div > h2 {
  margin-top: 15px;
}

.report-heading > p:last-child {
  max-width: 410px;
  margin: 0 0 8px;
  color: rgba(236, 242, 255, .74);
  font-size: clamp(.9rem, 1.1vw, 1.04rem);
}

.contact-copy {
  max-width: 820px;
}

.contact-copy h2 {
  font-size: clamp(3.2rem, 5.8vw, 6.15rem);
  line-height: .98;
}

.contact-mascot {
  right: clamp(12px, 2vw, 34px);
  bottom: -22px;
  width: clamp(175px, 18vw, 285px);
}

@media (max-width: 760px) {
  .works-topline,
  .report-heading {
    display: block;
  }

  .works-topline > p,
  .report-heading > p:last-child {
    margin-top: 24px;
  }

  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
}

/* Make comparison context, split headings and the final CTA feel intentional. */
.benefit-burden {
  border: 1px solid rgba(255, 141, 211, .13) !important;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(11, 28, 83, .76), rgba(55, 28, 91, .64)) !important;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .04),
    0 10px 25px rgba(3, 9, 48, .12);
}

.benefit-burden small {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  min-height: 0 !important;
  padding: 0 17px 0 0 !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 137, 207, .38) !important;
  border-radius: 0 !important;
  color: #ffd4ec !important;
  background: transparent !important;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2;
}

.benefit-burden small::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff65b6;
  box-shadow: 0 0 0 5px rgba(255, 101, 182, .1), 0 0 13px rgba(255, 101, 182, .68);
}

.benefit-burden small::after {
  display: none;
  content: none;
}

.story-title-accent {
  color: #fff;
  background: linear-gradient(100deg, #fff 0%, #d8f8ff 48%, #ffc5e8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.works-topline > p,
.report-heading > p:last-child {
  position: relative;
  padding-top: 22px;
}

.works-topline > p::before,
.report-heading > p:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 82px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #7beaff, #8a9eff 54%, #ff8acb);
  box-shadow: 0 0 14px rgba(111, 224, 255, .3);
}

.contact-copy h2 {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.contact-title-accent,
.contact-copy h2 em {
  position: relative;
  display: inline-block;
  color: #fff;
  font-style: normal;
  background: linear-gradient(100deg, #75eaff 0%, #a8afff 50%, #ff8fd1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-copy h2 .title-particle {
  display: inline-block;
  margin: 0 .04em;
  color: rgba(226, 237, 255, .82);
  font-size: .52em;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: .2em;
  -webkit-text-fill-color: rgba(226, 237, 255, .82);
}

.contact-copy h2 em .title-particle {
  color: rgba(218, 235, 255, .86);
  -webkit-text-fill-color: rgba(218, 235, 255, .86);
}

.contact-copy h2 em::after {
  content: "";
  position: absolute;
  left: 3%;
  right: -4%;
  bottom: -.08em;
  height: .07em;
  border-radius: 99px;
  background: linear-gradient(90deg, #5be5ff, #828eff 52%, #ff78c2);
  box-shadow: 0 0 16px rgba(100, 208, 255, .28);
}

@media (max-width: 760px) {
  .benefit-burden small {
    min-width: 108px;
    padding-right: 12px !important;
  }

  .works-topline > p,
  .report-heading > p:last-child {
    padding-top: 18px;
  }
}

@media (min-width: 981px) {
  .unified-support {
    grid-template-columns: minmax(360px, .82fr) minmax(720px, 1.68fr);
    min-height: 0;
  }

  .unified-support-intro {
    padding: 32px 34px;
  }

  .unified-support-label {
    margin-bottom: 14px;
  }

  .unified-support-intro h3 {
    font-size: clamp(2rem, 2.65vw, 2.85rem);
    line-height: 1.04;
  }

  .unified-support-intro h3 strong {
    font-size: 1.22em;
  }

  .unified-support-intro > p:not(.unified-support-label) {
    margin-top: 16px;
    font-size: .74rem;
    line-height: 1.75;
  }

  .unified-support-facts {
    margin-top: 20px;
  }

  .unified-support-facts span {
    padding: 10px 5px;
  }

  .creator-actions {
    margin-top: 16px;
  }

  .unified-flow-board {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .report-heading {
    grid-template-columns: minmax(620px, 1.25fr) minmax(330px, .75fr);
  }

  .report-heading h2 {
    max-width: none;
    font-size: clamp(3.15rem, 4.2vw, 4.5rem);
    line-height: 1.04;
  }
}

/* Final phone typography: deliberate line breaks, compact cards, no orphaned words. */
@media (max-width: 560px) {
  .worries-section .section-heading h2 {
    font-size: clamp(2rem, 9.4vw, 2.35rem);
    line-height: 1.22;
    letter-spacing: -.045em;
  }

  .support-heading h2 {
    font-size: clamp(2rem, 9vw, 2.3rem);
    line-height: 1.28;
    letter-spacing: -.045em;
  }

  .unified-support-intro h3 {
    font-size: clamp(1.8rem, 7.5vw, 2.05rem);
    line-height: 1.18;
    letter-spacing: -.05em;
  }

  .unified-support-intro h3 strong {
    font-size: 1em;
  }

  .support-cost-line,
  .support-service-line {
    display: inline-block;
    white-space: nowrap;
  }

  .comparison-section {
    padding: 62px 16px 76px;
  }

  .comparison-copy h2 {
    margin-top: 14px;
    font-size: clamp(2rem, 8.8vw, 2.3rem);
    line-height: 1.12;
    letter-spacing: -.05em;
  }

  .comparison-title-accent {
    margin-top: .12em;
  }

  .comparison-copy > p:not(.kicker) {
    max-width: 100%;
    margin-top: 24px;
    font-size: .84rem;
    line-height: 1.8;
  }

  .comparison-stage {
    margin-top: 26px;
  }

  .comparison-column.vpop {
    padding: 20px 16px 18px;
    border-radius: 22px;
  }

  .comparison-card-head {
    min-height: 0;
    padding-right: 0;
  }

  .comparison-column.vpop .comparison-card-head h3 {
    max-width: none;
    margin: 54px 0 10px;
    font-size: clamp(1.65rem, 7.2vw, 1.9rem);
    line-height: 1.12;
    letter-spacing: -.04em;
  }

  .comparison-card-head p {
    max-width: none;
    margin-top: 14px;
    font-size: .76rem;
    line-height: 1.7;
  }

  .comparison-character {
    top: 13px;
    right: 4px;
    width: 82px;
  }

  .comparison-benefits {
    gap: 10px;
    margin-top: 22px;
  }

  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4) {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    transform: none !important;
  }

  .comparison-column.vpop .benefit-main {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 66px;
    padding: 11px 13px;
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .comparison-column.vpop .benefit-main > b {
    font-size: 1.03rem;
    line-height: 1.25;
  }

  .comparison-column.vpop .benefit-arrow {
    display: none !important;
  }

  .comparison-column.vpop .benefit-burden {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    min-height: 52px;
    margin: 0;
    padding: 10px 13px;
    border-radius: 0;
  }

  .comparison-column.vpop .benefit-burden small {
    min-width: 92px;
    padding-right: 11px !important;
    font-size: .62rem;
  }

  .comparison-column.vpop .benefit-burden p {
    font-size: .69rem;
    font-weight: 700;
    line-height: 1.45;
  }

  .report-heading h2 {
    max-width: none;
    font-size: clamp(1.95rem, 8.5vw, 2.2rem);
    line-height: 1.14;
    letter-spacing: -.045em;
  }

  .report-heading > p:last-child {
    font-size: .82rem;
    line-height: 1.8;
  }
}

/* Final PC typography and heading alignment. */
.headline-key {
  padding-right: .14em;
  margin-right: -.14em;
}

@media (min-width: 1101px) {
  .creator-feature {
    grid-template-columns: minmax(540px, 1.04fr) minmax(0, .96fr);
    gap: clamp(42px, 4vw, 68px);
  }

  .creator-copy {
    min-width: 0;
  }

  .creator-copy h3 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.35rem, 2.45vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -.045em;
  }

  .news-heading {
    width: min(1100px, calc(100% - 96px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
  }

  .news-heading > div {
    text-align: center;
  }

  .news-heading-copy {
    position: relative;
    width: auto;
    max-width: 420px;
    margin: 22px 0 0 !important;
    padding: 18px 0 0;
    text-align: center;
  }

  .news-heading-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 72px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #7feaff, #ff75c1);
    box-shadow: 0 0 14px rgba(104, 223, 255, .35);
    transform: translateX(-50%);
  }
}

/* =========================================================
   VPOP VER.3 — LOGO PALETTE THEME
   White-led composition with coral, yellow, sky and navy.
   Layout and motion remain inherited from ver2.
   ========================================================= */
:root {
  --coral: #ef4f65;
  --coral-deep: #d93655;
  --sun: #fdbb1f;
  --sun-soft: #fff2bd;
  --sky: #4b9bd3;
  --sky-soft: #eaf5fc;
  --brand-navy: #173b7a;
  --brand-ink: #102a56;
  --warm-white: #fffdf9;
  --blue: var(--sky);
  --blue-deep: var(--brand-navy);
  --pink: var(--coral);
  --violet: var(--sun);
  --navy: var(--brand-ink);
  --muted: #617087;
  --line: #d9e4ee;
  --ice: #f6f9fc;
  --shadow: 0 28px 80px rgba(23, 59, 122, .12);
}

body {
  background: var(--warm-white);
}

::selection {
  color: var(--brand-ink);
  background: var(--sun-soft);
}

.site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(23, 59, 122, .11);
  box-shadow: 0 8px 28px rgba(23, 59, 122, .045);
}

.brand {
  gap: 8px;
  color: var(--brand-navy);
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font: 900 1em/1 Arial, sans-serif;
  letter-spacing: -.09em;
}

.brand-word i {
  font-style: normal;
}

.brand-word i:nth-child(1) { color: var(--coral); }
.brand-word i:nth-child(2) { color: var(--sky); }
.brand-word i:nth-child(3) { color: var(--sun); }
.brand-word i:nth-child(4) { color: var(--brand-navy); }

.brand-mark {
  width: 29px;
  height: 25px;
  border-radius: 50% 50% 46% 54%;
  background:
    radial-gradient(circle at 70% 18%, var(--brand-navy) 0 8%, transparent 9%),
    radial-gradient(ellipse at 72% 48%, var(--sky) 0 18%, transparent 19%),
    radial-gradient(ellipse at 46% 24%, var(--coral) 0 23%, transparent 24%),
    radial-gradient(ellipse at 20% 55%, var(--sun) 0 18%, transparent 19%);
  transform: rotate(-8deg);
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.desktop-nav a::after {
  background: linear-gradient(90deg, var(--sun), var(--coral));
}

.header-cta,
.button-primary,
.contact-form-button {
  background: linear-gradient(110deg, #eb6677, #f48691);
  box-shadow: 0 12px 28px rgba(218, 77, 99, .19);
}

.button-secondary {
  color: var(--brand-navy);
  border-color: var(--sky);
}

.hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(239, 79, 101, .12), transparent 24%),
    radial-gradient(circle at 66% 86%, rgba(253, 187, 31, .14), transparent 26%),
    linear-gradient(120deg, #fff 0%, #fffdf8 38%, #f4f9fc 72%, #fff4f3 100%);
}

.hero::before {
  border-color: rgba(75, 155, 211, .18);
  box-shadow:
    0 0 0 80px rgba(253, 187, 31, .035),
    0 0 0 170px rgba(239, 79, 101, .025);
}

.hero-grid-lines {
  background-image:
    linear-gradient(rgba(23, 59, 122, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 59, 122, .13) 1px, transparent 1px);
}

.ambient-line {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(75, 155, 211, .62),
    rgba(253, 187, 31, .72),
    rgba(239, 79, 101, .64),
    transparent
  );
}

.ambient-triangle {
  border-bottom-color: rgba(253, 187, 31, .42);
  filter: drop-shadow(0 8px 10px rgba(253, 187, 31, .15));
}

.ambient-triangle-2 {
  border-bottom-color: rgba(239, 79, 101, .4);
}

.ambient-triangle-3 {
  border-bottom-color: rgba(75, 155, 211, .34);
}

.ambient-orb {
  box-shadow: 0 0 16px 5px rgba(253, 187, 31, .34);
}

.eyebrow,
.kicker,
.hero h1 em,
.hero-points b,
.hero-index,
.worry-label,
.zero-panel > p,
.vertical-label,
.zero-price,
.story-head > div > p {
  color: var(--brand-navy);
}

.hero-world-accent,
.story-title-accent,
.headline-key {
  background: linear-gradient(100deg, var(--sky) 0%, var(--sun) 48%, var(--coral) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
}

.hero-art::before {
  background: linear-gradient(135deg, var(--sun), var(--coral));
}

.hero-index span {
  background: linear-gradient(var(--sky), var(--sun), var(--coral));
}

.section-divider {
  background:
    repeating-linear-gradient(
      120deg,
      var(--coral) 0 13px,
      #fff 13px 21px,
      var(--sun) 21px 34px,
      #fff 34px 42px,
      var(--sky) 42px 55px,
      #fff 55px 63px,
      var(--brand-navy) 63px 76px,
      #fff 76px 84px
    );
  border-color: rgba(23, 59, 122, .08);
}

.section-divider span {
  color: #fff;
  background: var(--brand-navy);
  border-color: rgba(255, 255, 255, .82);
}

.news-section {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(239, 79, 101, .15), transparent 25%),
    radial-gradient(circle at 9% 84%, rgba(253, 187, 31, .17), transparent 28%),
    linear-gradient(135deg, #fffdf7 0%, #fff 42%, #f6fbfe 70%, #fff2f3 100%);
}

.news-section::before,
.news-section::after {
  border-color: rgba(23, 59, 122, .04);
}

.news-wallpaper {
  -webkit-text-stroke-color: rgba(23, 59, 122, .09);
}

.news-heading > div > p {
  color: var(--coral);
}

.news-heading-copy {
  color: rgba(16, 42, 86, .68);
}

.news-heading-copy::before {
  background: linear-gradient(90deg, var(--sky), var(--sun), var(--coral));
  box-shadow: 0 0 14px rgba(239, 79, 101, .18);
}

.carousel-dots button {
  background: rgba(23, 59, 122, .18);
}

.carousel-dots button[aria-current="true"] {
  background: linear-gradient(90deg, var(--sun), var(--coral));
}

.carousel-footer {
  color: var(--brand-navy);
}

.carousel-button {
  color: var(--brand-navy);
  border: 1px solid rgba(75, 155, 211, .28);
}

.worries-section {
  background:
    radial-gradient(circle at 8% 30%, rgba(253, 187, 31, .12), transparent 22%),
    radial-gradient(circle at 93% 80%, rgba(75, 155, 211, .11), transparent 25%),
    linear-gradient(180deg, #fff, #fff9ed);
}

.worries-section::before { border-bottom-color: rgba(253, 187, 31, .24); }
.worries-section::after { border-bottom-color: rgba(239, 79, 101, .2); }

.worry-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, .98), rgba(255, 250, 238, .9));
  border-color: rgba(75, 155, 211, .32);
  box-shadow: 0 24px 55px rgba(23, 59, 122, .09);
}

.worry-card:nth-child(2) { border-color: rgba(253, 187, 31, .5); }
.worry-card:nth-child(3) { border-color: rgba(239, 79, 101, .38); }
.worry-no { color: rgba(23, 59, 122, .08); }
.worry-motif { border-color: rgba(75, 155, 211, .28); }

.three-steps {
  background:
    radial-gradient(circle at 50% 0, rgba(75, 155, 211, .08), transparent 34%),
    #fff;
}

.simple-steps article {
  border-color: rgba(23, 59, 122, .16);
  background: linear-gradient(180deg, #f8fbfd, #fff);
}

.simple-steps article:nth-of-type(2) {
  background: linear-gradient(180deg, #fff9e8, #fff);
}

.simple-steps article:nth-of-type(3) {
  background: linear-gradient(180deg, #fff2f3, #fff);
}

.support-section {
  background:
    radial-gradient(circle at 94% 8%, rgba(239, 79, 101, .1), transparent 24%),
    linear-gradient(180deg, #f5fafc, #fff 92%);
}

.support-section::before,
.zero-panel::after {
  color: rgba(23, 59, 122, .025);
}

.zero-plan {
  border-color: rgba(23, 59, 122, .14);
}

.zero-panel {
  background:
    radial-gradient(circle at 15% 35%, #fff 0, transparent 27%),
    linear-gradient(145deg, #eef8fd, #fffaf0);
}

.zero-price strong {
  text-shadow: 0 20px 35px rgba(23, 59, 122, .11);
}

.zero-confetti i { border-bottom-color: rgba(253, 187, 31, .55); }
.zero-confetti i:nth-child(2) { border-bottom-color: rgba(239, 79, 101, .48); }
.zero-confetti i:nth-child(4) { border-bottom-color: rgba(23, 59, 122, .25); }
.zero-confetti i:nth-child(5) { border-bottom-color: rgba(75, 155, 211, .42); }

.preorder-story {
  background: linear-gradient(140deg, #f2f9fd, #fff8e8 52%, #fff1f3);
}

.story-head {
  border-bottom-color: rgba(23, 59, 122, .17);
}

.story-grid article.is-highlighted {
  border-color: var(--coral);
  box-shadow: 0 18px 38px rgba(239, 79, 101, .15);
}

.full-support,
.unified-flow-board {
  border-color: rgba(23, 59, 122, .15);
  box-shadow: var(--shadow);
}

.comparison-section {
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(239, 79, 101, .36), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(253, 187, 31, .2), transparent 25%),
    linear-gradient(135deg, #102d62 0%, #173b7a 58%, #3c315d 100%);
}

.comparison-section .kicker {
  color: #ffd760;
}

.comparison-title-accent,
.comparison-card-head h3 span {
  background: linear-gradient(95deg, #fff 0%, #ffd95b 32%, #ff8b98 66%, #76b9e4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.compare-vpop {
  background:
    radial-gradient(circle at 85% 12%, rgba(239, 79, 101, .22), transparent 26%),
    linear-gradient(150deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07));
  border-color: rgba(255, 255, 255, .38);
}

.comparison-benefits > li {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
}

.benefit-check {
  color: var(--brand-navy);
  background: linear-gradient(135deg, #fff, var(--sun-soft));
}

.benefit-arrow {
  color: #ffd85d;
}

.benefit-burden {
  background: rgba(9, 27, 65, .55);
  border-color: rgba(239, 79, 101, .42);
}

.benefit-burden small {
  color: #ffb7c0;
  border-color: rgba(239, 79, 101, .55);
}

.works-section {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(253, 187, 31, .22), transparent 27%),
    radial-gradient(circle at 92% 20%, rgba(239, 79, 101, .15), transparent 28%),
    linear-gradient(135deg, #fff9e8, #fff 52%, #f4f9fc);
}

.works-section .kicker {
  color: var(--coral);
}

.works-wallpaper {
  color: rgba(23, 59, 122, .045);
  -webkit-text-stroke-color: rgba(23, 59, 122, .08);
}

.works-topline > p,
.creator-copy > p {
  color: rgba(16, 42, 86, .72);
}

.merch-window,
.creator-feature {
  border-color: rgba(23, 59, 122, .14);
  box-shadow: var(--shadow);
}

.merch-blue { background: linear-gradient(145deg, #e9f5fc, #fff); }
.merch-pink { background: linear-gradient(145deg, #fff0f2, #fff); }
.merch-violet { background: linear-gradient(145deg, #fff7db, #fff); }
.merch-ice { background: linear-gradient(145deg, #f5f8fb, #fff); }

.text-link,
.report-link {
  color: var(--coral);
}

.report-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(75, 155, 211, .13), transparent 26%),
    linear-gradient(180deg, #fff, #f4f8fb);
}

.report-section .kicker {
  color: var(--sky);
}

.report-dashboard {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(239, 79, 101, .24), transparent 25%),
    linear-gradient(140deg, #102d62, #173b7a);
  border-color: rgba(75, 155, 211, .48);
}

.report-livebar strong {
  color: var(--brand-navy);
  background: var(--sun-soft);
}

.report-livebar i {
  background: var(--coral);
  box-shadow: 0 0 14px rgba(239, 79, 101, .72);
}

.report-chart span {
  background: linear-gradient(180deg, #76b9e4, var(--sky));
  box-shadow: 0 8px 20px rgba(75, 155, 211, .22);
}

.report-chart span:nth-last-child(-n + 2) {
  background: linear-gradient(180deg, var(--sun), var(--coral));
}

.contact-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 79, 101, .48), transparent 27%),
    radial-gradient(circle at 12% 100%, rgba(253, 187, 31, .24), transparent 26%),
    linear-gradient(135deg, #102d62 0%, #173b7a 58%, #432b58 100%);
}

.contact-section > p,
.contact-copy > p:not(.contact-reassurance):not(.contact-note) {
  color: #8bc5eb;
}

.contact-title-accent {
  background: linear-gradient(92deg, #78bce6 0%, #ffd85a 46%, #ff8a98 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
}

.contact-live {
  border-color: rgba(75, 155, 211, .55);
}

.contact-live i {
  background: var(--coral);
  box-shadow: 0 0 13px rgba(239, 79, 101, .78);
}

.contact-x-button {
  border-color: rgba(255, 255, 255, .45);
}

footer {
  background: #fff;
  border-top: 1px solid rgba(23, 59, 122, .08);
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(255, 255, 255, .96);
  }

  .brand-mark {
    width: 27px;
    height: 23px;
  }

  .hero {
    background:
      radial-gradient(circle at 92% 26%, rgba(239, 79, 101, .11), transparent 24%),
      radial-gradient(circle at 18% 82%, rgba(253, 187, 31, .13), transparent 25%),
      linear-gradient(180deg, #fff 0%, #fffdf7 55%, #f2f8fc 100%);
  }

  .news-section {
    background:
      radial-gradient(circle at 95% 5%, rgba(239, 79, 101, .14), transparent 25%),
      linear-gradient(160deg, #fffdf6, #fff 52%, #f2f8fc);
  }

  .comparison-section {
    background:
      radial-gradient(circle at 92% 8%, rgba(239, 79, 101, .32), transparent 25%),
      radial-gradient(circle at 8% 90%, rgba(253, 187, 31, .16), transparent 24%),
      linear-gradient(150deg, #102d62, #173b7a 60%, #352d55);
  }

  .works-section {
    background:
      radial-gradient(circle at 8% 4%, rgba(253, 187, 31, .18), transparent 22%),
      linear-gradient(155deg, #fff9e9, #fff 45%, #f3f8fc);
  }
}

/* VER.3 final light-surface pass
   Use the VPOP News section as the visual baseline: white space first,
   logo colors as soft light, and navy only for legible UI details. */
.comparison-section {
  color: var(--brand-ink) !important;
  background:
    radial-gradient(circle at -3% 14%, rgba(239, 79, 101, .18), transparent 29%),
    radial-gradient(circle at 50% 108%, rgba(253, 187, 31, .11), transparent 28%),
    radial-gradient(circle at 103% 16%, rgba(75, 155, 211, .18), transparent 30%),
    linear-gradient(112deg, #fff1f3 0%, #fffdf8 29%, #fff 54%, #eef8fd 100%) !important;
}

.comparison-section .kicker {
  color: var(--coral) !important;
}

.comparison-wallpaper,
.comparison-word-track {
  color: rgba(23, 59, 122, .045) !important;
  -webkit-text-stroke-color: rgba(23, 59, 122, .065) !important;
}

.comparison-light-wave {
  opacity: .28 !important;
}

.comparison-copy h2 {
  color: var(--brand-ink) !important;
  text-shadow: none !important;
}

.comparison-title-accent,
.comparison-card-head h3 span {
  background: linear-gradient(94deg, var(--sky) 0%, var(--brand-navy) 34%, var(--sun) 66%, var(--coral) 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
}

.comparison-copy > p:not(.kicker) {
  color: rgba(16, 42, 86, .70) !important;
}

.compare-vpop {
  color: var(--brand-ink) !important;
  background:
    radial-gradient(circle at 86% 8%, rgba(239, 79, 101, .10), transparent 25%),
    radial-gradient(circle at 7% 90%, rgba(75, 155, 211, .11), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 251, 253, .96)) !important;
  border-color: rgba(75, 155, 211, .38) !important;
  box-shadow: 0 28px 70px rgba(23, 59, 122, .15), inset 0 0 0 1px rgba(255, 255, 255, .82) !important;
}

.compare-vpop .compare-brand {
  color: var(--brand-navy) !important;
  border-color: rgba(75, 155, 211, .38) !important;
  background: rgba(238, 248, 253, .90) !important;
}

.comparison-card-head h3,
.comparison-card-head p {
  color: var(--brand-ink) !important;
  text-shadow: none !important;
}

.comparison-card-head p {
  color: rgba(16, 42, 86, .66) !important;
}

.comparison-benefits > li {
  border-color: rgba(75, 155, 211, .26) !important;
  background: rgba(255, 255, 255, .88) !important;
  box-shadow: 0 12px 30px rgba(23, 59, 122, .08) !important;
}

.benefit-main b {
  color: var(--brand-ink) !important;
}

.benefit-main small {
  color: rgba(16, 42, 86, .62) !important;
}

.benefit-arrow {
  color: var(--sky) !important;
  background: #edf8fd !important;
  box-shadow: 0 6px 16px rgba(75, 155, 211, .14) !important;
}

.benefit-burden {
  color: var(--brand-ink) !important;
  background: linear-gradient(100deg, rgba(255, 244, 246, .96), rgba(255, 250, 241, .96)) !important;
  border-color: rgba(239, 79, 101, .25) !important;
}

.benefit-burden small {
  color: #b43249 !important;
  background: #fff !important;
  border-color: rgba(239, 79, 101, .38) !important;
}

.benefit-burden p {
  color: rgba(16, 42, 86, .78) !important;
}

.report-section {
  background:
    radial-gradient(circle at 0% 12%, rgba(253, 187, 31, .13), transparent 28%),
    radial-gradient(circle at 100% 12%, rgba(239, 79, 101, .12), transparent 28%),
    radial-gradient(circle at 82% 88%, rgba(75, 155, 211, .12), transparent 28%),
    linear-gradient(150deg, #fffaf0 0%, #fff 43%, #f3f9fc 100%) !important;
}

.report-dashboard {
  color: var(--brand-ink) !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(239, 79, 101, .10), transparent 30%),
    radial-gradient(circle at 12% 100%, rgba(75, 155, 211, .12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 250, 253, .98)) !important;
  border-color: rgba(75, 155, 211, .34) !important;
  box-shadow: 0 28px 70px rgba(23, 59, 122, .16), inset 0 0 0 1px rgba(255, 255, 255, .88) !important;
}

.report-livebar {
  color: var(--brand-navy) !important;
  border-bottom-color: rgba(23, 59, 122, .14) !important;
}

.report-livebar p {
  color: rgba(16, 42, 86, .58) !important;
}

.report-livebar strong {
  color: var(--brand-navy) !important;
  background: var(--sun-soft) !important;
  border-color: rgba(253, 187, 31, .48) !important;
}

.report-metrics article {
  border-color: rgba(23, 59, 122, .10) !important;
  box-shadow: none !important;
}

.report-metrics article:nth-child(1) {
  background: linear-gradient(145deg, #eaf6fc, #f8fcfe) !important;
}

.report-metrics article:nth-child(2) {
  background: linear-gradient(145deg, #fff7d9, #fffdf4) !important;
}

.report-metrics article:nth-child(3) {
  background: linear-gradient(145deg, #fff0f2, #fff9fa) !important;
}

.report-metrics article small {
  color: var(--brand-navy) !important;
}

.report-metrics article strong {
  color: var(--brand-ink) !important;
  text-shadow: none !important;
}

.report-metrics article span {
  color: rgba(16, 42, 86, .58) !important;
}

.report-chart {
  border-color: rgba(23, 59, 122, .10) !important;
  background-color: rgba(240, 247, 251, .82) !important;
  background-image: linear-gradient(rgba(23, 59, 122, .075) 1px, transparent 1px) !important;
}

.report-chart span {
  background: linear-gradient(180deg, #78bee8, var(--sky)) !important;
  box-shadow: 0 8px 18px rgba(75, 155, 211, .18) !important;
}

.report-chart span:nth-last-child(-n + 2) {
  background: linear-gradient(180deg, var(--sun), var(--coral)) !important;
}

.report-chart span i {
  color: rgba(16, 42, 86, .56) !important;
}

.report-insight {
  color: var(--brand-ink) !important;
  background: linear-gradient(145deg, #fff4f6, #fffaf1) !important;
  border-color: rgba(239, 79, 101, .24) !important;
  box-shadow: 0 16px 34px rgba(239, 79, 101, .09) !important;
}

.report-insight span {
  color: var(--coral) !important;
}

.report-insight b {
  color: var(--brand-ink) !important;
}

.report-insight small {
  color: rgba(16, 42, 86, .56) !important;
}

.contact-section {
  color: var(--brand-ink) !important;
  background:
    radial-gradient(circle at -4% 8%, rgba(239, 79, 101, .18), transparent 30%),
    radial-gradient(circle at 50% 108%, rgba(253, 187, 31, .13), transparent 28%),
    radial-gradient(circle at 104% 12%, rgba(75, 155, 211, .20), transparent 31%),
    linear-gradient(112deg, #fff0f3 0%, #fffdf8 31%, #fff 55%, #eef8fd 100%) !important;
}

.contact-type {
  color: rgba(23, 59, 122, .045) !important;
  -webkit-text-stroke-color: rgba(23, 59, 122, .065) !important;
}

.contact-copy {
  width: min(1080px, calc(100% - 96px)) !important;
  max-width: 1080px !important;
  min-height: 520px !important;
  box-sizing: border-box !important;
  padding: 58px 110px 64px !important;
  color: var(--brand-ink) !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(239, 79, 101, .10), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(75, 155, 211, .11), transparent 31%),
    rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(75, 155, 211, .30) !important;
  border-top-color: rgba(253, 187, 31, .58) !important;
  border-radius: 34px !important;
  box-shadow: 0 30px 75px rgba(23, 59, 122, .15), inset 0 0 0 1px rgba(255, 255, 255, .90) !important;
}

.contact-live {
  color: var(--brand-navy) !important;
  background: #edf8fd !important;
  border-color: rgba(75, 155, 211, .38) !important;
}

.contact-live span {
  color: var(--brand-navy) !important;
}

.contact-live small {
  color: rgba(16, 42, 86, .62) !important;
}

.contact-copy > p:not(.contact-reassurance):not(.contact-note) {
  color: var(--sky) !important;
}

.contact-copy h2,
.contact-copy h2 .contact-context,
.contact-copy h2 em .contact-context {
  color: var(--brand-ink) !important;
  text-shadow: none !important;
}

.contact-reassurance {
  color: var(--brand-ink) !important;
}

.contact-note,
.contact-copy > small {
  color: rgba(16, 42, 86, .56) !important;
}

.contact-x-button {
  color: var(--brand-navy) !important;
  background: rgba(255, 255, 255, .88) !important;
  border-color: rgba(23, 59, 122, .24) !important;
}

@media (max-width: 760px) {
  .comparison-section {
    background:
      radial-gradient(circle at 0% 5%, rgba(239, 79, 101, .17), transparent 25%),
      radial-gradient(circle at 100% 22%, rgba(75, 155, 211, .18), transparent 28%),
      linear-gradient(155deg, #fff2f4, #fff 52%, #eef8fd) !important;
  }

  .compare-vpop {
    background:
      radial-gradient(circle at 92% 2%, rgba(239, 79, 101, .10), transparent 24%),
      linear-gradient(155deg, #fff, #f6fafc) !important;
  }

  .contact-copy {
    width: calc(100% - 28px) !important;
    max-width: none !important;
    min-height: auto !important;
    padding: 34px 20px 104px !important;
    border-radius: 26px !important;
  }

  .contact-copy h2 {
    color: var(--brand-ink) !important;
  }

  .contact-actions {
    width: 100% !important;
  }
}

/* Final layout corrections found during rendered QA. */
.comparison-benefits > li:nth-child(-n + 2) .benefit-main > b,
.comparison-benefits > li .benefit-main > b {
  color: var(--brand-ink) !important;
  -webkit-text-fill-color: var(--brand-ink) !important;
  text-shadow: none !important;
}

.report-visual {
  background: linear-gradient(145deg, #f1f7fb, #f8fafc 56%, #fff5f6) !important;
  border: 1px solid rgba(23, 59, 122, .09) !important;
}

.contact-section {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center !important;
}

.contact-copy {
  justify-self: center !important;
}

.contact-copy h2 .contact-context,
.contact-copy h2 em .contact-context {
  color: var(--brand-ink) !important;
  -webkit-text-fill-color: var(--brand-ink) !important;
  opacity: 1 !important;
}

/* B concept: a clear VPOP / SELF comparison switch.
   The switch is a visual legend, not an interactive control. */
.comparison-benefits {
  counter-reset: benefit-mode;
}

.comparison-benefits > li {
  counter-increment: benefit-mode;
}

.benefit-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.benefit-copy > small {
  color: var(--sky) !important;
  font: 900 .61rem/1.15 Arial, sans-serif !important;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.benefit-copy > b {
  margin: 0 !important;
}

.benefit-mode-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 108px;
  min-height: 38px;
  padding: 4px;
  border: 1px solid rgba(23, 59, 122, .14);
  border-radius: 999px;
  background: rgba(235, 241, 249, .94);
  box-shadow:
    inset 0 1px 2px rgba(23, 59, 122, .08),
    0 8px 18px rgba(23, 59, 122, .08);
}

.benefit-mode-toggle span {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 28px;
  border-radius: 999px;
  color: rgba(16, 42, 86, .46);
  font: 900 .57rem/1 Arial, sans-serif;
  letter-spacing: .08em;
}

.benefit-mode-toggle .is-active {
  color: #fff;
  background: linear-gradient(115deg, var(--sky), #6878ee 58%, #df65ba);
  box-shadow:
    0 6px 14px rgba(75, 155, 211, .25),
    inset 0 1px rgba(255, 255, 255, .34);
}

.benefit-burden > small {
  min-width: 58px !important;
  color: var(--coral) !important;
  font: 900 .62rem/1 Arial, sans-serif !important;
  letter-spacing: .12em !important;
}

.benefit-burden > small::before {
  background: var(--coral) !important;
  box-shadow: 0 0 0 4px rgba(239, 79, 101, .09) !important;
}

@media (min-width: 761px) {
  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4) {
    grid-template-columns: minmax(250px, .92fr) 116px minmax(330px, 1.08fr) !important;
    gap: 10px !important;
    min-height: 92px !important;
    padding: 8px !important;
    overflow: visible !important;
    border-color: rgba(75, 155, 211, .22) !important;
    border-radius: 18px !important;
    background:
      linear-gradient(90deg, rgba(239, 248, 253, .96), rgba(255, 255, 255, .98) 48%, rgba(255, 247, 248, .96)) !important;
    box-shadow:
      0 12px 30px rgba(23, 59, 122, .08),
      inset 0 1px rgba(255, 255, 255, .9) !important;
  }

  .comparison-column.vpop .benefit-main {
    grid-template-columns: 46px minmax(0, 1fr) !important;
    gap: 15px !important;
    min-height: 74px !important;
    padding: 10px 16px !important;
    border-radius: 13px;
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    width: 44px !important;
    height: 44px !important;
    transform: none !important;
  }

  .comparison-column.vpop .benefit-main b {
    font-size: clamp(1rem, 1.38vw, 1.24rem) !important;
    line-height: 1.25 !important;
  }

  .comparison-column.vpop .benefit-burden {
    grid-template-columns: 68px minmax(0, 1fr) !important;
    gap: 15px !important;
    min-height: 74px !important;
    margin: 0 !important;
    padding: 13px 17px !important;
    border: 1px solid rgba(239, 79, 101, .18) !important;
    border-radius: 13px !important;
    background: linear-gradient(105deg, rgba(255, 245, 247, .98), rgba(255, 250, 240, .96)) !important;
    box-shadow: inset 0 1px rgba(255, 255, 255, .8) !important;
  }

  .comparison-column.vpop .benefit-burden p {
    font-size: .75rem !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 760px) {
  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-color: rgba(75, 155, 211, .25) !important;
    background: rgba(255, 255, 255, .9) !important;
  }

  .comparison-column.vpop .benefit-main {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 12px !important;
    min-height: 76px !important;
    padding: 12px 14px !important;
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    width: 40px !important;
    height: 40px !important;
  }

  .benefit-copy > small {
    font-size: .56rem !important;
  }

  .comparison-column.vpop .benefit-main b {
    font-size: 1rem !important;
  }

  .benefit-mode-toggle {
    width: calc(100% - 26px);
    margin: 0 13px 9px;
  }

  .comparison-column.vpop .benefit-burden {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 12px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 11px 14px !important;
    border: 0 !important;
    border-top: 1px solid rgba(239, 79, 101, .16) !important;
    border-radius: 0 !important;
    background: linear-gradient(100deg, rgba(255, 244, 246, .98), rgba(255, 250, 241, .98)) !important;
  }

  .comparison-column.vpop .benefit-burden p {
    font-size: .7rem !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 760px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr) !important;
    padding-inline: 14px !important;
  }

  .contact-copy {
    width: 100% !important;
  }
}

/* Readability and optical-centering corrections. */
.works-topline h2 {
  color: var(--brand-ink) !important;
  -webkit-text-fill-color: var(--brand-ink) !important;
  text-shadow: none !important;
}

.works-topline h2 .story-title-accent {
  -webkit-text-fill-color: transparent !important;
}

.contact-reassurance,
.contact-note {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  text-align: center !important;
  transform: none !important;
}

.contact-reassurance {
  color: var(--brand-ink) !important;
}

.contact-note {
  color: rgba(16, 42, 86, .62) !important;
}

/* Sales-report background typography: two quiet, opposing data tickers. */
.report-wallpaper {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  transform: none !important;
  animation: none !important;
  z-index: 0 !important;
}

.report-word-track {
  position: absolute;
  left: 0;
  display: block;
  width: max-content;
  color: rgba(23, 59, 122, .022);
  font-family: "Arial Black", "Noto Sans JP", sans-serif;
  font-size: clamp(6rem, 11vw, 12rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.045em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(23, 59, 122, .075);
  will-change: transform;
}

.report-track-a {
  top: 18%;
  animation: reportWordsLeft 38s linear infinite;
}

.report-track-b {
  bottom: 10%;
  animation: reportWordsRight 44s linear infinite;
}

.report-heading,
.report-dashboard {
  position: relative;
  z-index: 2;
}

@keyframes reportWordsLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes reportWordsRight {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 760px) {
  .report-word-track {
    font-size: clamp(4.5rem, 28vw, 7rem);
    -webkit-text-stroke-color: rgba(23, 59, 122, .065);
  }

  .report-track-a {
    top: 12%;
  }

  .report-track-b {
    bottom: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .report-word-track {
    animation: none !important;
  }
}

/* B comparison — rendered refinement to match the approved concept. */
@media (min-width: 761px) {
  .comparison-column.vpop .comparison-benefits {
    gap: 13px !important;
  }

  .comparison-column.vpop .comparison-benefits > li,
  .comparison-column.vpop .comparison-benefits > li:nth-child(1),
  .comparison-column.vpop .comparison-benefits > li:nth-child(2),
  .comparison-column.vpop .comparison-benefits > li:nth-child(3),
  .comparison-column.vpop .comparison-benefits > li:nth-child(4) {
    grid-template-columns: minmax(330px, .94fr) 150px minmax(380px, 1.06fr) !important;
    gap: 0 !important;
    min-height: 100px !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 22px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-column.vpop .benefit-main {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 20px !important;
    min-height: 100px !important;
    padding: 14px 25px !important;
    border: 1px solid rgba(75, 155, 211, .24) !important;
    border-radius: 20px 0 0 20px !important;
    background:
      radial-gradient(circle at 92% 20%, rgba(239, 79, 101, .08), transparent 34%),
      linear-gradient(105deg, rgba(244, 252, 255, .99), rgba(255, 255, 255, .98)) !important;
    box-shadow:
      0 13px 30px rgba(23, 59, 122, .09),
      inset 0 1px rgba(255, 255, 255, .92) !important;
  }

  .comparison-column.vpop .benefit-main > .benefit-check {
    width: 54px !important;
    height: 54px !important;
    font-size: 1.25rem !important;
    box-shadow:
      0 10px 24px rgba(75, 155, 211, .22),
      0 0 24px rgba(213, 92, 197, .23) !important;
  }

  .comparison-column.vpop .benefit-copy {
    gap: 8px;
  }

  .comparison-column.vpop .benefit-copy > small {
    color: #5aaee0 !important;
    font-size: .69rem !important;
    letter-spacing: .08em !important;
  }

  .comparison-column.vpop .benefit-main b {
    font-size: clamp(1.18rem, 1.65vw, 1.48rem) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
  }

  .comparison-column.vpop .benefit-mode-toggle {
    align-self: center;
    justify-self: center;
    width: 138px !important;
    min-height: 50px !important;
    padding: 5px !important;
    border-color: rgba(23, 59, 122, .12) !important;
    background: #eef1f6 !important;
    box-shadow:
      0 10px 24px rgba(23, 59, 122, .11),
      inset 0 1px 3px rgba(23, 59, 122, .08) !important;
  }

  .comparison-column.vpop .benefit-mode-toggle::before,
  .comparison-column.vpop .benefit-mode-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 20px;
    background: rgba(255, 255, 255, .96);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .comparison-column.vpop .benefit-mode-toggle::before {
    left: -12px;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
  }

  .comparison-column.vpop .benefit-mode-toggle::after {
    right: -12px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

  .comparison-column.vpop .benefit-mode-toggle span {
    min-height: 38px !important;
    font-size: .68rem !important;
  }

  .comparison-column.vpop .benefit-burden {
    position: relative;
    grid-template-columns: 118px minmax(0, 1fr) 48px !important;
    gap: 17px !important;
    min-height: 100px !important;
    margin: 0 !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(239, 79, 101, .22) !important;
    border-radius: 0 20px 20px 0 !important;
    background:
      radial-gradient(circle at 100% 18%, rgba(253, 187, 31, .08), transparent 32%),
      linear-gradient(105deg, rgba(255, 245, 247, .99), rgba(255, 252, 243, .98)) !important;
    box-shadow:
      0 13px 30px rgba(23, 59, 122, .08),
      inset 0 1px rgba(255, 255, 255, .92) !important;
  }

  .comparison-column.vpop .benefit-burden > small {
    min-width: 0 !important;
    padding-right: 16px !important;
    color: var(--coral) !important;
    font-size: .7rem !important;
    letter-spacing: .05em !important;
  }

  .comparison-column.vpop .benefit-burden > p {
    font-size: clamp(.77rem, 1vw, .9rem) !important;
    font-weight: 850 !important;
    line-height: 1.5 !important;
  }

  .comparison-column.vpop .benefit-burden::after {
    content: "!";
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(239, 79, 101, .28);
    border-radius: 50%;
    color: var(--coral);
    background: rgba(255, 255, 255, .72);
    font: 900 1rem/1 Arial, sans-serif;
    box-shadow: 0 7px 18px rgba(239, 79, 101, .09);
  }
}

@media (max-width: 760px) {
  .comparison-column.vpop .benefit-mode-toggle {
    width: calc(100% - 28px) !important;
    min-height: 44px !important;
    margin: 0 14px 10px !important;
  }

  .comparison-column.vpop .benefit-mode-toggle span {
    min-height: 34px !important;
  }

  .comparison-column.vpop .benefit-burden {
    grid-template-columns: 92px minmax(0, 1fr) !important;
  }

  .comparison-column.vpop .benefit-burden > small {
    min-width: 0 !important;
  }
}

/* Neutralize legacy rules that styled every span in the old comparison list as a circle. */
.comparison-column.vpop .benefit-main > .benefit-copy {
  display: grid !important;
  place-items: start !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
}

.comparison-column.vpop .benefit-mode-toggle > span {
  display: grid !important;
  place-items: center !important;
  width: auto !important;
  height: auto !important;
  border-radius: 999px !important;
  color: rgba(16, 42, 86, .45) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.comparison-column.vpop .benefit-mode-toggle > .is-active {
  color: #fff !important;
  background: linear-gradient(115deg, var(--sky), #6878ee 58%, #df65ba) !important;
  box-shadow:
    0 6px 14px rgba(75, 155, 211, .25),
    inset 0 1px rgba(255, 255, 255, .34) !important;
}

/* Right-side burden copy and the four reference-style line icons. */
.comparison-column.vpop .benefit-burden {
  grid-template-columns: minmax(0, 1fr) 46px !important;
  gap: 12px !important;
  padding: 14px 16px 14px 18px !important;
}

.burden-copy {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
}

.comparison-column.vpop .benefit-burden .burden-copy > small {
  display: block !important;
  width: fit-content !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--coral) !important;
  background: transparent !important;
  box-shadow: none !important;
  font: 900 .73rem/1.15 Arial, "Noto Sans JP", sans-serif !important;
  letter-spacing: .06em !important;
}

.comparison-column.vpop .benefit-burden .burden-copy > small::before,
.comparison-column.vpop .benefit-burden .burden-copy > small::after {
  display: none !important;
  content: none !important;
}

.comparison-column.vpop .benefit-burden .burden-copy > p {
  margin: 0 !important;
  color: var(--brand-ink) !important;
  font-size: clamp(.94rem, 1.2vw, 1.08rem) !important;
  font-weight: 900 !important;
  line-height: 1.32 !important;
  letter-spacing: .005em;
}

.comparison-column.vpop .benefit-burden::after {
  display: none !important;
  content: none !important;
}

.comparison-column.vpop .benefit-burden > .burden-icon {
  position: relative;
  display: grid !important;
  place-items: center !important;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(239, 79, 101, .30) !important;
  border-radius: 50% !important;
  color: var(--coral) !important;
  background: rgba(255, 255, 255, .78) !important;
  box-shadow:
    0 8px 20px rgba(239, 79, 101, .09),
    inset 0 1px rgba(255, 255, 255, .92) !important;
}

.burden-icon > i,
.burden-icon > i::before,
.burden-icon > i::after {
  position: absolute;
  box-sizing: border-box;
}

.burden-icon > i {
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.burden-icon-cost > i {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-56%, -56%);
}

.burden-icon-cost > i::before {
  content: "¥";
  inset: 4px 0 auto;
  text-align: center;
  font: 900 9px/1 Arial, sans-serif;
}

.burden-icon-cost > i::after {
  content: "";
  right: -6px;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.burden-icon-stock > i {
  width: 22px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translate(-50%, -40%);
}

.burden-icon-stock > i::before {
  content: "";
  left: 3px;
  top: -7px;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.burden-icon-stock > i::after {
  content: "";
  left: 9px;
  top: 0;
  width: 2px;
  height: 18px;
  background: currentColor;
}

.burden-icon-chat > i {
  width: 25px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 7px;
  transform: translate(-50%, -57%);
}

.burden-icon-chat > i::before {
  content: "•••";
  inset: 0;
  text-align: center;
  font: 900 9px/12px Arial, sans-serif;
  letter-spacing: 1px;
}

.burden-icon-chat > i::after {
  content: "";
  left: 5px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: #fff;
  transform: skewY(35deg);
}

.burden-icon-chart > i {
  left: 50%;
  top: 50%;
  bottom: auto;
  width: 4px;
  height: 10px;
  border-radius: 2px 2px 0 0;
  background: currentColor;
  box-shadow: 7px -5px 0 currentColor, 14px -11px 0 currentColor;
  transform: translate(-245%, -5%);
}

.burden-icon-chart > i::before {
  content: "";
  left: -4px;
  bottom: -3px;
  width: 25px;
  height: 25px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 0 3px;
}

@media (max-width: 760px) {
  .comparison-column.vpop .benefit-burden {
    grid-template-columns: minmax(0, 1fr) 42px !important;
    gap: 10px !important;
  }

  .comparison-column.vpop .benefit-burden > .burden-icon {
    width: 40px !important;
    height: 40px !important;
    transform: none;
  }

  .comparison-column.vpop .benefit-burden .burden-copy > p {
    font-size: .76rem !important;
  }

  /* Optical centering for the differently shaped line icons on narrow screens. */
  .burden-icon-cost > i {
    transform: translate(-50%, -46%);
  }

  .burden-icon-stock > i {
    transform: translate(-50%, -30%);
  }

  .burden-icon-chat > i {
    transform: translate(-46%, -46%);
  }

  .burden-icon-chart > i {
    transform: translate(-190%, -20%);
  }
}

/* The segmented switch reads cleanly without the former white pointer wedges. */
.comparison-column.vpop .benefit-mode-toggle::before,
.comparison-column.vpop .benefit-mode-toggle::after {
  display: none !important;
  content: none !important;
}

/* Keep every burden pictogram inside the same centered 28px drawing stage. */
.comparison-column.vpop .burden-icon > i {
  left: 50% !important;
  top: 50% !important;
  bottom: auto !important;
  width: 28px !important;
  height: 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  transform: translate(-50%, -50%) !important;
}

.comparison-column.vpop .burden-icon-cost > i::before {
  content: "¥";
  left: 2px;
  top: 2px;
  right: auto;
  bottom: auto;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  font: 900 8px/1 Arial, sans-serif;
  letter-spacing: 0;
  transform: none;
}

.comparison-column.vpop .burden-icon-cost > i::after {
  content: "";
  left: 18px;
  top: 18px;
  right: auto;
  bottom: auto;
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
  transform: none;
}

.comparison-column.vpop .burden-icon-stock > i {
  background:
    linear-gradient(currentColor, currentColor) 50% 7px / 2px 18px no-repeat,
    linear-gradient(currentColor, currentColor) 4px 11px / 20px 2px no-repeat !important;
}

.comparison-column.vpop .burden-icon-stock > i::before {
  content: "";
  left: 4px;
  top: 5px;
  right: auto;
  bottom: auto;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: transparent;
  transform: none;
}

.comparison-column.vpop .burden-icon-stock > i::after {
  display: none;
  content: none;
}

.comparison-column.vpop .burden-icon-chat > i {
  background:
    radial-gradient(circle, currentColor 0 1.4px, transparent 1.6px) 8px 9px / 4px 4px no-repeat,
    radial-gradient(circle, currentColor 0 1.4px, transparent 1.6px) 12px 9px / 4px 4px no-repeat,
    radial-gradient(circle, currentColor 0 1.4px, transparent 1.6px) 16px 9px / 4px 4px no-repeat !important;
}

.comparison-column.vpop .burden-icon-chat > i::before {
  content: "";
  left: 3px;
  top: 4px;
  right: auto;
  bottom: auto;
  display: block;
  width: 22px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 7px;
  background: transparent;
  transform: none;
}

.comparison-column.vpop .burden-icon-chat > i::after {
  content: "";
  left: 8px;
  top: 17px;
  right: auto;
  bottom: auto;
  display: block;
  width: 7px;
  height: 7px;
  border: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  background: #fff;
  transform: skewY(35deg);
}

.comparison-column.vpop .burden-icon-chart > i::before {
  content: "";
  left: 3px;
  top: 3px;
  right: auto;
  bottom: auto;
  display: block;
  width: 22px;
  height: 22px;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 0 3px;
  background: transparent;
  transform: none;
}

.comparison-column.vpop .burden-icon-chart > i::after {
  content: "";
  left: 8px;
  top: 14px;
  right: auto;
  bottom: auto;
  display: block;
  width: 4px;
  height: 7px;
  border: 0;
  border-radius: 2px 2px 0 0;
  background: currentColor;
  box-shadow: 6px -4px 0 currentColor, 12px -9px 0 currentColor;
  transform: none;
}

/* Keep the hero proof points readable: the label is as important as the number. */
.hero-points li {
  gap: 14px;
}

.hero-points li > span {
  gap: 4px;
}

.hero-points li > span strong {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .02em;
}

.hero-points li > span small {
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .01em;
}

.hero-points li > b {
  font-size: 36px;
}

.hero-points li > b small {
  font-size: 14px;
}

@media (max-width: 560px) {
  .hero-points li {
    gap: 7px;
    padding: 14px 5px;
  }

  .hero-points li > span {
    gap: 3px;
  }

  .hero-points li > span strong {
    font-size: 12px;
  }

  .hero-points li > span small {
    font-size: 10px;
  }

  .hero-points li > b {
    font-size: 32px;
  }
}

/* Two deliberate lines in the one-stop card, on desktop as well as mobile. */
@media (min-width: 981px) {
  .unified-support-intro h3 {
    font-size: clamp(2rem, 1.9vw, 2.25rem);
    line-height: 1.14;
  }

  .unified-support-intro h3 strong {
    font-size: 1em;
  }
}

.unified-flow-head h3 > span {
  display: inline-block;
  white-space: nowrap;
}

/* Display the supplied hand-drawn hero artwork in full without altering the source file. */
.hero-art img {
  width: 100%;
  height: 100%;
  margin-left: 0;
  object-fit: contain;
  object-position: center bottom;
  mask-image: none;
  -webkit-mask-image: none;
}

@media (min-width: 981px) {
  .hero-art {
    left: 0;
    width: 100%;
    height: min(630px, calc(100% - 110px));
    align-self: center;
    padding: 0 28px 0 0;
  }

  .hero-art img {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 561px) and (max-width: 980px) {
  .hero-art {
    left: 0;
    width: 100%;
  }

  .hero-art img {
    height: calc(100% - 48px);
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .hero-art img {
    width: 100%;
    height: calc(100% - 28px);
    margin-top: 14px;
    margin-bottom: 14px;
    margin-left: 0;
    object-position: center bottom;
  }
}

/* Keep the supplied artwork as an untouched, independently positioned layer. */
.hero-art > .hero-art-character {
  position: relative;
  z-index: 2;
}

/* VPOP NEWS article reader and consultation form. */
.news-card-pending {
  margin-top: 24px;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font: 900 10px/1 Arial, sans-serif;
  letter-spacing: .14em;
  opacity: .72;
}

.news-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  color: #102a56;
  background: #fff;
  border: 1px solid rgba(75, 155, 211, .28);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(10, 27, 64, .34);
  overflow: auto;
}

.news-dialog::backdrop {
  background: rgba(6, 18, 48, .7);
  backdrop-filter: blur(8px);
}

.news-dialog-shell {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at 8% 8%, rgba(253, 187, 31, .12), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(239, 79, 101, .12), transparent 27%),
    linear-gradient(145deg, #fffdf8, #fff 48%, #f3f9fd);
}

.news-dialog-close {
  position: sticky;
  z-index: 5;
  top: 18px;
  float: right;
  width: 46px;
  height: 46px;
  margin: 18px 18px -64px 0;
  color: #173b7a;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(23, 59, 122, .17);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(23, 59, 122, .14);
  font-size: 25px;
  cursor: pointer;
}

.news-dialog-visual {
  height: clamp(220px, 36vw, 380px);
  overflow: hidden;
  background: #edf5fb;
}

.news-dialog-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-dialog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) clamp(24px, 7vw, 72px) 80px;
}

.news-dialog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(16, 42, 86, .56);
  font: 800 11px/1 Arial, sans-serif;
  letter-spacing: .08em;
}

.news-dialog-meta b {
  padding: 8px 10px;
  color: #fff;
  background: linear-gradient(110deg, #ef4f65, #f48191);
}

.news-dialog-meta span { margin-left: auto; }

.news-dialog-article > h2 {
  margin: 22px 0 16px;
  color: #0f2954;
  font-size: clamp(2rem, 4.8vw, 3.55rem);
  line-height: 1.22;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.news-dialog-summary {
  margin: 0 0 42px;
  padding-bottom: 28px;
  color: rgba(16, 42, 86, .7);
  border-bottom: 1px solid rgba(75, 155, 211, .24);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
}

.news-dialog-body { font-size: 1rem; line-height: 2; }
.news-dialog-body .news-article-lead { font-size: 1.1rem; font-weight: 700; }
.news-dialog-body h3 { margin: 42px 0 12px; color: #173b7a; font-size: 1.45rem; line-height: 1.45; }
.news-dialog-body p { margin: 0 0 22px; color: rgba(16, 42, 86, .78); }
.news-dialog-body aside { margin-top: 38px; padding: 22px 24px; color: #173b7a; background: linear-gradient(110deg, #eefaff, #fff7ed, #fff2f4); border: 1px solid rgba(239, 79, 101, .2); border-radius: 16px; font-weight: 800; }

.news-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 30px;
  padding: 0;
  counter-reset: news-process;
  list-style: none;
}

.news-process-list li {
  position: relative;
  min-height: 96px;
  padding: 18px 16px 16px 54px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(75, 155, 211, .22);
  border-radius: 14px;
  counter-increment: news-process;
}

.news-process-list li::before {
  content: counter(news-process, decimal-leading-zero);
  position: absolute;
  left: 15px;
  top: 17px;
  color: #4b9bd3;
  font: 900 12px/1 Arial, sans-serif;
}

.news-process-list b,
.news-process-list span { display: block; }
.news-process-list span { margin-top: 5px; color: rgba(16, 42, 86, .62); font-size: .82rem; line-height: 1.55; }
.news-dialog-cta { margin-top: 42px; }

.contact-section {
  min-height: auto !important;
  padding: clamp(80px, 9vw, 130px) 24px !important;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  gap: 22px;
  width: min(1240px, 100%);
}

.contact-section .contact-copy {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-height: 0 !important;
  padding: clamp(42px, 5vw, 74px) clamp(30px, 5vw, 72px) !important;
}

.contact-section .contact-copy h2 { font-size: clamp(3rem, 5vw, 5.6rem); }
.contact-section .contact-mascot {
  z-index: 3;
  width: clamp(210px, 19vw, 320px);
  opacity: .94;
  pointer-events: none;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(30px, 4vw, 52px);
  text-align: left;
  color: #102a56;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(75, 155, 211, .28);
  border-top-color: rgba(253, 187, 31, .7);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(23, 59, 122, .14);
  backdrop-filter: blur(18px);
}

.consultation-form-heading,
.form-field-wide { grid-column: 1 / -1; }

.consultation-form-heading { margin-bottom: 8px; }
.consultation-form-heading p { margin: 0; color: #ef4f65; font: 900 10px/1 Arial, sans-serif; letter-spacing: .18em; }
.consultation-form-heading h3 { margin: 10px 0 8px; font-size: clamp(1.8rem, 3vw, 2.55rem); letter-spacing: -.04em; }
.consultation-form-heading span { color: rgba(16, 42, 86, .62); font-size: .9rem; font-weight: 700; }

.form-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #173b7a;
  font-size: .82rem;
  font-weight: 900;
}

.form-field label em {
  padding: 4px 6px;
  color: #fff;
  background: #ef4f65;
  border-radius: 5px;
  font: 800 9px/1 sans-serif;
  font-style: normal;
}

.form-field label small { color: rgba(16, 42, 86, .45); }
.form-field input,
.form-field select,
.form-field textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: #102a56;
  background: #fbfdff;
  border: 1px solid rgba(23, 59, 122, .18);
  border-radius: 12px;
  font: 600 16px/1.6 "Yu Gothic", sans-serif;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-field textarea { min-height: 128px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 0; border-color: #4b9bd3; background: #fff; box-shadow: 0 0 0 4px rgba(75, 155, 211, .12); }

.form-consent { display: flex; align-items: flex-start; gap: 10px; color: rgba(16, 42, 86, .7); font-size: .78rem; font-weight: 700; line-height: 1.6; }
.form-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: #ef4f65; }
.form-submit-row { display: flex; align-items: center; gap: 18px; margin-top: 4px; }
.form-submit-row .button { border: 0; cursor: pointer; }
.form-submit-row .button:disabled { cursor: wait; opacity: .62; }
.form-submit-row p { margin: 0; color: rgba(16, 42, 86, .52); font-size: .72rem; font-weight: 700; }
.form-status { min-height: 1.6em; margin: -6px 0 0; font-size: .8rem; font-weight: 800; }
.form-status.is-error { color: #c43952; }
.form-status.is-success { color: #147a68; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 720px; }
  .contact-section .contact-copy { padding-bottom: 48px !important; }
  .contact-section .contact-mascot { display: none; }
}

@media (max-width: 760px) {
  .news-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); border-radius: 20px; }
  .news-dialog-visual { height: 210px; }
  .news-dialog-article { padding: 34px 22px 56px; }
  .news-dialog-meta span { width: 100%; margin-left: 0; }
  .news-dialog-article > h2 { font-size: 2rem; }
  .news-dialog-body { font-size: .94rem; }
  .news-process-list { grid-template-columns: 1fr; }
  .contact-section { padding-inline: 14px !important; }
  .contact-grid { width: 100%; }
  .contact-section .contact-copy { padding: 34px 20px 40px !important; }
  .consultation-form { grid-template-columns: 1fr; gap: 16px; padding: 28px 18px; border-radius: 24px; }
  .consultation-form-heading,
  .form-field-wide { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .form-submit-row p { text-align: center; }
}

/* Mobile hero story order: message → artwork → actions → proof points. */
@media (max-width: 560px) {
  .hero {
    display: flex !important;
    flex-direction: column;
    min-height: auto !important;
    padding-top: 70px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-lead,
  .hero-copy > .hero-actions,
  .hero-copy > .hero-points {
    position: relative;
    z-index: 3;
    box-sizing: border-box;
    width: auto;
  }

  .hero-copy > .eyebrow {
    order: 1;
    margin: 58px 24px 0;
    text-align: center;
  }

  .hero-copy > h1 {
    order: 2;
    margin: 18px 22px 24px;
    text-align: center;
  }

  .hero-copy > .hero-lead {
    order: 3;
    margin: 0 24px;
    text-align: center;
  }

  .hero-copy > .hero-lead br {
    display: block;
  }

  .hero-lead-window {
    display: block;
    white-space: nowrap;
    font-size: clamp(11.5px, 3.35vw, 13px);
  }

  .hero-art {
    order: 4;
    left: auto !important;
    width: 100% !important;
    height: min(100vw, 440px) !important;
    margin: 18px 0 0;
    padding: 0 8px;
  }

  .hero-art img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }

  .hero-copy > .hero-actions {
    order: 5;
    display: grid;
    gap: 12px;
    margin: 22px 24px 0;
  }

  .hero-copy > .hero-points {
    order: 6;
    margin: 24px 16px 42px;
  }
}

/* Compact the desktop hero so the message and artwork sit closer to the header. */
@media (min-width: 981px) {
  .hero {
    min-height: 650px;
    grid-template-columns: minmax(500px, .96fr) minmax(700px, 1.24fr);
    padding-top: 8px;
  }

  .hero-copy {
    padding-left: clamp(70px, 6.2vw, 118px);
    padding-top: 36px;
    padding-bottom: 28px;
    translate: 0 -4px;
  }

  .hero-copy h1 {
    font-size: clamp(60px, 3.85vw, 74px);
    line-height: 1.12;
  }

  .hero-copy .eyebrow {
    font-size: 13px;
  }

  .hero-copy .hero-lead {
    font-size: 16px;
  }

  .hero-copy .button {
    min-height: 58px;
    padding-inline: 30px;
  }

  .hero-copy .hero-points {
    margin-top: 26px;
  }

  .hero-copy .hero-points b {
    font-size: 34px;
  }

  .hero-art {
    height: min(610px, calc(100% - 10px));
    padding-right: 12px;
    translate: 0;
  }

  .hero-art img {
    width: 108%;
    height: 108%;
    max-width: none;
    margin-left: -4%;
    object-fit: contain;
    object-position: center bottom;
  }
}

/* Dedicated consultation page */
.contact-grid-cta-only {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.contact-grid-cta-only .contact-copy {
  min-height: 620px !important;
}

.contact-page-main {
  min-height: calc(100vh - 96px);
}

.contact-page-section {
  min-height: calc(100vh - 96px) !important;
  padding-top: clamp(130px, 12vw, 180px) !important;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.contact-page .consultation-form {
  width: 100%;
  border-top: 3px solid #fdbb1f;
}

.contact-page .consultation-form-heading h1 {
  margin: 10px 0 8px;
  color: #102a56;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
}

.consultation-form-embed {
  display: block;
}

.consultation-form-embed .consultation-form-heading {
  margin-bottom: 24px;
}

.formzu-frame-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(72, 156, 219, .24);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 42, 86, .08);
}

.formzu-frame {
  display: block;
  width: 100%;
  height: 1200px;
  border: 0;
  background: #fff;
}

.consultation-form-embed .form-privacy-note {
  margin-top: 22px;
}

.formzu-fallback {
  margin: 16px 0 0;
  color: rgba(16, 42, 86, .65);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.formzu-fallback a {
  color: #145da9;
  font-weight: 900;
  text-underline-offset: 3px;
}

.formzu-fallback a:hover,
.formzu-fallback a:focus-visible {
  color: #ef5264;
}

.contact-page-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(16, 42, 86, .68);
  font-size: .82rem;
  font-weight: 800;
}

.contact-page-aside .button {
  min-width: 220px;
}

@media (max-width: 760px) {
  .contact-grid-cta-only .contact-copy { min-height: 520px !important; }
  .contact-page-section { padding-top: 108px !important; }
  .contact-page-aside { flex-direction: column; text-align: center; }
  .contact-page-aside .button { width: 100%; }
  .formzu-frame { height: 1380px; }
}
/* Performance: keep the existing design while avoiding off-screen animation work. */
.is-motion-paused,
.is-motion-paused *,
.is-motion-paused::before,
.is-motion-paused::after,
.is-motion-paused *::before,
.is-motion-paused *::after {
  animation-play-state: paused !important;
}

/* ---------- 相談フォーム：個人情報の取り扱い説明 ---------- */
.form-privacy-note {
  border: 1px solid rgba(72, 156, 219, .3);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(244, 250, 255, .8);
}
.form-privacy-note-title {
  margin: 0 0 8px;
  color: #102a56;
  font-size: .82rem;
  font-weight: 900;
}
.form-privacy-note ul {
  margin: 0;
  padding-left: 1.3em;
  color: rgba(16, 42, 86, .78);
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.85;
}
.form-privacy-note li + li { margin-top: 6px; }
.form-privacy-note strong { color: #102a56; font-weight: 900; }
.form-privacy-note a { color: #145da9; font-weight: 800; text-underline-offset: 3px; }
.form-privacy-note a:hover,
.form-privacy-note a:focus-visible { color: #ef5264; }
.form-privacy-details {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(72, 156, 219, .2);
  color: rgba(16, 42, 86, .75);
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.8;
}
.form-privacy-details summary {
  color: #145da9;
  font-weight: 800;
  cursor: pointer;
}
.form-privacy-details p { margin: 8px 0 0; }

@media (max-width: 720px) {
  .form-privacy-note { padding: 15px 16px; }
}

/* ---------- VPOP NEWS：読み物らしい誌面とYouTube記事ビジュアル ---------- */
.news-card.is-youtube {
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 196, 37, .34), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(239, 82, 105, .24), transparent 34%),
    radial-gradient(circle at 70% 92%, rgba(75, 159, 208, .26), transparent 35%),
    linear-gradient(125deg, #fff8dc 0%, #fffdf7 37%, #eef9ff 68%, #fff0f5 100%);
}

.news-youtube-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(rgba(20,55,105,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,55,105,.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.news-youtube-scene::before,
.news-youtube-scene::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(75,159,208,.2);
  border-radius: 50%;
}

.news-youtube-scene::before { width: 280px; height: 280px; right: 6%; top: -20%; }
.news-youtube-scene::after { width: 170px; height: 170px; right: 22%; bottom: -23%; }
.news-youtube-kicker { position: absolute; top: 9%; left: 6%; font: 900 10px/1 Arial, sans-serif; letter-spacing: .18em; color: #4b9fd0; }
.news-youtube-logo { display: none; }
.news-youtube-logo > i { position: relative; display: block; width: 36px; height: 25px; background: #ff0033; border-radius: 8px; box-shadow: 0 0 26px rgba(255,0,51,.42); }
.news-youtube-logo > i::after { content: ""; position: absolute; left: 14px; top: 7px; border-left: 10px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.news-youtube-live { position: absolute; right: 5%; top: 7%; display: flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid rgba(16,48,94,.12); border-radius: 999px; background: rgba(255,255,255,.82); color: #173663; box-shadow: 0 8px 24px rgba(36,72,118,.1); font: 900 9px/1 Arial, sans-serif; letter-spacing: .12em; }
.news-youtube-live > i { width: 7px; height: 7px; border-radius: 50%; background: #ff3450; box-shadow: 0 0 12px #ff3450; }
.news-youtube-play { position: absolute; z-index: 0; right: 31%; top: 34%; width: 150px; height: 104px; border-radius: 28px; background: #ff0033; box-shadow: 0 18px 44px rgba(239,82,105,.28); opacity: .94; }
.news-youtube-play::after { content: ""; position: absolute; left: 61px; top: 30px; border-left: 40px solid #fff; border-top: 22px solid transparent; border-bottom: 22px solid transparent; }

.news-card.is-youtube .news-card-artwork {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: -9%;
  width: 53%;
  height: 104%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.28));
  animation: none !important;
  transform: none !important;
}

.news-card.is-youtube .news-card-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 39%, rgba(255,255,255,.12) 67%, transparent 78%);
}

.news-card.is-youtube .news-card-copy {
  width: 57%;
  color: #102e5c;
  text-shadow: none;
}
.news-card.is-youtube .news-card-copy h3,
.news-card.is-youtube .news-card-copy p { color: #102e5c; }
.news-card.is-youtube .news-meta time { color: #385579; opacity: .8; }
.news-card.is-youtube .news-meta b { background: #ff3450; }
.news-card.is-youtube .news-card-read { color: #102e5c; }
.news-card.is-youtube .news-card-read span { color: #ef5269; }

.news-dialog-visual.is-youtube {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 14%, rgba(255,196,37,.3), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(239,82,105,.22), transparent 34%),
    linear-gradient(120deg, #fff8dc, #f7fcff 56%, #fff0f5);
}

.news-dialog-visual.is-youtube::before {
  content: "VPOP CLIP CHANNEL";
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 18%;
  color: #4b9fd0;
  font: 900 12px/1 Arial, sans-serif;
  letter-spacing: .18em;
}

.news-dialog-visual.is-youtube::after {
  content: "▶  YouTube";
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 29%;
  padding: 12px 16px;
  color: #fff;
  background: #ff0033;
  border-radius: 13px;
  box-shadow: 0 14px 32px rgba(255,0,51,.28);
  font: 900 18px/1 Arial, sans-serif;
}

.news-dialog-visual.is-youtube img {
  position: relative;
  z-index: 1;
  width: 61%;
  margin-left: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.28));
}

.news-dialog-article {
  font-family: ui-rounded, "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.news-dialog-body {
  color: #183760;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 2.05;
}

.news-dialog-body .news-article-lead {
  position: relative;
  margin: 0 0 34px;
  padding: 24px 26px 24px 30px;
  color: #102a56;
  background: linear-gradient(120deg, rgba(119,224,241,.16), rgba(255,244,203,.46), rgba(255,219,228,.44));
  border: 1px solid rgba(75,155,211,.2);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(28,71,123,.08);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.95;
}

.news-dialog-body .news-article-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(#4fdcf0, #ff6c9d);
}

.news-dialog-body h3 {
  margin: 44px 0 17px;
  padding: 19px 22px;
  color: #102a56;
  background: linear-gradient(110deg, rgba(235,250,255,.96), rgba(255,251,230,.96) 55%, rgba(255,239,245,.96));
  border: 1px solid rgba(75,155,211,.22);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(28,71,123,.07);
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.025em;
}

.news-dialog-body h3::before {
  content: "VPOP NOTE";
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: #fff;
  background: linear-gradient(110deg, #45cce9, #7484f8 52%, #ef6ca0);
  border-radius: 999px;
  font: 900 9px/1 Arial, sans-serif;
  letter-spacing: .14em;
}

.news-dialog-body p {
  max-width: 68ch;
  margin: 0 0 24px;
  color: rgba(16,42,86,.82);
}

.news-dialog-body strong {
  color: #102a56;
  font-weight: 900;
  background: linear-gradient(transparent 66%, rgba(253,187,31,.35) 66%);
}

.news-dialog-body ul,
.news-dialog-body ol {
  margin: 22px 0 30px;
  padding: 22px 26px 22px 48px;
  color: #16345f;
  background: rgba(245,250,255,.9);
  border: 1px solid rgba(75,155,211,.2);
  border-radius: 18px;
}

.news-dialog-body li { padding-left: 4px; line-height: 1.8; }
.news-dialog-body li + li { margin-top: 9px; }
.news-dialog-body li::marker { color: #ef526b; font-weight: 900; }

@media (max-width: 760px) {
  .news-card.is-youtube .news-card-artwork {
    top: -2%;
    right: -5%;
    bottom: auto;
    width: 98%;
    height: 64%;
    object-position: center top;
  }
  .news-card.is-youtube .news-card-shade {
    background: linear-gradient(0deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 44%, rgba(255,255,255,.16) 73%, transparent 82%);
  }
  .news-card.is-youtube .news-card-copy { width: 100%; min-height: 52%; color: #102e5c; }
  .news-card.is-youtube .news-card-copy h3,
  .news-card.is-youtube .news-card-copy p { color: #102e5c; }
  .news-youtube-kicker { top: 4%; left: 5%; }
  .news-youtube-logo { top: 9%; left: 5%; }
  .news-youtube-live {
    z-index: 4;
    top: 4%;
    right: 4%;
    left: auto;
  }
  .news-youtube-play { display: block; right: 48%; top: 16%; width: 116px; height: 80px; border-radius: 21px; opacity: .9; }
  .news-youtube-play::after { left: 48px; top: 23px; border-left-width: 30px; border-top-width: 17px; border-bottom-width: 17px; }

  .news-dialog-visual.is-youtube::before { left: 5%; top: 12%; font-size: 9px; }
  .news-dialog-visual.is-youtube::after { left: 5%; top: 24%; padding: 10px 12px; font-size: 13px; }
  .news-dialog-visual.is-youtube img { width: 82%; margin-left: auto; object-position: right bottom; }

  .news-dialog-article { padding-left: 20px; padding-right: 20px; }
  .news-dialog-body { font-size: .96rem; line-height: 1.95; }
  .news-dialog-body .news-article-lead { padding: 20px 18px 20px 23px; font-size: 1rem; }
  .news-dialog-body h3 { margin-top: 34px; padding: 17px 18px; font-size: 1.2rem; }
  .news-dialog-body ul,
  .news-dialog-body ol { padding: 18px 18px 18px 38px; }
}

/* Launch state: honest zero-data preview without presenting sample figures as results. */
.report-dashboard.is-preparing {
  isolation: isolate;
}

.report-dashboard.is-preparing > :not(.report-preparing-band) {
  opacity: .25;
  filter: grayscale(.32) saturate(.58);
  pointer-events: none;
  user-select: none;
}

.report-dashboard.is-preparing::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background: rgba(247, 250, 253, .16);
  backdrop-filter: blur(1.5px);
}

.report-preparing-band {
  position: absolute !important;
  z-index: 8 !important;
  left: 50%;
  top: 50%;
  width: min(680px, calc(100% - 64px));
  padding: 24px 34px 25px;
  transform: translate(-50%, -50%) rotate(-1deg);
  text-align: center;
  color: #102a56;
  background:
    radial-gradient(circle at 8% 50%, rgba(75, 155, 211, .2), transparent 25%),
    radial-gradient(circle at 92% 50%, rgba(239, 79, 101, .18), transparent 25%),
    rgba(255, 255, 255, .95);
  border: 1px solid rgba(75, 155, 211, .38);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(16, 42, 86, .2), inset 0 3px 0 rgba(253, 187, 31, .85);
}

.report-preparing-band::before,
.report-preparing-band::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, #4b9bd3, #fdbb1f 48%, #ef4f65);
}

.report-preparing-band::before { top: 10px; }
.report-preparing-band::after { bottom: 10px; }

.report-preparing-band > span {
  display: block;
  margin-bottom: 8px;
  color: #ef4f65;
  font: 900 .68rem/1 Arial, sans-serif;
  letter-spacing: .2em;
}

.report-preparing-band > strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.report-preparing-band > small {
  display: block;
  margin-top: 8px;
  color: rgba(16, 42, 86, .68);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6;
}

/* Japanese editorial wrapping: avoid awkward single-character and punctuation breaks. */
.news-card-copy h3,
.news-dialog-title,
#news-dialog-title {
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.news-card-title-line {
  display: block;
  white-space: nowrap;
}

.news-card.is-dark .news-card-copy {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.news-card.is-dark .news-meta time,
.news-card.is-dark .news-card-copy p,
.news-card.is-dark .news-card-read {
  color: rgba(255, 255, 255, .92);
  opacity: 1;
}

.news-card-copy p,
.news-dialog-summary,
.news-dialog-body p,
.news-dialog-body li,
.news-dialog-body h3 {
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.news-dialog-body p {
  max-width: 62ch;
}

@media (max-width: 760px) {
  .report-preparing-band {
    width: calc(100% - 28px);
    padding: 21px 18px 22px;
    transform: translate(-50%, -50%);
    border-radius: 15px;
  }

  .report-preparing-band > strong {
    font-size: 1.38rem;
  }

  .report-preparing-band > small {
    font-size: .82rem;
  }

  .news-card-copy h3 {
    font-size: clamp(1.5rem, 7.6vw, 2.05rem);
    line-height: 1.38;
  }

  .news-card-copy p {
    line-height: 1.75;
  }

  .news-dialog-body p {
    max-width: 34em;
    margin-bottom: 20px;
  }
}

/* Creator feature: add a soft VPOP color field so the copy stays distinct. */
.creator-feature {
  color: #102a56;
  border-color: rgba(75, 155, 211, .28);
  background:
    radial-gradient(circle at 7% 12%, rgba(253, 187, 31, .34), transparent 38%),
    radial-gradient(circle at 95% 14%, rgba(239, 79, 101, .23), transparent 40%),
    linear-gradient(125deg, #fff0bd 0%, #fff9e9 43%, #eaf7ff 100%);
  box-shadow: 0 30px 80px rgba(23, 59, 122, .15);
}

.creator-feature .creator-copy {
  padding: clamp(25px, 3vw, 42px);
  border: 1px solid rgba(23, 59, 122, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(23, 59, 122, .10);
}

.creator-feature .creator-copy .kicker,
.creator-feature .creator-copy h3,
.creator-feature .creator-copy > p,
.creator-feature .creator-copy .text-link {
  background: none;
  box-shadow: none;
}

.creator-feature .creator-copy .kicker,
.creator-feature .creator-copy .text-link {
  color: #e94361;
}

.creator-feature .creator-copy h3 {
  color: #102a56;
}

.creator-feature .creator-copy > p {
  color: rgba(16, 42, 86, .8);
}

.creator-card-handdrawn {
  display: block;
  color: inherit;
  text-decoration: none;
}

@media (max-width: 760px) {
  .creator-feature .creator-copy {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

/* 相談フォームの海外版／国内版の出し分け。
   .form-consent などに display が指定されていると [hidden] の display:none が
   打ち消されて両方表示されてしまうため、ここで明示的に隠す。 */
[data-form-region][hidden] {
  display: none !important;
}
