:root {
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dde4ee;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --cyan: #24c4d2;
  --blue: #1e8bff;
  --violet: #6750d8;
  --green: #24c4d2;
  --orange: #6750d8;
  --navy: #10192b;
  --shadow: 0 18px 45px rgba(16, 25, 43, 0.13);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  --scroll-progress: 0px;
  --backdrop-slow: 0px;
  --backdrop-fast: 0px;
  background: #f7f9fc;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  background: transparent;
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  inset: -34vh 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(36, 196, 210, 0.12), transparent 34%),
    linear-gradient(250deg, rgba(30, 139, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #ffffff 100%);
  transform: translate3d(0, var(--backdrop-slow), 0);
  will-change: transform;
}

body::after {
  content: "";
  position: fixed;
  inset: -34vh 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(120deg, rgba(36, 196, 210, 0.035) 0 1px, transparent 1px 92px);
  opacity: 0.42;
  transform: translate3d(0, var(--backdrop-fast), 0);
  will-change: transform;
}

.smooth-page {
  position: relative;
  overflow-x: clip;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 228, 238, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 54px;
}

.logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--violet);
}

.btn {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 14px 28px;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, .18);

  font-weight: 700;
  letter-spacing: .03em;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;

  isolation: isolate;
}

.btn:hover {
  transform: translateY(-4px);

  border-color: rgba(255, 255, 255, .35);

  box-shadow:
    0 16px 35px rgba(0, 0, 0, .18);
}

.btn-primary {
  color: #fff;

  background:
    linear-gradient(135deg,
      #00CFFF,
      #6E5BFF);

  box-shadow:
    0 12px 35px rgba(0, 212, 255, .25),
    0 0 30px rgba(111, 91, 255, .18);
}

.btn-secondary {
  color: #fff;

  background: rgba(255, 255, 255, .08);

  border: 1px solid rgba(255, 255, 255, .18);

  box-shadow:
    0 8px 25px rgba(0, 0, 0, .15);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}




.hero-visual img {
  width: 100%;
  height: auto;

  opacity: 0.08;

  filter:
    brightness(0.45) blur(2px) drop-shadow(0 28px 56px rgba(30, 139, 255, 0.10));
}

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: auto;
  background:
    radial-gradient(circle at 32% 34%, rgba(36, 196, 210, 0.22), transparent 30%),
    radial-gradient(circle at 72% 58%, rgba(103, 80, 216, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 62%, #ffffff 100%);
  animation: introSplashExit 0.28s ease forwards;
  animation-delay: 4.02s;
}

.intro-splash-skip .intro-splash {
  display: none;
}

.intro-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(36, 196, 210, 0.035) 0 1px, transparent 1px 92px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  pointer-events: none;
}

.intro-logo-animation {
  position: relative;
  z-index: 1;
  width: clamp(330px, 52vw, 760px);
  pointer-events: none;
  filter: none;
  will-change: transform, opacity, filter;
  animation: heroLogoMistOut 0.62s ease-in forwards;
  animation-delay: 3.52s;
}

.intro-logo-animation::before {
  content: none;
}

.intro-logo-animation::after {
  content: "";
  position: absolute;
  inset: -36% -24% -42% 16%;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 76%, rgba(36, 196, 210, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 62%, rgba(30, 139, 255, 0.26) 0 1px, transparent 3px),
    radial-gradient(circle at 86% 70%, rgba(103, 80, 216, 0.28) 0 2px, transparent 4px),
    radial-gradient(circle at 92% 54%, rgba(36, 196, 210, 0.24) 0 1px, transparent 3px),
    radial-gradient(circle at 72% 84%, rgba(103, 80, 216, 0.26) 0 2px, transparent 4px);
  background-size: 74px 92px, 92px 112px, 86px 104px, 70px 118px, 104px 96px;
  opacity: 0;
  transform: translate3d(16px, 20px, 0) scale(0.76);
  transform-origin: 82% 72%;
  filter: blur(0);
  animation: heroLogoMistDust 0.72s ease-out forwards;
  animation-delay: 3.46s;
}

.animated-unihub-logo {
  position: relative;
  display: block;
  width: 100%;
  isolation: isolate;
}

.logo-part {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
  will-change: transform, opacity, filter;
}

.intro-logo-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 50px);
  width: 100%;
  aspect-ratio: 836 / 333;
  overflow: visible;
}

.intro-logo-mark {
  position: relative;
  flex: 0 0 28.2%;
  aspect-ratio: 264 / 306;
  --shine: 6;
  opacity: 0;
  transform: translate3d(0, -170px, 0) scale(0.82, 1.18);
  transform-origin: 50% 88%;
  filter: blur(2px);
  animation:
    introMarkDropIn 1.86s cubic-bezier(0.18, 0.82, 0.2, 1) forwards,
    heroLogoPartMist 0.64s ease-in forwards;
  animation-delay:
    0.08s,
    3.48s;
  will-change: transform, opacity, filter;
}

.intro-logo-mark-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
  transform-origin: 50% 82%;
  animation:
    introMarkGelatin 1.92s cubic-bezier(0.16, 0.86, 0.22, 1) forwards,
    heroLogoReflectPulse 0.54s ease-out forwards;
  animation-delay:
    0.12s,
    2.34s;
  will-change: transform, filter;
}

.intro-logo-word {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.5vw, 8px);
  min-width: 0;
  overflow: visible;
  padding-right: clamp(8px, 0.8vw, 14px);
}

.intro-logo-letter {
  position: relative;
  display: inline-block;
  overflow: visible;
  padding-right: 0.04em;
  margin-right: -0.04em;
  font-family: "Arial Black", "Montserrat", "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(68px, 7.1vw, 112px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  color: transparent;
  opacity: 0;
  transform: translate3d(-54px, 22px, 0) skewX(-8deg);
  filter: blur(8px);
  animation:
    heroLogoLetterIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    heroLogoPartMist 0.64s ease-in forwards;
  animation-delay:
    calc(1s + var(--in) * 0.13s),
    calc(3.48s + var(--shine) * 0.012s);
  will-change: transform, opacity, filter;
}

.intro-letter-glyph {
  display: block;
  color: transparent;
  background:
    linear-gradient(90deg, #24c7de 0%, #0878e6 56%, #ba00dd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateZ(0);
  animation: heroLogoReflectPulse 0.52s ease-out forwards;
  animation-delay: 2.34s;
}

.intro-logo-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
}

.intro-logo-letter::before,
.intro-logo-letter::after,
.intro-logo-mark-shine::before,
.intro-logo-mark-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 260% 100%;
  background-position: 128% 0;
  pointer-events: none;
}

.intro-logo-letter::before,
.intro-logo-letter::after {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  content: attr(data-letter);
}

.intro-logo-mark-shine::before,
.intro-logo-mark-shine::after {
  mask-image: url("../assets/unihub-mark.webp");
  mask-mode: alpha;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../assets/unihub-mark.webp");
  -webkit-mask-mode: alpha;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.intro-logo-letter::before,
.intro-logo-mark-shine::before {
  background-image:
    linear-gradient(105deg, transparent 24%, rgba(255, 255, 255, 0.04) 34%, rgba(255, 255, 255, 0.72) 45%, #ffffff 50%, rgba(255, 255, 255, 0.48) 56%, transparent 70%);
  filter: blur(0.2px) drop-shadow(0 0 10px rgba(255, 255, 255, 0.78));
  animation: heroLogoReflectSweep 0.58s cubic-bezier(0.16, 0.82, 0.18, 1) forwards;
  animation-delay: 2.28s;
}

.intro-logo-letter::after,
.intro-logo-mark-shine::after {
  background-image:
    linear-gradient(105deg, transparent 20%, rgba(36, 199, 222, 0.08) 35%, rgba(255, 255, 255, 0.72) 49%, rgba(186, 0, 221, 0.2) 62%, transparent 76%);
  filter: blur(10px) drop-shadow(0 0 18px rgba(36, 199, 222, 0.42));
  opacity: 1;
  animation: heroLogoReflectSweep 0.66s cubic-bezier(0.16, 0.82, 0.18, 1) forwards;
  animation-delay: 2.24s;
}

.intro-logo-mark-shine::before {
  filter: blur(0.1px);
}

.intro-logo-mark-shine::after {
  filter: blur(1.2px);
  opacity: 0.72;
}

@keyframes introMarkDropIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -180px, 0) scale(0.82, 1.16) skewX(-2.6deg);
    filter: blur(2px);
  }

  28% {
    opacity: 1;
    transform: translate3d(0, 12px, 0) scale(1.18, 0.78) skewX(2.2deg);
    filter: blur(0.35px);
  }

  38% {
    transform: translate3d(-2px, -18px, 0) scale(0.9, 1.16) skewX(-2deg);
    filter: blur(0);
  }

  49% {
    transform: translate3d(1px, 7px, 0) scale(1.095, 0.88) skewX(1.3deg);
  }

  60% {
    transform: translate3d(-1px, -8px, 0) scale(0.955, 1.075) skewX(-0.85deg);
  }

  71% {
    transform: translate3d(0.6px, 3px, 0) scale(1.04, 0.965) skewX(0.45deg);
  }

  82% {
    transform: translate3d(-0.35px, -2px, 0) scale(0.987, 1.018) skewX(-0.24deg);
  }

  92% {
    transform: translate3d(0.16px, 0.75px, 0) scale(1.008, 0.994) skewX(0.08deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) skewX(0deg);
    filter: blur(0);
  }
}

@keyframes introMarkGelatin {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  20% {
    transform: translate3d(0, 3px, 0) scale(1.07, 0.92) rotate(-0.75deg);
  }

  31% {
    transform: translate3d(-2px, -5px, 0) scale(0.9, 1.14) rotate(1deg);
  }

  43% {
    transform: translate3d(1.4px, 3px, 0) scale(1.095, 0.89) rotate(-0.74deg);
  }

  55% {
    transform: translate3d(-0.9px, -2.2px, 0) scale(0.955, 1.065) rotate(0.46deg);
  }

  67% {
    transform: translate3d(0.55px, 1.3px, 0) scale(1.035, 0.972) rotate(-0.28deg);
  }

  79% {
    transform: translate3d(-0.28px, -0.62px, 0) scale(0.987, 1.018) rotate(0.13deg);
  }

  90% {
    transform: translate3d(0.12px, 0.28px, 0) scale(1.008, 0.995) rotate(-0.05deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroLogoLetterIn {
  0% {
    opacity: 0;
    transform: translate3d(-54px, 22px, 0) skewX(-8deg);
    filter: blur(8px);
  }

  72% {
    opacity: 1;
    transform: translate3d(7px, -2px, 0) skewX(1deg);
    filter: blur(0.6px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(0deg);
    filter: blur(0);
  }
}

@keyframes heroLogoLetterInCompact {
  0% {
    opacity: 0;
    transform: translate3d(-24px, 14px, 0) skewX(-6deg);
    filter: blur(7px);
  }

  72% {
    opacity: 1;
    transform: translate3d(4px, -1px, 0) skewX(0.8deg);
    filter: blur(0.5px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(0deg);
    filter: blur(0);
  }
}

@keyframes heroLogoReflectSweep {
  0% {
    background-position: 132% 0;
    opacity: 0;
  }

  10% {
    opacity: 0.95;
  }

  46% {
    opacity: 1;
  }

  82% {
    opacity: 0.68;
  }

  100% {
    background-position: -42% 0;
    opacity: 0;
  }
}

@keyframes heroLogoReflectPulse {

  0%,
  100% {
    filter: brightness(1) saturate(1);
  }

  42% {
    filter: brightness(1.18) saturate(1.08) drop-shadow(0 0 18px rgba(255, 255, 255, 0.42));
  }
}

@keyframes heroLogoPartMist {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  42% {
    opacity: 0.78;
    transform: translate3d(8px, -22px, 0) scale(1.012);
    filter: blur(3px);
  }

  100% {
    opacity: 0;
    transform: translate3d(18px, -92px, 0) scale(1.07);
    filter: blur(14px);
  }
}

@keyframes heroLogoMistDust {
  0% {
    opacity: 0;
    transform: translate3d(16px, 20px, 0) scale(0.76);
    filter: blur(0);
  }

  18% {
    opacity: 0.84;
    transform: translate3d(10px, -12px, 0) scale(0.9);
  }

  58% {
    opacity: 0.58;
    transform: translate3d(4px, -72px, 0) scale(1.12);
  }

  100% {
    opacity: 0;
    transform: translate3d(-4px, -142px, 0) scale(1.32);
    filter: blur(14px);
  }
}

@keyframes heroLogoMistOut {
  0% {
    opacity: 1;
    filter: drop-shadow(0 18px 34px rgba(18, 119, 228, 0.12));
  }

  100% {
    opacity: 0;
    filter: blur(12px) drop-shadow(0 30px 56px rgba(36, 196, 210, 0));
  }
}

@keyframes introSplashExit {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.hero .container {
  position: relative;
  z-index: 3;
}

.h
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(36, 196, 210, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #126b7a;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c7d4;
}

h1 {
  max-width: 700px;
  font-size: 54px;
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 900;
}

.brand-gradient {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 48%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



 .btn-primary {
  background: #23c4d2;
  box-shadow: 0 12px 28px rgba(35, 196, 210, 0.28);
}

 .btn-secondary {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(30, 139, 255, 0.22);
}

 .btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(36, 196, 210, 0.28);
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
  max-width: 1180px;
}

.quick-point {
  min-height: 106px;
  display: grid;
  grid-template-rows: 112px auto;
  gap: 14px;
  padding: 12px 14px 18px;
  border: 1px solid rgba(36, 196, 210, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 25, 43, 0.07);
  transition:
    opacity 0.82s var(--reveal-ease),
    transform 0.82s var(--reveal-ease),
    box-shadow 0.2s ease;
}

.quick-point-image {
  display: block;
  width: 100%;
  height: 112px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 255, 0.9));
  object-fit: contain;
}

.quick-point-copy {
  min-width: 0;
}

.quick-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.25;
}

.quick-point span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

section {
  position: relative;
  padding: 84px 0;
}

.content-reveal {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.content-reveal.reveal-from-left {
  transform: translate3d(-96px, 28px, 0) rotateZ(-1deg) scale(0.97);
}

.content-reveal.reveal-from-right {
  transform: translate3d(96px, 28px, 0) rotateZ(1deg) scale(0.97);
}

.content-reveal.reveal-card.reveal-from-left {
  transform: translate3d(-110px, 10px, 0) rotateZ(-0.6deg) scale(0.98);
}

.content-reveal.reveal-card.reveal-from-right {
  transform: translate3d(110px, 10px, 0) rotateZ(0.6deg) scale(0.98);
}

.content-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.section-soft {
  background: rgba(245, 248, 251, 0.86);
}

.flow-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(36, 196, 210, 0.12), transparent 25%),
    radial-gradient(circle at 92% 18%, rgba(30, 139, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(244, 252, 253, 0.9) 100%),
    url("../assets/flow-process-white-bg.webp") center / cover no-repeat;
}

.flow-section::before {
  content: none;
}

.plan-section {
  background:
    linear-gradient(180deg, rgba(246, 249, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 248, 242, 0.92) 100%),
    url("../assets/plan-comparison-bg.webp") center / cover no-repeat;
}

.sample-section {
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.9) 0%, rgba(248, 245, 255, 0.86) 100%),
    url("../assets/sample-gallery-bg.webp") center / cover no-repeat;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 251, 0.9) 100%),
    url("../assets/faq-support-bg.webp") center / cover no-repeat;
}

.strength-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(36, 196, 210, 0.1), transparent 25%),
    radial-gradient(circle at 92% 18%, rgba(30, 139, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 251, 255, 0.9) 100%),
    url("../assets/why-unihub-white-bg.webp") center / cover no-repeat;
  color: var(--ink);
}

.strength-section .section-head {
  max-width: 880px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.strength-section .section-kicker {
  color: var(--violet);
}

.strength-section h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: 40px;
}

.strength-section .section-lead {
  max-width: 790px;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

h2 {
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-lead {
  max-width: 730px;
  margin-top: 14px;
  color: var(--muted);
}

.strength-grid,
.sample-grid,
.flow-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.strength-card,
.sample-card,
.flow-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.strength-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strength-card {
  padding: 24px;
}

.strength-section .strength-card {
  position: relative;
  overflow: hidden;
  border-color: var(--line);
  box-shadow: 0 18px 36px rgba(16, 25, 43, 0.09);
}

.strength-section .strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.strength-visual {
  display: block;
  width: 100%;
  height: 112px;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 139, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.9));
  object-fit: cover;
}

.strength-card .label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.strength-section .strength-card .label {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(30, 139, 255, 0.1);
  color: var(--blue);
}

.strength-card h3 {
  margin-top: 10px;
  font-size: 21px;
}

.strength-section .strength-card h3 {
  color: var(--ink);
  font-size: 23px;
}

.strength-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.strength-section .strength-card p {
  font-weight: 700;
}

.plan-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.plan {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* 2026-07-29: Make the complete plan card a clear, keyboard-accessible detail-page link. */
.plan-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.plan:hover,
.plan:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(16, 25, 43, 0.14);
}

.plan-link:focus-visible {
  outline: 3px solid rgba(103, 80, 216, 0.68);
  outline-offset: -3px;
}

.plan.featured {
  border-color: rgba(103, 80, 216, 0.38);
  box-shadow: var(--shadow);
}

.plan-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.plan-head {
  padding: 30px 28px 22px;
  min-height: 150px;
  background: linear-gradient(135deg, #f7fbff, #f4f2ff);
}

.plan h3 {
  font-size: 28px;
}

.price {
  margin-top: 12px;
  color: var(--violet);
  display: grid;
  gap: 8px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.16;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.plan-body {
  padding: 24px 28px 30px;
}

.plan-detail-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
}

.plan-link:hover .plan-detail-link span {
  transform: translateX(4px);
}

.plan-detail-link span {
  transition: transform 0.22s ease;
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan-list li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.plan-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.plan-list b {
  color: var(--navy);
}

.comparison-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.sample-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sample-card {
  overflow: hidden;
  display: block;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sample-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.sample-thumb {
  height: 140px;
  background: #eaf1f7;
  overflow: hidden;
}

.sample-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sample-card:hover .sample-thumb img {
  transform: scale(1.05);
}

.sample-body {
  padding: 18px;
}

.sample-body h3 {
  font-size: 17px;
}

.sample-body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.sample-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
}

.service-menu-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(241, 252, 255, 0.9) 48%, rgba(255, 248, 242, 0.92) 100%),
    url("../assets/service-menu-bg.webp") center / cover no-repeat;
}

.service-menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(36, 196, 210, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(103, 80, 216, 0.08) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  opacity: 0.16;
}

.service-menu-section .container {
  position: relative;
  z-index: 1;
}

.service-menu-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 36%);
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(36, 196, 210, 0.18);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(16, 25, 43, 0.1);
  backdrop-filter: blur(12px);
}

.service-menu-copy {
  min-width: 0;
}

.service-menu-head .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(103, 80, 216, 0.2);
  border-radius: 999px;
  color: #5142b8;
  background: rgba(245, 243, 255, 0.92);
}

.service-menu-head .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(103, 80, 216, 0.16);
}

.service-menu-head h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: 38px;
}

.service-menu-head .section-lead {
  max-width: 760px;
  color: var(--muted);
  font-weight: 700;
}

.service-menu-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-menu-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(36, 196, 210, 0.2);
  border-radius: 999px;
  color: #126b7a;
  background: rgba(244, 252, 253, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.service-menu-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: rgba(244, 252, 253, 0.9);
  box-shadow: 0 18px 42px rgba(16, 25, 43, 0.13);
}

.service-menu-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(221, 228, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 25, 43, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 80, 216, 0.42);
  box-shadow: 0 26px 60px rgba(16, 25, 43, 0.13);
}

.service-menu-media {
  height: 150px;
  background: #eaf1f7;
}

.service-menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.service-menu-body h3 {
  position: relative;
  padding-top: 14px;
  font-size: 18px;
}

.service-menu-body h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--violet));
}

.service-menu-body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.service-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.service-menu-link::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.2s ease;
}

.service-menu-card:hover .service-menu-link::after {
  width: 34px;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.flow-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(36, 196, 210, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 54px rgba(16, 25, 43, 0.08);
}

.flow-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flow-rail span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px 8px;
  border: 2px solid #1d5d66;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #35d2d5 0%, #21acc5 100%);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  writing-mode: horizontal-tb;
}

.flow-rail span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  bottom: auto;
  left: auto;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #62727b;
  border-right: 0;
  transform: translateY(-50%);
}

.flow-card {
  position: relative;
  min-height: 176px;
  padding: 34px 24px 24px;
  border: 2px solid #3f4c55;
  box-shadow: 0 14px 28px rgba(16, 25, 43, 0.06);
}

.flow-card b {
  position: absolute;
  top: -19px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #3f4c55;
  border-radius: 50%;
  color: #fff;
  background: #28cbd1;
  font-size: 13px;
  line-height: 1;
  transform: translateX(-50%);
}

.flow-card h3 {
  position: relative;
  padding-bottom: 11px;
  text-align: center;
  font-size: 20px;
}

.flow-card h3::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 1px;
  background: #d7dde2;
}

.flow-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.flow-grid .flow-card {
  background: #fff;
  transition:
    opacity 0.82s var(--reveal-ease),
    transform 0.82s var(--reveal-ease),
    box-shadow 0.2s ease;
}

.flow-grid .flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(16, 25, 43, 0.1);
}

.flow-detail-action {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.flow-detail-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: min(100%, 360px);
  min-height: 62px;
  padding: 14px 58px 14px 26px;
  border: 2px solid #1d5d66;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #35d2d5 0%, #21acc5 100%);
  box-shadow: 0 14px 28px rgba(16, 25, 43, 0.12);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-detail-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffffff;
  transform: translateY(-50%);
}

.flow-detail-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(16, 25, 43, 0.16);
}

.cta-band {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(244, 252, 253, 0.9)),
    url("../assets/consultation-cta-bg.webp") center / cover no-repeat;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  font-size: 32px;
}

.cta-inner p {
  margin-top: 12px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
}

.faq-card {
  padding: 24px;
  border-color: rgba(103, 80, 216, 0.16);
  box-shadow: 0 12px 30px rgba(16, 25, 43, 0.06);
}

.faq-card h3 {
  font-size: 18px;
}

.faq-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.faq-link-area {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.faq-link-area .btn {
  min-width: 260px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(16, 25, 43, 0.96), rgba(16, 25, 43, 0.82)),
    url("../assets/consultation-cta-bg.webp") center / cover no-repeat;
  color: #fff;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-info p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.method {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.method b {
  display: block;
  font-size: 14px;
}

.method span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.method-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
}

.method-action strong {
  display: block;
  font-size: 18px;
}

.method-action small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.company-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  list-style: none;
}

.form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

footer {
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  text-align: center;
  font-size: 13px;
}

@media (min-width: 1600px) {
  .container {
    max-width: min(72vw, 1380px);
    padding: 0 32px;
  }

  .nav {
    max-width: min(72vw, 1440px);
    height: 82px;
    padding: 0 32px;
  }

  .logo {
    height: 60px;
  }

  .nav-links {
    gap: 32px;
    font-size: 16px;
  }

  
  
  
  h1 {
    max-width: 980px;
    font-size: clamp(58px, 3.15vw, 74px);
  }

  .eyebrow {
    margin-bottom: 26px;
    padding: 9px 16px;
    font-size: 15px;
  }

  
  
   .btn {
    min-height: 56px;
    padding: 14px 30px;
    font-size: 18px;
  }

  .quick-points {
    max-width: 1280px;
    gap: 22px;
    margin-top: 54px;
  }

  .quick-point {
    grid-template-rows: 150px auto;
    gap: 18px;
    padding: 18px 22px 24px;
  }

  .quick-point-image {
    height: 150px;
  }

  .quick-point strong {
    font-size: 28px;
  }

  .quick-point span {
    font-size: 16px;
  }

  section {
    padding: 100px 0;
  }

  .strength-section h2,
  h2 {
    font-size: 42px;
  }

  .strength-section .section-lead,
  .section-lead {
    max-width: 900px;
    font-size: 18px;
  }

  .strength-grid,
  .sample-grid,
  .flow-grid,
  .faq-grid {
    gap: 24px;
  }

  .strength-card {
    padding: 28px;
  }

  .strength-visual {
    height: 150px;
  }

  .strength-section .strength-card h3 {
    font-size: 28px;
  }

  .strength-card p {
    font-size: 16px;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

 
  .hero .container,
   {
    max-width: 100%;
    min-width: 0;
  }

  
  
  .intro-logo-animation {
    width: clamp(300px, 86vw, 520px);
  }

  .intro-logo-image {
    gap: clamp(12px, 2vw, 28px);
  }

  .intro-logo-mark {
    flex-basis: 26%;
  }

  .intro-logo-letter {
    font-size: clamp(46px, 8.4vw, 78px);
    animation-name: heroLogoLetterInCompact, heroLogoPartMist;
  }

  h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .quick-points,
  .strength-grid,
  .plan-wrap,
  .service-menu-grid,
  .cta-inner,
  .faq-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .flow-board {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .flow-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-rail span {
    min-height: 54px;
    writing-mode: horizontal-tb;
    font-size: 16px;
  }

  .flow-rail span:not(:last-child)::after {
    top: 50%;
    right: -14px;
    bottom: auto;
    left: auto;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #62727b;
    border-right: 0;
    transform: translateY(-50%);
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .sample-thumb {
    height: 150px;
  }

  .service-menu-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .service-menu-visual {
    max-width: 520px;
    width: 100%;
  }

  .service-menu-head h2 {
    font-size: 31px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .nav {
    height: 64px;
    padding: 0 16px;
  }

  .logo {
    height: 48px;
  }

  .nav .btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
  }

  
  
  .intro-logo-animation {
    width: min(90vw, 340px);
    filter: drop-shadow(0 12px 28px rgba(30, 139, 255, 0.14));
  }

  .animated-unihub-logo {
    /* Let the splash screen's grid center the logo at every mobile width. */
    /* 2026-07-29: Offset slightly left to visually center the mobile intro logo. */
    transform: translateX(-16px);
  }

  .intro-logo-image {
    gap: clamp(6px, 2vw, 10px);
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: auto;
  }

  .intro-logo-mark {
    flex-basis: 23%;
  }

  .intro-logo-word {
    flex: 0 1 auto;
    gap: clamp(1px, 0.7vw, 3px);
    padding-right: 0;
    /* Keep the logo mark and the overall intro position fixed on mobile. */
    transform: translateY(3px) scale(1.14);
    transform-origin: left center;
  }

  .intro-logo-letter {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  h1 {
    font-size: 34px;
    max-width: 100%;
  }

  
  section {
    padding: 64px 0;
  }

  h2 {
    font-size: 27px;
  }

  .service-menu-head {
    gap: 18px;
    padding: 22px 20px;
  }

  .service-menu-visual {
    aspect-ratio: 16 / 10;
  }

  .service-menu-head h2 {
    font-size: 28px;
  }

  .service-menu-points span {
    width: 100%;
    justify-content: center;
  }

  .strength-section .section-head {
    padding: 24px;
  }

  .strength-section h2 {
    font-size: 29px;
  }

  .plan-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .flow-board {
    padding: 20px 16px;
  }

  .flow-rail {
    gap: 8px;
  }

  .flow-rail span {
    font-size: 14px;
  }

  .flow-card {
    min-height: auto;
  }

  .flow-detail-button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
  }

  .flow-detail-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .flow-detail-step b {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .flow-detail-step h2 {
    font-size: 22px;
  }

  .cta-actions,
   {
    width: 100%;
  }

  .cta-actions .btn,
   .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .content-reveal {
    filter: blur(4px);
    transition-duration: 0.48s;
  }

  .content-reveal.reveal-from-left {
    transform: translate3d(-34px, 12px, 0) scale(0.99);
  }

  .content-reveal.reveal-from-right {
    transform: translate3d(34px, 12px, 0) scale(0.99);
  }

  .content-reveal.reveal-card.reveal-from-left {
    transform: translate3d(-38px, 8px, 0) scale(0.99);
  }

  .content-reveal.reveal-card.reveal-from-right {
    transform: translate3d(38px, 8px, 0) scale(0.99);
  }

  .content-reveal.is-visible {
    filter: none;
    transform: translate3d(0, 0, 0);
  }

}

.sample-card.is-coming-soon {
  cursor: default;
}

.sample-card.is-coming-soon .sample-link {
  color: var(--blue);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.subpage-hero {
  padding: 140px 0 64px;
  background: linear-gradient(135deg, #f7fbff 0%, #f4f2ff 100%);
}

/* 2026-07-29: Reusable layout for the two homepage-plan detail views. */
.plan-detail-hero {
  padding: 156px 0 88px;
  background:
    radial-gradient(circle at 80% 18%, rgba(36, 196, 210, 0.18), transparent 27rem),
    linear-gradient(135deg, #f7fbff 0%, #f4f2ff 57%, #fff8f2 100%);
}

.plan-detail-hero h1 {
  max-width: 850px;
  margin-top: 12px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.25;
}

.plan-detail-accent {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(103, 80, 216, 0.1);
  font-size: 14px;
  font-weight: 900;
}

.plan-detail-lead,
.page-section-lead {
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

/* SEO対策HPの詳細ページ専用 */
.seo-basics-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.seo-basics-grid,
.seo-expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.seo-basics-card,
.seo-expectation-card {
  padding: 28px;
  border: 1px solid rgba(103, 80, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 25, 43, 0.07);
}

.seo-basics-card > span {
  color: var(--violet);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.seo-basics-card h3,
.seo-expectation-card h3 {
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.45;
}

.seo-basics-card p,
.seo-expectation-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.seo-source-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.seo-source-note a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-faq-list {
  max-width: 920px;
  margin: 36px auto 0;
  border-top: 1px solid var(--line);
}

.seo-faq-list details {
  border-bottom: 1px solid var(--line);
}

.seo-faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.65;
  list-style: none;
}

.seo-faq-list summary::-webkit-details-marker {
  display: none;
}

.seo-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.seo-faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.seo-faq-list details p {
  margin: -2px 48px 22px 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 920px) {
  .seo-basics-grid,
  .seo-expectation-grid {
    grid-template-columns: 1fr;
  }
}

.plan-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.plan-detail-grid h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
}

.plan-check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plan-check-list li {
  position: relative;
  padding: 18px 8px 18px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

.plan-check-list li::before {
  position: absolute;
  top: 20px;
  left: 5px;
  width: 18px;
  height: 10px;
  border-bottom: 3px solid var(--violet);
  border-left: 3px solid var(--violet);
  content: "";
  transform: rotate(-45deg);
}

.plan-detail-soft-section {
  background: linear-gradient(180deg, #f7fbff 0%, #f6f4ff 100%);
}

.plan-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.plan-feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(103, 80, 216, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(16, 25, 43, 0.07);
}

.plan-feature-card>span {
  color: var(--violet);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.plan-feature-card h3 {
  margin-top: 18px;
  font-size: 21px;
}

.plan-feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.plan-detail-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.plan-detail-flow li {
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(16, 25, 43, 0.07);
}

.plan-detail-flow span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.plan-detail-flow p {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.65;
}

.plan-detail-cta {
  padding: 88px 0;
  color: #fff;
  background: linear-gradient(120deg, #2f5de1 0%, #6750d8 58%, #a345d2 100%);
  text-align: center;
}

.plan-detail-cta .section-kicker,
.plan-detail-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.plan-detail-cta h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.plan-detail-cta p:not(.section-kicker) {
  max-width: 660px;
  margin: 16px auto 26px;
  font-weight: 700;
  line-height: 1.8;
}

.plan-detail-cta .btn-primary {
  color: var(--violet);
  background: #fff;
  box-shadow: 0 12px 26px rgba(28, 20, 86, 0.22);
}

.subpage-hero .section-kicker {
  margin-bottom: 12px;
}

.subpage-hero h1 {
  max-width: 820px;
  font-size: 46px;
  line-height: 1.25;
}

.subpage-hero p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.page-section {
  padding: 76px 0;
  background: #fff;
}

.page-section:nth-of-type(even) {
  background: var(--soft);
}

.page-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(16, 25, 43, 0.08);
}

.info-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--navy);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-content,
.page-copy {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.policy-content h2,
.page-copy h2 {
  font-size: 24px;
}

.policy-content p,
.page-copy p,
.policy-content li {
  color: var(--muted);
  font-weight: 700;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.company-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 196, 210, 0.15), transparent 28rem),
    linear-gradient(135deg, #f7fbff 0%, #f4f2ff 100%);
}

.company-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.company-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.company-president-message {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(103, 80, 216, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(16, 25, 43, 0.14);
}

.company-president-message p {
  margin: 0;
}

.company-president-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-president-name {
  margin-top: 2px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.company-president-heading {
  margin-top: 8px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.company-president-greeting {
  margin-top: 5px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.company-hero-note {
  max-width: 580px;
}

.company-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.company-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(103, 80, 216, 0.18);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.contact-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 252, 253, 0.88) 58%, rgba(255, 247, 240, 0.84) 100%),
    url("../assets/consultation-cta-bg.webp") center / cover no-repeat;
}

.privacy-hero {
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 247, 240, 0.92) 100%),
    url("../assets/faq-support-bg.webp") center / cover no-repeat;
}

.flow-detail-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 252, 253, 0.9) 54%, rgba(241, 247, 255, 0.92) 100%),
    url("../assets/flow-process-white-bg.webp") center / cover no-repeat;
}

.flow-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96)),
    url("../assets/flow-process-white-bg.webp") center top / cover no-repeat;
}

.flow-detail-board {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-color: rgba(36, 196, 210, 0.24);
}

.flow-detail-step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.flow-detail-step:last-child {
  border-bottom: 0;
}

.flow-detail-step b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #3f4c55;
  border-radius: 50%;
  color: #fff;
  background: #28cbd1;
  font-size: 18px;
  line-height: 1;
}

.flow-detail-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 2px solid #1d5d66;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #35d2d5 0%, #21acc5 100%);
  font-size: 13px;
  font-weight: 900;
}

.flow-detail-step h2 {
  margin-top: 12px;
  font-size: 26px;
}

.flow-detail-step p:not(.flow-detail-label) {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.flow-detail-step ul {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 700;
}

.flow-detail-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.company-profile-section {
  overflow: hidden;
}

.company-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.company-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.company-message h2 {
  font-size: 30px;
}

.company-message p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.company-support-section {
  background: var(--soft);
}

.company-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.company-service-card {
  padding: 24px;
}

.company-service-card h3 {
  font-size: 20px;
}

.company-service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.contact-window {
  position: sticky;
  top: 96px;
}

.contact-methods-light .method {
  border-color: rgba(30, 139, 255, 0.16);
  background: #f7fbff;
}

.contact-methods-light .method-action {
  color: var(--ink);
}

.contact-methods-light .method-action small {
  color: var(--muted);
}

.contact-methods-light .method-action b {
  color: var(--blue);
}

.contact-note-list {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 700;
}

.line-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.line-contact-card h3 {
  margin: 0 0 8px;
  color: #06a94d;
  font-size: 20px;
}

.line-contact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.line-contact-card img {
  display: block;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(16, 25, 43, 0.12);
  border-radius: 6px;
  background: #fff;
}

@media (max-width: 560px) {
  .line-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .line-contact-card img {
    justify-self: center;
    width: 180px;
    height: 180px;
  }
}

.contact-form-panel {
  padding: 30px;
}

.policy-content section {
  padding: 0;
}

.policy-content a,
.info-list a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-date {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: right;
}

@media (max-width: 920px) {
  .subpage-hero {
    padding: 104px 0 48px;
  }

  /* 2026-07-29: Stack plan-detail content for tablet and mobile layouts. */
  .plan-detail-hero {
    padding: 120px 0 62px;
  }

  .plan-detail-grid,
  .plan-feature-grid,
  .plan-detail-flow {
    grid-template-columns: 1fr;
  }

  .plan-feature-grid,
  .plan-detail-flow {
    gap: 14px;
  }

  .plan-feature-card,
  .plan-detail-flow li {
    min-height: 0;
  }

  .subpage-hero h1 {
    font-size: 34px;
  }

  .contact-page-grid,
  .company-page-grid,
  .company-service-grid,
  .info-list div {
    grid-template-columns: 1fr;
  }

  .company-hero {
    padding: 112px 0 56px;
  }

  .company-hero .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company-president-message {
    padding: 20px;
  }

  .contact-window {
    position: static;
  }
}

@media (max-width: 560px) {
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sample-thumb {
    height: 104px;
  }

  .sample-body {
    padding: 12px;
  }

  .sample-body h3 {
    font-size: 14px;
    line-height: 1.35;
  }

  .sample-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.55;
  }

  .sample-link {
    font-size: 11px;
  }

  .company-hero {
    padding: 96px 0 44px;
  }

  /* 2026-07-29: Keep plan-detail calls to action comfortably tappable on phones. */
  .plan-detail-hero {
    padding: 96px 0 50px;
  }

  .plan-detail-hero h1 {
    font-size: 33px;
  }

  .plan-detail-actions {
    width: 100%;
  }

  .plan-detail-actions .btn {
    width: 100%;
  }

  .plan-feature-card {
    padding: 22px;
  }

  .plan-detail-cta {
    padding: 64px 0;
  }

  .company-hero-copy {
    padding: 0;
  }

  .company-president-message {
    padding: 18px;
  }

  .company-president-name {
    font-size: 20px;
  }

  .company-president-heading {
    font-size: 12px;
  }

  .company-president-greeting {
    font-size: 12px;
    line-height: 1.65;
  }

  .company-hero-points span {
    justify-content: center;
  }
}

/* ================================
   PLAN PRICE EMPHASIS
   ================================ */
.plan-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.plan-price-item {
  min-width: 0;
  padding: 14px 14px 16px;
  border: 1px solid rgba(103, 80, 216, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.plan-price-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.plan-price-item strong {
  display: block;
  color: var(--violet);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.plan-price-item strong small {
  margin-left: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.plan-price-item:first-child {
  border-color: rgba(103, 80, 216, 0.32);
}

.plan-price-item:nth-child(2) {
  border-color: rgba(30, 139, 255, 0.24);
}

.plan-price-item:nth-child(2) strong {
  color: var(--blue);
}

.plan-head>.price {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.3;
}

.plan-head>.price small {
  font-size: 12px;
}

@media (max-width: 560px) {
  .plan-prices {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .plan-price-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
  }

  .plan-price-item span {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .plan-price-item strong {
    font-size: 28px;
    text-align: right;
  }

  .plan-head>.price {
    font-size: 16px;
  }
}

/* =========================================================
   HERO
========================================================= */

/* ---------------------------------------------------------
   HERO BASE
--------------------------------------------------------- */
/* =========================================================
   HERO BASE
========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 112px 0 56px;
  display: flex;
  align-items: center;
  color: #fff;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 217, 255, .18),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(140, 0, 255, .18),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #071426 0%,
      #0b1f3a 45%,
      #101b38 100%
    );
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-logo-area {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 500px;
}

.hero-logo {
  position: relative;
  z-index: 3;

  width: min(233px, 100%);
  height: auto;

  animation: logoFloat 5s ease-in-out infinite;

  filter:
    drop-shadow(0 0 30px rgba(0, 212, 255, .25))
    drop-shadow(0 0 80px rgba(162, 0, 255, .18));
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 212, 255, .35),
      rgba(162, 0, 255, .12),
      transparent 75%
    );

  filter: blur(40px);

  animation: glowPulse 5s ease-in-out infinite;
}

.hero-node {
  position: absolute;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #00D4FF;

  box-shadow:
    0 0 12px rgba(0, 212, 255, .8),
    0 0 30px rgba(0, 212, 255, .45);

  animation: nodePulse 3s ease-in-out infinite;
}









.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 112px 0 56px;
  display: flex;
  align-items: center;

  color: #fff;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 217, 255, .18),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(140, 0, 255, .18),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #071426 0%,
      #0b1f3a 45%,
      #101b38 100%
    );
}


/* ---------------------------------------------------------
   HERO BACKGROUND
--------------------------------------------------------- */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  overflow: hidden;

  pointer-events: none;
}


/* 背景の薄いライン */

.grid-line {
  position: absolute;

  display: block;

  width: 1px;
  height: 140%;

  top: -20%;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0, 212, 255, .10),
      transparent
    );

  opacity: .45;

  transform: rotate(25deg);

  animation: gridLineMove 18s linear infinite;
}

.grid1 {
  left: 18%;
}

.grid2 {
  left: 48%;
  animation-delay: -6s;
}

.grid3 {
  left: 78%;
  animation-delay: -12s;
}


/* ---------------------------------------------------------
   PARTICLES
--------------------------------------------------------- */

.particle {
  position: absolute;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .75);

  box-shadow:
    0 0 8px rgba(0, 212, 255, .75),
    0 0 18px rgba(0, 212, 255, .35);

  animation: particleFloat 7s ease-in-out infinite;
}

.p1 {
  top: 18%;
  left: 14%;
}

.p2 {
  top: 32%;
  left: 62%;

  animation-delay: -2s;
}

.p3 {
  top: 72%;
  left: 23%;

  animation-delay: -4s;
}

.p4 {
  top: 68%;
  left: 78%;

  animation-delay: -1s;
}

.p5 {
  top: 42%;
  left: 88%;

  animation-delay: -5s;
}


/* ---------------------------------------------------------
   MOUSE LIGHT
--------------------------------------------------------- */

.mouse-light {
  position: absolute;

  width: 420px;
  height: 420px;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 212, 255, .13) 0%,
      rgba(0, 212, 255, .06) 30%,
      transparent 70%
    );

  filter: blur(20px);

  transform:
    translate(-50%, -50%);

  opacity: .8;

  transition:
    left 1.4s cubic-bezier(.22, 1, .36, 1),
    top 1.4s cubic-bezier(.22, 1, .36, 1);

  pointer-events: none;
}


/* ---------------------------------------------------------
   HERO VISUAL
--------------------------------------------------------- */

.hero-visual {
  position: absolute;

  top: 50%;
  right: max(
    20px,
    calc((100vw - 1120px) / 2 - 180px)
  );

  z-index: 1;

  width: min(47vw, 780px);

  transform: translateY(-44%);

  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: auto;

  opacity: .08;

  filter:
    brightness(.45)
    blur(2px)
    drop-shadow(
      0 28px 56px
      rgba(30, 139, 255, .10)
    );
}


/* ---------------------------------------------------------
   HERO GRID
--------------------------------------------------------- */

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, .92fr);

  align-items: center;

  gap: clamp(
    50px,
    6vw,
    110px
  );
}


/* ---------------------------------------------------------
   HERO CONTENT
--------------------------------------------------------- */

.hero-content {
  display: flex;

  flex-direction: column;
  justify-content: center;

  max-width: 700px;
}


/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.hero .eyebrow {
  margin: 0;

  color: rgba(255, 255, 255, .72);

  font-size: 14px;

  font-weight: 800;

  letter-spacing: .16em;
}


/* ---------------------------------------------------------
   HERO TITLE
--------------------------------------------------------- */

.hero h1 {
  max-width: 800px;

  margin: 18px 0 0;

  font-size:
    clamp(
      48px,
      4.6vw,
      72px
    );

  line-height: 1.12;

  letter-spacing: -.03em;

  font-weight: 900;
}

.hero-line {
  position: relative;
  display: block;
  overflow: hidden;

  opacity: 0;
  transform: translateY(24px);

  animation: heroTitle .8s ease forwards;
}

.hero-line1 {
  animation-delay: 4s;
}

.hero-line2 {
  animation-delay: 4.8s;
}


/* ---------------------------------------------------------
   TITLE LIGHT TRAIL
--------------------------------------------------------- */

.hero-line::after {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .95),
      transparent
    );

  filter: blur(10px);

  pointer-events: none;
}

.hero-line1::after {
  animation:
    shine 1.4s ease .5s forwards;
}

.hero-line2::after {
  animation:
    shine 1.4s ease 1.2s forwards;
}


/* ---------------------------------------------------------
   HERO LEAD
--------------------------------------------------------- */











.hero-lead {
  max-width: 650px;

  margin-top: 28px;

  color: rgba(255, 255, 255, .82);

  font-size:
    clamp(
      17px,
      1.15vw,
      21px
    );

  line-height: 1.9;

  opacity: 0;

  transform:
    translateY(20px);

  animation:
    fadeUp .8s ease forwards;

  animation-delay: 5.8s;
}


/* ---------------------------------------------------------
   HERO ACTIONS
--------------------------------------------------------- */

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 42px;

  opacity: 0;

  transform:
    translateY(20px);

  animation:
    fadeUp .8s ease forwards;

  animation-delay: 6.6s;
}

.hero-actions .btn-primary {
  background:
    linear-gradient(
      135deg,
      #00d4ff,
      #1e8bff
    );

  color: #fff;

  box-shadow:
    0 12px 32px
    rgba(0, 212, 255, .25);
}

.hero-actions .btn-secondary {
  background:
    linear-gradient(
      135deg,
      #8a2be2,
      #6750d8
    );

  color: #fff;

  box-shadow:
    0 12px 32px
    rgba(138, 43, 226, .25);
}


/* ---------------------------------------------------------
   HERO LOGO AREA
--------------------------------------------------------- */

















.hero-logo-area {
  position: relative;

  display: flex;

  justify-content: center;
  align-items: center;

  min-height: 500px;

  animation:
    heroLogoAreaIn 1s ease forwards;

  animation-delay: 1.3s;

  opacity: 0;
}
.hero-logo-area {
  animation-delay: 1.3s;
}

/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.hero-logo {
  position: relative;

  z-index: 5;

  width: min(
    233px,
    100%
  );

  height: auto;

  animation:
    logoFloat 5s ease-in-out infinite;

  filter:
    drop-shadow(
      0 0 30px
      rgba(0, 212, 255, .25)
    )
    drop-shadow(
      0 0 80px
      rgba(162, 0, 255, .18)
    );
}


/* ---------------------------------------------------------
   LOGO GLOW
--------------------------------------------------------- */

.hero-glow {
  position: absolute;

  z-index: 1;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 212, 255, .35),
      rgba(162, 0, 255, .12),
      transparent 75%
    );

  filter: blur(40px);

  animation:
    glowPulse 5s ease-in-out infinite;
}


/* ---------------------------------------------------------
   RINGS
--------------------------------------------------------- */

.hero-ring {
  position: absolute;

  z-index: 2;

  border-radius: 50%;

  pointer-events: none;
}





/* ---------------------------------------------------------
   NODES
--------------------------------------------------------- */

.hero-node {
  position: absolute;

  z-index: 3;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #00d4ff;

  box-shadow:
    0 0 12px
    rgba(0, 212, 255, .85),
    0 0 30px
    rgba(0, 212, 255, .45);

  animation:
    nodePulse 3s ease-in-out infinite;
}

.node1 {
  top: 15%;
  left: 20%;
}

.node2 {
  top: 22%;
  right: 18%;

  animation-delay: 1s;
}

.node3 {
  bottom: 18%;
  left: 24%;

  animation-delay: 2s;
}

.node4 {
  bottom: 12%;
  right: 22%;

  animation-delay: 1.5s;
}


/* ---------------------------------------------------------
   ORBIT
--------------------------------------------------------- */

.orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
}

.orbit1 {
    width: 380px;
    height: 580px;
    animation: orbitRotate 15s linear infinite;
}

.orbit2 {
    width: 410px;
    height: 610px;
    animation: orbitRotateReverse 19s linear infinite;
}

/* ---------------------------------------------------------
   ORBIT DOT
--------------------------------------------------------- */

.orbit-dot {
  position: absolute;

  top: -5px;
  left: 50%;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #00d4ff;

  box-shadow:
    0 0 10px
    rgba(0, 212, 255, .95),
    0 0 28px
    rgba(0, 212, 255, .65);

  transform:
    translateX(-50%);
}

.orbit-dot-purple {
  background: #a200ff;

  box-shadow:
    0 0 10px
    rgba(162, 0, 255, .95),
    0 0 28px
    rgba(162, 0, 255, .65);
}














/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroTitle {

  from {
    opacity: 0;
    transform:
      translateY(24px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0);
  }
}


@keyframes shine {

  from {
    left: -120%;
  }

  to {
    left: 140%;
  }
}




@keyframes heroLogoAreaIn {

  from {
    opacity: 0;
    transform:
      translateY(30px)
      scale(.96);
  }

  to {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
  }
}


@keyframes logoFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-10px);
  }
}


@keyframes glowPulse {

  0%,
  100% {
    transform: scale(.92);
    opacity: .45;
  }

  50% {
    transform: scale(1.08);
    opacity: .85;
  }
}


@keyframes ringRotate {

  from {
    transform:
      rotate(0deg);
  }

  to {
    transform:
      rotate(360deg);
  }
}


@keyframes ringRotateReverse {

  from {
    transform:
      rotate(360deg);
  }

  to {
    transform:
      rotate(0deg);
  }
}


@keyframes orbitRotate {

  from {
    transform:
      rotate(0deg);
  }

  to {
    transform:
      rotate(360deg);
  }
}


@keyframes orbitRotateReverse {

  from {
    transform:
      rotate(360deg);
  }

  to {
    transform:
      rotate(0deg);
  }
}


@keyframes nodePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.8);
    opacity: 1;
  }
}


@keyframes particleFloat {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0);
    opacity: .35;
  }

  50% {
    transform:
      translate3d(0, -22px, 0);
    opacity: .9;
  }
}


@keyframes gridLineMove {

  from {
    transform:
      translateY(-3%)
      rotate(25deg);
  }

  to {
    transform:
      translateY(3%)
      rotate(25deg);
  }
}





/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes heroTitle {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}







/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 960px) {

  .hero {
    min-height: auto;

    padding:
      120px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 30px;

    text-align: center;
  }

  .hero-content {
    max-width: 900px;

    margin:
      0 auto;

    align-items: center;
  }

  .hero h1 {
    max-width: 980px;

    font-size:
      clamp(
        48px,
        7vw,
        68px
      );
  }

  .hero-lead {
    max-width: 900px;

    font-size:
      clamp(
        18px,
        2vw,
        21px
      );
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-logo-area {
    min-height: 430px;
  }

  .hero-visual {
    top: 120px;

    right:
      -18%;

    width:
      min(
        72vw,
        560px
      );

    opacity: .18;

    transform: none;
  }
}


@media (max-width: 560px) {

  .hero {
    min-height: auto;

    padding:
      92px 0 60px;
  }

  .hero-grid {
    gap: 10px;
  }

  .hero-content {
    width: 100%;
  }

  .hero .eyebrow {
    font-size: 11px;

    letter-spacing:
      .12em;
  }

  .hero h1 {
    width: 100%;

    font-size: 34px;

    line-height: 1.18;

    letter-spacing:
      -.025em;
  }

  .hero-lead {
    max-width: 100%;

    margin-top: 22px;

    font-size: 16px;

    line-height: 1.85;
  }

  .hero-actions {
    width: 100%;

    margin-top: 30px;

    flex-direction: column;

    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;

    min-height: 52px;
  }

  .hero-logo-area {
    min-height: 350px;

    margin-top: 5px;
  }

  .hero-logo {
    width: min(
      200px,
      62vw
    );
  }

  .ring1 {
    width: 300px;
    height: 300px;
  }

  .ring2 {
    width: 350px;
    height: 350px;
  }

  
  .hero-glow {
    width: 200px;
    height: 200px;
  }

  .hero-visual {
    top: 112px;

    right: -44%;

    width:
      min(
        128vw,
        520px
      );

    opacity: .12;

    transform: none;
  }

  .mouse-light {
    width: 300px;
    height: 300px;
  }

  .grid-line {
    opacity: .25;
  }

  .particle {
    width: 3px;
    height: 3px;
  }
}


/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .hero *,
  .hero::before {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

}



<section class="hero">…</section>flex

/*=========================
  HERO RINGS
=========================*/


.ring1 {

  width: 360px;
  height: 360px;
  filter:
    drop-shadow(0 0 1px rgba(0, 212, 255, .5)) drop-shadow(0 0 25px rgba(0, 212, 255, .35));

  border-radius: 50%;

  background:
    conic-gradient(from 0deg,
      transparent 0deg,
      transparent 290deg,
      rgba(0, 212, 255, 1) 320deg,
      rgba(0, 212, 255, .35) 360deg);

  -webkit-mask:
    radial-gradient(farthest-side,
      transparent calc(100% - 3px),
      #000 calc(100% - 2px));

  mask:
    radial-gradient(farthest-side,
      transparent calc(100% - 3px),
      #000 calc(100% - 2px));

  animation: ringRotate 10s linear infinite;
}

.ring2 {

  width: 430px;
  height: 430px;

  border-radius: 50%;
  filter:
    drop-shadow(0 0 10px rgba(162, 0, 255, .45)) drop-shadow(0 0 25px rgba(162, 0, 255, .25));

  background:
    conic-gradient(from 180deg,
      transparent 0deg,
      transparent 310deg,
      rgba(162, 0, 255, 1) 330deg,
      rgba(162, 0, 255, .35) 360deg);

  -webkit-mask:
    radial-gradient(farthest-side,
      transparent calc(100% - 3px),
      #000 calc(100% - .7px));

  mask:
    radial-gradient(farthest-side,
      transparent calc(100% - 3px),
      #000 calc(100% - .7px));

  animation: ringRotateReverse 16s linear infinite;
}



@keyframes ringRotateReverse {

  from {

    transform: rotate(360deg);

  }

  to {

    transform: rotate(0deg);

  }

}


  50% {

    transform: scale(1.08);

    opacity: .85;

  }

  100% {

    transform: scale(.92);

    opacity: .45;

  }



.btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg,
      transparent 25%,
      rgba(255, 255, 255, .35) 50%,
      transparent 75%);

  transform: translateX(-140%);
  transition: transform .8s ease;
}

.btn:hover::before {
  transform: translateX(140%);
}

/*=========================
  HERO NODES
=========================*/


.node1 {

  top: 15%;
  left: 20%;

}

.node2 {

  top: 22%;
  right: 18%;

  animation-delay: 1s;

}

.node3 {

  bottom: 18%;
  left: 24%;

  animation-delay: 2s;

}

.node4 {

  bottom: 12%;
  right: 22%;

  animation-delay: 1.5s;

}



/*=========================
  ORBIT
=========================*/

.orbit-dot{

    position:absolute;

    top:0;

    width:12px;
    height:12px;

    border-radius:50%;

    background:#00D4FF;

    box-shadow:

        0 0 10px #00D4FF,

        0 0 25px rgba(0,212,255,.65),

        0 0 50px rgba(0,212,255,.35);
         transform:translateZ(0);

}
.orbit-dot::after{
  opacity:.7;

  transition:opacity .3s ease;

  animation:trailPulse 2s ease-in-out infinite;

    content:"";

    position:absolute;

    left:-36px;

    top:50%;

    transform:translateY(-50%);

    width:33px;

    height:3px;

    border-radius:999px;

    background:

        linear-gradient(

            90deg,

            rgba(0,212,255,0),

            rgba(0,212,255,.9)

        );

}

.orbit-dot-purple::after{

    left:auto;
    right:-36px;

    background:
        linear-gradient(
            90deg,
            rgba(162,0,255,.9),
            rgba(162,0,255,0)
        );

}

.orbit-dot-purple{

    background:#A200FF;

    box-shadow:
        0 0 12px #A200FF,
        0 0 30px rgba(162,0,255,.55);

}




.grid-line{

    position:absolute;

    width:120%;

    height:1px;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.08),

            transparent

        );

}

.grid1{

    top:22%;

    left:-10%;

    transform:rotate(-8deg);

}

.grid2{

    top:52%;

    left:-8%;

    transform:rotate(4deg);

}

.grid3{

    top:76%;

    left:-12%;

    transform:rotate(-6deg);

}


.particle{

    position:absolute;

    width:4px;

    height:4px;

    border-radius:50%;

    background:#00D4FF;

    opacity:.45;

    box-shadow:

        0 0 12px #00D4FF;

    animation:

        floatParticle 12s ease-in-out infinite;

}


.p1{top:18%;left:12%;animation-delay:0s;}
.p2{top:65%;left:22%;animation-delay:2s;}
.p3{top:34%;right:20%;animation-delay:4s;}
.p4{bottom:18%;right:12%;animation-delay:6s;}
.p5{top:12%;right:8%;animation-delay:8s;}


.mouse-light{

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(0,212,255,.18) 0%,

            rgba(120,0,255,.10) 45%,

            transparent 75%

        );

    transform:

        translate(-50%,-50%);

    pointer-events:none;

    filter:blur(20px);

    transition:

        left .15s ease,

        top .15s ease;

}




@keyframes floatParticle{

    0%,100%{

        transform:translateY(0);

        opacity:.25;

    }

    50%{

        transform:translateY(-14px);

        opacity:.8;

    }

}

@keyframes trailPulse{

    0%,100%{

        opacity:.35;

    }

    50%{

        opacity:1;

    }

}

@keyframes orbitRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes orbitRotateReverse{

    from{

        transform:rotate(360deg);

    }

    to{

        transform:rotate(0deg);

    }

}


.reveal {
  opacity: 0;
  transform: translateY(35px);

  animation:
    fadeUp .9s ease forwards;
}






















