@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #111827;
  --muted: #687086;
  --blue: #3159bb;
  --blue-2: #6481de;
  --blue-soft: #dce5ff;
  --mint: #55d4b0;
  --coral: #ea5962;
  --lavender: #e8e6ff;
  --canvas: #f7f9ff;
  --line: rgba(49, 89, 187, 0.12);
  --shadow: 0 24px 70px rgba(31, 48, 102, 0.14);
  --shadow-soft: 0 14px 40px rgba(31, 48, 102, 0.1);
  --radius: 34px;
  --jp-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "Noto Sans JP", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scrollbar-width: none;
}

html::-webkit-scrollbar { display: none; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--jp-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection { background: var(--blue-soft); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.brand,
.footer-brand,
.desktop-nav,
.mobile-download,
.eyebrow,
.section-number,
h1,
h2,
h3,
.app-store,
.language-pill,
.floating-chip,
.price-label,
.company small {
  font-family: "Manrope", var(--jp-sans);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 12px;
  color: white;
  background: var(--blue);
  transition: transform .2s ease;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .85);
  background: rgba(248, 250, 255, .74);
  backdrop-filter: blur(20px) saturate(130%);
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img, .footer-brand img, .cta-icon {
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(31, 48, 102, .12);
}

.brand-text, .footer-brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong, .footer-brand strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand-text small, .footer-brand small {
  margin-top: 5px;
  color: #7a8298;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #434b60;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a { transition: color .2s ease, transform .2s ease; }
.desktop-nav a:hover { color: var(--blue); transform: translateY(-1px); }

.language-pill {
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: 11px;
}

.nav-download, .mobile-download {
  padding: 11px 19px;
  border-radius: 999px;
  color: white !important;
  background: var(--blue);
  box-shadow: 0 7px 20px rgba(49, 89, 187, .22);
}

.mobile-download { display: none; font-size: 12px; font-weight: 700; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 6% -10%, rgba(221, 217, 255, .60), transparent 24%),
    radial-gradient(circle at 97% 10%, rgba(221, 217, 255, .62), transparent 32%),
    radial-gradient(circle at 103% 56%, rgba(208, 234, 255, .55), transparent 28%),
    radial-gradient(circle at 72% 98%, rgba(184, 240, 220, .42), transparent 30%),
    linear-gradient(165deg, #fbfbff 0%, #f6f7ff 56%, #f8f9ff 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 64px;
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; padding-top: 12px; }

.eyebrow, .section-number {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }

.hero .eyebrow {
  font-family: var(--jp-sans);
  font-weight: 600;
  letter-spacing: .11em;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(50px, 5.25vw, 76px);
  line-height: 1.14;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-question-top {
  display: inline-block;
  white-space: nowrap;
  font-size: .75em;
  letter-spacing: -.035em;
}

.hero-lead {
  margin: 28px 0 10px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.hero-body {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-cta-intro {
  margin: 26px 0 -18px;
  color: #303a51;
  font-size: 14px;
  font-weight: 600;
}

.hero-actions, .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.app-store {
  display: inline-flex;
  min-width: 178px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid #272b34;
  border-radius: 14px;
  color: white;
  background: #0b0d12;
  box-shadow: 0 10px 26px rgba(17, 24, 39, .16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.app-store:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(17, 24, 39, .22); }
.app-store span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.06; }
.app-store small { font-size: 9px; letter-spacing: .02em; }
.app-store strong { font-size: 20px; font-weight: 600; letter-spacing: -.025em; }
.apple-mark { position: relative; width: 24px; height: 27px; color: white; font-size: 28px; line-height: 22px; overflow: hidden; }
.apple-mark::after { content: ""; position: absolute; top: 0; right: 1px; width: 7px; height: 7px; border-radius: 90% 10% 90% 10%; background: white; transform: rotate(-32deg); }

.android-note {
  color: #767e92;
  font-size: 13px;
  line-height: 1.35;
}

.android-note b { display: block; color: #4d5568; font-size: 11px; letter-spacing: .06em; }

.trust-list {
  display: flex;
  gap: 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #4d5568;
  font-size: 13px;
  font-weight: 500;
}

.trust-list li { display: flex; align-items: center; gap: 7px; }
.check { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; color: var(--blue); background: var(--blue-soft); font-size: 10px; }

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 605px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(100, 129, 222, .34), rgba(232, 230, 255, .5) 48%, rgba(85, 212, 176, .28));
  filter: blur(.2px);
}

.phone-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 7px solid #101729;
  border-radius: 44px;
  background: #f7f8fd;
  box-shadow: var(--shadow);
}

.phone-shell img { width: 100%; height: 100%; object-fit: cover; }

.phone-hero {
  width: 306px;
  height: 626px;
  transform: rotate(3.5deg);
  box-shadow: 0 34px 80px rgba(31, 48, 102, .22);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 50%;
  width: 72px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #101729;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.chip-ten {
  top: 54px;
  right: 4px;
  width: 112px;
  height: 112px;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  line-height: 1;
  transform: rotate(7deg);
}

.chip-ten b { font-size: 36px; font-weight: 800; }
.chip-ten span { margin-top: 7px; color: #8a91a4; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.chip-correct {
  right: 5px;
  bottom: 100px;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  transform: rotate(-5deg);
}

.mini-check { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: white; background: var(--mint); }

.input-pill {
  position: absolute;
  z-index: 4;
  left: -22px;
  bottom: 85px;
  display: flex;
  width: 210px;
  height: 68px;
  align-items: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transform: rotate(-4deg);
}

.input-pill span { color: #9aa2b7; font-weight: 600; }
.input-pill strong { font-size: 22px; }
.input-pill i { width: 2px; height: 28px; background: var(--blue); animation: blink 1.05s steps(2, end) infinite; }

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 2px solid rgba(100, 129, 222, .14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { top: 118px; right: -300px; width: 790px; height: 790px; border-width: 88px; border-color: rgba(100, 129, 222, .06); }
.orbit-two { bottom: -280px; left: -260px; width: 600px; height: 600px; border-width: 2px; }

.scroll-cue {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  left: 50%;
  width: 1px;
  height: 86px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(150, 157, 175, 0), rgba(150, 157, 175, .8));
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(150, 157, 175, .8);
  border-bottom: 1px solid rgba(150, 157, 175, .8);
  transform: translate(-50%, 0) rotate(45deg);
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-cue { animation: cueDrift 2.6s ease-in-out infinite; }
}

@keyframes cueDrift {
  0%, 100% { opacity: .55; transform: translate(-50%, -6px); }
  50% { opacity: 1; transform: translate(-50%, 0); }
}

.section { position: relative; padding: 150px 0; overflow: hidden; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  gap: 92px;
  align-items: center;
}

.split-grid.reverse { grid-template-columns: minmax(430px, 1.1fr) minmax(0, .9fr); }

.section-copy { position: relative; z-index: 3; }
.section-copy h2, .pricing-heading h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 57px);
  line-height: 1.23;
  letter-spacing: -.045em;
  font-weight: 800;
}

.mobile-copy-break { display: none; }

@media (min-width: 821px) {
  .balanced-title { font-size: clamp(38px, 3.5vw, 50px) !important; }
  .desktop-nowrap { white-space: nowrap; }
}

.section-copy > p:not(.section-number), .pricing-heading > p:not(.section-number) {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.section-number { margin-bottom: 17px; font-size: 10px; }
.section-number.coral { color: var(--coral); }
.section-number.mint { color: #26aa88; }

.visual-stage { position: relative; min-height: 620px; display: grid; place-items: center; }

.mastery-section {
  background: linear-gradient(180deg, #f7f9ff, #f1f4ff 70%, #f7f9ff);
}

.mastery-section::before {
  content: "";
  position: absolute;
  top: 58%;
  left: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49,89,187,.22));
}

.legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 34px;
  color: #6f778c;
  font-size: 12px;
  font-weight: 600;
}

.legend-row span { display: flex; align-items: center; gap: 7px; }
.dot { width: 9px; height: 9px; border-radius: 3px; }
.dot.mastered { background: var(--blue); }
.dot.learning { background: #aebde9; }
.dot.review { background: var(--coral); }

.mastery-stage::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 42% 58% 62% 38% / 38% 44% 56% 62%;
  background: var(--lavender);
  transform: rotate(-9deg);
}

.phone-map { width: 296px; height: 604px; transform: rotate(-4.5deg); }

.map-grid {
  position: absolute;
  z-index: 3;
  right: 7px;
  bottom: 52px;
  display: grid;
  grid-template-columns: repeat(4, 26px);
  gap: 5px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  transform: rotate(6deg);
}

.map-grid i { width: 26px; height: 16px; border-radius: 6px; background: #e7eaf3; }
.map-grid i:nth-child(1), .map-grid i:nth-child(7), .map-grid i:nth-child(12) { background: var(--blue); animation: mapFill 3s ease-in-out infinite alternate; }
.map-grid i:nth-child(4), .map-grid i:nth-child(9) { background: #aebde9; }
.map-grid i:nth-child(6) { background: var(--coral); }

.progress-badge {
  position: absolute;
  z-index: 4;
  top: 45px;
  left: 6px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  padding: 17px 21px;
  border-radius: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow-soft);
  transform: rotate(5deg);
}

.progress-badge strong { color: var(--blue); font-size: 28px; }
.progress-badge span { color: #9ba2b5; font-size: 11px; }
.progress-badge small { grid-column: 1 / -1; font-size: 10px; font-weight: 700; }

.soft-arc {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.arc-blue { right: -230px; bottom: -330px; width: 720px; height: 720px; border: 70px solid rgba(100,129,222,.07); }

.review-section { background: #fbfbfe; }
.review-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 425px;
  height: 520px;
  border-radius: 53% 47% 39% 61% / 46% 38% 62% 54%;
  background: linear-gradient(145deg, #ffe7ea, #f1edff);
  transform: rotate(13deg);
}

.coral-blob {
  position: absolute;
  left: -30px;
  top: 92px;
  width: 130px;
  height: 130px;
  border: 20px solid rgba(234,89,98,.12);
  border-radius: 50%;
}

.phone-review { width: 290px; height: 594px; transform: rotate(4deg); }
.review-stage .phone-review { z-index: 2; }

.review-card {
  position: absolute;
  z-index: 4;
  bottom: 65px;
  right: 3px;
  display: grid;
  grid-template-columns: 1fr auto;
  width: 184px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  transform: rotate(-6deg);
}

.review-card span { font-size: 12px; font-weight: 800; }
.review-card b { grid-row: 1 / 3; grid-column: 2; align-self: center; padding: 5px 8px; border-radius: 9px; color: white; background: var(--coral); font-size: 11px; }
.review-card small { color: #9aa2b5; font-size: 9px; }

.feature-note, .offline-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 14px 18px;
  border: 1px solid rgba(49,89,187,.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(31,48,102,.07);
}

.feature-note > span, .offline-pill > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 12px; color: var(--coral); background: #ffe9ec; font-weight: 800; }
.feature-note p, .offline-pill p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.feature-note b, .offline-pill b { font-size: 13px; font-weight: 600; }
.feature-note small, .offline-pill small { margin-top: 3px; color: #8a92a5; font-size: 10px; }

.history-section {
  min-height: 900px;
  background:
    radial-gradient(circle at 20% 55%, rgba(85,212,176,.11), transparent 23%),
    #f5f8ff;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  gap: 80px;
  align-items: center;
}

.date-strip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 34px;
  padding: 5px;
  border-radius: 999px;
  background: #e9edf7;
}

.date-strip span { padding: 8px 13px; border-radius: 999px; color: #8991a5; font-size: 10px; font-weight: 700; }
.date-strip .active { color: white; background: var(--blue); box-shadow: 0 6px 14px rgba(49,89,187,.22); }

.history-phones { position: relative; min-height: 650px; }
.history-phones::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 7%;
  width: 470px;
  height: 520px;
  border-radius: 48% 52% 62% 38% / 51% 36% 64% 49%;
  background: linear-gradient(145deg, #dfe7ff, #e8e6ff);
  transform: rotate(-7deg);
}

.phone-history-back, .phone-history-front { position: absolute; width: 262px; height: 535px; }
.phone-history-back { top: 28px; left: 35px; z-index: 1; transform: rotate(-8deg); opacity: .94; }
.phone-history-front { top: 105px; right: 30px; z-index: 2; transform: rotate(7deg); }

.search-section {
  padding: 170px 0;
  background: #fcfcff;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) minmax(0, .85fr);
  gap: 90px;
  align-items: center;
}

.search-demo { position: relative; min-height: 630px; }
.search-demo::before {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 30px;
  width: 470px;
  height: 460px;
  border-radius: 38% 62% 45% 55% / 56% 46% 54% 44%;
  background: linear-gradient(150deg, rgba(85,212,176,.32), rgba(232,230,255,.7));
}

.search-bar {
  position: absolute;
  z-index: 5;
  top: 32px;
  left: 0;
  display: flex;
  width: 430px;
  height: 72px;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 23px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}

.search-bar > span { color: #a8b0c3; font-size: 28px; transform: rotate(-15deg); }
.search-bar strong { font-size: 24px; }
.search-bar > i { width: 2px; height: 27px; background: var(--blue); animation: blink 1.05s steps(2,end) infinite; }
.search-bar small { margin-left: auto; padding: 6px 9px; border-radius: 999px; color: #209879; background: #e0f8f0; font-size: 9px; font-weight: 700; }

.result-card {
  position: absolute;
  z-index: 5;
  left: 5px;
  top: 122px;
  width: 390px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(240,242,255,.96), rgba(255,238,240,.94));
  box-shadow: var(--shadow-soft);
  animation: resultFloat 3s ease-in-out infinite;
}

.result-card > small { color: #969eb1; font-size: 9px; font-weight: 700; }
.result-card p { display: flex; align-items: baseline; gap: 9px; margin: 5px 0 1px; line-height: 1.3; }
.result-card strong, .result-card b { font-size: 25px; }
.result-card p span { color: var(--blue); }
.result-card p em { color: #798195; font-size: 12px; font-style: normal; }
.result-card > i { color: #687086; font-size: 10px; font-style: normal; }

.phone-search { position: absolute; z-index: 2; right: 42px; bottom: 2px; width: 278px; height: 568px; transform: rotate(7deg); }

.search-points { margin: 32px 0 0; padding: 0; list-style: none; }
.search-points li { display: flex; align-items: center; gap: 13px; padding: 10px 0; border-bottom: 1px solid rgba(49,89,187,.09); font-size: 13px; font-weight: 700; }
.search-points span { color: #29a987; font-size: 9px; letter-spacing: .1em; }

.search-arc { position: absolute; top: -260px; left: -210px; width: 600px; height: 600px; border: 66px solid rgba(85,212,176,.055); border-radius: 50%; }

.audio-section {
  padding: 160px 0;
  color: white;
  background: #121c3b;
}

.audio-section::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -260px;
  width: 660px;
  height: 660px;
  border: 80px solid rgba(85,212,176,.09);
  border-radius: 50%;
}

.audio-grid { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); }
.audio-section .section-copy > p:not(.section-number) { color: #b9c2dd; }
.audio-section .section-number { color: var(--mint); }

.offline-pill { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.07); box-shadow: none; }
.offline-pill > span { color: var(--mint); background: rgba(85,212,176,.12); }
.offline-pill small { color: #aeb8d3; }

.audio-stage::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(85,212,176,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(85,212,176,.035), 0 0 0 105px rgba(100,129,222,.03);
}

.phone-audio { width: 292px; height: 596px; border-color: #f4f6ff; transform: rotate(-3deg); box-shadow: 0 30px 80px rgba(0,0,0,.35); }

.now-playing {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 70px;
  display: flex;
  min-width: 235px;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 21px;
  background: rgba(22,32,67,.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
  transform: rotate(5deg);
}

.play { display: grid; width: 36px; height: 36px; place-items: center; padding-left: 2px; border-radius: 50%; color: #121c3b; background: var(--mint); font-size: 11px; }
.now-playing p { display: flex; flex-direction: column; margin: 0; line-height: 1.3; }
.now-playing small { color: #90a0c7; font-size: 7px; letter-spacing: .16em; }
.now-playing b { font-size: 13px; }
.tiny-wave { display: flex; height: 25px; align-items: center; gap: 3px; margin-left: auto; }
.tiny-wave i { width: 2px; height: 8px; border-radius: 9px; background: var(--mint); animation: wave 1s ease-in-out infinite; }
.tiny-wave i:nth-child(2), .tiny-wave i:nth-child(4) { animation-delay: -.2s; }
.tiny-wave i:nth-child(3) { animation-delay: -.4s; }

.sound-orbit { position: absolute; left: 10px; top: 145px; display: flex; height: 90px; align-items: center; gap: 9px; }
.sound-orbit i { width: 5px; height: 22px; border-radius: 99px; background: linear-gradient(180deg, var(--mint), var(--blue-2)); animation: wave 1.15s ease-in-out infinite; }
.sound-orbit i:nth-child(2), .sound-orbit i:nth-child(6) { height: 43px; animation-delay: -.12s; }
.sound-orbit i:nth-child(3), .sound-orbit i:nth-child(5) { height: 68px; animation-delay: -.24s; }
.sound-orbit i:nth-child(4) { height: 86px; animation-delay: -.36s; }

.pricing-section {
  position: relative;
  padding: 150px 0 170px;
  background: #f7f9ff;
}

.pricing-heading { max-width: 720px; margin: 0 auto 62px; text-align: center; }
.pricing-heading > p:not(.section-number) { margin-inline: auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; max-width: 930px; margin: 0 auto; }

.price-card {
  position: relative;
  min-height: 535px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(49,89,187,.09);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.free-card::before, .pack-card::before { content: ""; position: absolute; top: -135px; right: -105px; width: 270px; height: 270px; border: 38px solid rgba(49,89,187,.06); border-radius: 50%; }
.pack-card { color: white; background: linear-gradient(145deg, #3159bb, #223e8f); }
.pack-card::before { border-color: rgba(85,212,176,.13); }

.price-label { display: flex; align-items: center; justify-content: space-between; }
.price-label span { padding: 6px 10px; border-radius: 999px; color: var(--blue); background: #e8edff; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.price-label small { color: #8a92a5; font-size: 11px; font-weight: 700; }
.pack-card .price-label span { color: #11362f; background: var(--mint); }
.pack-card .price-label small { color: #bfcae6; }

.price-card h3 { margin: 30px 0 4px; font-size: 48px; line-height: 1.1; letter-spacing: -.04em; }
.price-card h3 small { display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: .02em; }
.price-card > p { min-height: 58px; margin: 12px 0 25px; color: #6f778c; font-size: 14px; }
.pack-card > p { color: #c5cee8; }

.price-card ul { margin: 28px 0 0; padding: 0; list-style: none; }
.price-card li { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid rgba(49,89,187,.08); font-size: 13px; font-weight: 500; }
.price-card li span { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 8px; color: var(--blue); background: #e9eeff; font-size: 10px; }
.pack-card li { border-color: rgba(255,255,255,.09); }
.pack-card li span { color: var(--mint); background: rgba(85,212,176,.12); }

.no-subscription { padding: 11px 14px; border: 1px solid rgba(85,212,176,.35); border-radius: 12px; color: var(--mint); background: rgba(85,212,176,.08); font-size: 11px; font-weight: 800; text-align: center; }

.final-cta {
  position: relative;
  padding: 120px 0 130px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #3159bb 0%, #24449d 65%, #1d377f 100%);
}

.final-cta::before { content: ""; position: absolute; left: -9%; bottom: -55%; width: 720px; height: 720px; border: 85px solid rgba(232,230,255,.07); border-radius: 50%; }
.final-cta::after { content: ""; position: absolute; right: -6%; top: -55%; width: 530px; height: 530px; border: 64px solid rgba(85,212,176,.09); border-radius: 50%; }
.final-cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-icon { margin-bottom: 26px; border-radius: 25px; box-shadow: 0 20px 45px rgba(8,20,62,.28); }
.eyebrow.light { color: #b8c8f6; }
.final-cta h2 { font-size: clamp(45px, 5vw, 70px); }
.cta-actions { margin-top: 34px; }
.app-store.large { min-width: 205px; min-height: 66px; }
.light-note { color: #c6d1ef; text-align: left; }
.light-note b { color: white; }

.site-footer { padding: 48px 0; color: #6f778c; background: #f7f9ff; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.footer-inner nav { display: flex; gap: 28px; font-size: 11px; font-weight: 600; }
.footer-inner nav a:hover { color: var(--blue); }
.company { display: flex; flex-direction: column; align-items: flex-end; font-size: 10px; line-height: 1.6; }
.company span { color: #4c556a; font-weight: 700; }

.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes blink { 0%, 44% { opacity: 1; } 45%, 100% { opacity: 0; } }
@keyframes wave { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }
@keyframes mapFill { 0%, 35% { filter: saturate(.75); opacity: .58; } 65%, 100% { filter: saturate(1); opacity: 1; } }
@keyframes resultFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-6px) rotate(-2deg); } }

@media (max-width: 1020px) {
  .hero-grid, .split-grid, .split-grid.reverse, .audio-grid { gap: 42px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .8fr); }
  .history-layout, .search-layout { gap: 40px; }
  .history-layout { grid-template-columns: minmax(0,.75fr) minmax(480px,1.25fr); }
  .search-layout { grid-template-columns: minmax(480px,1.05fr) minmax(0,.95fr); }
  .desktop-nav { gap: 22px; }
  .phone-history-back { left: 10px; }
  .phone-history-front { right: 10px; }
}

@media (max-width: 820px) {
  .container, .header-inner { width: min(100% - 36px, 680px); }
  .desktop-nav { display: none; }
  .mobile-download { display: inline-flex; }
  .hero { min-height: auto; padding: 132px 0 84px; }
  .hero-grid, .split-grid, .split-grid.reverse, .history-layout, .search-layout, .audio-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-body { margin-inline: auto; }
  .hero-cta-intro { text-align: center; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { min-height: 580px; }
  .chip-ten { right: 9%; }
  .chip-correct { right: 8%; }
  .input-pill { left: 8%; }
  .section { padding: 112px 0; }
  .section-copy { max-width: 640px; text-align: center; }
  .section-copy > p:not(.section-number) { margin-inline: auto; }
  .legend-row, .date-strip, .feature-note, .offline-pill { margin-inline: auto; }
  .visual-stage { min-height: 610px; }
  .review-section .section-copy { order: -1; }
  .history-section { min-height: 1180px; }
  .history-phones { min-height: 650px; }
  .history-phones::before { left: 50%; right: auto; transform: translateX(-50%) rotate(-7deg); }
  .phone-history-back { left: 14%; }
  .phone-history-front { right: 14%; }
  .search-section { padding: 120px 0; }
  .search-demo { width: min(100%, 610px); margin: 0 auto; order: 2; }
  .search-layout .section-copy { order: 1; }
  .audio-grid .section-copy { order: 1; }
  .audio-stage { order: 2; }
  .audio-section .section-copy { margin: 0 auto; }
  .pricing-section { padding: 112px 0 130px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .company { align-items: center; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container, .header-inner { width: calc(100% - 30px); }
  .site-header { padding: 10px 0; }
  .brand img { width: 40px; height: 40px; border-radius: 11px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 8px; }
  .mobile-download { padding: 9px 14px; }
  .hero { padding-top: 118px; }
  .hero .eyebrow { gap: 8px; font-size: 10px; letter-spacing: .1em; }
  .hero .eyebrow span { width: 22px; }
  h1 { font-size: clamp(38px, 11.2vw, 48px); line-height: 1.17; }
  .hero-lead { margin-top: 22px; font-size: 18px; }
  .hero-body { font-size: 15px; line-height: 1.75; }
  .hero-cta-intro { margin-top: 22px; font-size: 13px; }
  .desktop-only { display: none; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .android-note { text-align: center; }
  .trust-list { gap: 14px; font-size: 11px; }
  .hero-visual { min-height: 545px; margin-top: -10px; }
  .hero-visual::before { width: 390px; height: 390px; }
  .phone-hero { width: 246px; height: 505px; border-width: 6px; border-radius: 36px; }
  .chip-ten { top: 45px; right: 0; width: 86px; height: 86px; }
  .chip-ten b { font-size: 28px; }
  .chip-correct { right: 0; bottom: 75px; padding: 9px 12px; font-size: 10px; }
  .mini-check { width: 21px; height: 21px; }
  .input-pill { left: 0; bottom: 60px; width: 158px; height: 54px; gap: 12px; padding: 0 15px; border-radius: 16px; }
  .input-pill strong { font-size: 18px; }
  .input-pill i { height: 23px; }
  .scroll-cue { display: none; }
  .section { padding: 96px 0; }
  .section-copy h2, .pricing-heading h2 { font-size: clamp(32px, 9vw, 42px); line-height: 1.27; }
  .mobile-copy-break { display: block; }
  .section-copy > p:not(.section-number), .pricing-heading > p:not(.section-number) { margin-top: 20px; font-size: 15px; line-height: 1.8; }
  .visual-stage { min-height: 520px; }
  .mastery-stage::before { width: 370px; height: 390px; }
  .phone-shell { border-width: 5px; border-radius: 35px; }
  .phone-map, .phone-review, .phone-audio { width: 240px; height: 491px; }
  .progress-badge { left: 0; top: 35px; padding: 12px 15px; }
  .map-grid { right: 0; bottom: 35px; grid-template-columns: repeat(4,22px); }
  .map-grid i { width: 22px; height: 14px; }
  .legend-row { justify-content: center; gap: 12px; }
  .review-stage::after { width: 350px; height: 420px; }
  .review-card { right: 0; bottom: 50px; width: 157px; }
  .feature-note, .offline-pill { max-width: 100%; text-align: left; }
  .history-section { min-height: 1030px; }
  .history-phones { min-height: 530px; }
  .history-phones::before { width: 340px; height: 430px; }
  .phone-history-back, .phone-history-front { width: 205px; height: 418px; }
  .phone-history-back { top: 25px; left: 0; }
  .phone-history-front { top: 85px; right: 0; }
  .date-strip span { padding: 7px 9px; }
  .search-demo { min-height: 535px; }
  .search-demo::before { left: 50%; width: 355px; height: 380px; transform: translateX(-50%); }
  .search-bar { left: 0; width: 92%; height: 60px; padding: 0 15px; }
  .search-bar strong { font-size: 21px; }
  .search-bar small { font-size: 7px; }
  .result-card { left: 3%; top: 105px; width: 89%; padding: 14px 16px; }
  .result-card strong, .result-card b { font-size: 21px; }
  .phone-search { right: 0; width: 222px; height: 454px; }
  .audio-section { padding: 104px 0; }
  .audio-stage::before { width: 350px; height: 350px; }
  .sound-orbit { left: 0; top: 120px; transform: scale(.78); transform-origin: left center; }
  .now-playing { right: 0; bottom: 45px; min-width: 195px; padding: 11px 13px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; padding: 28px 24px; border-radius: 28px; }
  .price-card h3 { font-size: 43px; }
  .final-cta { padding: 95px 0 105px; }
  .final-cta h2 { font-size: clamp(39px, 11vw, 52px); }
  .cta-actions { flex-direction: column; gap: 13px; }
  .light-note { text-align: center; }
  .footer-inner { gap: 28px; }
  .footer-inner nav { flex-direction: column; gap: 12px; }
}

@media (max-width: 340px) {
  .container, .header-inner { width: calc(100% - 24px); }
  .brand-text small { display: none; }
  .trust-list { flex-direction: column; align-items: center; gap: 8px; }
  .hero-visual { min-height: 510px; }
  .phone-hero { width: 226px; height: 463px; }
  .chip-ten { right: -5px; }
  .input-pill { left: -5px; }
  .section-copy h2, .pricing-heading h2 { font-size: 31px; }
  .phone-map, .phone-review, .phone-audio { width: 220px; height: 450px; }
  .phone-history-back, .phone-history-front { width: 190px; height: 388px; }
  .search-bar small { display: none; }
  .result-card p em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Subpages: /privacy, /support
   ============================================================ */

/* --- language visibility ------------------------------------ */
html[data-lang="ja"] [data-l="en"] { display: none; }
html[data-lang="en"] [data-l="ja"] { display: none; }

/* --- language switch ---------------------------------------- */
.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}

.lang-switch button {
  min-width: 38px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  color: #7a8298;
  background: transparent;
  font-family: "Manrope", var(--jp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.lang-switch button:hover { color: var(--blue); }
.lang-switch button[aria-pressed="true"] {
  color: white;
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(49, 89, 187, .24);
}

.mobile-tools { display: none; }

/* --- "coming soon" store button ----------------------------- */
.app-store.is-soon {
  background: #171b23;
  cursor: default;
}

.app-store.is-soon small {
  color: #ff9198;
  font-family: var(--jp-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.app-store.is-soon strong { margin-top: 2px; }

/* --- page hero ---------------------------------------------- */
.page-hero {
  position: relative;
  padding: 156px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f7ff 70%, var(--canvas) 100%);
}

.page-hero-wash {
  position: absolute;
  top: -220px;
  left: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 230, 255, .9), transparent 68%);
}

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

.crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #8a92a5;
  font-size: 12px;
  font-weight: 500;
}

.crumbs a { color: #5c667f; }
.crumbs a:hover { color: var(--blue); }
.crumbs i { font-style: normal; color: #b6bcca; }

.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.2;
  letter-spacing: -.05em;
}

.page-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #3d465c;
  font-size: 17px;
  line-height: 1.85;
}

.page-meta {
  margin: 16px 0 0;
  color: #8a92a5;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* --- privacy: at a glance ----------------------------------- */
.glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.glance li {
  padding: 22px 22px 20px;
  border: 1px solid rgba(49, 89, 187, .09);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 30px rgba(31, 48, 102, .07);
}

.glance-mark {
  display: grid;
  font-weight: 700;
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
}

.glance b { display: block; font-size: 14px; font-weight: 700; line-height: 1.5; }
.glance small { display: block; margin-top: 6px; color: #8a92a5; font-size: 11px; line-height: 1.6; }

/* --- document card ------------------------------------------ */
.doc-section { padding: 44px 0 110px; }
.doc-section .container { max-width: 900px; }

.doc-card {
  padding: 54px 60px 48px;
  border: 1px solid rgba(49, 89, 187, .08);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.doc-intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.doc-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 24px;
  padding: 32px 0;
}

.doc-num {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 4px 0 0;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #eef2ff;
  font-family: "Manrope", var(--jp-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}

.doc-body h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.doc-body p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.doc-footnote {
  margin: 34px 0 0;
  color: #8a92a5;
  font-size: 13px;
  text-align: center;
}

.doc-footnote a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --- mail button -------------------------------------------- */
.mail-button {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 13px 24px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-family: "Manrope", var(--jp-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: 0 8px 22px rgba(49, 89, 187, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mail-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(49, 89, 187, .3); }
.mail-button.large { margin-top: 30px; padding: 17px 34px; font-size: 18px; background: white; color: var(--blue); box-shadow: 0 14px 34px rgba(8, 20, 62, .3); }

/* --- support: FAQ ------------------------------------------- */
.faq-section { padding-top: 30px; }
.faq-section .container { max-width: 900px; }

.faq-heading {
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
}

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

.faq-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 20px;
  padding: 30px 34px 32px;
  border: 1px solid rgba(49, 89, 187, .08);
  border-radius: 26px;
  background: white;
  box-shadow: 0 12px 34px rgba(31, 48, 102, .06);
}

.q-mark {
  display: grid;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: #eef2ff;
  font-family: "Manrope", var(--jp-sans);
  font-size: 15px;
  font-weight: 800;
}

.faq-body h3 { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.55; letter-spacing: -.02em; }
.faq-body p { margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.9; }

.glyph-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.glyph-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #f5f8ff;
  color: #4d5568;
  font-size: 13px;
  line-height: 1.6;
}

.ui-glyph {
  display: grid;
  width: 28px;
  height: 28px;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: white;
  font-size: 13px;
  box-shadow: 0 3px 10px rgba(31, 48, 102, .08);
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.hero-contact-link i { font-style: normal; transition: transform .2s ease; }
.hero-contact-link:hover i { transform: translateY(2px); }

/* --- support: contact --------------------------------------- */
.contact-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #3159bb 0%, #24449d 65%, #1d377f 100%);
}

.contact-orbit {
  position: absolute;
  right: -8%;
  top: -60%;
  width: 560px;
  height: 560px;
  border: 68px solid rgba(85, 212, 176, .09);
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-inner h2 { margin: 0; font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; line-height: 1.3; letter-spacing: -.04em; }
.contact-lead { max-width: 520px; margin: 18px 0 0; color: #c3cfee; font-size: 15px; line-height: 1.85; }

.contact-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.contact-hints li {
  min-width: 168px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  text-align: left;
}

.contact-hints b { display: block; font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.contact-hints small { display: block; margin-top: 5px; color: #b3c2e8; font-size: 11px; }

/* --- focus visibility --------------------------------------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 8px;
}

.contact-section a:focus-visible,
.final-cta a:focus-visible { outline-color: white; }

/* --- subpage responsive ------------------------------------- */
@media (max-width: 980px) {
  .glance { grid-template-columns: 1fr; }
  .glance li { display: grid; grid-template-columns: 26px 1fr; column-gap: 14px; align-items: center; padding: 18px 20px; }
  .glance-mark { margin-bottom: 0; grid-row: span 2; align-self: start; margin-top: 2px; }
  .doc-card { padding: 40px 34px 36px; }
}

@media (max-width: 820px) {
  .mobile-tools { display: flex; align-items: center; gap: 12px; }
  .page-hero { padding: 128px 0 48px; }
  .page-hero-inner { max-width: none; }
  .doc-section { padding: 36px 0 84px; }
  .faq-card { padding: 26px 26px 28px; }
  .contact-section { padding: 78px 0 84px; }
}

@media (max-width: 600px) {
  .page-hero { padding: 112px 0 40px; }
  .crumbs { margin-bottom: 20px; font-size: 11px; }
  .page-lead { font-size: 15px; }
  .doc-card { padding: 30px 22px 26px; border-radius: 26px; }
  .doc-item { grid-template-columns: 38px minmax(0, 1fr); gap: 16px; padding: 26px 0; }
  .doc-num { width: 38px; height: 38px; border-radius: 12px; font-size: 12px; }
  .doc-body h2 { font-size: 18px; }
  .doc-body p, .faq-body p { font-size: 14px; }
  .faq-card { grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding: 24px 20px 26px; border-radius: 22px; }
  .q-mark { width: 34px; height: 34px; border-radius: 11px; font-size: 13px; }
  .faq-body h3 { font-size: 16px; }
  .mail-button.large { padding: 15px 24px; font-size: 15px; }
  .contact-hints li { min-width: 0; width: 100%; }
}

/* current page in nav */
.desktop-nav a[aria-current="page"] { color: var(--blue); font-weight: 700; }

/* ============================================================
   2026-08-19 調整: A2 ロックアップ / C2 ストアチップ / B1 背景・角丸
   ============================================================ */

/* --- A2: Feature graphic の比率を移植 (角丸22% / 間隔20% / 影なし) --- */
.brand, .footer-brand { gap: 11px; }
.brand img { width: 54px; height: 54px; border-radius: 12px; box-shadow: none; }
.footer-brand img { width: 48px; height: 48px; border-radius: 11px; box-shadow: none; }
.cta-icon { border-radius: 20px; }

.brand-text strong { font-size: 21px; letter-spacing: -.045em; color: #171b2b; }
.brand-text small { margin-top: 4px; color: #60677c; font-size: 11.5px; font-weight: 600; letter-spacing: 0; }
.footer-brand strong { font-size: 19px; letter-spacing: -.04em; color: #171b2b; }
.footer-brand small { margin-top: 4px; color: #60677c; font-size: 11px; font-weight: 600; letter-spacing: 0; }

html { scroll-padding-top: 96px; }

/* --- C2: 公式バッジを模さない中立チップ --- */
.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 22px;
  border: 1px solid rgba(49, 89, 187, .16);
  border-radius: 14px;
  color: #111827;
  background: white;
  box-shadow: 0 8px 22px rgba(31, 48, 102, .07);
  font-family: "Manrope", var(--jp-sans);
}

.store-chip .mk { flex: none; }
.store-chip .tx { display: flex; flex-direction: column; line-height: 1.15; }
.store-chip .tx strong { font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.store-chip .tx small { margin-top: 3px; color: var(--coral); font-family: var(--jp-sans); font-size: 10.5px; font-weight: 700; letter-spacing: .04em; }

.final-cta .store-chip { border-color: rgba(255, 255, 255, .2); box-shadow: 0 12px 30px rgba(8, 20, 62, .28); }

/* --- B1: 店頭素材の背景語彙 + 角丸を詰める --- */
body.subpage { background: linear-gradient(165deg, #fbfbff 0%, #f4f6ff 56%, #f8f9ff 100%); }
body.subpage .site-footer { background: transparent; }

.page-hero { background: none; }

.page-hero-wash {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(208, 234, 255, .62), transparent 42%),
    radial-gradient(circle at 92% 34%, rgba(221, 217, 255, .55), transparent 38%);
}

.page-hero::after,
.doc-section::before {
  content: "";
  position: absolute;
  width: 189px;
  height: 231px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .72) 3.5px, transparent 3.6px);
  background-size: 21px 21px;
  pointer-events: none;
}

.page-hero::after { right: 26px; top: 132px; }
.doc-section { position: relative; overflow: hidden; }
.doc-section::before { left: 24px; bottom: 60px; height: 189px; }
.doc-section .container { position: relative; z-index: 2; }

.glance li { border-radius: 14px; background: rgba(255, 255, 255, .92); box-shadow: 0 8px 22px rgba(31, 48, 102, .05); }
.glance-mark { border-radius: 7px; }

.doc-card {
  padding: 44px 48px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 40px rgba(31, 48, 102, .07);
}

.doc-num { border-radius: 10px; }
.faq-card { border-radius: 16px; background: rgba(255, 255, 255, .9); }
.q-mark { border-radius: 10px; }
.glyph-list li { border-radius: 10px; }
.ui-glyph { border-radius: 7px; }
.contact-hints li { border-radius: 12px; }

@media (max-width: 820px) {
  .page-hero::after { right: 12px; top: 108px; opacity: .8; }
  .doc-section::before { display: none; }
}

@media (max-width: 600px) {
  .brand img { width: 46px; height: 46px; border-radius: 10px; }
  .footer-brand img { width: 44px; height: 44px; border-radius: 10px; }
  .brand-text strong { font-size: 18px; }
  .brand-text small { font-size: 10.5px; }
  .store-chip { min-height: 54px; padding: 9px 18px; gap: 10px; }
  .store-chip .tx strong { font-size: 15px; }
  .doc-card { padding: 30px 22px 26px; border-radius: 16px; }
  .faq-card { border-radius: 14px; }
  .page-hero::after { width: 126px; height: 147px; background-size: 21px 21px; }
}

.hero-cta-intro { text-wrap: pretty; }

/* --- LP: ドット格子は余白のある最終CTAのみ（ヒーローは本文と干渉するため置かない） --- */
.final-cta .cta-orbit::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 74px;
  width: 189px;
  height: 189px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .16) 3.5px, transparent 3.6px);
  background-size: 21px 21px;
  pointer-events: none;
}

@media (max-width: 820px) {
  .final-cta .cta-orbit::after { display: none; }
}

/* 言語ラッパ（装飾用 span を狙う既存セレクタと衝突しないための独自要素） */
x-l { display: inline; }
