* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 45 920;
  font-display: swap;
  src:
    url("fonts/PretendardVariable.woff2") format("woff2-variations"),
    url("fonts/PretendardVariable.woff2") format("woff2");
}
:root {
  --navy: #0b1730;
  --navy-mid: #172845;
  --blue: #2563eb;
  --blue-soft: #eaf2ff;
  --green: #059669;
  --amber: #b45309;
  --red: #dc2626;
  --text: #101828;
  --text-muted: #667085;
  --text-light: #98a2b3;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --bg: #f6f8fb;
  --white: #ffffff;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Pretendard", "Apple SD Gothic Neo", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
button,
input {
  font-family: inherit;
}
button {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: none;
  -webkit-tap-highlight-color: transparent;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #1e3a8a;
}
.logo-mark img {
  display: block;
  width: 32px;
  height: 32px;
}
.logo-word {
  color: #1e3a8a;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background: var(--blue);
  background-color: var(--blue);
  color: #fff;
  text-decoration: none;
  border: 1px solid #1d4ed8;
  border-radius: 8px;
  padding: 9px 22px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: #1d4ed8;
  border-color: #1e40af;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.32);
  transform: translateY(-1px);
}
.nav-cta:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}
.floating-beta-cta {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid #1d4ed8;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.24s,
    transform 0.2s;
}
.floating-beta-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}
.floating-beta-cta:hover {
  background: #1d4ed8;
  border-color: #1e40af;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.34);
  transform: translate(-50%, -2px);
}
.floating-beta-cta:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 4px;
}

.hero {
  background: var(--navy);
  padding: 108px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-beta-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 7px 14px;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.34);
  color: #dbeafe;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-beta-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.16);
  flex: 0 0 auto;
}
.hero-beta-chip span {
  color: #fff;
}
.hero-beta-chip strong {
  padding-left: 10px;
  border-left: 1px solid rgba(147, 197, 253, 0.22);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
}
.hero-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #93c5fd;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}
h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
h1 em {
  font-style: normal;
  color: #60a5fa;
}
.hero-sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-beta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  border: none;
  border-radius: 14px;
  padding: 18px 38px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.3px;
}
.btn-primary:hover {
  background: #f0f6ff;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: #64748b;
  position: relative;
  z-index: 1;
}
.hero-showcase {
  display: grid;
  place-items: center;
  margin-top: 42px;
  position: relative;
  z-index: 1;
}
.hero-lockscreen {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 340 / 540;
  overflow: hidden;
  border: 8px solid #111827;
  border-radius: 42px;
  background:
    radial-gradient(90% 48% at 100% 0%, rgba(82, 217, 127, 0.1), transparent 62%),
    radial-gradient(76% 44% at 0% 100%, rgba(251, 191, 36, 0.08), transparent 64%),
    linear-gradient(180deg, #1b1d24 0%, #11141b 52%, #08090d 100%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(147, 197, 253, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 72%,
    transparent 100%
  );
}
.hero-device-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #030407;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.hero-status-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-status-icons svg {
  width: 16px;
  height: 12px;
}
.hero-status-icons svg rect,
.hero-status-icons svg circle {
  fill: currentColor;
}
.hero-status-icons svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.hero-battery {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 5px 2px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-size: 10px;
  font-weight: 800;
}
.hero-battery i {
  position: relative;
  width: 14px;
  height: 7px;
  border: 1.2px solid #000;
  border-radius: 2px;
}
.hero-battery i::before {
  content: "";
  position: absolute;
  inset: 1px auto 1px 1px;
  width: 10px;
  border-radius: 1px;
  background: #000;
}
.hero-battery i::after {
  content: "";
  position: absolute;
  top: 1.6px;
  right: -3px;
  width: 1.4px;
  height: 3px;
  border-radius: 1px;
  background: #000;
}
.hero-lock-time {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 24px 28px;
  color: #fff;
  text-align: center;
}
.hero-lock-time span {
  font-family: "Pretendard", "SF Pro Display", system-ui, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}
.hero-lock-time small {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.88;
}
.hero-notification-stack {
  display: grid;
  gap: 8px;
  padding: 0 12px;
}
.flow-notification {
  display: flex;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  will-change: transform, opacity;
}
.flow-running .flow-notification {
  animation: notification-slide-in 0.5s cubic-bezier(0.2, 0.9, 0.25, 1.1) both;
}
.flow-running .bank-notification {
  animation-delay: 0.15s;
}
.flow-running .landy-notification {
  animation-delay: 0.75s;
}
.bank-notification {
  padding: 12px;
  background: rgba(40, 40, 46, 0.78);
  backdrop-filter: blur(20px);
}
.bank-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(180deg, #f4d03f, #e6b800);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  color: #3a2a00;
  font-size: 10px;
  font-weight: 800;
}
.flow-notification-body {
  flex: 1;
  min-width: 0;
}
.flow-notification-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
.flow-caret {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1;
}
.flow-notification h2 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
.flow-notification p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  line-height: 1.4;
}
.landy-notification {
  padding: 14px;
  background: rgba(28, 30, 40, 0.82);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 14px 28px -14px rgba(20, 38, 77, 0.55);
}
.landy-rail {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #4a6fd8, #1e3a8a);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}
.landy-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  margin-left: 6px;
  border-radius: 10px;
  background: #1e3a8a;
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.1),
    0 6px 14px rgba(2, 6, 23, 0.16);
  opacity: 0;
  transform: scale(0.5);
}
.landy-icon img {
  display: block;
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.landy-label {
  color: #9bb3f2;
}
.landy-label svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
.landy-label path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flow-notification .landy-title {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-6px);
}
.landy-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
  font-feature-settings: "tnum";
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(-6px);
}
.landy-amount span {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.landy-amount small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}
.flow-notification .landy-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateX(-6px);
}
.landy-meta span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #52d97f;
  box-shadow: 0 0 6px rgba(82, 217, 127, 0.7);
}
.landy-meta strong {
  min-width: 0;
  font-weight: 500;
}
.flow-running .landy-rail {
  animation: landy-rail-in 0.5s cubic-bezier(0.2, 0.9, 0.25, 1.1) 0.85s both;
}
.flow-running .landy-icon {
  animation: landy-logo-pop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.8s both;
}
.flow-running .landy-title {
  animation: landy-content-in 0.45s cubic-bezier(0.2, 0.9, 0.25, 1) 0.87s both;
}
.flow-running .landy-amount {
  animation: landy-content-in 0.45s cubic-bezier(0.2, 0.9, 0.25, 1) 0.97s both;
}
.flow-running .landy-meta {
  animation: landy-content-in 0.45s ease 1.17s both;
}
@keyframes notification-slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes landy-rail-in {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes landy-logo-pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes landy-content-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.phone-shell {
  position: relative;
  width: min(100%, 344px);
}
.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 18.8;
  border: 8px solid #111827;
  border-radius: 36px;
  background: #f3f5f8;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}
.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f3f5f8;
}
.phone-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a0a0a;
}
.section {
  padding: 92px 40px;
}
.section-alt {
  background: var(--bg);
}
.section-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}
.section-label {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
  margin-bottom: 14px;
}
h2 {
  color: var(--navy);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.section-desc {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.pain-header {
  margin-bottom: 34px;
}
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.pain-card {
  min-height: 236px;
  padding: 28px 26px 26px;
  border-right: 1px solid var(--line);
  position: relative;
}
.pain-card:last-child {
  border-right: 0;
}
.pain-card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 42px;
  height: 3px;
  background: var(--red);
}
.pain-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pain-index {
  display: block;
  margin-bottom: 18px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.pain-top .pain-index {
  margin-bottom: 0;
}
.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  line-height: 1;
}
.pain-top .pain-icon {
  margin-bottom: 0;
}
.pain-icon svg,
.feature-icon svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.pain-card h3 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.42;
  margin-bottom: 12px;
}
.pain-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.pain-bridge {
  position: relative;
  margin-top: 26px;
  padding: 20px 0 0 48px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.55;
}
.pain-bridge::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.how-layout {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "panel"
    "mobile";
  gap: 44px;
  align-items: start;
}
.preview-panel {
  grid-area: panel;
  align-self: start;
  max-width: 620px;
}
.preview-panel .section-desc {
  margin-bottom: 0;
}
.mobile-preview-list {
  grid-area: mobile;
  display: grid;
  gap: 56px;
}
.mobile-preview-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 322px;
  gap: 56px;
  align-items: center;
}
.mobile-preview-item:nth-child(2) {
  grid-template-columns: 322px minmax(0, 1fr);
}
.mobile-preview-item:nth-child(2) .phone-shell {
  order: -1;
  justify-self: end;
}
.mobile-preview-copy {
  width: 100%;
  max-width: 460px;
  padding-left: 18px;
  border-left: 2px solid var(--line-strong);
}
.mobile-preview-label {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}
.mobile-preview-copy h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}
.mobile-preview-copy p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.mobile-preview-item .phone-shell {
  width: 322px;
}

.feature-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}
.feature-head .section-desc {
  max-width: 470px;
}
.feature-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -12px 0 22px;
}
.feature-flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.feature-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: #bfdbfe;
}
.feature-flow-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid #bfdbfe;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.feature-card {
  min-height: 260px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.feature-card:last-child {
  border-right: 0;
}
.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}
.feature-num {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  line-height: 1;
}
.feature-card h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.feature-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.feature-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-extension {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(234, 242, 255, 0.9), rgba(255, 255, 255, 0.96)),
    #fff;
}
.feature-extension-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.feature-extension h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.38;
}
.feature-extension p {
  max-width: 700px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.feature-extension-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid #1d4ed8;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s;
}
.feature-extension-link:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.faq-head {
  max-width: 720px;
  margin-bottom: 30px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}
.faq-item p {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.logo-home {
  text-decoration: none;
}
.page-nav {
  position: static;
  background: var(--white);
  backdrop-filter: none;
}
.seo-hero {
  padding: 88px 40px 78px;
  background: var(--navy);
  color: #fff;
}
.seo-hero-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 700;
}
.breadcrumb a {
  color: #bfdbfe;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb span {
  color: #64748b;
}
.seo-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #fff;
  text-align: left;
}
.seo-hero .hero-sub {
  max-width: 680px;
  margin: 0 0 30px;
  color: #cbd5e1;
  text-align: left;
}
.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.seo-section {
  padding: 82px 40px;
}
.seo-section-alt {
  background: var(--bg);
}
.seo-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}
.seo-kicker {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}
.seo-copy h2 {
  max-width: 520px;
}
.seo-copy p,
.seo-copy li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}
.seo-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}
.seo-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.seo-panel-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.seo-panel-row:last-child {
  border-bottom: 0;
}
.seo-panel-row strong {
  color: var(--navy);
  font-size: 14px;
}
.seo-panel-row span {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.keyword-card {
  min-height: 164px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.keyword-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}
.keyword-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}
.seo-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.seo-cta h2 {
  color: #fff;
}
.seo-cta .section-desc {
  margin: 0 auto 28px;
  color: #cbd5e1;
}

.inquiry-page {
  background: #fff;
}
.inquiry-hero.inquiry-story-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.96), rgba(6, 16, 31, 0.84)),
    #06101f;
}
.inquiry-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 40px 88px;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(6, 16, 31, 0.84)),
    #06101f;
  color: #fff;
}
.inquiry-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(147, 197, 253, 0.2);
}
.inquiry-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 56px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.inquiry-hero-copy {
  min-width: 0;
}
.inquiry-hero .breadcrumb {
  margin-bottom: 28px;
}
.inquiry-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 56px;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: left;
}
.inquiry-hero h1 em {
  color: #60a5fa;
  font-style: normal;
}
.inquiry-hero .hero-sub {
  max-width: 620px;
  margin: 0 0 32px;
  color: #d3dce8;
  text-align: left;
}
.inquiry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.btn-inquiry-primary,
.btn-inquiry-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.btn-inquiry-primary {
  border: 1px solid #1d4ed8;
  background: #2563eb;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.38);
}
.btn-inquiry-primary:hover {
  border-color: #1e40af;
  background: #1d4ed8;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.46);
  transform: translateY(-1px);
}
.btn-inquiry-secondary {
  border: 1px solid rgba(203, 213, 225, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.btn-inquiry-secondary:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
.inquiry-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inquiry-hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.inquiry-visual {
  justify-self: end;
  width: min(100%, 398px);
  min-height: 340px;
  padding: 34px 18px;
  overflow: visible;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.22), transparent 30%),
    linear-gradient(180deg, #101827 0%, #020617 100%);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.46);
  display: grid;
  place-items: center;
}
.inquiry-push-stack {
  width: min(100%, 340px);
  display: grid;
  gap: 12px;
}
.inquiry-push-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}
.inquiry-push-card:nth-child(2),
.inquiry-push-card:nth-child(4) {
  transform: translateX(14px);
}
.inquiry-push-card:nth-child(3) {
  transform: translateX(-8px);
}
.inquiry-push-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex: 0 0 auto;
}
.inquiry-push-icon-talk {
  background: #050505;
  color: #fee500;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.inquiry-push-icon-chat,
.inquiry-app-icon.inquiry-message-icon-chat {
  position: relative;
  background: #4cd964;
}
.inquiry-push-icon-chat::before,
.inquiry-app-icon.inquiry-message-icon-chat::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 22px;
  height: 16px;
  border-radius: 10px;
  background: #fff;
}
.inquiry-push-icon-chat::after,
.inquiry-app-icon.inquiry-message-icon-chat::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-bottom-left-radius: 2px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.inquiry-push-content {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.inquiry-push-content strong {
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inquiry-push-content span {
  justify-self: end;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.inquiry-push-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ef3b2d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.inquiry-brand-line {
  padding: 58px 40px;
  background: #f7fef9;
  border-bottom: 1px solid #bbf7d0;
}
.inquiry-brand-line-inner {
  display: grid;
  gap: 4px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}
.inquiry-brand-line-inner p:last-child {
  color: var(--green);
}
.inquiry-section-title {
  max-width: 680px;
  margin-bottom: 34px;
}
.inquiry-section-title h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}
.inquiry-story-section {
  padding: 92px 40px;
  background: #fff;
}
.inquiry-story-section-alt {
  background: var(--bg);
}
.inquiry-story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
}
.inquiry-story-row-reverse .inquiry-story-copy {
  order: 2;
}
.inquiry-story-row-reverse .inquiry-room-card {
  order: 1;
}
.inquiry-story-copy h2 {
  max-width: 560px;
  color: var(--navy);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.inquiry-story-copy p:not(.seo-kicker) {
  max-width: 500px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}
.inquiry-room-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}
.inquiry-room-card div {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  background: #f6f8fb;
}
.inquiry-room-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.inquiry-room-card strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}
.inquiry-room-card p {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.inquiry-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
}
.inquiry-message-stack {
  display: grid;
  gap: 14px;
}
.inquiry-alert-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}
.inquiry-alert-card.is-important {
  border-color: #fecaca;
  background: #fffafa;
}
.inquiry-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex: 0 0 auto;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.inquiry-app-icon.inquiry-message-icon-chat {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.inquiry-app-talk {
  background: #0b0b0b;
  color: #fee500;
}
.inquiry-alert-card h3 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}
.inquiry-alert-card p {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.inquiry-alert-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.inquiry-alert-card.is-important strong {
  background: #fee2e2;
  color: #dc2626;
}
.inquiry-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.inquiry-flow-card {
  min-height: 254px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}
.inquiry-flow-card:last-child {
  border-right: 0;
}
.inquiry-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.inquiry-flow-card h3,
.inquiry-scenario-card h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}
.inquiry-flow-card p,
.inquiry-scenario-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.inquiry-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.inquiry-scenario-card {
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.inquiry-scenario-card:nth-child(2) {
  border-color: #bbf7d0;
  background: #f7fef9;
}
.inquiry-scenario-card:nth-child(4) {
  border-color: #fecaca;
  background: #fffafa;
}
.inquiry-conversion {
  background:
    linear-gradient(90deg, rgba(11, 23, 48, 0.98), rgba(20, 46, 99, 0.94)),
    var(--navy);
  color: #fff;
}
.inquiry-conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 54px;
  align-items: center;
}
.inquiry-conversion h2 {
  max-width: 720px;
  color: #fff;
}
.inquiry-conversion .section-desc {
  margin-bottom: 28px;
  color: #cbd5e1;
}
.inquiry-dashboard {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}
.inquiry-dashboard-label {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}
.inquiry-next-step {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}
.inquiry-next-step strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}
.inquiry-next-step span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}
.inquiry-dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  padding: 0 16px;
  border-radius: 8px;
  background: #fff;
}
.inquiry-dashboard-row span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}
.inquiry-dashboard-row strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.beta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(68% 34% at 50% 12%, rgba(96, 165, 250, 0.18), transparent 68%),
    radial-gradient(76% 42% at 50% 78%, rgba(147, 197, 253, 0.11), transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, #142e63 48%, #1f3a7c 100%);
  padding: 90px 40px;
  text-align: center;
}
.beta-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.12);
  color: #93c5fd;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 18px;
}
.beta-status-copy,
.beta-status-divider,
.beta-status-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.beta-status-copy,
.beta-status-state {
  white-space: nowrap;
}
.beta-status-divider {
  width: 1px;
  height: 13px;
  background: rgba(147, 197, 253, 0.34);
}
.beta-status-state {
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}
.beta-section h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 16px;
}
.brand-highlight {
  color: #93c5fd;
}
.beta-section .section-desc {
  color: #94a3b8;
  margin: 0 auto 36px;
}
.beta-section .section-desc strong {
  color: #fff;
  font-weight: 700;
}
.mobile-only {
  display: none;
}
.beta-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: left;
}
.beta-perk {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}
.beta-perk-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.beta-perk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(96, 165, 250, 0.18);
  color: #93c5fd;
}
.beta-perk-num {
  margin-left: auto;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.beta-perk h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}
.beta-perk p {
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.6;
}
.form-wrap {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto 14px;
  padding: 22px;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 30px 60px -20px rgba(0, 0, 0, 0.55);
}
.form-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: 22px;
  background: radial-gradient(
    60% 100% at 50% 50%,
    rgba(96, 165, 250, 0.45) 0%,
    transparent 70%
  );
  filter: blur(20px);
  opacity: 0.9;
  animation: halo 3.4s ease-in-out infinite;
}
.form-wrap > * {
  position: relative;
  z-index: 1;
}
@keyframes halo {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}
.form-nudge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}
.form-nudge svg {
  position: relative;
  top: -2px;
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}
.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.email-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
}
.email-input-wrap .mail-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  pointer-events: none;
  transform: translateY(-50%);
}
.email-input {
  width: 100%;
  flex: 1;
  padding: 17px 18px 17px 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.25);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.email-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.email-input:focus {
  border-color: #60a5fa;
  box-shadow:
    0 0 0 4px rgba(96, 165, 250, 0.35),
    0 14px 34px rgba(2, 6, 23, 0.25);
}
.btn-beta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #60a5fa;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 17px 26px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.45);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.btn-beta svg {
  transition: transform 0.2s;
}
.btn-beta:hover {
  background: #3b82f6;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.55);
  transform: translateY(-1px);
}
.btn-beta:hover svg {
  transform: translateX(3px);
}
.btn-beta:disabled {
  cursor: wait;
  opacity: 0.72;
}
.form-message {
  min-height: 22px;
  margin: 10px auto 0;
  color: #94a3b8;
  font-size: 13px;
}
.form-message.success {
  color: #86efac;
}
.form-message.error {
  color: #fca5a5;
}
.store-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 8px auto 14px;
}
.store-badge {
  display: inline-flex;
  transition: transform 0.2s;
}
.store-badge:hover {
  transform: translateY(-2px);
}
.store-badge:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 4px;
  border-radius: 12px;
}
.store-badge img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}
.google-play-button,
.hero-cta-group .btn-ghost {
  width: 220px;
  height: 66px;
  border-radius: 14px;
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.24s,
    transform 0.2s;
}
.google-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.google-play-button:not(.floating-store-badge) {
  position: relative;
}
.google-play-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.google-play-button:focus-visible {
  border-radius: 14px;
}
.google-play-button img {
  display: block;
  width: 220px;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
  border-radius: inherit;
}
.hero-cta-group .btn-ghost {
  padding: 0 20px;
}
.google-play-button:hover,
.hero-cta-group .btn-ghost:hover {
  border-color: #fff;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
  transform: translateY(-2px);
}
.google-play-button:hover::after {
  opacity: 1;
}
.nav-store-badge {
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 136px;
  height: 41px;
  flex: 0 0 auto;
  border-radius: 8px;
}
.nav-store-badge:focus-visible {
  border-radius: 8px;
}
.nav-store-badge img {
  width: 136px;
  max-width: none;
  flex: 0 0 auto;
}
.floating-store-badge {
  position: fixed;
  width: 168px;
  height: 50px;
  min-height: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}
.floating-store-badge:hover {
  background: none;
  transform: translate(-50%, -2px);
}
.floating-store-badge img {
  display: block;
  width: 168px;
  height: auto;
  margin: 0 auto;
}
.privacy-note {
  max-width: 560px;
  margin: 8px auto 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
}
.perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #94a3b8;
  font-size: 14px;
}
.perk::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  flex: 0 0 auto;
}

.brand-identity {
  position: relative;
  min-height: 500px;
  margin-top: 92px;
  padding: 46px 40px 0;
  color: #fff;
}
.brand-identity-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 392px;
  text-align: center;
}
.brand-identity-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: rgba(255, 255, 255, 0.96);
}
.brand-identity-mark img {
  display: block;
  width: 104px;
  height: 104px;
  filter: brightness(0) invert(1);
}
.brand-identity-name {
  margin-top: 8px;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.brand-identity-tagline {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

footer {
  background: var(--navy);
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  column-gap: 24px;
  row-gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  grid-column: 1;
  grid-row: 1;
}
footer .logo {
  font-size: 18px;
}
.footer-logo {
  color: #fff;
}
.footer-logo .logo-mark {
  color: #60a5fa;
}
.footer-logo .logo-mark img {
  filter: brightness(0) invert(1);
}
.footer-logo .logo-word {
  color: #fff;
}
.footer-business {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: grid;
  gap: 3px;
  max-width: 760px;
  color: #73849d;
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
  text-align: left;
  overflow-wrap: anywhere;
}
.footer-business span {
  display: block;
}
.footer-contact {
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
}
.footer-contact:hover {
  color: #bfdbfe;
}
.footer-legal {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}
.footer-copyright {
  color: #73849d;
  font-size: 13px;
  line-height: 1.6;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-hero {
  padding: 72px 40px 52px;
  background: var(--navy);
  color: #fff;
}
.legal-hero-inner {
  width: min(820px, 100%);
  margin: 0 auto;
}
.legal-hero h1 {
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.25;
  text-align: left;
}
.legal-hero p {
  max-width: 680px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}
.legal-effective {
  margin-top: 16px;
  color: #93c5fd;
  font-size: 14px;
  font-weight: 700;
}
.legal-body {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 64px 40px 92px;
}
.legal-body h2 {
  margin: 44px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 24px;
  line-height: 1.35;
}
.legal-body > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-body h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}
.legal-body p {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}
.legal-body ul,
.legal-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-body li {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.legal-body li > ul,
.legal-body li > ol {
  margin-top: 8px;
}
.legal-body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.legal-body a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body strong {
  color: var(--navy);
  font-weight: 800;
}
.legal-table-wrap {
  margin: 0 0 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.legal-body th,
.legal-body td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  line-height: 1.65;
  vertical-align: top;
}
.legal-body thead th {
  background: var(--bg);
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}
.legal-body tbody th {
  color: var(--navy);
  font-weight: 700;
}
.legal-body tr:last-child th,
.legal-body tr:last-child td {
  border-bottom: 0;
}
.legal-body th:last-child,
.legal-body td:last-child {
  border-right: 0;
}
.legal-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.legal-appendix {
  margin-top: 48px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
}
.legal-appendix h2 {
  margin: 0 0 12px;
  padding-top: 0;
  border-top: 0;
  font-size: 18px;
}
.footer-links {
  position: static;
  height: auto;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: start;
  gap: 6px 14px;
  margin-top: 0;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.footer-links a:hover {
  color: #bfdbfe;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dispute-page {
  background: #fff;
}
.dispute-nav {
  border-bottom: 1px solid rgba(228, 231, 236, 0.9);
}
.dispute-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 112px);
  overflow: hidden;
  background: #070b12;
  color: #fff;
}
.dispute-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #05070c 0%, rgba(5, 7, 12, 0.9) 34%, rgba(5, 7, 12, 0.44) 68%, rgba(5, 7, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 7, 12, 0.86) 0%, rgba(5, 7, 12, 0.18) 42%, rgba(5, 7, 12, 0.45) 100%);
  pointer-events: none;
}
.dispute-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.86;
}
.dispute-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 78px 40px 68px;
}
.dispute-breadcrumb {
  margin-bottom: 30px;
}
.dispute-kicker {
  margin-bottom: 16px;
  color: #9fc6ff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}
.dispute-hero h1 {
  max-width: 650px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 58px;
  letter-spacing: 0;
  text-align: left;
}
.dispute-hero-copy {
  max-width: 580px;
  margin-bottom: 34px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}
.dispute-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.dispute-primary {
  background: #1f6bff;
  color: #fff;
  border: 1px solid #2f73ff;
  box-shadow: 0 18px 38px rgba(31, 107, 255, 0.34);
}
.dispute-primary:hover {
  background: #1559db;
  color: #fff;
  box-shadow: 0 20px 44px rgba(31, 107, 255, 0.42);
}
.dispute-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.dispute-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(640px, 100%);
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.dispute-hero-points div {
  padding: 18px 18px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.dispute-hero-points div:not(:first-child) {
  padding-left: 18px;
}
.dispute-hero-points div:last-child {
  border-right: 0;
}
.dispute-hero-points dt {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}
.dispute-hero-points dd {
  margin-top: 4px;
  color: #aeb9c9;
  font-size: 13px;
  line-height: 1.5;
}
.dispute-section {
  padding: 86px 40px;
}
.dispute-section-alt {
  background: #f6f8fb;
}
.dispute-compact-title {
  max-width: 760px;
  margin-bottom: 34px;
}
.dispute-compact-title h2,
.dispute-compact-copy h2 {
  color: var(--navy);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.dispute-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dispute-compact-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}
.dispute-compact-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #1f6bff;
  font-size: 13px;
  font-weight: 800;
}
.dispute-compact-card h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}
.dispute-compact-card p,
.dispute-compact-copy p:not(.seo-kicker) {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.dispute-compact-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 64px;
  align-items: center;
}
.dispute-compact-copy p:not(.seo-kicker) {
  max-width: 460px;
  margin-top: 18px;
}
.dispute-regret-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 64px;
  align-items: center;
}
.dispute-regret-panel,
.dispute-gallery-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}
.dispute-regret-row,
.dispute-gallery-row {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.dispute-regret-row:last-child,
.dispute-gallery-row:last-child {
  border-bottom: 0;
}
.dispute-regret-row span,
.dispute-gallery-row span {
  color: #1f6bff;
  font-size: 14px;
  font-weight: 800;
}
.dispute-regret-row strong,
.dispute-gallery-row strong {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}
.dispute-gallery-row p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.dispute-regret-row-strong {
  background: #07111f;
}
.dispute-regret-row-strong span {
  color: #9fc6ff;
}
.dispute-regret-row-strong strong {
  color: #fff;
}
.dispute-gallery-row-primary {
  background: #eef4ff;
}
.dispute-compact-list {
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}
.dispute-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}
.dispute-proof-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.dispute-proof-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.dispute-proof-row:last-child {
  border-bottom: 0;
}
.dispute-proof-row strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}
.dispute-proof-row span {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.dispute-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dispute-process-card {
  min-height: 232px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-top: 3px solid #1f6bff;
  border-radius: 8px;
  background: #fff;
}
.dispute-process-num {
  display: block;
  margin-bottom: 28px;
  color: #1f6bff;
  font-size: 13px;
  font-weight: 800;
}
.dispute-process-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}
.dispute-process-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.dispute-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 58px;
  align-items: center;
}
.dispute-showcase-copy p:not(.seo-kicker) {
  max-width: 570px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}
.dispute-poster {
  margin: 0;
  border-radius: 8px;
  background: #070b12;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.22);
}
.dispute-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
}
.dispute-keyword-grid .keyword-card {
  border-top: 3px solid #1f6bff;
}
.dispute-cta {
  background: #070b12;
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 58px 20px 44px;
  }
  .legal-hero h1 {
    font-size: 28px;
  }
  .legal-body {
    padding: 48px 20px 72px;
  }
  .legal-body h2 {
    font-size: 21px;
  }
  .legal-body table {
    min-width: 640px;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 48px;
  }
  .how-layout {
    gap: 42px;
  }
  .mobile-preview-item {
    grid-template-columns: minmax(0, 1fr) 306px;
    gap: 42px;
  }
  .mobile-preview-item:nth-child(2) {
    grid-template-columns: 306px minmax(0, 1fr);
  }
  .mobile-preview-item .phone-shell {
    width: 306px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .keyword-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card:nth-child(2) {
    border-right: 0;
  }
  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .how-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "mobile";
    gap: 30px;
  }
  .section {
    padding: 74px 24px;
  }
  .pain-header {
    margin-bottom: 28px;
  }
  .pain-cards {
    grid-template-columns: 1fr;
  }
  .pain-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pain-card:last-child {
    border-bottom: 0;
  }
  .mobile-preview-list {
    gap: 46px;
    width: min(100%, 390px);
    margin: 0 auto;
  }
  .mobile-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: left;
  }
  .mobile-preview-item:nth-child(2) .phone-shell {
    order: 0;
    justify-self: auto;
  }
  .mobile-preview-copy {
    width: min(100%, 306px);
    max-width: none;
    padding-left: 16px;
  }
  .mobile-preview-label {
    margin-bottom: 4px;
    font-size: 13px;
  }
  .mobile-preview-copy h3 {
    font-size: 18px;
    line-height: 1.4;
  }
  .mobile-preview-copy p {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
  }
  .mobile-preview-item .phone-shell {
    width: min(100%, 306px);
  }
  .feature-head {
    display: block;
  }
  .feature-head .section-desc {
    margin-top: 12px;
  }
  .feature-extension {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .seo-section {
    padding: 72px 24px;
  }
  .seo-copy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .seo-panel-row {
    grid-template-columns: 120px 1fr;
  }
  .dispute-hero::before {
    background:
      linear-gradient(90deg, #05070c 0%, rgba(5, 7, 12, 0.88) 48%, rgba(5, 7, 12, 0.42) 100%),
      linear-gradient(0deg, rgba(5, 7, 12, 0.88) 0%, rgba(5, 7, 12, 0.2) 46%, rgba(5, 7, 12, 0.5) 100%);
  }
  .dispute-hero-inner {
    padding: 70px 24px 62px;
  }
  .dispute-copy-grid,
  .dispute-showcase,
  .dispute-compact-row,
  .dispute-regret-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .dispute-compact-grid {
    grid-template-columns: 1fr;
  }
  .dispute-process-grid {
    grid-template-columns: 1fr;
  }
  .dispute-poster {
    width: min(100%, 420px);
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  nav {
    height: 58px;
    padding: 0 18px;
  }
  .logo {
    font-size: 20px;
  }
  .nav-cta {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }
  .hero {
    padding: 90px 20px 66px;
  }
  .hero-beta-chip {
    max-width: 320px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
  }
  .hero-eyebrow {
    margin-bottom: 16px;
    font-size: 15px;
  }
  h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-sub br {
    display: none;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .btn-primary,
  .btn-ghost {
    width: min(100%, 320px);
  }
  .seo-hero {
    padding: 70px 20px 58px;
  }
  .seo-hero h1 {
    font-size: 34px;
  }
  .seo-hero-actions {
    flex-direction: column;
  }
  .seo-hero-actions .btn-primary,
  .seo-hero-actions .btn-ghost,
  .seo-hero-actions .btn-secondary {
    width: min(100%, 320px);
  }
  .seo-section {
    padding: 62px 18px;
  }
  .seo-panel-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
  }
  .keyword-grid {
    grid-template-columns: 1fr;
  }
  .dispute-hero {
    min-height: calc(100svh - 96px);
  }
  .dispute-hero-image {
    object-position: 66% center;
    opacity: 0.72;
  }
  .dispute-hero-inner {
    padding: 58px 20px 54px;
  }
  .dispute-breadcrumb {
    margin-bottom: 22px;
  }
  .dispute-kicker {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .dispute-hero h1 {
    font-size: 40px;
    line-height: 1.16;
  }
  .dispute-hero-copy {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.65;
  }
  .dispute-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .dispute-hero-actions .btn-primary,
  .dispute-hero-actions .btn-ghost {
    width: min(100%, 320px);
  }
  .dispute-hero-points {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .dispute-hero-points div,
  .dispute-hero-points div:not(:first-child) {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .dispute-hero-points div:last-child {
    border-bottom: 0;
  }
  .dispute-section {
    padding: 62px 18px;
  }
  .dispute-compact-title {
    margin-bottom: 24px;
  }
  .dispute-compact-title h2,
  .dispute-compact-copy h2 {
    font-size: 34px;
  }
  .dispute-compact-card {
    min-height: auto;
    padding: 20px;
  }
  .dispute-compact-card span {
    margin-bottom: 28px;
  }
  .dispute-compact-card p,
  .dispute-compact-copy p:not(.seo-kicker) {
    font-size: 15px;
  }
  .dispute-regret-row,
  .dispute-gallery-row {
    padding: 18px;
  }
  .dispute-regret-row strong,
  .dispute-gallery-row strong {
    font-size: 17px;
  }
  .dispute-gallery-row p {
    font-size: 14px;
  }
  .dispute-proof-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
  }
  .dispute-process-card {
    min-height: auto;
  }
  .faq-item summary {
    padding: 18px;
    font-size: 16px;
  }
  .faq-item p {
    padding: 0 18px 18px;
  }
  .phone-shell {
    width: min(100%, 306px);
  }
  .hero-lockscreen {
    width: min(100%, 322px);
    aspect-ratio: 322 / 500;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 88%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 88%,
      transparent 100%
    );
  }
  .hero-lock-time span {
    font-size: 64px;
  }
  .hero-notification-stack {
    padding: 0 10px;
  }
  .flow-notification .landy-title {
    font-size: 15px;
  }
  .landy-amount span {
    font-size: 24px;
  }
  .section {
    padding: 62px 18px;
  }
  h2 {
    font-size: 30px;
  }
  .section-desc {
    font-size: 16px;
  }
  .mobile-only {
    display: block;
  }
  .pain-card {
    padding: 24px 20px 22px;
  }
  .pain-card::before {
    left: 20px;
  }
  .pain-bridge {
    padding-left: 38px;
    font-size: 18px;
  }
  .pain-bridge::before {
    top: 14px;
    font-size: 38px;
  }
  .pain-index {
    margin-bottom: 16px;
  }
  .pain-icon {
    margin-bottom: 16px;
  }
  .feature-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin: -8px 0 22px;
  }
  .feature-flow-step {
    grid-template-columns: 34px 1fr;
    justify-items: start;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    font-size: 14px;
  }
  .feature-flow-step:not(:last-child)::after {
    top: 34px;
    left: 16px;
    width: 2px;
    height: 24px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-card:nth-child(2) {
    border-right: 0;
  }
  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .feature-card:last-child {
    border-bottom: 0;
  }
  .feature-top {
    margin-bottom: 22px;
  }
  .feature-extension {
    padding: 22px 20px;
  }
  .feature-extension h3 {
    font-size: 18px;
  }
  .feature-extension-link {
    width: 100%;
  }
  .beta-section {
    padding: 62px 18px 58px;
  }
  .beta-section h2 {
    font-size: 26px;
  }
  .beta-perks {
    grid-template-columns: 1fr;
  }
  .email-form {
    flex-direction: column;
  }
  .btn-beta {
    justify-content: center;
    width: 100%;
  }
  .brand-identity {
    min-height: 460px;
    margin-top: 72px;
    padding: 38px 18px 0;
  }
  .brand-identity-inner {
    min-height: 384px;
  }
  .brand-identity-mark {
    width: 88px;
    height: 88px;
  }
  .brand-identity-mark img {
    width: 84px;
    height: 84px;
  }
  .brand-identity-name {
    margin-top: 8px;
    font-size: 42px;
  }
  .brand-identity-tagline {
    margin-top: 30px;
    font-size: 14px;
  }
  .floating-beta-cta {
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
  footer {
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-business {
    grid-row: auto;
  }
  .footer-legal {
    justify-items: start;
    text-align: left;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1080px) {
  .inquiry-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 38px;
  }
  .inquiry-hero h1 {
    font-size: 48px;
  }
  .inquiry-flow-grid,
  .inquiry-scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inquiry-flow-card:nth-child(2) {
    border-right: 0;
  }
  .inquiry-flow-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .inquiry-hero {
    padding: 68px 24px 74px;
  }
  .inquiry-hero-inner,
  .inquiry-split,
  .inquiry-story-row,
  .inquiry-conversion-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-visual {
    justify-self: center;
    width: min(100%, 360px);
  }
  .inquiry-split {
    gap: 32px;
  }
  .inquiry-story-row {
    gap: 36px;
  }
  .inquiry-story-row-reverse .inquiry-story-copy,
  .inquiry-story-row-reverse .inquiry-room-card {
    order: initial;
  }
  .inquiry-conversion-grid {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .inquiry-page .page-nav {
    width: 100%;
    min-width: 0;
    gap: 12px;
  }
  .inquiry-page .page-nav .logo {
    min-width: 0;
  }
  .inquiry-page .page-nav .nav-cta {
    flex: 0 0 auto;
    max-width: 46vw;
    white-space: nowrap;
  }
  .inquiry-hero {
    padding: 54px 18px 62px;
  }
  .inquiry-brand-line,
  .inquiry-story-section {
    padding: 58px 18px;
  }
  .inquiry-hero-copy,
  .inquiry-hero-copy > * {
    max-width: 100%;
    min-width: 0;
  }
  .inquiry-hero .breadcrumb {
    margin-bottom: 22px;
  }
  .inquiry-hero h1 {
    font-size: 36px;
    line-height: 1.18;
  }
  .inquiry-hero-actions {
    flex-direction: column;
  }
  .btn-inquiry-primary,
  .btn-inquiry-secondary {
    width: min(100%, 320px);
  }
  .inquiry-section-title {
    margin-bottom: 24px;
  }
  .inquiry-story-copy h2,
  .inquiry-section-title h2 {
    font-size: 34px;
  }
  .inquiry-story-copy p:not(.seo-kicker) {
    font-size: 16px;
  }
  .inquiry-room-card {
    padding: 14px;
  }
  .inquiry-room-card div {
    display: grid;
    gap: 6px;
    min-height: auto;
    padding: 14px;
  }
  .inquiry-room-card strong {
    text-align: left;
    font-size: 15px;
  }
  .inquiry-hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .inquiry-hero-metrics span {
    justify-content: center;
  }
  .inquiry-visual {
    width: min(100%, 320px);
  }
  .inquiry-alert-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 16px;
  }
  .inquiry-alert-card strong {
    grid-column: 2;
    justify-self: start;
  }
  .inquiry-app-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .inquiry-alert-card h3 {
    font-size: 17px;
  }
  .inquiry-flow-grid,
  .inquiry-scenario-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-flow-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .inquiry-flow-card:nth-child(2) {
    border-right: 0;
  }
  .inquiry-flow-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .inquiry-flow-card:last-child {
    border-bottom: 0;
  }
  .inquiry-dashboard {
    padding: 14px;
  }
  .inquiry-dashboard-row {
    min-height: 56px;
    padding: 0 14px;
  }
  .inquiry-dashboard-row strong {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-notification,
  .landy-rail,
  .landy-icon,
  .landy-title,
  .landy-amount,
  .landy-meta {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
