@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Rajdhani:wght@500;600;700&family=Noto+Sans+JP:wght@500;700;900&display=swap");

:root {
  --bg: #080a0e;
  --bg-2: #0e131a;
  --panel: rgba(17, 22, 31, 0.86);
  --panel-solid: #111722;
  --text: #f7f3e8;
  --muted: #aeb6c2;
  --line: rgba(222, 176, 78, 0.34);
  --gold: #d8a43b;
  --gold-2: #ffb000;
  --cyan: #38d8ff;
  --orange: #ff8a00;
  --line-green: #06c755;
  --black: #05070a;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Rajdhani", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  background:
    radial-gradient(circle at 8% 6%, rgba(56, 216, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(255, 176, 0, 0.16), transparent 27%),
    linear-gradient(180deg, #080a0e 0%, #0e131a 44%, #080a0e 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(216, 164, 59, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 216, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  animation: gridDrift 18s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.055;
  background: url("assets/bk-circuit-pattern.png") center top / 760px repeat;
  content: "";
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Rajdhani", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav a,
.button,
.work-card,
.fixed-cta {
  text-decoration: none;
}

.brand img {
  width: 184px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 28px);
  color: var(--muted);
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.42);
  transition: opacity 180ms ease, transform 180ms ease;
  content: "";
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 28px clamp(16px, 4vw, 54px);
  border: 1px solid rgba(216, 164, 59, 0.22);
  pointer-events: none;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(56, 216, 255, 0.18) 48%, rgba(255, 176, 0, 0.22) 50%, transparent 62%),
    linear-gradient(90deg, transparent 0 8%, rgba(56, 216, 255, 0.08) 8% 8.2%, transparent 8.2% 100%);
  background-size: 180% 100%, 260px 100%;
  opacity: 0.42;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroCircuitSweep 6.8s ease-in-out infinite;
  content: "";
}

.hero-copy-block,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  max-width: 980px;
  font-size: clamp(58px, 9.8vw, 150px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(56, 216, 255, 0.16);
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.08em 0.14em;
}

.hero-title span {
  display: inline-block;
}

.motion-ready .hero-title span {
  opacity: 0;
  animation: titleBoot 700ms cubic-bezier(0.2, 0.84, 0.26, 1) forwards;
}

.motion-ready .hero-title span:nth-child(2) {
  animation-delay: 80ms;
}

.motion-ready .hero-title span:nth-child(3) {
  animation-delay: 160ms;
}

.motion-ready .hero-title span:nth-child(4) {
  animation-delay: 240ms;
}

.motion-ready .hero-title span:nth-child(5) {
  animation-delay: 320ms;
}

.title-web {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(56, 216, 255, 0.45);
}

.title-line {
  color: var(--line-green);
  text-shadow: 0 0 22px rgba(6, 199, 85, 0.38);
}

.title-dx {
  color: var(--gold-2);
  text-shadow: 0 0 24px rgba(255, 176, 0, 0.42);
}

.title-cross {
  color: var(--text);
  font-size: 0.74em;
  text-shadow: 0 0 18px rgba(247, 241, 225, 0.3);
}

.title-cross-alt {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(216, 164, 59, 0.42);
}

.lead {
  margin-top: 18px;
  color: var(--gold-2);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
}

.hero-text {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(216, 164, 59, 0.54);
  border-radius: 4px;
  color: var(--text);
  font-family: "Rajdhani", "Noto Sans JP", sans-serif;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::before,
.fixed-cta::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 28%, rgba(255, 255, 255, 0.42) 46%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
  content: "";
}

.button:hover {
  border-color: var(--cyan);
  background: rgba(56, 216, 255, 0.12);
  box-shadow: 0 0 30px rgba(56, 216, 255, 0.2);
  transform: translateY(-2px);
}

.button:hover::before,
.fixed-cta:hover::before {
  opacity: 0.52;
  animation: buttonScan 760ms ease-out;
}

.button.primary {
  color: #fff;
  border-color: rgba(6, 199, 85, 0.9);
  background: linear-gradient(135deg, var(--line-green), #00a846);
  box-shadow: 0 0 28px rgba(6, 199, 85, 0.28);
}

.button.ghost {
  color: var(--text);
}

.button.instagram {
  border-color: rgba(214, 41, 118, 0.8);
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 55%, #962fbf 76%, #4f5bd5 100%);
}

.hero-visual {
  min-height: 520px;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  inset: 50%;
  width: min(78vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 164, 59, 0.26);
  transform: translate(-50%, -50%);
  content: "";
}

.hero-visual::before {
  border-radius: 50%;
  box-shadow:
    0 0 48px rgba(56, 216, 255, 0.14),
    inset 0 0 42px rgba(216, 164, 59, 0.1);
  animation: circuitPulse 4.8s ease-in-out infinite;
}

.hero-visual::after {
  width: min(58vw, 400px);
  rotate: 45deg;
  border-color: rgba(56, 216, 255, 0.18);
  animation: frameSpin 18s linear infinite;
}

.signal-card {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 14, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: signalFloat 4.2s ease-in-out infinite;
}

.signal-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.signal-card span,
.signal-card strong {
  display: block;
}

.signal-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.signal-card strong {
  color: var(--gold-2);
  font-size: 15px;
}

.circuit-bee {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 1;
  width: min(76%, 520px);
  opacity: 0.94;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 38px rgba(216, 164, 59, 0.34));
  animation: beeHover 5s ease-in-out infinite;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.88);
}

.quick-links div {
  padding: 20px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
  color: var(--text);
  font-weight: 850;
}

.quick-links div:last-child {
  border-right: 0;
}

.quick-links span {
  margin-right: 12px;
  color: var(--cyan);
  font-family: "Orbitron", ui-monospace, Consolas, monospace;
}

.section,
.contact,
.page-hero {
  padding: clamp(78px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.section-head,
.service-grid,
.scope-grid,
.reason-grid,
.work-card,
.voice-grid,
.about-layout,
.profile-card,
.price-grid,
.support-grid,
.reassurance-grid,
.flow-list,
.faq-list,
.price-note,
.legal-content,
.work-detail,
.contact,
.page-hero > * {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-head {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.section-head h2,
.about-layout h2,
.profile-card h2,
.contact h2,
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 64px);
}

.section-head p:not(.eyebrow),
.about-text,
.profile-card p,
.contact p,
.page-hero p {
  max-width: 780px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 650;
}

.service,
.scope,
.voice,
.price,
.faq,
.reassurance {
  background: rgba(255, 255, 255, 0.02);
}

.dark,
.profile,
.flow {
  background: rgba(0, 0, 0, 0.28);
}

.service-grid,
.scope-grid,
.voice-grid,
.price-grid,
.support-grid,
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.panel,
.reason-grid article,
.profile-card,
.work-card,
.flow-list li,
.faq-list details,
.work-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 164, 59, 0.28);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.panel::before,
.reason-grid article::before,
.profile-card::before,
.work-card::before,
.flow-list li::before,
.faq-list details::before,
.work-content::before {
  position: absolute;
  inset: 0;
  opacity: var(--card-bg-opacity, 0.12);
  background-image: var(--card-bg, url("assets/card-bg-reason-subtle-transparent.png"));
  background-position: var(--card-bg-position, center);
  background-size: var(--card-bg-size, cover);
  background-repeat: no-repeat;
  filter: blur(2.4px) saturate(0.55) contrast(0.82);
  transform: scale(1.025);
  transform-origin: center;
  pointer-events: none;
  content: "";
}

.panel::after,
.reason-grid article::after,
.profile-card::after,
.work-card::after,
.flow-list li::after,
.faq-list details::after,
.work-content::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at var(--mx, 76%) var(--my, 24%), rgba(56, 216, 255, 0.28), transparent 24%),
    linear-gradient(90deg, transparent 0 12%, rgba(56, 216, 255, 0.02) 12% 18%, rgba(56, 216, 255, 0.5) 48%, rgba(255, 176, 0, 0.42) 52%, transparent 82% 100%);
  background-size: 100% 100%, 220% 100%;
  background-position: center, 130% center;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 220ms ease, background-position 220ms ease;
  content: "";
}

.panel > *,
.reason-grid article > *,
.profile-card > *,
.work-card > *,
.flow-list li > *,
.faq-list details > *,
.work-content > * {
  position: relative;
  z-index: 1;
}

.panel:hover,
.reason-grid article:hover,
.profile-card:hover,
.work-card:hover,
.flow-list li:hover,
.faq-list details:hover,
.work-content:hover {
  border-color: rgba(56, 216, 255, 0.42);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5), 0 0 28px rgba(56, 216, 255, 0.11);
  transform: translateY(-3px);
}

.panel:hover::after,
.reason-grid article:hover::after,
.profile-card:hover::after,
.work-card:hover::after,
.flow-list li:hover::after,
.faq-list details:hover::after,
.work-content:hover::after {
  opacity: 1;
  background-position: center, -130% center;
  animation: circuitTrace 980ms ease-out;
}

.panel.is-visible::after,
.reason-grid article.is-visible::after,
.profile-card.is-visible::after,
.work-card.is-visible::after,
.flow-list li.is-visible::after,
.faq-list details.is-visible::after,
.work-content.is-visible::after {
  animation: circuitBoot 900ms ease-out 120ms both;
}

.panel {
  padding: 28px;
}

.panel h3,
.reason-grid h3,
.flow-list h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.panel p,
.reason-grid p,
.flow-list p,
.work-card p,
.work-content p,
.faq-list p,
.legal-content p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 650;
}

.card-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.card-list li::marker {
  color: var(--gold-2);
}

.panel strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: 24px;
}

.panel-number,
.reason-grid span,
.flow-list span,
.tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: "Orbitron", ui-monospace, Consolas, monospace;
  font-weight: 900;
}

.service-grid .panel,
.panel.accent,
.panel.featured {
  border-color: rgba(255, 176, 0, 0.7);
  background: linear-gradient(180deg, rgba(216, 164, 59, 0.18), rgba(17, 22, 31, 0.88));
}

.panel.featured {
  --card-bg: url("assets/card-bg-featured-transparent.png");
  --card-bg-opacity: 0.14;
}

.service-grid .panel:nth-child(1) {
  --card-bg: url("assets/card-bg-service-web-transparent.png");
  --card-bg-opacity: 0.13;
  --card-bg-position: center bottom;
}

.service-grid .panel:nth-child(2) {
  --card-bg: url("assets/card-bg-service-line-transparent.png");
  --card-bg-opacity: 0.14;
  --card-bg-position: right center;
}

.service-grid .panel:nth-child(3) {
  --card-bg: url("assets/card-bg-service-dx-transparent.png");
  --card-bg-opacity: 0.13;
  --card-bg-position: right center;
}

.reason-grid article:nth-child(1) {
  --card-bg: url("assets/card-bg-featured-transparent.png");
  --card-bg-opacity: 0.1;
}

.reason-grid article:nth-child(2) {
  --card-bg: url("assets/card-bg-reason-subtle-transparent.png");
  --card-bg-opacity: 0.09;
}

.reason-grid article:nth-child(3) {
  --card-bg: url("assets/card-bg-support-transparent.png");
  --card-bg-opacity: 0.09;
}

.reason-grid article,
.flow-list li {
  list-style: none;
  padding: 28px;
}

.works-preview {
  background: linear-gradient(180deg, rgba(216, 164, 59, 0.05), transparent);
}

.work-list {
  display: grid;
  gap: 22px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.work-list .work-card {
  width: 100%;
  margin: 0;
}

.work-card,
.work-content {
  --card-bg: url("assets/card-bg-work-transparent.png");
  --card-bg-opacity: 0.12;
  --card-bg-position: right center;
}

.work-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 18px;
  color: inherit;
}

.work-card > * {
  position: relative;
  z-index: 1;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  object-fit: cover;
}

.work-card h3,
.work-content h2 {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 48px);
}

.work-list .work-card h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.voice-grid .panel {
  --card-bg: url("assets/card-bg-voice-transparent.png");
  --card-bg-opacity: 0.1;
  --card-bg-position: center bottom;
}

.price-grid .panel {
  --card-bg: url("assets/card-bg-price-transparent.png");
  --card-bg-opacity: 0.09;
  --card-bg-position: right top;
}

.price-grid .panel:nth-child(2) {
  --card-bg: url("assets/card-bg-featured-transparent.png");
  --card-bg-opacity: 0.14;
}

.price-grid .panel:nth-child(5),
.price-grid .panel:nth-child(6) {
  --card-bg: url("assets/card-bg-service-line-transparent.png");
  --card-bg-opacity: 0.11;
}

.price-note {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 650;
}

.work-category {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voice-grid span {
  display: block;
  margin-top: 20px;
  color: var(--gold-2);
  font-weight: 900;
}

.about-layout,
.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-layout {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.profile-card {
  padding: clamp(28px, 5vw, 56px);
  --card-bg: url("assets/card-bg-featured-transparent.png");
  --card-bg-opacity: 0.08;
}

.profile-card > * {
  position: relative;
  z-index: 1;
}

.profile-card img {
  width: min(78%, 300px);
  margin-inline: auto;
  opacity: 0.88;
  filter: drop-shadow(0 0 28px rgba(216, 164, 59, 0.22));
}

.profile-card h3 {
  margin-top: 18px;
  color: var(--gold-2);
  font-size: clamp(22px, 3vw, 34px);
}

.support {
  background: linear-gradient(180deg, transparent, rgba(56, 216, 255, 0.045));
}

.flow-list {
  padding: 0;
  margin-block: 0;
}

.flow-list li {
  border: 1px solid rgba(56, 216, 255, 0.28);
  border-radius: 14px;
  background: rgba(56, 216, 255, 0.055);
}

.flow-list li:nth-child(1) {
  --card-bg: url("assets/card-bg-featured-transparent.png");
  --card-bg-opacity: 0.09;
}

.flow-list li:nth-child(2) {
  --card-bg: url("assets/card-bg-reason-subtle-transparent.png");
  --card-bg-opacity: 0.08;
}

.flow-list li:nth-child(3) {
  --card-bg: url("assets/card-bg-service-web-transparent.png");
  --card-bg-opacity: 0.1;
  --card-bg-position: center bottom;
}

.flow-list li:nth-child(4) {
  --card-bg: url("assets/card-bg-support-transparent.png");
  --card-bg-opacity: 0.09;
}

.support-grid .panel {
  --card-bg: url("assets/card-bg-support-transparent.png");
  --card-bg-opacity: 0.1;
}

.support-grid .panel:nth-child(2) {
  --card-bg: url("assets/card-bg-featured-transparent.png");
  --card-bg-opacity: 0.14;
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-block {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(216, 164, 59, 0.28);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.legal-block h3 {
  margin-top: 24px;
  color: var(--gold-2);
  font-size: 22px;
}

.legal-list {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.legal-table {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.legal-table dt {
  color: var(--cyan);
  font-weight: 900;
}

.legal-table dd {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 24px;
  --card-bg: url("assets/card-bg-faq-transparent.png");
  --card-bg-opacity: 0.07;
  --card-bg-position: right center;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  padding: 0 0 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(70px, 8vw, 110px);
  border: 1px solid rgba(255, 176, 0, 0.5);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(216, 164, 59, 0.18), rgba(56, 216, 255, 0.08)),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 52px 20px 82px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  background: #05070a;
}

.site-footer img {
  width: 190px;
}

.fixed-cta {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(6, 199, 85, 0.9);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--line-green), #00a846);
  box-shadow: 0 0 34px rgba(6, 199, 85, 0.28);
  font-weight: 900;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fixed-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(6, 199, 85, 0.38);
}

.click-spark {
  position: absolute;
  left: var(--spark-x);
  top: var(--spark-y);
  z-index: 2;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(56, 216, 255, 0.42) 34%, transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  animation: clickSpark 620ms ease-out forwards;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(216, 164, 59, 0.16), rgba(56, 216, 255, 0.08)),
    rgba(8, 10, 14, 0.7);
}

.work-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  max-width: 980px;
}

.works-page .work-detail {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: min(980px, 100%) !important;
}

.work-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.work-content {
  position: relative;
  padding: 30px;
}

.works-page .work-content {
  position: relative !important;
  top: auto !important;
}

.work-content > * {
  position: relative;
  z-index: 1;
}

.work-meta {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.work-meta div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.work-meta dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-meta dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.work-meta a {
  color: var(--gold-2);
  font-weight: 900;
}

.motion-ready .section-head,
.motion-ready .panel,
.motion-ready .reason-grid article,
.motion-ready .work-card,
.motion-ready .voice-grid .panel,
.motion-ready .profile-card,
.motion-ready .flow-list li,
.motion-ready .faq-list details,
.motion-ready .contact,
.motion-ready .page-hero,
.motion-ready .work-detail {
  opacity: 0;
  transform: translateY(22px);
}

.motion-ready .section-head.is-visible,
.motion-ready .panel.is-visible,
.motion-ready .reason-grid article.is-visible,
.motion-ready .work-card.is-visible,
.motion-ready .voice-grid .panel.is-visible,
.motion-ready .profile-card.is-visible,
.motion-ready .flow-list li.is-visible,
.motion-ready .faq-list details.is-visible,
.motion-ready .contact.is-visible,
.motion-ready .page-hero.is-visible,
.motion-ready .work-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.84, 0.26, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .panel.is-visible:hover,
.motion-ready .reason-grid article.is-visible:hover,
.motion-ready .profile-card.is-visible:hover,
.motion-ready .work-card.is-visible:hover,
.motion-ready .flow-list li.is-visible:hover,
.motion-ready .faq-list details.is-visible:hover {
  transform: translateY(-3px);
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 42px 42px, 42px 42px;
  }
}

@keyframes heroCircuitSweep {
  0%,
  42% {
    background-position: 150% center, 0 0;
    opacity: 0.2;
  }

  58% {
    opacity: 0.56;
  }

  100% {
    background-position: -160% center, 260px 0;
    opacity: 0.24;
  }
}

@keyframes titleBoot {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(18px) skewX(-8deg);
  }

  68% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-2px) skewX(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes buttonScan {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes circuitPulse {
  0%,
  100% {
    box-shadow:
      0 0 40px rgba(56, 216, 255, 0.12),
      inset 0 0 36px rgba(216, 164, 59, 0.08);
  }

  50% {
    box-shadow:
      0 0 70px rgba(56, 216, 255, 0.2),
      inset 0 0 56px rgba(216, 164, 59, 0.16);
  }
}

@keyframes frameSpin {
  to {
    rotate: 405deg;
  }
}

@keyframes signalFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes beeHover {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px)) scale(1.018);
  }
}

@keyframes circuitTrace {
  from {
    background-position: center, 130% center;
  }

  to {
    background-position: center, -130% center;
  }
}

@keyframes circuitBoot {
  0% {
    opacity: 0;
    background-position: center, 125% center;
  }

  35% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    background-position: center, -130% center;
  }
}

@keyframes clickSpark {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .section-head,
  .motion-ready .panel,
  .motion-ready .reason-grid article,
  .motion-ready .work-card,
  .motion-ready .voice-grid .panel,
  .motion-ready .profile-card,
  .motion-ready .flow-list li,
  .motion-ready .faq-list details,
  .motion-ready .contact,
  .motion-ready .page-hero,
  .motion-ready .work-detail {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .service-grid,
  .scope-grid,
  .voice-grid,
  .price-grid,
  .support-grid,
  .reassurance-grid,
  .reason-grid,
  .flow-list,
  .about-layout,
  .profile-card,
  .work-card,
  .contact,
  .work-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-block: clamp(56px, 9vw, 92px);
  }

  .hero-visual {
    display: none;
  }

  .work-content {
    position: static;
  }

  .legal-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 150px;
    height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 14, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 92px);
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .quick-links div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    width: 100%;
  }

  .fixed-cta {
    left: 14px;
    right: 14px;
  }
}
