:root {
  --navy: #06164f;
  --text: #0b1f5a;
  --muted: #52648b;
  --blue: #087cff;
  --blue-dark: #005de6;
  --green: #08bf6f;
  --green-dark: #00a760;
  --line: #06c755;
  --orange: #ff9d16;
  --orange-dark: #ff8800;
  --border: #d7e7f6;
  --soft-blue: #edf8ff;
  --shadow: 0 12px 30px rgba(15, 76, 158, 0.14);
  --radius: 18px;
  --font-body: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic",
    "Meiryo", sans-serif;
  --font-display: "Helvetica Neue", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --font-latin: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
  color: var(--text);
  font-family: var(--font-body);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 0 0, rgba(23, 181, 255, 0.22), transparent 300px),
    radial-gradient(circle at 100% 32%, rgba(0, 206, 146, 0.18), transparent 260px),
    #f7fbff;
}

h1,
h2,
h3,
p,
a,
span,
small,
li {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

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

button {
  font: inherit;
}

.page {
  position: relative;
  width: min(100%, 941px);
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: visible;
  touch-action: pan-y;
  background: #ffffff;
  box-shadow: 0 0 34px rgba(5, 37, 99, 0.08);
}

main,
section,
.card-viewport,
.line-cta,
.trust-section {
  touch-action: pan-y;
  scroll-margin-top: 92px;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 32px) clamp(30px, 7vw, 64px) 0;
}

.logo {
  display: inline-flex;
  align-items: flex-start;
  line-height: 0.82;
  font-family: var(--font-latin);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
  white-space: nowrap;
}

.logo strong {
  color: var(--green);
}

.logo i {
  position: relative;
  width: 17px;
  height: 23px;
  margin: -7px 0 0 5px;
  border-radius: 15px 15px 15px 0;
  background: var(--green);
  transform: rotate(42deg);
}

.logo i::after {
  position: absolute;
  inset: 5px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a {
  transition: color 0.18s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.menu-button {
  position: fixed;
  top: clamp(22px, 4vw, 32px);
  right: max(24px, calc((100vw - 941px) / 2 + 30px));
  z-index: 40;
  display: grid;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(7, 39, 100, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(6, 30, 87, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: var(--navy);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 82px;
  right: clamp(22px, 5vw, 52px);
  z-index: 30;
  display: grid;
  gap: 6px;
  width: min(300px, calc(100% - 44px));
  padding: 14px;
  border: 1px solid rgba(6, 118, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(7, 43, 116, 0.16);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  background: #f3f9ff;
}

.hero {
  position: relative;
  min-height: clamp(488px, 92vw, 620px);
  padding: clamp(94px, 16vw, 132px) clamp(30px, 7vw, 64px) 24px;
  overflow: hidden;
  border-radius: 0 0 0 0;
  background: #ffffff;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 8% 80%, rgba(31, 158, 255, 0.13), transparent 190px);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -60px;
  bottom: -4px;
  left: -60px;
  z-index: 3;
  height: clamp(82px, 16vw, 126px);
  content: "";
  background:
    radial-gradient(90% 140% at 0% 80%, rgba(0, 124, 255, 0.72) 0 30%, transparent 31%),
    radial-gradient(92% 160% at 73% 42%, rgba(0, 209, 157, 0.58) 0 32%, transparent 33%),
    linear-gradient(95deg, rgba(98, 207, 255, 0.62), rgba(0, 129, 255, 0.2));
  clip-path: polygon(0 38%, 9% 60%, 22% 42%, 35% 58%, 49% 34%, 63% 50%, 78% 20%, 100% 41%, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(55%, 470px);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.22;
  text-shadow: none;
}

.hero h1 em {
  display: inline-block;
  padding-right: 0.1em;
  padding-bottom: 0.04em;
  color: transparent;
  font-style: italic;
  background: linear-gradient(100deg, #11c878, #087cff);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.hero p {
  max-width: 360px;
  margin: 18px 0 18px;
  color: var(--text);
  font-size: clamp(12px, 2.65vw, 18px);
  font-weight: 600;
  line-height: 1.62;
}

.hero-actions {
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
}

.hero-actions .button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  justify-content: stretch;
  justify-items: start;
  gap: 12px;
  text-align: left;
}

.hero-actions .button > .book-icon,
.hero-actions .button > .line-mini {
  justify-self: center;
}

.hero-actions .button b {
  justify-self: end;
  margin-left: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: clamp(52px, 9vw, 66px);
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 9px 18px rgba(5, 91, 200, 0.24),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.button b {
  margin-left: auto;
  font-size: 1.35em;
  line-height: 0.6;
}

.button-blue {
  background: linear-gradient(180deg, #188cff, var(--blue-dark));
}

.button-green,
.cta-button {
  background: linear-gradient(180deg, #11d272, var(--green-dark));
}

.book-icon {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 23px;
  border: 3px solid #ffffff;
  border-radius: 4px;
}

.book-icon::before {
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: 9px;
  width: 3px;
  content: "";
  background: #ffffff;
}

.line-mini {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--line);
  font-size: 11px;
  font-weight: 800;
}

.feature-section {
  position: relative;
  z-index: 5;
  padding: 24px clamp(28px, 6vw, 58px) 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(235, 250, 255, 0.9), rgba(255, 255, 255, 0.98) 72%),
    repeating-radial-gradient(circle at 28px 28px, rgba(0, 126, 255, 0.12) 0 2px, transparent 3px 26px);
}

.feature-section::before,
.feature-section::after,
.article-section::before,
.article-section::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.feature-section::before {
  top: 18px;
  right: -72px;
  width: 230px;
  height: 120px;
  border-radius: 60% 0 0 60%;
  background: linear-gradient(135deg, rgba(14, 130, 255, 0.12), rgba(10, 198, 128, 0.12));
  transform: rotate(-10deg);
}

.feature-section::after {
  left: -54px;
  bottom: 38px;
  width: 180px;
  height: 96px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(135deg, rgba(0, 196, 126, 0.11), rgba(28, 159, 255, 0.08));
}

.feature-section h2,
.section-title-row h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 8px 20px;
  border: 1px solid rgba(10, 127, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(15, 76, 158, 0.08);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-shadow: none;
}

.feature-section h2 span {
  margin: 0 10px;
  color: #0bb8ff;
  font-size: 0.7em;
}

.feature-section h2 span:last-child {
  color: var(--green);
}

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

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px 14px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), #f7fcff);
  box-shadow: 0 8px 20px rgba(12, 72, 142, 0.07);
}

.feature-green {
  border-color: #bdebd7;
  background: linear-gradient(135deg, #f9fffc, #effff8);
}

.feature-blue {
  border-color: #b9dcff;
  background: linear-gradient(135deg, #ffffff, #f1f8ff);
}

.feature-orange {
  border-color: #ffe0a7;
  background: linear-gradient(135deg, #fffefa, #fff7e8);
}

.round-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(54px, 10vw, 76px);
  height: clamp(54px, 10vw, 76px);
  border-radius: 50%;
  overflow: hidden;
}

.wallet-icon {
  background: radial-gradient(circle at 35% 24%, #e8fff6, #57e2ae 50%, #00ae70);
}

.wallet-icon::before {
  width: 36px;
  height: 28px;
  content: "";
  border-radius: 7px;
  background:
    radial-gradient(circle at 78% 56%, #ffffff 0 4px, transparent 5px),
    linear-gradient(#19cc7d, #07a965);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.article-icon {
  background: radial-gradient(circle at 35% 24%, #eff9ff, #91d4ff 48%, #087cff);
}

.article-icon::before {
  width: 34px;
  height: 44px;
  content: "";
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 0 78%, rgba(255, 255, 255, 0.75) 79%),
    repeating-linear-gradient(#72b8ff 0 4px, transparent 5px 10px),
    #0c7ff4;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.line-icon-large {
  background: linear-gradient(145deg, #fff1b9, #06c755 58%);
  color: #ffffff;
  font-family: var(--font-latin);
  font-size: 17px;
  font-weight: 800;
}

.line-icon-large::after {
  position: absolute;
  right: 11px;
  bottom: 8px;
  width: 14px;
  height: 14px;
  content: "";
  background: #06c755;
  clip-path: polygon(0 0, 100% 0, 15% 100%);
}

.feature-text h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.32;
  text-shadow: none;
}

.feature-green h3 {
  color: var(--green);
}

.feature-blue h3 {
  color: var(--blue);
}

.feature-orange h3 {
  color: var(--orange);
}

.feature-text p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.62;
}

.feature-card a {
  position: relative;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  gap: 12px;
  min-height: 46px;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 111, 231, 0.16);
}

.feature-green a {
  background: linear-gradient(180deg, #16cc78, #00ad67);
}

.feature-blue a {
  background: linear-gradient(180deg, #178bff, #0069e9);
}

.feature-orange a {
  background: linear-gradient(180deg, #ffb833, #ff8f08);
}

.feature-card a span {
  position: absolute;
  right: 18px;
  margin-left: 0;
  padding-right: 0;
  font-size: 1.4em;
}

.article-section {
  position: relative;
  z-index: 1;
  padding: 22px clamp(28px, 6vw, 58px) 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.82) 52%, rgba(255, 255, 255, 0.98)),
    repeating-radial-gradient(circle at 18px 18px, rgba(7, 124, 255, 0.1) 0 1px, transparent 2px 24px);
}

.article-section::before {
  top: 26px;
  left: -52px;
  width: 170px;
  height: 84px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, rgba(21, 207, 132, 0.12), rgba(18, 164, 255, 0.1));
}

.article-section::after {
  right: -44px;
  bottom: 36px;
  width: 150px;
  height: 110px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(135deg, rgba(255, 211, 77, 0.12), rgba(18, 164, 255, 0.09));
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.section-title-row h2 {
  margin: 0;
  text-align: left;
  justify-content: flex-start;
  padding-right: 16px;
  padding-left: 16px;
}

.section-title-row h2 span {
  color: #ffd34d;
}

.section-title-row a,
.card-section-head a {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: clamp(10px, 2.2vw, 14px);
  font-weight: 700;
}

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

.article-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(10, 54, 125, 0.08);
}

.article-thumb {
  position: relative;
  aspect-ratio: 16 / 8.4;
  min-height: 78px;
  background-size: cover;
  background-position: center;
}

.student-card {
  background-image: url("assets/article-student-card.png");
}

.saving-card {
  background-image: url("assets/article-saving.png");
}

.cashless-card {
  background-image: url("assets/article-cashless.png");
}

.invest-card {
  background-image: url("assets/article-invest.png");
}

.article-thumb span {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(0, 126, 255, 0.25);
  border-radius: 999px;
  color: var(--text);
  font-size: clamp(9px, 1.9vw, 12px);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
}

.article-card h3 {
  display: -webkit-box;
  min-height: 55px;
  margin: 9px 9px 5px;
  overflow: hidden;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card time {
  display: block;
  margin: 0 9px 10px;
  color: var(--muted);
  font-size: clamp(9px, 2vw, 12px);
  font-weight: 700;
}

.card-section {
  position: relative;
  margin: 8px clamp(18px, 4vw, 38px) 18px;
  padding: 17px clamp(12px, 3vw, 26px) 13px;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.32), transparent 160px),
    radial-gradient(circle at 95% 0%, rgba(255, 239, 105, 0.18), transparent 190px),
    linear-gradient(112deg, #13c884 0%, #13bfac 32%, #12a4ff 74%, #087cff 100%);
}

.card-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 8px 11px;
}

.card-section-head h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: none;
}

.card-section-head h2 span {
  display: block;
}

.card-section-head a {
  color: #ffffff;
}

.card-viewport {
  overflow: hidden;
  padding: 0 26px;
}

.card-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  transition: transform 0.24s ease;
}

.credit-card {
  min-width: 0;
  padding: 11px 10px 12px;
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(3, 54, 133, 0.16);
}

.credit-card h3 {
  margin: 9px 0 4px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.32;
}

.credit-card p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.credit-visual {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 8px 16px rgba(5, 29, 83, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.carousel-button {
  position: absolute;
  top: 53%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(34px, 7vw, 48px);
  height: clamp(34px, 7vw, 48px);
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: clamp(28px, 6vw, 40px);
  line-height: 0.75;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(5px);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: #067a55;
}

.line-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(196px, 41%) minmax(0, 1fr);
  align-items: start;
  gap: 8px 18px;
  margin: 0 clamp(18px, 4vw, 38px) 22px;
  min-height: 402px;
  padding: 26px clamp(20px, 4.4vw, 42px) 22px;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 17% 20%, rgba(255, 255, 255, 0.42), transparent 118px),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.2), transparent 160px),
    linear-gradient(130deg, #28d18a 0%, #23c6bd 48%, #2388ff 100%);
}

.line-cta::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 32%, rgba(255, 255, 255, 0.6) 0 5px, transparent 6px),
    radial-gradient(circle at 15% 44%, rgba(255, 231, 56, 0.72) 0 4px, transparent 5px),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.46) 0 5px, transparent 6px),
    repeating-radial-gradient(circle at 34px 34px, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px 28px),
    linear-gradient(90deg, rgba(0, 194, 124, 0.04) 0%, rgba(0, 166, 200, 0.12) 44%, rgba(0, 112, 255, 0.26) 100%);
  pointer-events: none;
}

.line-cta::after {
  position: absolute;
  left: clamp(10px, 4vw, 40px);
  bottom: 44px;
  z-index: 1;
  width: clamp(170px, 30vw, 260px);
  height: clamp(170px, 30vw, 260px);
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(236, 255, 250, 0.46) 62%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(135deg, rgba(5, 201, 129, 0.16), rgba(0, 124, 255, 0.14));
  pointer-events: none;
}

.line-visual {
  position: absolute;
  left: clamp(14px, 4.2vw, 42px);
  bottom: 48px;
  z-index: 2;
  width: clamp(220px, 42vw, 322px);
  max-width: 48%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 66, 128, 0.18));
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.line-copy {
  position: relative;
  z-index: 3;
  grid-column: 2;
  min-width: 0;
  align-self: start;
  margin-top: 10px;
  text-align: left;
  text-shadow: none;
}

.line-copy p {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  margin: 0 0 7px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.line-copy p span {
  color: #ffe738;
  font-size: 1.45em;
}

.line-copy h2 {
  display: block;
  margin: 0 0 11px;
  padding: 0;
  max-width: 100%;
  border: 0;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.14;
  background: none;
  box-shadow: none;
  text-shadow: none;
}

.line-copy h2 span {
  display: block;
}

.line-copy h2::after {
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 10px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff 0%, #ffe738 54%, rgba(255, 255, 255, 0) 100%);
}

.line-copy small {
  display: block;
  width: min(100%, 300px);
  max-width: 430px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.62;
}

.step-list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 2;
  min-width: 0;
  width: min(310px, 100%);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 10px 7px;
  border-radius: 999px;
  color: var(--text);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 24px rgba(0, 80, 156, 0.16),
    inset 0 0 0 1px rgba(27, 196, 182, 0.16);
}

.step-list b {
  color: #08b5aa;
  font-family: var(--font-latin);
  font-size: 26px;
  line-height: 1;
}

.step-list span {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: normal;
}

.cta-button {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  width: min(620px, 100%);
  min-height: clamp(62px, 11vw, 78px);
  margin: 8px auto 0;
  border: 3px solid rgba(255, 255, 255, 0.86);
  font-size: 22px;
  white-space: nowrap;
  justify-content: center;
  padding-right: 62px;
  padding-left: 62px;
}

.cta-button .line-mini {
  position: absolute;
  left: 20px;
}

.cta-button b {
  position: absolute;
  right: 24px;
  margin-left: 0;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 38px) 34px;
}

.trust-card {
  min-height: 184px;
  padding: 24px 18px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(10, 54, 125, 0.07);
}

.trust-card h2 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: none;
}

.trust-card:nth-child(1) h2 {
  color: var(--green);
}

.trust-card:nth-child(2) h2 {
  color: var(--blue);
}

.trust-card:nth-child(3) h2 {
  color: var(--orange);
}

.trust-card p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.62;
}

.trust-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 18px;
}

.trust-icon svg {
  display: block;
  width: 48px;
  height: 48px;
}

.trust-book {
  background: linear-gradient(145deg, #effff8, #dff8ee);
  box-shadow: inset 0 0 0 1px rgba(8, 191, 111, 0.18);
}

.trust-book svg {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.5;
}

.trust-shield svg path:first-child {
  fill: #52a9ff;
}

.trust-shield {
  background: linear-gradient(145deg, #eef7ff, #dfedff);
  box-shadow: inset 0 0 0 1px rgba(8, 124, 255, 0.18);
}

.trust-shield svg path:last-child {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.yen-zero {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(160deg, #ffd747, #ff9c12);
}

.site-footer {
  padding: 28px clamp(24px, 5vw, 52px) 30px;
  color: #dce9ff;
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 139, 255, 0.22), transparent 210px),
    linear-gradient(145deg, #06164f, #0a2e72);
}

.footer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  font-family: var(--font-latin);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.footer-logo strong {
  color: #20d17d;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a {
  color: #eef6ff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.36);
}

.footer-disclosure {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin: 12px 0 0;
  color: rgba(238, 246, 255, 0.72);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
}

.legal-page-shell {
  min-height: 100vh;
  padding: 26px clamp(20px, 5vw, 48px) 42px;
  background:
    radial-gradient(circle at 0 0, rgba(31, 139, 255, 0.18), transparent 260px),
    radial-gradient(circle at 100% 18%, rgba(10, 191, 111, 0.14), transparent 230px),
    #f7fbff;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 880px);
  margin: 0 auto 22px;
}

.legal-logo {
  display: inline-flex;
  font-family: var(--font-latin);
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.legal-logo strong {
  color: var(--green);
}

.legal-back {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(180deg, #188cff, var(--blue-dark));
  box-shadow: 0 8px 18px rgba(5, 91, 200, 0.16);
}

.legal-content {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(10, 54, 125, 0.1);
}

.legal-content h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
}

.legal-content section + section {
  margin-top: 24px;
}

.legal-content h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
  word-break: normal;
  overflow-wrap: anywhere;
}

.legal-content p {
  margin: 0;
}

.contact-content {
  padding-bottom: clamp(28px, 6vw, 52px);
}

.contact-lead {
  margin-bottom: 22px !important;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.form-field label span,
.form-field label strong {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.form-field label span {
  color: var(--muted);
  background: #eef5ff;
}

.form-field label strong {
  color: #ffffff;
  background: var(--orange);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #bfd7ef;
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(6, 22, 79, 0.03);
}

.form-field input {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 190px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 124, 255, 0.16);
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 180px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(180deg, #11d272, var(--green-dark));
  box-shadow: 0 10px 22px rgba(0, 167, 96, 0.18);
  cursor: pointer;
}

.legal-content ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2em;
}

.legal-date {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.legal-page-shell .site-footer {
  width: min(100%, 880px);
  margin: 26px auto 0;
  border-radius: 20px;
}

@media (max-width: 720px) {
  .footer-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 560px) {
  .feature-card {
    grid-template-columns: auto 1fr minmax(180px, 28%);
  }

  .feature-card a {
    grid-column: auto;
  }
}

@media (min-width: 860px) {
  body {
    padding: 0 0 32px;
  }

  .page {
    margin-top: 0;
    border-radius: 0 0 28px 28px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

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

  .logo {
    font-size: 44px;
  }

  .line-copy h2 {
    font-size: 34px;
  }
}

@media (max-width: 720px) {
  .hero-copy {
    width: min(60%, 360px);
  }

  .logo {
    font-size: 40px;
  }

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

  .button {
    font-size: 18px;
  }

  .feature-section h2,
  .section-title-row h2 {
    font-size: 22px;
  }

  .feature-text h3 {
    font-size: 18px;
  }

  .line-cta {
    grid-template-columns: minmax(172px, 41%) minmax(0, 1fr);
    min-height: 390px;
    gap: 8px 10px;
  }

  .line-copy p {
    font-size: 18px;
  }

  .line-copy h2 {
    padding: 0;
    border-radius: 0;
    font-size: 27px;
  }

  .line-copy small {
    font-size: 12px;
    line-height: 1.58;
  }

  .step-list {
    width: min(282px, 100%);
    gap: 6px;
  }

  .step-list span {
    font-size: 10px;
  }

  .cta-button {
    font-size: 19px;
  }

  .trust-card h2 {
    font-size: 18px;
  }

  .trust-card p {
    font-size: 11px;
  }

  .card-track {
    display: flex;
    gap: 10px;
  }

  .credit-card {
    flex: 0 0 calc((100% - 10px) / 2);
  }
}

@media (max-width: 520px) {
  .page {
    width: 100%;
  }

  .site-header {
    padding: 20px 24px 0;
  }

  .hero {
    min-height: 580px;
    padding: 82px 24px 24px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.24) 68%, rgba(255, 255, 255, 0) 86%),
      radial-gradient(circle at 10% 76%, rgba(31, 158, 255, 0.17), transparent 170px);
  }

  .hero-image {
    height: 100%;
    top: 0;
    object-position: 54% center;
  }

  .hero-copy {
    width: 82%;
  }

  .logo {
    font-size: 36px;
  }

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

  .hero p {
    font-size: 13px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 14px;
  }

  .feature-card {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }

  .feature-card a {
    min-height: 44px;
  }

  .article-grid {
    gap: 8px;
  }

  .article-card h3 {
    min-height: 62px;
    -webkit-line-clamp: 4;
  }

  .card-viewport {
    padding: 0 26px;
  }

  .line-cta {
    grid-template-columns: minmax(132px, 38%) 1fr;
    gap: 8px 9px;
    min-height: 390px;
    padding: 20px 16px 20px;
    text-align: left;
  }

  .line-visual {
    left: 8px;
    bottom: 70px;
    width: clamp(154px, 46vw, 194px);
    max-width: 48%;
    height: auto;
  }

  .line-cta::before {
    background:
      radial-gradient(circle at 9% 35%, rgba(255, 255, 255, 0.64) 0 4px, transparent 5px),
      radial-gradient(circle at 15% 47%, rgba(255, 231, 56, 0.72) 0 4px, transparent 5px),
      repeating-radial-gradient(circle at 22px 22px, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px 24px),
      linear-gradient(90deg, rgba(0, 184, 128, 0.08), rgba(0, 112, 255, 0.22));
  }

  .line-cta::after {
    left: 12px;
    bottom: 98px;
    width: 138px;
    height: 138px;
  }

  .line-copy {
    grid-column: 2;
    margin-top: 2px;
    text-align: left;
  }

  .line-copy p {
    padding-right: 0;
    padding-left: 0;
    font-size: 17px;
  }

  .line-copy h2 {
    padding: 0;
    border-radius: 0;
    font-size: 24px;
  }

  .line-copy small {
    font-size: 11px;
    line-height: 1.58;
  }

  .step-list {
    grid-column: 1 / -1;
    width: min(288px, 68%);
    margin-left: auto;
    gap: 6px;
  }

  .step-list li {
    min-height: 0;
    padding: 9px 6px;
  }

  .trust-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 3px 14px;
    min-height: 0;
    padding: 14px 16px;
    text-align: left;
  }

  .trust-card .trust-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .trust-card h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.34;
  }

  .trust-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 560px;
  }

  .hero-copy {
    width: 82%;
  }

  .button {
    gap: 8px;
    padding: 0 15px;
    font-size: 16px;
  }

  .line-mini {
    width: 36px;
    height: 31px;
    font-size: 9px;
  }

  .article-section,
  .feature-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .article-card h3 {
    min-height: 72px;
  }

  .credit-card {
    flex-basis: 72%;
  }

  .step-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .step-list li {
    min-height: 84px;
    padding: 9px 6px;
    border-radius: 999px;
  }

  .step-list span {
    font-size: 9px;
  }
}
