:root {
  --navy: #14162B;
  --black: #0D0E1A;
  --navy-2: #1E2140;
  --lime: #C6FF3B;
  --lime-dark: #7CB518;
  --lime-soft: #EAFAC7;
  --off: #F5F7EF;
  --text: #2C2C2A;
  --muted: #5F5E5A;
  --muted-dark: #8A8D9E;
  --line: rgba(20, 22, 43, 0.12);
  --shadow: 0 16px 50px rgba(20, 22, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  background: #fff;
}

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

img {
  display: block;
  max-width: 100%;
}

.pc-only {
  display: inline;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 72px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 22, 43, 0.08);
  box-shadow: 0 10px 30px rgba(20, 22, 43, 0.08);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(16px);
}

.site-header.is-visible {
  transform: translateY(0);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-light {
  color: #fff;
}

.logo-dark {
  color: var(--navy);
}

.logo-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 4px;
  width: 18px;
}

.logo-mark.small {
  grid-template-columns: repeat(2, 5px);
  grid-template-rows: repeat(2, 5px);
  gap: 3px;
  width: 13px;
}

.logo-mark i {
  display: block;
  border-radius: 50%;
  background: var(--lime);
}

.logo-mark i:nth-child(2),
.logo-mark i:nth-child(3) {
  transform: translateY(5px);
}

.header-nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.header-cta {
  min-width: 228px;
  padding: 8px 20px 11px;
  border-radius: 6px;
  color: var(--navy);
  background: linear-gradient(135deg, #C6FF3B, #9FE035);
  box-shadow: 0 4px 0 #7CB518;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
}

.header-cta span {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
}

.hero {
  padding: 30px 0 84px;
  position: relative;
  background:
    radial-gradient(circle at 74% 14%, rgba(198, 255, 59, 0.12), transparent 28%),
    linear-gradient(145deg, #050914 0%, #14162B 54%, #1E2140 100%);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(198, 255, 59, 0.08),
    transparent 70%
  );
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  width: min(880px, 100%);
  text-align: center;
}

.hero-logo {
  margin-bottom: 42px;
}

.eyebrow,
.section-number {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 span,
.final-price span {
  color: var(--lime);
  font-size: 1.18em;
}

.hero h1 .hero-number {
  display: inline-block;
  font-size: 1.24em;
  line-height: 0.9;
}

.hero-lead {
  margin: 26px auto 8px;
  max-width: 780px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.hero-text {
  margin: 0 auto;
  max-width: 780px;
  color: rgba(245, 245, 240, 0.82);
  font-size: 16px;
}

.hero-points {
  margin: 26px 0 28px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #f7f8ef;
  font-weight: 700;
}

.hero-points i {
  margin-right: 8px;
  color: var(--lime);
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-label {
  display: inline-block;
  padding: 4px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lime-soft);
  font-size: 13px;
  font-weight: 900;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  min-width: 320px;
  padding: 17px 34px 19px;
  border-radius: 6px;
  color: var(--navy);
  background: linear-gradient(90deg, #C6FF3B 0%, #9FE035 100%);
  box-shadow: 0 4px 0 #7CB518;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
}

.cta-button:hover {
  background: linear-gradient(90deg, #D4FF6B 0%, #B4EB55 100%);
  transform: translateY(2px);
  box-shadow: 0 2px 0 #7CB518;
}

.cta-button:hover::before {
  animation: shine 0.7s ease;
}

@keyframes shine {
  from {
    left: -75%;
  }

  to {
    left: 125%;
  }
}

.cta-button.large {
  min-width: 410px;
  font-size: 22px;
}

.cta-button.compact {
  min-width: 128px;
  min-height: 46px;
  padding: 9px 16px 11px;
  font-size: 15px;
}

.browser-mock {
  width: min(920px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.browser-bar {
  height: 52px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.08));
}

.window-dots {
  display: flex;
  gap: 9px;
}

.window-dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #28c840; }

.address {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  padding: 7px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
}

.dashboard-lite {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 400px;
  background: linear-gradient(145deg, #10152a, #080b16);
}

.mock-sidebar {
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #fff;
  font-weight: 900;
}

.mock-sidebar a {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  padding: 12px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.mock-sidebar a.active {
  color: #fff;
  background: rgba(198, 255, 59, 0.12);
  border: 1px solid rgba(198, 255, 59, 0.28);
}

.mock-main {
  padding: 34px;
}

.mock-heading,
.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  align-items: center;
  gap: 14px;
}

.mock-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.mock-heading span {
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.candidate-table {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.table-head {
  padding: 13px 18px;
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.table-row {
  padding: 15px 18px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px;
}

.table-row small {
  display: block;
  color: var(--muted-dark);
}

.candidate-table .score-ring {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 3px solid var(--lime);
  border-left-color: rgba(198, 255, 59, 0.2);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.insight-badge {
  margin-top: 22px;
  padding: 15px 18px;
  border: 1px solid var(--lime-dark);
  border-radius: 8px;
  color: #fff;
  background: rgba(198, 255, 59, 0.07);
  font-weight: 800;
}

.insight-badge i {
  margin-right: 10px;
  color: var(--lime);
}

.section {
  padding: 92px 0;
}

.problem-section,
.collaboration-section,
.pricing-section {
  background: var(--off);
}

.value-section,
.ai-section,
.ease-section,
.demo-section {
  background: #fff;
}

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at 50% 100%, rgba(198, 255, 59, 0.13), transparent 30%),
    linear-gradient(145deg, #050914, var(--black) 72%, #11152a);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.dark-section .section-heading h2,
.dark-section .section-heading p,
.final-cta h2 {
  color: #fff;
}

.section-heading p {
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.dark-section .section-heading p:not(.section-number) {
  color: rgba(245, 245, 240, 0.82);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.plain-card,
.value-card,
.integration-card,
.demo-step {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plain-card:hover,
.value-card:hover,
.integration-card:hover,
.demo-step:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(20, 22, 43, 0.15);
}

.plain-card img,
.value-card img {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.plain-card h3,
.value-card h3,
.integration-card h3,
.demo-step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 900;
}

.plain-card p,
.value-card p,
.integration-card p,
.demo-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.closing-copy {
  max-width: 920px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.closing-copy.light {
  color: #fff;
}

.wide-photo {
  width: min(880px, 100%);
  max-height: 360px;
  margin: 0 auto 34px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.value-layout,
.collaboration-layout {
  display: grid;
  gap: 46px;
  align-items: center;
}

.value-content .section-heading,
.collaboration-content .section-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.collaboration-content .section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.value-content .section-heading h2 {
  font-size: clamp(27px, 2.55vw, 36px);
}

.value-photo,
.collaboration-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  max-height: none;
  margin: 0;
}

.value-cards {
  gap: 14px;
}

.value-cards .value-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 20px;
  text-align: left;
}

.value-cards .value-card img {
  grid-row: span 2;
  margin: 0;
}

.value-cards .value-card h3,
.value-cards .value-card p {
  margin: 0;
}

.value-card {
  text-align: center;
}

.analysis-dashboard {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.avatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 28px;
}

.profile-card h3,
.profile-card p {
  margin: 0;
}

.profile-card p {
  color: var(--muted-dark);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.score-card {
  min-height: 210px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.score-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 255, 59, 0.35);
  box-shadow: 0 0 22px rgba(198, 255, 59, 0.18);
}

.score-card img {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.score-card p {
  min-height: 50px;
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.score-ring-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 14px auto 0;
}

.score-card .score-ring {
  position: absolute;
  inset: 0;
  width: 92px;
  height: 92px;
}

.score-ring__bg,
.score-ring__fg {
  fill: none;
  stroke-width: 6;
}

.score-ring__bg {
  stroke: rgba(255, 255, 255, 0.12);
}

.score-ring__fg {
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-dasharray: 213.6;
  stroke-dashoffset: 213.6;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 1.2s ease-out;
}

.score-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.ai-comments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.ai-comments article {
  padding: 24px;
  border: 1px solid rgba(198, 255, 59, 0.25);
  border-radius: 10px;
  background: rgba(198, 255, 59, 0.06);
}

.ai-comments h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.ai-comments i {
  margin-right: 9px;
  color: var(--lime);
}

.ai-comments ul,
.time-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-comments li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  color: rgba(245, 245, 240, 0.82);
}

.ai-comments li::before,
.check-list li::before,
.time-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.feature-cards .plain-card {
  box-shadow: none;
}

.ease-closing {
  font-size: 24px;
}

.ease-closing span {
  color: var(--lime-dark);
  font-weight: 900;
}

.integration-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.integration-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  object-fit: contain;
}

.collaboration-content .integration-row {
  grid-template-columns: 1fr;
}

.collaboration-content .integration-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  align-items: center;
  padding: 22px;
}

.collaboration-content .integration-card img {
  grid-row: span 2;
  margin: 0;
}

.collaboration-content .integration-card h3,
.collaboration-content .integration-card p {
  margin: 0;
}

.simulation-layout {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 1.6fr;
  gap: 22px;
  align-items: stretch;
}

.time-card,
.breakdown {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.time-card > span {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.time-card.after > span {
  color: var(--navy);
  background: var(--lime);
}

.time-card h3 {
  margin: 20px 0;
  color: #fff;
  font-size: 25px;
}

.time-card h3 strong {
  color: #fff;
  font-size: 64px;
  line-height: 1;
}

.time-card.after h3 strong {
  color: var(--lime);
}

.time-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(245, 245, 240, 0.86);
  font-weight: 700;
}

.time-card p {
  color: rgba(245, 245, 240, 0.86);
}

.arrow-block {
  display: grid;
  place-items: center;
  color: var(--lime);
  font-size: 42px;
}

.breakdown h3 {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 20px;
}

.bar-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr 112px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: rgba(245, 245, 240, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.bar-item b {
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.bar-item i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--lime), #9FE035);
  transition: width 1s ease;
}

.bar-item em {
  color: #fff;
  font-style: normal;
  text-align: right;
}

.simulation-copy {
  margin: 34px auto 8px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
}

.note {
  margin: 0;
  color: rgba(245, 245, 240, 0.7);
  text-align: center;
  font-size: 13px;
}

.big-fa {
  display: block;
  margin: 0 0 20px;
  color: var(--lime-dark);
  font-size: 54px;
}

.pricing-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-main {
  text-align: center;
}

.price-main span {
  color: var(--navy);
  font-weight: 900;
}

.price-main h3 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.2;
}

.price-main h3 strong {
  color: var(--lime-dark);
  font-size: 72px;
}

.price-main p {
  max-width: 760px;
  margin: 8px auto 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  margin: 30px auto;
  max-width: 760px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  top: 0.55em;
  width: 15px;
  height: 15px;
  background: var(--lime-dark);
}

.price-note {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 10px;
}

.demo-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 16px;
  align-items: start;
}

.demo-step b {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--lime);
  font-size: 22px;
  font-weight: 900;
}

.final-cta {
  padding: 92px 0 120px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(198, 255, 59, 0.12), transparent 60%),
    linear-gradient(145deg, #050914, var(--black) 72%, #11152a);
}

.final-cta p {
  max-width: 860px;
  margin: 10px auto;
  color: rgba(245, 245, 240, 0.88);
  font-size: 22px;
  font-weight: 800;
}

.final-price {
  font-size: 28px !important;
}

.footer-logo {
  margin-top: 54px;
  justify-content: center;
}

.feature-section .cta-wrap,
.final-cta .cta-wrap {
  margin-top: 30px;
}

.feature-section .cta-label,
.final-cta .cta-label {
  padding: 5px 22px;
  font-size: 14px;
}

.feature-section .cta-button,
.final-cta .cta-button {
  box-shadow: 0 4px 0 #7CB518, 0 0 24px rgba(198, 255, 59, 0.35);
}

.feature-section .cta-button:hover,
.final-cta .cta-button:hover {
  box-shadow: 0 2px 0 #7CB518, 0 0 18px rgba(198, 255, 59, 0.28);
}

.sticky-bottom {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(198, 255, 59, 0.34);
  border-radius: 10px;
  color: #fff;
  background: rgba(13, 14, 26, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, 130%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(16px);
  font-weight: 900;
}

.sticky-bottom.is-visible {
  transform: translate(-50%, 0);
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.exit-popup.is-open {
  display: flex;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.popup-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 42px;
  border: 1px solid rgba(198, 255, 59, 0.32);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #14162B, #0D0E1A);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.popup-panel h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.35;
}

.popup-panel p {
  margin: 0 0 28px;
  color: rgba(245, 245, 240, 0.84);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-item.is-visible.plain-card:hover,
.fade-item.is-visible.value-card:hover,
.fade-item.is-visible.integration-card:hover,
.fade-item.is-visible.demo-step:hover,
.fade-item.is-visible.pricing-card:hover {
  transform: translateY(-4px);
}

.fade-item.is-visible.score-card:hover {
  transform: translateY(-4px);
}

@media (min-width: 1024px) {
  .hero {
    padding: 28px 0 92px;
  }

  .hero-inner {
    width: min(1280px, calc(100% - 64px));
    display: grid;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: 48px;
    align-items: center;
  }

  .hero-copy {
    width: 100%;
    text-align: left;
  }

  .hero-logo {
    margin-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(48px, 3.9vw, 60px);
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-lead,
  .hero-text {
    margin-left: 0;
  }

  .hero-points {
    justify-content: flex-start;
  }

  .hero .cta-wrap {
    align-items: flex-start;
  }

  .browser-mock {
    width: 100%;
  }

  .browser-mock .dashboard-lite {
    grid-template-columns: 170px 1fr;
    min-height: 380px;
  }

  .browser-mock .mock-sidebar {
    padding: 24px 14px;
  }

  .browser-mock .mock-main {
    padding: 26px;
  }

  .browser-mock .table-head,
  .browser-mock .table-row {
    grid-template-columns: 1.35fr 1fr 0.9fr 0.7fr;
    gap: 10px;
  }

  .value-layout {
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  }

  .collaboration-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  }

  .value-cards.card-grid.three {
    grid-template-columns: 1fr;
  }

  .plain-card,
  .value-card,
  .integration-card {
    min-height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pc-only {
    display: none;
  }

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

  .header-nav {
    display: none;
  }

  .card-grid.four,
  .score-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-layout,
  .collaboration-layout {
    grid-template-columns: 1fr;
  }

  .value-photo,
  .collaboration-photo {
    min-height: 340px;
  }

  .value-content .section-heading,
  .collaboration-content .section-heading {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .simulation-layout {
    grid-template-columns: 1fr;
  }

  .arrow-block i {
    transform: rotate(90deg);
  }

  .dashboard-lite {
    grid-template-columns: 170px 1fr;
  }

  .mock-main {
    padding: 24px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1.2fr 1fr 0.9fr;
  }

  .table-head span:last-child,
  .table-row span:last-child {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .site-header {
    height: 64px;
    padding: 0 14px;
  }

  .logo {
    font-size: 21px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    min-width: 142px;
    margin-left: auto;
    padding: 7px 10px 9px;
    font-size: 12px;
  }

  .hero {
    padding: 24px 0 64px;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-logo {
    margin-bottom: 34px;
  }

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

  .hero-lead {
    font-size: 17px;
  }

  .hero-points {
    gap: 12px;
  }

  .cta-button,
  .cta-button.large {
    width: 100%;
    min-width: 0;
    font-size: 18px;
  }

  .browser-bar {
    height: 46px;
    padding: 0 12px;
  }

  .address {
    font-size: 11px;
  }

  .dashboard-lite {
    display: block;
  }

  .mock-sidebar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mock-brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
    justify-content: center;
  }

  .mock-sidebar a {
    justify-content: center;
    margin: 0;
    padding: 9px 5px;
    font-size: 0;
  }

  .mock-sidebar i {
    font-size: 16px;
  }

  .mock-main {
    padding: 18px;
  }

  .mock-heading h2 {
    font-size: 20px;
  }

  .table-head {
    display: none;
  }

  .table-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 14px;
  }

  .table-row span:nth-child(2),
  .table-row span:nth-child(4) {
    grid-column: 1 / -1;
    color: var(--muted-dark);
  }

  .candidate-table {
    border: 0;
  }

  .section {
    padding: 68px 0;
  }

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

  .section-heading h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .ease-closing {
    font-size: 21px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .card-grid.four,
  .card-grid.three,
  .score-grid,
  .ai-comments,
  .integration-row,
  .demo-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .value-layout,
  .collaboration-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .value-content .section-heading,
  .collaboration-content .section-heading {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .value-cards .value-card,
  .collaboration-content .integration-card {
    display: block;
    text-align: center;
  }

  .value-cards .value-card img,
  .collaboration-content .integration-card img {
    margin: 0 auto 18px;
  }

  .plain-card,
  .value-card,
  .integration-card,
  .demo-step,
  .pricing-card {
    padding: 24px;
  }

  .wide-photo {
    max-height: 260px;
  }

  .value-photo,
  .collaboration-photo {
    min-height: 0;
    height: auto;
  }

  .analysis-dashboard {
    padding: 18px;
  }

  .profile-card {
    width: 100%;
  }

  .score-card {
    min-height: 174px;
  }

  .simulation-layout {
    grid-template-columns: 1fr;
  }

  .arrow-block i {
    transform: rotate(90deg);
  }

  .bar-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bar-item em {
    text-align: left;
  }

  .price-main h3 {
    font-size: 24px;
  }

  .price-main h3 strong {
    display: block;
    font-size: 54px;
  }

  .demo-step {
    grid-template-columns: 42px 1fr;
  }

  .demo-step b {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .final-cta {
    padding: 72px 0 118px;
  }

  .final-cta p,
  .final-price {
    font-size: 18px !important;
  }

  .sticky-bottom {
    width: calc(100% - 24px);
    justify-content: space-between;
    bottom: 10px;
    padding: 10px 10px 10px 14px;
    font-size: 13px;
  }

  .popup-panel {
    padding: 36px 22px 28px;
  }

  .popup-panel h2 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .fade-item {
    opacity: 1;
    transform: none;
  }
}
