:root {
  color-scheme: light;
  --ink: #191a24;
  --ink-soft: #303243;
  --muted: #64687a;
  --subtle: #64687a;
  --paper: #f6f7fb;
  --paper-deep: #eff1f8;
  --surface: #ffffff;
  --surface-soft: #f0f1fb;
  --accent: #5b5ce2;
  --accent-strong: #4645c6;
  --accent-soft: #ececff;
  --accent-faint: rgba(91, 92, 226, 0.1);
  --mint: #0a9674;
  --mint-soft: #e7f7f2;
  --amber: #c97918;
  --amber-soft: #fff3df;
  --coral: #d65362;
  --coral-soft: #fff0f2;
  --blue: #3177c9;
  --blue-soft: #e7f2ff;
  --line: rgba(25, 26, 36, 0.055);
  --line-strong: rgba(25, 26, 36, 0.1);
  --shadow-soft: 0 16px 40px rgba(38, 40, 78, 0.07), 0 4px 12px rgba(38, 40, 78, 0.035);
  --shadow-card: 0 24px 64px rgba(38, 40, 78, 0.1), 0 8px 24px rgba(38, 40, 78, 0.05);
  --shadow-float: 0 36px 96px rgba(38, 40, 78, 0.15), 0 12px 32px rgba(38, 40, 78, 0.07);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Segoe UI", sans-serif;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p {
  text-wrap: pretty;
}

html[lang="en"] body {
  letter-spacing: -0.01em;
}

html[lang="ja"] body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

::selection {
  color: var(--ink);
  background: rgba(91, 92, 226, 0.18);
}

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

button,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--surface), 0 0 0 6px rgba(91, 92, 226, 0.72);
}

.tabular {
  font-variant-numeric: tabular-nums;
}

.nowrap {
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #fbfbff;
  background: var(--accent-strong);
  font-size: 14px;
  font-weight: 720;
  transform: translateY(-160%);
  transition: transform 0.2s ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
  pointer-events: none;
}

.site-nav {
  width: min(100% - 32px, 1280px);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(38, 40, 78, 0.085), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  pointer-events: auto;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 24px rgba(91, 92, 226, 0.18);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 520;
  letter-spacing: 0.01em;
}

.nav-links {
  margin: 0;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0;
  border: 1px solid rgba(48, 50, 67, 0.045);
  border-radius: 14px;
  background: rgba(239, 241, 248, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.nav-links a,
.support-link {
  min-height: 36px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 660;
  white-space: nowrap;
  transition: color 0.2s ease-out, background 0.2s ease-out, box-shadow 0.2s ease-out;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(38, 40, 78, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.96);
}

.support-link:hover,
.support-link:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.nav-actions {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-actions::before {
  content: "";
  width: 1px;
  height: 24px;
  margin: 0 6px 0 0;
  flex: 0 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(48, 50, 67, 0.14), transparent);
}

.support-link {
  padding-inline: 8px;
}

.locale-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.locale-switch[open] {
  z-index: 40;
}

.locale-trigger {
  min-width: 128px;
  min-height: 42px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  background: rgba(246, 247, 251, 0.86);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.locale-trigger::-webkit-details-marker {
  display: none;
}

.locale-trigger::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--muted);
  background:
    linear-gradient(var(--muted), var(--muted)) 50% 0 / 1.5px 100% no-repeat,
    linear-gradient(var(--muted), var(--muted)) 0 50% / 100% 1.5px no-repeat;
  opacity: 0.72;
}

.locale-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease-out;
}

.locale-trigger:hover,
.locale-trigger:focus-visible,
.locale-switch[open] .locale-trigger {
  color: var(--accent-strong);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.locale-switch[open] .locale-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.locale-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 20;
  min-width: 184px;
  padding: 8px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(38, 40, 78, 0.18), inset 0 0 0 1px var(--line);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.locale-menu a {
  min-height: 42px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease-out, background 0.2s ease-out;
}

.locale-menu a:hover,
.locale-menu a:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.locale-menu a[aria-current="page"] {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.locale-menu a[aria-current="page"]::after {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

.nav-cta {
  min-height: 42px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px;
  color: #fbfbff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 28px rgba(70, 69, 198, 0.24);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
  transition: background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fbfbff;
  background: linear-gradient(135deg, #6869eb, #4544be);
  box-shadow: 0 16px 36px rgba(70, 69, 198, 0.3);
  transform: translateY(-2px);
}

.nav-cta span:last-child {
  transition: transform 0.2s ease-out;
}

.nav-cta:hover span:last-child,
.nav-cta:focus-visible span:last-child {
  transform: translate(2px, -2px);
}

.mobile-nav {
  display: none;
  position: relative;
  margin-left: auto;
}

.mobile-nav summary {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  list-style: none;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  cursor: pointer;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary > span,
.mobile-nav summary > span::before,
.mobile-nav summary > span::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: var(--radius-full);
  background: var(--ink-soft);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.mobile-nav summary > span {
  position: relative;
}

.mobile-nav summary > span::before,
.mobile-nav summary > span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-nav summary > span::before {
  top: -6px;
}

.mobile-nav summary > span::after {
  top: 6px;
}

.mobile-nav[open] summary {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.mobile-nav[open] summary > span {
  background: transparent;
}

.mobile-nav[open] summary > span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav[open] summary > span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(304px, calc(100vw - 32px));
  padding: 8px;
  display: grid;
  gap: 4px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--line);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.mobile-menu a {
  min-height: 44px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
  transition: color 0.2s ease-out, background 0.2s ease-out;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.mobile-languages {
  margin: 4px 0;
  padding: 12px;
  display: grid;
  gap: 8px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.mobile-languages > span {
  padding: 0 4px;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-languages > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.mobile-menu .mobile-languages a {
  min-height: 40px;
  padding: 8px;
  justify-content: center;
  font-size: 12px;
}

.mobile-menu .mobile-languages a[aria-current="page"] {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.mobile-menu .mobile-store {
  margin-top: 4px;
  justify-content: center;
  color: #fbfbff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.mobile-menu .mobile-store:hover,
.mobile-menu .mobile-store:focus-visible {
  color: #fbfbff;
  background: linear-gradient(135deg, #6869eb, #4544be);
}

main {
  position: relative;
  margin-top: -88px;
  padding-top: 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 6%, rgba(91, 92, 226, 0.15), transparent 26%),
    radial-gradient(circle at 95% 12%, rgba(10, 150, 116, 0.09), transparent 20%),
    linear-gradient(180deg, #f8f8fc 0%, #f6f7fb 22%, #ffffff 44%, #f4f5fa 100%);
}

main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 960px;
  opacity: 0.48;
  background-image: radial-gradient(circle, rgba(68, 69, 100, 0.15) 1px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.72) 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.72) 58%, transparent 100%);
  pointer-events: none;
}

main > * {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(100% - 40px, var(--max));
  min-height: 840px;
  margin: 0 auto;
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(424px, 0.88fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  min-height: 36px;
  width: fit-content;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(38, 40, 78, 0.07), inset 0 0 0 1px rgba(91, 92, 226, 0.1);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(10, 150, 116, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(56px, 5.8vw, 80px);
  line-height: 0.98;
  font-weight: 830;
  letter-spacing: -0.065em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

html[lang="en"] .hero h1,
html[lang="ja"] .hero h1 {
  font-size: clamp(52px, 5vw, 68px);
  letter-spacing: -0.055em;
}

html[lang="ja"] .hero h1 {
  line-height: 1.04;
}

.hero h1 span {
  color: var(--accent-strong);
  background: linear-gradient(100deg, #242661 0%, var(--accent) 52%, #2f83bb 108%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
  letter-spacing: -0.018em;
}

.hero-actions,
.download-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 720;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.button-primary {
  color: #fbfbff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 40px rgba(70, 69, 198, 0.28), 0 6px 16px rgba(70, 69, 198, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fbfbff;
  background: linear-gradient(135deg, #6869eb, #4544be);
  box-shadow: 0 24px 48px rgba(70, 69, 198, 0.34), 0 8px 20px rgba(70, 69, 198, 0.14);
  transform: translateY(-2px);
}

.button-primary span:last-child {
  transition: transform 0.2s ease-out;
}

.button-primary:hover span:last-child,
.button-primary:focus-visible span:last-child {
  transform: translate(2px, -2px);
}

.button-secondary {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(38, 40, 78, 0.07), inset 0 0 0 1px var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--accent-strong);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(38, 40, 78, 0.11), inset 0 0 0 1px rgba(91, 92, 226, 0.1);
  transform: translateY(-2px);
}

.play-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 9px;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mint);
  background: var(--mint-soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 720px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.visual-glow {
  position: absolute;
  inset: 9% -10% 8% -12%;
  z-index: -3;
  border-radius: 48% 52% 43% 57% / 56% 42% 58% 44%;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(145deg, rgba(91, 92, 226, 0.22), rgba(66, 157, 211, 0.14) 54%, rgba(10, 150, 116, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), 0 40px 112px rgba(70, 69, 198, 0.16);
  transform: rotate(-6deg);
}

.visual-glow::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  filter: blur(32px);
}

.phone-stage {
  position: relative;
  width: min(100%, 368px);
  padding: 7px;
  z-index: 2;
  border: 1px solid rgba(111, 114, 128, 0.92);
  border-radius: 58px;
  background: #08090e;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 2px rgba(0, 0, 0, 0.88),
    0 36px 72px rgba(26, 28, 52, 0.24);
}

.phone-stage::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -12px;
  left: 8%;
  z-index: -1;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 31, 58, 0.24);
  filter: blur(24px);
}

.phone-stage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50px;
}

.hero-capture {
  position: relative;
  width: 100%;
  margin: 0;
  display: grid;
  place-items: center;
}

.value-strip {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 96px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.value-strip > div {
  position: relative;
  min-width: 0;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-strip > div + div::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(48, 50, 67, 0.12), transparent);
}

.strip-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 14px;
  font-weight: 800;
}

.value-strip > div:nth-child(2) .strip-icon {
  color: var(--mint);
  background: var(--mint-soft);
}

.value-strip > div:nth-child(3) .strip-icon {
  color: var(--amber);
  background: var(--amber-soft);
}

.value-strip > div:nth-child(4) .strip-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.value-strip > div > span:last-child {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.value-strip strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 740;
}

.value-strip small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.section {
  background: rgba(255, 255, 255, 0.9);
}

.section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(91, 92, 226, 0.07), transparent 26%),
    linear-gradient(180deg, #f1f2f9 0%, #f6f7fb 100%);
}

.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  align-items: end;
  gap: 64px;
}

.section-heading-narrow {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.52fr);
}

.section-label,
.card-label,
.scenario-kicker {
  display: block;
  color: var(--accent-strong);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 16px;
}

.section-heading h2,
.privacy-copy h2,
.download-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 810;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(384px, auto);
  gap: 16px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.benefit-primary {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 784px;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 292px);
  align-items: center;
  gap: 28px;
  color: #f8f8fd;
  background:
    radial-gradient(circle at 86% 18%, rgba(129, 130, 255, 0.34), transparent 32%),
    radial-gradient(circle at 2% 100%, rgba(22, 179, 143, 0.22), transparent 40%),
    linear-gradient(145deg, #23213d 0%, #373783 58%, #175d5c 122%);
  box-shadow: 0 32px 80px rgba(45, 43, 105, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.benefit-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: linear-gradient(130deg, transparent 10%, #fff 48%, transparent 88%);
  -webkit-mask-image: linear-gradient(130deg, transparent 10%, #fff 48%, transparent 88%);
  pointer-events: none;
}

.benefit-copy {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.benefit-primary .benefit-copy {
  max-width: 304px;
}

.benefit-primary .card-label {
  color: rgba(248, 248, 253, 0.62);
}

.benefit-card h3 {
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.benefit-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.benefit-primary h3 {
  color: #fbfbff;
  font-size: 36px;
}

.benefit-primary p {
  color: rgba(248, 248, 253, 0.7);
}

.benefit-compact {
  grid-column: span 5;
  min-height: 384px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(136px, 148px);
  align-items: center;
  gap: 22px;
}

.benefit-compact h3 {
  max-width: 320px;
}

.benefit-compact p {
  max-width: 320px;
}

.benefit-check {
  background:
    radial-gradient(circle at 92% 16%, rgba(91, 92, 226, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.92);
}

.benefit-schedule {
  background:
    radial-gradient(circle at 92% 16%, rgba(10, 150, 116, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.92);
}

.benefit-schedule .card-label {
  color: var(--mint);
}

.benefit-shot {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  aspect-ratio: 1206 / 2622;
  isolation: isolate;
}

.benefit-shot::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7% -12% -1%;
  border: 1px solid rgba(91, 92, 226, 0.1);
  border-radius: 42px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.82), rgba(236, 236, 255, 0.72));
  box-shadow: 0 24px 54px rgba(42, 44, 88, 0.1);
}

.benefit-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 30px rgba(18, 20, 42, 0.18));
}

.benefit-shot-lock {
  width: min(100%, 292px);
  justify-self: end;
}

.benefit-shot-lock::before {
  inset: 6% -10% -1%;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.13), rgba(103, 105, 225, 0.08));
  box-shadow: 0 28px 64px rgba(5, 8, 29, 0.28);
}

.benefit-compact .benefit-shot {
  width: min(100%, 148px);
  justify-self: end;
}

.benefit-shot-schedule::before {
  border-color: rgba(10, 150, 116, 0.11);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.86), rgba(231, 247, 242, 0.78));
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-width: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 92, 226, 0.07), transparent 34%),
    rgba(248, 248, 252, 0.94);
  box-shadow: 0 16px 44px rgba(38, 40, 78, 0.055), inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.steps li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 0 0 var(--radius-full) var(--radius-full);
  background: linear-gradient(90deg, var(--accent), #8b8cf4);
}

.steps li:nth-child(2)::before {
  background: linear-gradient(90deg, var(--mint), #68cbb1);
}

.steps li:nth-child(3)::before {
  background: linear-gradient(90deg, var(--blue), #75afe8);
}

.steps li:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(10, 150, 116, 0.08), transparent 36%),
    rgba(248, 250, 250, 0.94);
}

.steps li:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(49, 119, 201, 0.08), transparent 36%),
    rgba(248, 249, 252, 0.94);
}

.step-number {
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.steps li:nth-child(2) .step-number {
  color: var(--mint);
  background: var(--mint-soft);
}

.steps li:nth-child(3) .step-number {
  color: var(--blue);
  background: var(--blue-soft);
}

.step-shot {
  position: relative;
  width: min(100%, 206px);
  aspect-ratio: 1206 / 2622;
  margin: 28px auto 0;
  isolation: isolate;
}

.step-shot::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7% -12% -1%;
  border: 1px solid rgba(91, 92, 226, 0.1);
  border-radius: 42px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(236, 236, 255, 0.76));
  box-shadow: 0 24px 52px rgba(42, 44, 88, 0.1);
}

.steps li:nth-child(2) .step-shot::before {
  border-color: rgba(10, 150, 116, 0.11);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(231, 247, 242, 0.8));
}

.steps li:nth-child(3) .step-shot::before {
  border-color: rgba(49, 119, 201, 0.11);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(231, 242, 255, 0.8));
}

.step-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 30px rgba(18, 20, 42, 0.16));
}

.steps h3 {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.section-scenes {
  background:
    radial-gradient(circle at 82% 12%, rgba(91, 92, 226, 0.08), transparent 28%),
    linear-gradient(180deg, #eff0f7 0%, #f5f6fb 100%);
}

.scenario-shell {
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.scenario-tabs {
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.scenario-tabs::-webkit-scrollbar {
  display: none;
}

.scenario-tabs button {
  min-height: 44px;
  padding: 12px 20px;
  flex: 0 0 auto;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.scenario-tabs button:hover,
.scenario-tabs button:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.scenario-tabs button[aria-selected="true"] {
  color: #fbfbff;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(70, 69, 198, 0.22);
}

.scenario-panel {
  min-height: 584px;
  margin-top: 12px;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(384px, 0.76fr);
  align-items: center;
  gap: 64px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 14%, rgba(91, 92, 226, 0.14), transparent 28%),
    radial-gradient(circle at 14% 88%, rgba(10, 150, 116, 0.08), transparent 24%),
    var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.scenario-copy {
  max-width: 480px;
}

.scenario-kicker {
  color: var(--mint);
}

.scenario-copy h3 {
  margin: 20px 0 0;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.scenario-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.scenario-note {
  width: fit-content;
  margin-top: 28px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 680;
}

.scenario-note > span:first-child {
  color: var(--accent);
}

.scenario-capture {
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50px;
  background: rgba(16, 17, 25, 0.96);
  box-shadow: 0 32px 80px rgba(30, 31, 58, 0.24);
}

.scenario-capture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
}

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

.feature-card {
  --feature-glow: rgba(91, 92, 226, 0.13);
  position: relative;
  min-height: 224px;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 108% 112%, var(--feature-glow), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 251, 0.9));
  box-shadow: 0 16px 44px rgba(38, 40, 78, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.feature-card:nth-child(2) {
  --feature-glow: rgba(41, 42, 56, 0.11);
}

.feature-card:nth-child(3) {
  --feature-glow: rgba(10, 150, 116, 0.13);
}

.feature-card:nth-child(4) {
  --feature-glow: rgba(201, 121, 24, 0.14);
}

.feature-card:nth-child(5) {
  --feature-glow: rgba(49, 119, 201, 0.14);
}

.feature-card:nth-child(6) {
  --feature-glow: rgba(214, 83, 98, 0.13);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -74px;
  z-index: 0;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: var(--feature-glow);
  filter: blur(2px);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  box-shadow: 0 10px 24px rgba(38, 40, 78, 0.07);
  font-size: 17px;
  font-weight: 800;
}

.feature-icon-dark {
  color: #f3f3fb;
  background: #292a38;
}

.feature-icon-mint {
  color: var(--mint);
  background: var(--mint-soft);
}

.feature-icon-amber {
  color: var(--amber);
  background: var(--amber-soft);
}

.feature-icon-blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.feature-icon-coral {
  color: var(--coral);
  background: var(--coral-soft);
  font-size: 14px;
}

.feature-card h3 {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.compatibility-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.privacy-section {
  color: #f8f8fd;
  background:
    radial-gradient(circle at 82% 18%, rgba(115, 117, 255, 0.28), transparent 24%),
    radial-gradient(circle at 12% 100%, rgba(10, 150, 116, 0.18), transparent 28%),
    #20212d;
}

.privacy-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: 96px;
}

.section-label-light {
  color: rgba(196, 196, 255, 0.84);
}

.privacy-copy h2 {
  color: #f9f9fd;
}

.privacy-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(248, 248, 253, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-copy a {
  min-height: 44px;
  margin-top: 28px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  color: #d7d7ff;
  background: rgba(135, 134, 255, 0.12);
  font-size: 13px;
  font-weight: 720;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}

.privacy-copy a:hover,
.privacy-copy a:focus-visible {
  color: #ffffff;
  background: rgba(135, 134, 255, 0.22);
  transform: translateY(-2px);
}

.privacy-copy a span {
  transition: transform 0.2s ease-out;
}

.privacy-copy a:hover span,
.privacy-copy a:focus-visible span {
  transform: translateX(3px);
}

.privacy-orbit {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.privacy-orbit::before,
.privacy-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(178, 179, 255, 0.12);
}

.privacy-orbit::before {
  width: 384px;
  height: 384px;
}

.privacy-orbit::after {
  width: 272px;
  height: 272px;
  box-shadow: inset 0 0 0 1px rgba(88, 204, 176, 0.12);
}

.privacy-core {
  position: relative;
  z-index: 2;
  width: 176px;
  height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px rgba(9, 10, 18, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.privacy-core img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(12, 13, 24, 0.24);
}

.privacy-core strong {
  margin-top: 4px;
  font-size: 14px;
}

.privacy-core span {
  color: rgba(248, 248, 253, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-badge {
  position: absolute;
  z-index: 3;
  min-height: 40px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  color: rgba(248, 248, 253, 0.86);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(9, 10, 18, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 680;
}

.badge-account {
  top: 52px;
  left: 8px;
}

.badge-cloud {
  top: 112px;
  right: 0;
}

.badge-track {
  right: 40px;
  bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.pricing-card {
  position: relative;
  min-height: 408px;
  padding: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.pricing-pro {
  color: #f8f8fd;
  background:
    radial-gradient(circle at 88% 12%, rgba(127, 129, 255, 0.34), transparent 28%),
    linear-gradient(145deg, #29264f, #4647ad);
  box-shadow: 0 32px 80px rgba(50, 48, 120, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pro-pill {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  color: #ededff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-head {
  display: grid;
  gap: 8px;
}

.pricing-head > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pricing-head strong {
  margin-top: 20px;
  font-size: 52px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: -0.055em;
}

.pricing-head small {
  color: var(--muted);
  font-size: 14px;
}

.pricing-pro .pricing-head > span,
.pricing-pro .pricing-head small {
  color: rgba(248, 248, 253, 0.62);
}

.pricing-card ul {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card li span {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 850;
}

.pricing-pro li {
  color: rgba(248, 248, 253, 0.78);
}

.pricing-pro li span {
  color: #f8f8fd;
  background: rgba(255, 255, 255, 0.12);
}

.download-section {
  padding: 112px 20px;
  background:
    radial-gradient(circle at 24% 18%, rgba(91, 92, 226, 0.08), transparent 24%),
    #ffffff;
}

.download-card {
  position: relative;
  width: min(100%, 960px);
  min-height: 536px;
  margin: 0 auto;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at 82% 8%, rgba(91, 92, 226, 0.16), transparent 28%),
    radial-gradient(circle at 14% 100%, rgba(10, 150, 116, 0.11), transparent 30%),
    var(--paper);
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(68, 69, 100, 0.16) 1px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 8%, #fff 52%, transparent 88%);
  -webkit-mask-image: linear-gradient(120deg, transparent 8%, #fff 52%, transparent 88%);
  pointer-events: none;
}

.download-card > * {
  position: relative;
  z-index: 1;
}

.download-icon {
  width: 104px;
  height: 104px;
  padding: 8px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 56px rgba(70, 69, 198, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.86);
}

.download-icon img {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-lg);
}

.download-status {
  min-height: 32px;
  margin-top: 24px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.download-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(10, 150, 116, 0.1);
}

.download-card h2 {
  max-width: 720px;
  margin-top: 20px;
}

.download-card > p {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.download-actions {
  justify-content: center;
}

.download-note {
  margin-top: 16px;
  color: var(--subtle);
  font-size: 11px;
}

.site-footer {
  color: #f5f5fb;
  background:
    radial-gradient(circle at 82% 0%, rgba(91, 92, 226, 0.2), transparent 28%),
    #20212c;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  min-height: 120px;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  opacity: 0.84;
  transform: translateY(-1px);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-brand > span {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-size: 13px;
  line-height: 1;
}

.footer-brand small {
  color: rgba(245, 245, 251, 0.52);
  font-size: 10px;
  line-height: 1;
}

.footer-inner > p {
  margin: 0;
  color: rgba(245, 245, 251, 0.52);
  font-size: 12px;
  text-align: center;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-inner nav a {
  color: rgba(245, 245, 251, 0.66);
  font-size: 12px;
  transition: color 0.2s ease-out, transform 0.2s ease-out;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .site-nav {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions::before {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 1120px) {

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(376px, 424px);
    gap: 40px;
  }

  .scenario-panel {
    padding: 48px;
    gap: 48px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .benefit-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 660px;
    padding: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(228px, 252px);
    gap: 40px;
  }

  .benefit-primary .benefit-copy {
    max-width: 440px;
  }

  .benefit-compact {
    grid-column: auto;
    min-height: 384px;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding: 96px 0 80px;
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 680px;
    margin: 0 auto;
  }

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

  .value-strip > div:nth-child(3)::before {
    display: none;
  }

  .section-heading,
  .section-heading-narrow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .benefit-primary,
  .benefit-compact {
    grid-column: auto;
    grid-row: auto;
  }

  .benefit-primary {
    min-height: 660px;
    padding: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(228px, 252px);
    gap: 40px;
  }

  .benefit-compact {
    min-height: 432px;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 40px;
  }

  .benefit-compact .benefit-shot {
    width: 170px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 432px;
    padding: 32px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
      "number shot"
      "title shot"
      "copy shot";
    column-gap: 48px;
    align-items: start;
  }

  .step-number {
    grid-area: number;
  }

  .step-shot {
    grid-area: shot;
    width: 170px;
    margin: 0;
    align-self: center;
    justify-self: end;
  }

  .steps h3 {
    grid-area: title;
    margin-top: 24px;
    font-size: 24px;
  }

  .steps p {
    grid-area: copy;
    margin-top: 10px;
  }

  .scenario-panel {
    padding: 48px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .scenario-copy {
    max-width: 680px;
  }

  .scenario-capture {
    width: min(100%, 320px);
  }

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

  .privacy-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .privacy-copy {
    max-width: 760px;
  }

  .privacy-orbit {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
  }

  .footer-inner > p {
    text-align: right;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    padding: 8px 0;
  }

  .site-nav {
    width: min(100% - 16px, var(--max));
    min-height: 56px;
    padding: 8px;
    gap: 8px;
    border-radius: 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    display: flex;
  }

  .nav-actions .support-link,
  .nav-actions .locale-switch {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
  }

  .mobile-nav {
    margin-left: 0;
  }

  .mobile-menu .mobile-store {
    display: none;
  }

  main {
    margin-top: -72px;
    padding-top: 72px;
  }

  main::before {
    height: 800px;
    background-size: 24px 24px;
  }

  .hero,
  .value-strip,
  .section-inner,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding: 72px 0 64px;
    gap: 56px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(44px, 13vw, 56px);
    line-height: 1.01;
  }

  html[lang="en"] .hero h1,
  html[lang="ja"] .hero h1 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 1.04;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-actions,
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual {
    width: 100%;
    min-height: 584px;
  }

  .phone-stage {
    width: min(100%, 294px);
    border-radius: 48px;
  }

  .phone-stage img {
    border-radius: 41px;
  }

  .visual-glow {
    inset: 10% -16% 8% -16%;
  }

  .value-strip {
    margin-bottom: 72px;
    padding: 12px 16px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .value-strip > div {
    min-height: 72px;
    padding: 12px 4px;
  }

  .value-strip > div + div::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(48, 50, 67, 0.12), transparent);
  }

  .value-strip > div:nth-child(3)::before {
    display: block;
  }

  .section-inner {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .download-card h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .section-heading > p,
  .privacy-copy p {
    font-size: 15px;
  }

  .benefit-primary {
    min-height: 0;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefit-primary h3 {
    font-size: 30px;
  }

  .benefit-shot-lock {
    width: min(100%, 232px);
    justify-self: center;
  }

  .benefit-compact {
    min-height: 0;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefit-compact .benefit-shot {
    width: min(100%, 216px);
    justify-self: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 0;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
  }

  .step-shot {
    width: min(100%, 216px);
    margin: 28px auto 0;
    align-self: auto;
    justify-self: auto;
  }

  .steps h3 {
    margin-top: 28px;
    font-size: 20px;
  }

  .steps p {
    margin-top: 8px;
  }

  .scenario-shell {
    padding: 8px;
    border-radius: var(--radius-lg);
  }

  .scenario-tabs {
    padding: 4px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .scenario-tabs button {
    width: 100%;
    padding-inline: 10px;
    justify-content: center;
  }

  .scenario-panel {
    min-height: 0;
    padding: 36px 20px 20px;
    gap: 40px;
  }

  .scenario-copy h3 {
    font-size: 34px;
  }

  .scenario-capture {
    width: min(100%, 300px);
    border-radius: 44px;
  }

  .scenario-capture img {
    border-radius: 35px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 196px;
    padding: 24px;
  }

  .privacy-orbit {
    min-height: 392px;
  }

  .privacy-orbit::before {
    width: 328px;
    height: 328px;
  }

  .privacy-orbit::after {
    width: 232px;
    height: 232px;
  }

  .privacy-core {
    width: 152px;
    height: 152px;
    border-radius: 40px;
  }

  .badge-account {
    top: 40px;
    left: 0;
  }

  .badge-cloud {
    top: 96px;
    right: 0;
  }

  .badge-track {
    right: 20px;
    bottom: 48px;
  }

  .pricing-card {
    min-height: 368px;
    padding: 32px 28px;
  }

  .download-section {
    padding: 72px 16px;
  }

  .download-card {
    min-height: 536px;
    padding: 48px 24px;
    border-radius: var(--radius-lg);
  }

  .footer-inner {
    min-height: 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner > p {
    text-align: left;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 400px) {
  .brand-copy strong {
    max-width: 176px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 44px;
  }

  .privacy-badge {
    padding-inline: 12px;
    font-size: 11px;
  }
}

@media (max-width: 350px) {
  .brand-copy {
    display: none;
  }

  .nav-cta {
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot,
  .download-status i {
    animation: status-pulse 2.2s ease-out infinite;
  }

  .phone-stage {
    animation: phone-float 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .privacy-badge {
    animation: badge-float 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .privacy-badge:nth-of-type(2) {
    animation-delay: -2s;
  }

  .privacy-badge:nth-of-type(3) {
    animation-delay: -4s;
  }

  @keyframes status-pulse {
    0% {
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.72), 0 0 0 4px rgba(10, 150, 116, 0.24);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(10, 150, 116, 0);
    }
    100% {
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.72), 0 0 0 4px rgba(10, 150, 116, 0.24);
    }
  }

  @keyframes phone-float {
    0%, 100% {
      transform: translateY(0) rotate(1deg);
    }
    50% {
      transform: translateY(-8px) rotate(0.4deg);
    }
  }

  @keyframes badge-float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
