:root {
  --navy: #1c2e3a;
  --navy-dark: #101d26;
  --red: #d04433;
  --cream: #f7f4ec;
  --paper: #fffdf7;
  --ink: #1a1f24;
  --muted: #66727b;
  --line: #e4e0d6;
  --gold: #e8b94e;
  --header-height: 70px;
  --scroll-y: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    linear-gradient(130deg, rgba(208, 68, 51, 0.1), transparent 38%),
    var(--cream);
  color: var(--navy-dark);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  width: min(76vw, 440px);
  display: grid;
  justify-items: center;
  gap: 22px;
}

.loader-inner img {
  width: min(58vw, 310px);
  filter: drop-shadow(0 18px 34px rgba(16, 29, 38, 0.14));
  animation: loaderLogo 1.1s ease both;
}

.loader-percent {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.loader-bar {
  width: min(58vw, 300px);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(28, 46, 58, 0.12);
}

.loader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 0.18s ease;
}

@keyframes loaderLogo {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 clamp(24px, 4.4vw, 56px);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 46, 58, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 12px 36px rgba(16, 29, 38, 0.08);
}

.brand {
  width: clamp(190px, 17vw, 260px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 34px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--red);
  opacity: 1;
}

.header-button {
  min-width: 150px;
  padding: 13px 30px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 15.5px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(208, 68, 51, 0.18);
}

.hero {
  position: relative;
  min-height: min(760px, 100svh);
  padding: calc(var(--header-height) + 82px) clamp(24px, 5.3vw, 76px) 54px;
  overflow: hidden;
  background: var(--navy-dark);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -18%;
  background:
    linear-gradient(
      110deg,
      transparent 0 34%,
      rgba(255, 255, 255, 0.015) 39%,
      rgba(255, 255, 255, 0.06) 45%,
      rgba(239, 191, 73, 0.07) 49%,
      rgba(208, 68, 51, 0.038) 53%,
      transparent 62% 100%
    );
  transform: translateX(-46%) skewX(-12deg);
  animation: heroLightSweep 6.4s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

body.is-loading .hero::before {
  animation-play-state: paused;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(239, 191, 73, 0.042), transparent 20%),
    radial-gradient(circle at 84% 72%, rgba(208, 68, 51, 0.046), transparent 22%);
  opacity: 0.24;
  animation: heroAmbientPulse 5.4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    4deg,
    rgba(118, 146, 158, 0.14) 0 1px,
    transparent 1px 74px
  );
  transform: translate3d(0, calc(var(--scroll-y) * 0.03px), 0);
  animation: heroLineDrift 13s linear infinite;
}

.hero-panel {
  position: absolute;
  top: 0;
  right: -130px;
  width: 38%;
  height: 110%;
  background: rgba(57, 88, 105, 0.44);
  transform: skewX(-13deg) translate3d(0, calc(var(--scroll-y) * -0.04px), 0);
  animation: heroPanelFloat 10s ease-in-out infinite alternate;
}

.hero-metrics {
  display: none;
}

.hero-metrics span {
  position: absolute;
  opacity: 0;
  transform-origin: left center;
  filter: drop-shadow(0 0 0 rgba(224, 239, 246, 0));
  animation: metricPulse 5.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-metrics span::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 8px;
  background: currentColor;
  opacity: 0.7;
  transform: scaleX(0.25);
  transform-origin: left center;
  animation: metricLine 5.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-metrics span:nth-child(1) { top: 24%; left: 65%; animation-delay: 0.1s; }
.hero-metrics span:nth-child(2) { top: 28%; left: 75%; animation-delay: 1.2s; }
.hero-metrics span:nth-child(3) { top: 36%; left: 84%; animation-delay: 2.2s; }
.hero-metrics span:nth-child(4) { top: 18%; left: 82%; animation-delay: 3.0s; }
.hero-metrics span:nth-child(5) { top: 54%; left: 70%; animation-delay: 0.8s; }
.hero-metrics span:nth-child(6) { top: 61%; left: 82%; animation-delay: 2.8s; }
.hero-metrics span:nth-child(7) { top: 70%; left: 66%; animation-delay: 1.9s; }
.hero-metrics span:nth-child(8) { top: 77%; left: 76%; animation-delay: 3.8s; }

.hero-metrics span:nth-child(1)::after { animation-delay: 0.1s; }
.hero-metrics span:nth-child(2)::after { animation-delay: 1.2s; }
.hero-metrics span:nth-child(3)::after { animation-delay: 2.2s; }
.hero-metrics span:nth-child(4)::after { animation-delay: 3.0s; }
.hero-metrics span:nth-child(5)::after { animation-delay: 0.8s; }
.hero-metrics span:nth-child(6)::after { animation-delay: 2.8s; }
.hero-metrics span:nth-child(7)::after { animation-delay: 1.9s; }
.hero-metrics span:nth-child(8)::after { animation-delay: 3.8s; }

.hero-slash {
  position: absolute;
  left: -9vw;
  bottom: 32px;
  width: 120vw;
  height: 17px;
  background: var(--red);
  transform: translateX(-110%) rotate(-5deg);
  transform-origin: left center;
  animation: slashIn 1.1s cubic-bezier(0.2, 0.9, 0.2, 1) 0.4s forwards;
}

.hero-slash::after {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
}

.eyebrow,
.hero h1,
.hero-lead,
.hero-tags {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.eyebrow {
  margin: 0 0 clamp(70px, 8vw, 104px);
  color: #d8e2e8;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 900;
  letter-spacing: 0.08em;
  animation-delay: 0.05s;
}

.hero h1 {
  margin: 0;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-weight: 900;
  font-size: clamp(54px, 6.5vw, 78px);
  line-height: 1.1;
  width: max-content;
  max-width: none;
  animation-delay: 0.32s;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
  color: #fff;
}

body.is-loading .eyebrow,
body.is-loading .hero h1,
body.is-loading .hero-lead,
body.is-loading .hero-tags {
  animation-play-state: paused;
}

.hero h1 .hero-title-accent {
  margin-top: 0.02em;
  color: #f0c85c;
  letter-spacing: 0.015em;
  background: linear-gradient(95deg, #fff2b7 0%, #efbf49 34%, #e36b45 76%, #fff1cf 100%);
  background-size: 140% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 1.28s;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(208, 68, 51, 0.22),
    0 24px 52px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 2px 0 rgba(16, 29, 38, 0.18));
}

body.title-gradient-trial .hero::before {
  animation: none;
  opacity: 0;
}

body.title-gradient-trial .hero h1 .hero-title-accent {
  background-image: linear-gradient(
    95deg,
    #f2e2bb 0%,
    #e8c777 32%,
    #f5e7c4 56%,
    #e4c984 78%,
    #f2e2bb 100%
  );
  background-size: 240% auto;
  animation: titleGradientFlow 6.2s ease-in-out infinite;
}

.hero-lead {
  max-width: 875px;
  margin: clamp(10px, 1.7vw, 18px) 0 0;
  color: #e3ebef;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.75;
  font-weight: 800;
  animation-delay: 0.55s;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  width: min(100%, 740px);
  margin-top: clamp(34px, 3.7vw, 46px);
  animation-delay: 0.78s;
}

.hero-tags span {
  position: relative;
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  backdrop-filter: blur(4px);
  letter-spacing: 0;
}

.hero-tags span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  height: auto;
  flex: none;
  margin-right: 0;
  border-radius: 999px 0 0 999px;
  background: var(--red);
  opacity: 0.78;
}

.hero-tags span::after {
  content: none;
}

.hero-tags span:hover {
  transform: none;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.12);
}

.hero-tags span:hover::before {
  opacity: 1;
}

.section {
  padding: clamp(86px, 10vw, 128px) clamp(24px, 5.3vw, 76px);
}

.section-label {
  margin: 0 0 30px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

h2 {
  margin: 0;
  font-family: "BIZ UDMincho", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(36px, 4.6vw, 50px);
  line-height: 1.28;
  font-weight: 500;
}

p {
  margin: 0;
}

.pc-only {
  display: none;
}

.sp-only {
  display: none;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 70px;
  align-items: start;
}

@media (min-width: 1081px) {
  .hero::before {
    background:
      linear-gradient(
        110deg,
        transparent 0 34%,
        rgba(255, 255, 255, 0.013) 39%,
        rgba(255, 255, 255, 0.052) 45%,
        rgba(239, 191, 73, 0.06) 49%,
        rgba(208, 68, 51, 0.032) 53%,
        transparent 62% 100%
      );
  }

  .hero-content {
    transform: translateY(-48px);
  }

  .issue-section {
    position: relative;
    overflow: hidden;
  }

  .issue-section::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 19%;
    right: auto;
    width: 190px;
    height: 120px;
    background: rgba(208, 68, 51, 0.12);
    clip-path: polygon(84% 0, 100% 0, 16% 100%, 0 100%);
    transform: none;
    pointer-events: none;
  }

  .issue-section > * {
    position: relative;
    z-index: 1;
  }

  .issue-section .section-head {
    display: block;
    max-width: 1080px;
  }

  .issue-section .section-head > h2 {
    margin-top: 0;
  }

  .issue-section .section-head > p:last-child {
    max-width: 980px;
    margin-top: 34px;
  }

  .section-head > .section-label {
    grid-column: 1;
    grid-row: 1;
  }

  .section-head > h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .section-head > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .support-section .tool-grid,
  .plan-section .plan-list {
    margin-top: 62px;
  }

  .dark-band .band-text {
    margin-top: 48px;
  }

  .quality-card {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    column-gap: clamp(52px, 5.6vw, 78px);
    row-gap: 28px;
    align-items: start;
  }

  .quality-card > div:first-child {
    display: contents;
  }

  .quality-card .section-label {
    grid-column: 1 / -1;
    grid-row: 1;
    transform: translateY(-18px);
  }

  .quality-card h2 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    transform: translateY(-9px);
  }

  .quality-body {
    grid-column: 2;
    grid-row: 2;
    max-width: 720px;
    padding-top: 2px;
  }

  .quality-body p {
    font-size: clamp(16px, 1.42vw, 19px);
    line-height: 1.78;
  }

  .cta-section {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  }

  .cat-visual {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .cta-copy {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }
}

.section-head p:last-child,
.trap-copy p,
.support-copy p,
.plan-copy p,
.band-text,
.quality-card p,
.cta-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.72;
  font-weight: 700;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 74px;
}

.issue-card {
  min-height: 315px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(16, 29, 38, 0.02);
}

.issue-card span {
  display: block;
  color: var(--red);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 26px;
}

.issue-card h3 {
  margin: 0 0 24px;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.45;
}

.issue-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.dark-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 64px;
  margin: 30px clamp(18px, 3.8vw, 54px) 0;
  padding: clamp(60px, 7vw, 78px) clamp(34px, 5vw, 72px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.parallax-band::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: linear-gradient(110deg, transparent 0 52%, rgba(224, 52, 39, 0.13) 52% 54%, transparent 54%);
  transform: translate3d(0, calc(var(--parallax, 0px) * 0.08), 0);
  pointer-events: none;
}

#inhouse.parallax-band::before {
  content: none;
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.dark-band .section-label {
  color: #ffd4ce;
}

.dark-band .band-text {
  color: #e2ebef;
}

.trap-section,
.support-section,
.plan-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.94fr);
  gap: clamp(46px, 7vw, 90px);
  align-items: start;
}

.trap-copy p:last-child {
  max-width: 980px;
  margin-top: 34px;
  font-size: clamp(16px, 1.48vw, 19px);
  line-height: 1.68;
}

.trap-visual {
  position: relative;
  align-self: center;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(16, 29, 38, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 29, 38, 0.1);
}

.trap-visual img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.support-copy p:last-child,
.plan-copy p:last-child {
  margin-top: 34px;
}

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

.mini-card {
  min-height: 126px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.mini-card span {
  display: block;
  color: var(--red);
  font-size: 27px;
  margin-bottom: 15px;
}

.support-section {
  background: var(--paper);
}

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

.tool-grid span {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 0 22px 0 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.tool-grid span::before {
  content: "";
  position: absolute;
  left: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
}

.plan-list {
  display: grid;
  gap: 30px;
}

.plan-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}

.month {
  min-height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  background: var(--red);
  color: #fff;
}

.month strong {
  font-size: 42px;
  line-height: 1;
}

.month span {
  margin-top: 13px;
  color: #ffe5df;
  font-weight: 900;
}

.plan-card > div:last-child {
  padding: 24px 28px;
}

.plan-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.plan-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.plan-card em {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.quality-section {
  position: relative;
  padding: 52px clamp(18px, 3.8vw, 54px) 42px;
  overflow: hidden;
}

.quality-section.parallax-band::before {
  content: none;
}

.quality-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 64px;
  padding: clamp(64px, 6vw, 82px) clamp(50px, 5.4vw, 64px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.quality-card .section-label {
  margin-bottom: 0;
  color: #ffd4ce;
}

.quality-card p {
  margin: 0;
  color: rgba(236, 244, 247, 0.88);
}

.quality-card .section-label::after,
.quality-card::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: var(--gold);
}

.quality-card .section-label::after {
  margin-top: 30px;
}

.quality-card::after {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.quality-card h2 {
  margin-top: 30px;
}

.quality-profile {
  display: block;
  margin-top: 16px;
  color: rgba(236, 244, 247, 0.78);
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: right;
}

.cta-section {
  position: relative;
  min-height: 370px;
  padding: 64px clamp(24px, 5.3vw, 76px) 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.section-slashes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-slashes::before,
.section-slashes::after {
  content: "";
  position: absolute;
  left: -8vw;
  width: 118vw;
  transform: rotate(4deg);
}

.section-slashes::before {
  top: 14px;
  height: 28px;
  background: var(--red);
}

.section-slashes::after {
  top: auto;
  bottom: 24px;
  height: 16px;
  background: var(--navy-dark);
  transform: rotate(-4deg);
}

.cta-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
  top: 0;
  padding: clamp(30px, 3vw, 42px) clamp(32px, 3.4vw, 48px);
  overflow: hidden;
  border: 2px solid #202c34;
  border-radius: 5px;
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 14px 30px rgba(16, 29, 38, 0.1);
}

.cta-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  height: 100%;
  background: var(--red);
  clip-path: none;
  transform: none;
  filter: none;
}

.cta-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 6px;
  height: 1px;
  background: rgba(32, 44, 52, 0.14);
}

.cta-label {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cta-copy p {
  margin: 0;
  color: #202c34;
  font-size: clamp(21px, 1.85vw, 27px);
  line-height: 1.62;
  font-weight: 900;
}

.cta-message-pc {
  display: block;
  white-space: nowrap;
}

.cta-message-sp {
  display: none;
}

.cta-copy p::after {
  content: none;
}

.cat-visual {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
  right: auto;
  bottom: 0;
  width: clamp(150px, 15vw, 196px);
  opacity: 0.94;
  transform: none;
}

/* Keep the desktop CTA and QUALITY layouts stable after the shared rules above. */
@media (min-width: 1081px) {
  .loader-inner img {
    width: min(62vw, 340px);
  }

  .site-header {
    padding-inline: clamp(24px, 5.3vw, 76px);
  }

  .hero {
    min-height: min(780px, 100svh);
    padding-bottom: 82px;
  }

  .hero-content {
    transform: translateY(-8px);
  }

  .eyebrow {
    margin-bottom: clamp(44px, 4.2vw, 58px);
    font-size: clamp(16px, 1.3vw, 19px);
  }

  .hero h1 {
    font-size: clamp(65px, 5.5vw, 86px);
    line-height: 1.06;
  }

  .hero-lead {
    max-width: 940px;
    margin-top: 16px;
    font-size: clamp(17px, 1.3vw, 19px);
    line-height: 1.68;
  }

  .hero-tags {
    width: min(100%, 790px);
    margin-top: 64px;
    gap: 11px;
  }

  .hero-tags span {
    min-height: 46px;
    padding: 9px 13px;
    font-size: clamp(19px, 1.45vw, 22px);
  }

  .hero-slash {
    bottom: 8px;
  }

  .cta-section {
    grid-template-columns: 210px minmax(0, 620px);
    justify-content: start;
    gap: clamp(44px, 4.4vw, 68px);
  }

  .cat-visual {
    grid-column: 1;
    grid-row: 1;
    width: 190px;
    justify-self: center;
    align-self: center;
    right: auto;
    bottom: 0;
  }

  .cta-copy {
    grid-column: 2;
    grid-row: 1;
    width: min(100%, 620px);
    max-width: 620px;
    justify-self: start;
    align-self: center;
    top: 0;
  }

  .quality-card {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    column-gap: clamp(52px, 5.6vw, 78px);
    row-gap: 44px;
    align-items: start;
  }

  .quality-card > div:first-child {
    display: contents;
  }

  .quality-card .section-label {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .quality-card h2 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }

  .quality-body {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-width: 720px;
    padding-top: 2px;
    transform: translateY(-9px);
  }

  .quality-body p {
    font-size: clamp(16px, 1.42vw, 19px);
    line-height: 1.78;
  }
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.92fr);
  gap: clamp(44px, 7vw, 86px);
  padding: clamp(86px, 10vw, 120px) clamp(24px, 5.3vw, 76px) 122px;
  background: var(--navy-dark);
  color: #fff;
}

.contact-section .section-label {
  color: #ffd4ce;
}

.contact-copy p {
  color: #e2ebef;
  margin-top: 58px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 249, 238, 0.22);
  border-radius: 16px;
  background: rgba(255, 249, 238, 0.06);
}

.contact-form label {
  display: grid;
  gap: 11px;
  color: #f4e8d5;
  font-size: 16px;
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 249, 238, 0.34);
  border-radius: 9px;
  background: rgba(255, 249, 238, 0.1);
  color: #fff;
  font: inherit;
  font-size: 16px;
  padding: 17px 18px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 249, 238, 0.8);
  box-shadow: 0 0 0 3px rgba(208, 68, 51, 0.28);
}

.contact-form input[name="website"] {
  position: absolute;
  left: -9999px;
}

.contact-form button {
  width: 168px;
  min-height: 54px;
  border: 0;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  align-self: center;
  color: #f4e8d5;
  font-size: 18px;
  font-weight: 900;
}

.produced-by {
  position: absolute;
  left: clamp(24px, 5.3vw, 76px);
  bottom: 34px;
  display: grid;
  gap: 7px;
  color: #b4c1c8;
  font-size: 14px;
  font-weight: 900;
  transition: opacity 0.2s ease;
}

.produced-by:hover {
  opacity: 0.78;
}

.produced-by:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 8px;
}

.produced-by img {
  width: 138px;
  opacity: 0.82;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 48px, 0) scale(0.965);
    filter: blur(16px);
  }
  58% {
    opacity: 1;
    filter: blur(2px);
  }
  78% {
    transform: translate3d(0, -3px, 0) scale(1.006);
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes slashIn {
  to {
    transform: translateX(0) rotate(-5deg);
  }
}

@keyframes heroLightSweep {
  0%, 4% {
    opacity: 0;
    transform: translateX(-52%) skewX(-12deg);
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 0.44;
    transform: translateX(34%) skewX(-12deg);
  }
  84%,
  100% {
    opacity: 0;
    transform: translateX(62%) skewX(-12deg);
  }
}

@keyframes heroLineDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 74px;
  }
}

@keyframes heroAmbientPulse {
  from {
    opacity: 0.17;
    transform: scale(1);
  }
  to {
    opacity: 0.23;
    transform: scale(1.04);
  }
}

@keyframes heroPanelFloat {
  from {
    opacity: 0.9;
    translate: 0 0;
  }
  to {
    opacity: 1;
    translate: -10px 0;
  }
}

@keyframes titleFlashPulse {
  0%,
  68%,
  74%,
  100% {
    text-shadow:
      0 2px 0 rgba(16, 29, 38, 0.18),
      0 16px 38px rgba(0, 0, 0, 0.25);
    filter: brightness(1) contrast(1);
  }

  70% {
    text-shadow:
      0 2px 0 rgba(16, 29, 38, 0.18),
      0 0 12px rgba(255, 255, 255, 0.52),
      0 0 28px rgba(239, 191, 73, 0.24);
    filter: brightness(1.22) contrast(1.08);
  }

  72% {
    text-shadow:
      0 2px 0 rgba(16, 29, 38, 0.18),
      0 0 8px rgba(255, 255, 255, 0.34),
      0 0 18px rgba(208, 68, 51, 0.18);
    filter: brightness(1.1) contrast(1.04);
  }
}

@keyframes titleGradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes metricPulse {
  0%, 9% {
    opacity: 0;
    transform: translate3d(-10px, 8px, 0) scale(0.96);
    filter: drop-shadow(0 0 0 rgba(224, 239, 246, 0));
  }
  13%, 24% {
    opacity: 0.82;
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 0 10px rgba(224, 239, 246, 0.28));
  }
  34%, 100% {
    opacity: 0;
    transform: translate3d(12px, -7px, 0) scale(1.02);
    filter: drop-shadow(0 0 0 rgba(224, 239, 246, 0));
  }
}

@keyframes metricLine {
  0%, 9% {
    opacity: 0;
    transform: scaleX(0.2);
  }
  13%, 24% {
    opacity: 0.78;
    transform: scaleX(1);
  }
  34%, 100% {
    opacity: 0;
    transform: scaleX(0.35);
  }
}

@media (min-width: 1081px) {
  br.pc-only {
    display: block;
  }

  .pc-line {
    white-space: nowrap;
  }

  .dark-band {
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.62fr);
    gap: 48px;
  }

  .dark-band .band-copy h2 {
    font-size: clamp(38px, 3.7vw, 48px);
  }

  .support-section,
  .plan-section {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.7fr);
    gap: clamp(48px, 5vw, 72px);
  }

  .plan-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .plan-list,
  .plan-card {
    width: 100%;
    min-width: 0;
  }

  .support-copy h2,
  .plan-copy h2 {
    font-size: clamp(36px, 3.35vw, 44px);
  }

  .plan-copy p:last-child {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.72;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.85fr);
    gap: clamp(44px, 5vw, 72px);
  }

  .contact-copy p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.72;
  }
}

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

@media (max-width: 1080px) {
  .issue-section {
    position: relative;
    overflow: hidden;
  }

  .issue-section::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 48%;
    width: 120px;
    height: 78px;
    background: rgba(208, 68, 51, 0.12);
    clip-path: polygon(84% 0, 100% 0, 16% 100%, 0 100%);
    pointer-events: none;
  }

  .issue-section > * {
    position: relative;
    z-index: 1;
  }

  .nav {
    display: none;
  }

  .site-header {
    gap: 18px;
  }

  .header-button {
    margin-left: auto;
  }

  .issue-grid,
  .section-head,
  .dark-band,
  .trap-section,
  .support-section,
  .plan-section,
  .quality-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .issue-grid {
    gap: 24px;
  }

  .quality-card {
    gap: 34px;
  }

  .cta-section {
    min-height: 360px;
    grid-template-columns: 170px minmax(0, 560px);
    gap: 34px;
    padding-top: 58px;
    justify-content: start;
  }

  .cta-copy {
    grid-column: 2;
    grid-row: 1;
    max-width: 560px;
    top: 0;
    align-self: center;
  }

  .cat-visual {
    grid-column: 1;
    grid-row: 1;
    right: auto;
    bottom: 0;
    align-self: center;
    width: 170px;
  }
}

@media (max-width: 760px) {
  .cta-message-pc {
    display: none;
  }

  .cta-message-sp {
    display: block;
  }

  .issue-section::before {
    top: 14px;
    left: 42%;
    width: 168px;
    height: 140px;
  }

  :root {
    --header-height: 68px;
  }

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

  .brand {
    width: min(230px, 56vw);
  }

  .header-button {
    min-width: 92px;
    padding: 11px 17px;
    font-size: 14px;
  }

  .hero {
    min-height: 610px;
    padding: calc(var(--header-height) + 52px) 18px 42px;
  }

  .hero-panel {
    width: 50%;
    right: -120px;
    opacity: 0.88;
  }

  .eyebrow {
    margin-bottom: 56px;
    font-size: 12.6px;
  }

  .hero h1 {
    font-size: clamp(35px, 9vw, 54px);
    line-height: 1.24;
    width: auto;
    max-width: none;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-lead {
    max-width: 82%;
    font-size: 14.2px;
    line-height: 1.62;
    margin-top: 12px;
  }

  .hero-tags {
    display: grid;
    width: 94%;
    gap: 6px;
    margin-top: 40px;
  }

  .hero-tags span {
    min-width: 0;
    min-height: 35px;
    padding: 7px 4px;
    border-radius: 999px;
    border-width: 1px;
    font-size: 13.8px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }

  .hero-tags span::before {
    width: 4px;
  }

  .hero-tags span::after {
    content: none;
  }

  .hero-slash {
    bottom: 18px;
    height: 12px;
  }

  .hero-metrics {
    display: block;
    font-size: 10px;
    opacity: 0.72;
  }

  .hero-metrics span::after {
    width: 48px;
    height: 1px;
    margin-top: 5px;
  }

  .hero-metrics span:nth-child(1) { top: 21%; left: 68%; }
  .hero-metrics span:nth-child(2) { top: 27%; left: 80%; }
  .hero-metrics span:nth-child(3) { top: 35%; left: 83%; }
  .hero-metrics span:nth-child(4) { top: 18%; left: 76%; }
  .hero-metrics span:nth-child(5) { top: 52%; left: 72%; }
  .hero-metrics span:nth-child(6) { top: 60%; left: 84%; }
  .hero-metrics span:nth-child(7) { top: 70%; left: 68%; }
  .hero-metrics span:nth-child(8) { top: 76%; left: 80%; }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(32px, 8.6vw, 39px);
    max-width: none;
  }

  .hero-lead {
    max-width: 84%;
    font-size: 13.7px;
  }

  .hero-tags span {
    font-size: 13.3px;
    padding-inline: 2px;
  }

  .section {
    padding: 74px 24px;
  }

  .section-label {
    font-size: 15px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.32;
  }

  .section-head p:last-child,
  .trap-copy p,
  .support-copy p,
  .plan-copy p,
  .band-text,
  .quality-card p,
  .cta-copy p,
  .contact-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .issue-grid {
    margin-top: 48px;
  }

  .issue-card {
    min-height: auto;
    padding: 30px 26px;
  }

  .dark-band,
  .quality-card {
    margin-left: 18px;
    margin-right: 18px;
    padding: 42px 28px;
    border-radius: 20px;
    gap: 30px;
  }

  .trap-points,
  .tool-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trap-visual {
    min-height: 250px;
    border-radius: 16px;
  }

  .trap-visual img {
    min-height: 250px;
  }

  .mini-card,
  .tool-grid span {
    min-height: 64px;
  }

  .plan-card {
    grid-template-columns: 106px 1fr;
  }

  .month {
    min-height: 160px;
    padding-left: 22px;
  }

  .plan-card > div:last-child {
    padding: 22px 20px;
  }

  .plan-card h3 {
    font-size: 20px;
  }

  .plan-card p {
    font-size: 15px;
  }

  .plan-card em {
    font-size: 13px;
  }

  .cta-section {
    min-height: auto;
    padding: 56px 24px 54px;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .cta-copy {
    grid-column: 2;
    grid-row: 1;
    padding: 22px 20px 24px;
  }

  .cta-copy::before {
    inset: 0 auto 0 0;
    width: 4px;
    height: 100%;
    transform: none;
  }

  .cta-copy::after {
    left: 4px;
  }

  .cta-label {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .cta-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .section-slashes::before {
    top: 10px;
    height: 20px;
  }

  .section-slashes::after {
    top: auto;
    bottom: 18px;
    height: 12px;
  }

  .cat-visual {
    grid-column: 1;
    grid-row: 1;
    right: auto;
    bottom: 0;
    align-self: center;
    width: 112px;
  }

  .contact-section {
    padding: 74px 24px 122px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-form button {
    width: 100%;
  }

  .form-status {
    font-size: 15px;
  }

  .produced-by {
    bottom: 32px;
    left: 24px;
  }

  .produced-by img {
    width: 116px;
  }
}

/* Final responsive guardrails: preserve the approved composition on real phones. */
body {
  overflow-x: clip;
}

.hero-content,
.hero h1,
.hero-lead,
.hero-tags,
.section h2,
.section p {
  min-width: 0;
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.2;
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: 13.2px;
    line-height: 1.65;
  }

  .hero-tags {
    width: 100%;
    gap: 4px;
  }

  .hero-tags span {
    padding-inline: 2px;
    font-size: 12.4px;
    white-space: nowrap;
  }
}

/* Final SP sizing. Keep explicit dimensions so Safari and Chrome render alike. */
@media (max-width: 760px) {
  .brand {
    width: min(196px, 50vw);
  }

  .header-button {
    min-width: 92px;
    padding: 9px 15px;
    font-size: 14px;
    line-height: 1;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.2;
  }

  .hero-tags {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .hero-tags span {
    min-height: 31px;
    padding: 5px 2px;
    font-size: 11.8px;
    line-height: 1;
  }

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

  .tool-grid span {
    min-height: 50px;
    padding: 0 10px 0 36px;
    font-size: 14px;
    white-space: nowrap;
  }

  .tool-grid span::before {
    left: 16px;
    width: 11px;
    height: 11px;
  }

  .quality-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .quality-card {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .cta-section {
    min-height: auto;
    grid-template-columns: clamp(86px, 25vw, 108px) minmax(0, 1fr);
    gap: clamp(12px, 3.6vw, 16px);
    padding: 56px 18px 54px;
    align-items: center;
  }

  .cat-visual {
    width: clamp(86px, 25vw, 108px);
  }

  .cta-copy {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    padding: 20px 10px 22px;
  }

  .cta-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  br.sp-only {
    display: block;
  }

  .contact-copy h2 {
    font-size: clamp(24px, 7.4vw, 29px);
    line-height: 1.25;
    white-space: nowrap;
  }
}
