*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #0a0804;
  color: #c9a84c;
  font-family: "Noto Serif TC", serif;
  overflow-x: hidden;
  cursor: none;
}

button,
a,
summary {
  cursor: none;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

::-moz-selection {
  background: rgba(201, 168, 76, 0.28);
  color: #f5e4a8;
}

::selection {
  background: rgba(201, 168, 76, 0.28);
  color: #f5e4a8;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

main,
footer,
nav,
.floating-line {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  z-index: 2;
  padding: 150px 0;
}

.section-inner {
  width: min(1200px, 100% - 120px);
  margin: 0 auto;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 90px;
  text-align: center;
}

.section-eyebrow,
.title-label {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(201, 168, 76, 0.45);
  text-transform: uppercase;
}

.title-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.title-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #c9a84c;
}

.section-title,
.title-heading {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.07em;
  background: linear-gradient(135deg, #f5e4a8, #c9a84c 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 54px);
}

.title-heading {
  margin-bottom: 30px;
  font-size: clamp(30px, 4vw, 50px);
}

.section-desc {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(245, 228, 168, 0.58);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.08em;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 36px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: 0.3s ease;
}

.btn-primary {
  color: #0a0804;
  background: linear-gradient(135deg, #c9a84c, #8b6914);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f5e4a8, #c9a84c);
  box-shadow: 0 10px 42px rgba(201, 168, 76, 0.32);
}

.btn-ghost {
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.38);
  background: transparent;
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #e8c96a;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.text-link span {
  transition: transform 0.3s ease;
}
.text-link:hover span {
  transform: translateX(6px);
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease var(--delay, 0s), transform 0.9s ease var(--delay, 0s);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-55px);
}

.reveal-right {
  transform: translateX(55px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Intro cover */
.cover {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  pointer-events: none;
}
.cover span {
  flex: 1;
  background: #100e08;
  box-shadow: inset 18px 0 28px -24px rgba(139, 105, 20, 0.15);
  transform-origin: top;
  animation: coverOpen 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.cover span:nth-child(2) {
  animation-delay: 0.06s;
}
.cover span:nth-child(3) {
  animation-delay: 0.12s;
}
.cover span:nth-child(4) {
  animation-delay: 0.18s;
}
.cover span:nth-child(5) {
  animation-delay: 0.24s;
}

@keyframes coverOpen {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
/* Cursor */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

#cursor-dot,
#cursor-ring {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  transition: width 0.2s, height 0.2s;
}

#cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* Floating LINE */
.floating-line {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 36px;
  color: #fff;
  background: #39cd00;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}
.floating-line__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}
.floating-line__icon svg {
  width: 100%;
  height: 100%;
}
.floating-line__label {
  max-width: 0;
  padding-right: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: 0.35s ease;
}
.floating-line:hover .floating-line__label {
  max-width: 100px;
  padding-right: 20px;
  opacity: 1;
}

/* Navigation */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  transition: 0.4s ease;
}
#nav.scrolled {
  padding: 15px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(10, 8, 4, 0.92);
  backdrop-filter: blur(18px);
}

.nav-logo {
  position: relative;
  z-index: 102;
}
.nav-logo img {
  width: 200px;
  height: auto;
}

.nav-menu,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  gap: 42px;
  transform: translate(-50%, -50%);
}

.nav-link {
  position: relative;
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: #c9a84c;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover {
  color: #c9a84c;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 26px;
  color: #0a0804;
  background: linear-gradient(135deg, #c9a84c, #8b6914);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #f5e4a8, #c9a84c);
}

.nav-toggle {
  position: relative;
  z-index: 103;
  display: none;
  width: 32px;
  padding: 4px;
  border: 0;
  background: transparent;
}
.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0 6px auto;
  background: #e8c96a;
  transition: 0.35s ease;
}
.nav-toggle span:nth-child(1) {
  width: 28px;
}
.nav-toggle span:nth-child(2) {
  width: 18px;
}
.nav-toggle span:nth-child(3) {
  width: 24px;
}
.nav-toggle.active span:nth-child(1) {
  width: 28px;
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.nav-toggle.active span:nth-child(3) {
  width: 28px;
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.seo-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0a0804;
}

.hero-bg,
.grid-lines,
.ring-container {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: radial-gradient(circle at 75% 45%, rgba(201, 168, 76, 0.12), transparent 26%), radial-gradient(ellipse 80% 72% at 50% 42%, #2a2010 0%, #100e08 50%, transparent 100%);
}

.grid-lines {
  overflow: hidden;
}
.grid-lines::before {
  content: "";
  position: absolute;
  inset: -80px;
  background-image: linear-gradient(rgba(201, 168, 76, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 22s linear infinite;
}

@keyframes gridShift {
  to {
    transform: translate(80px, 80px);
  }
}
.ring-container {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(28%);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  animation: orbitSpin linear infinite;
}
.orbit-ring:nth-child(1) {
  width: 500px;
  height: 500px;
  animation-duration: 30s;
}
.orbit-ring:nth-child(2) {
  width: 720px;
  height: 720px;
  animation-duration: 44s;
  animation-direction: reverse;
}
.orbit-ring:nth-child(3) {
  width: 980px;
  height: 980px;
  animation-duration: 60s;
}
.orbit-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8c96a;
  box-shadow: 0 0 12px #e8c96a, 0 0 26px #c9a84c;
  transform: translate(-50%, -50%);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}
.hero-shell {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  gap: 70px;
  align-items: center;
  width: min(1200px, 100% - 120px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 130px 0 100px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(201, 168, 76, 0.4);
  font-size: 11px;
  letter-spacing: 0.13em;
}
.breadcrumb a {
  color: rgba(201, 168, 76, 0.55);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #c9a84c;
}

.hero-copy .hero-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: rgba(201, 168, 76, 0.7);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 720px;
  color: #f5e4a8;
  font-size: clamp(44px, 5.8vw, 50px);
  font-weight: 900;
  line-height: 1.23;
  letter-spacing: 0.06em;
}
.hero-copy h1 span {
  background: linear-gradient(135deg, #f5e4a8, #c9a84c 55%, #8b6914);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 690px;
  margin-top: 30px;
  color: rgba(245, 228, 168, 0.65);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.07em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-points span {
  padding: 7px 12px;
  color: rgba(245, 228, 168, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(201, 168, 76, 0.035);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-cube-stage {
  position: absolute;
  top: 18px;
  left: 25px;
  z-index: 4;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateX(60deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}

.seo-cube {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5e4a8;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 16px;
  background: #1a1710;
  font-family: "Bebas Neue", sans-serif;
  font-size: 66px;
  box-shadow: -1px 1px 0 #8b6914, -2px 2px 0 #8b6914, -3px 3px 0 #8b6914, -4px 4px 0 #8b6914, -5px 5px 0 #8b6914, -6px 6px 0 #8b6914, -7px 7px 0 #8b6914, -8px 8px 0 #8b6914, -30px 30px 45px rgba(0, 0, 0, 0.55);
  animation: cubeFloat 5s ease-in-out infinite;
}

@keyframes cubeFloat {
  0%, 100% {
    transform: translateZ(0);
  }
  50% {
    transform: translateZ(22px);
  }
}
.search-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.07), transparent 55%), rgba(16, 14, 8, 0.88);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}
.search-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(245, 228, 168, 0.05), transparent 70%);
  transform: translateX(-100%);
  animation: panelShine 6s ease-in-out infinite;
}

@keyframes panelShine {
  0%, 55% {
    transform: translateX(-100%);
  }
  80%, 100% {
    transform: translateX(100%);
  }
}
.search-panel__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.11);
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a84c;
  box-shadow: 0 0 10px #c9a84c;
}

.search-live {
  margin-left: auto;
  color: #e8c96a;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  padding: 13px 15px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(201, 168, 76, 0.04);
  color: rgba(245, 228, 168, 0.46);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.search-field svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #c9a84c;
  stroke-width: 1.5;
}

.growth-chart {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.chart-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(rgba(201, 168, 76, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.08) 1px, transparent 1px);
  background-size: 25% 25%;
}

.growth-chart svg {
  position: absolute;
  inset: 18px 0 12px;
  width: 100%;
  height: calc(100% - 30px);
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: #e8c96a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  filter: drop-shadow(0 0 9px rgba(201, 168, 76, 0.75));
  animation: drawChart 2.8s 0.9s ease forwards;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}
.chart-label {
  position: absolute;
  bottom: 12px;
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.chart-label--start {
  left: 8px;
}
.chart-label--end {
  right: 8px;
  color: #e8c96a;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: rgba(201, 168, 76, 0.1);
}
.metric-row > div {
  padding: 14px 10px;
  background: #100e08;
  text-align: center;
}

.metric-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-row strong {
  color: #e8c96a;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: 0.35em;
  text-decoration: none;
  transform: translateX(-50%);
}
.scroll-indicator i {
  width: 1px;
  height: 42px;
  background: linear-gradient(#c9a84c, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.75);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
/* Marquee */
.marquee-wrap {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 19px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(201, 168, 76, 0.06);
}

.marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 27s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 0 23px;
  color: rgba(201, 168, 76, 0.7);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9a84c;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
/* Overview */
.section-overview {
  background: linear-gradient(180deg, #0a0804, #1a1710 50%, #0a0804);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.overview-copy > p {
  margin-bottom: 18px;
  color: rgba(245, 228, 168, 0.58);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.07em;
}

.overview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.problem-card {
  position: relative;
  min-height: 240px;
  padding: 35px 30px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.025);
  transition: 0.4s ease;
}
.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.09), transparent 60%);
  transition: opacity 0.4s ease;
}
.problem-card:hover {
  z-index: 2;
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-5px);
}
.problem-card:hover::before {
  opacity: 1;
}
.problem-card__num {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 28px;
  color: rgba(201, 168, 76, 0.13);
  font-family: "Bebas Neue", sans-serif;
  font-size: 54px;
  line-height: 1;
}
.problem-card h3,
.problem-card p {
  position: relative;
  z-index: 1;
}
.problem-card h3 {
  margin-bottom: 13px;
  color: #e8c96a;
  font-size: 17px;
  letter-spacing: 0.08em;
}
.problem-card p {
  color: rgba(245, 228, 168, 0.5);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* Services */
.section-services {
  background: #100e08;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  min-height: 455px;
  padding: 44px 34px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.025);
  transition: 0.4s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.09), transparent 58%);
  transition: opacity 0.4s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  z-index: 2;
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card > * {
  position: relative;
  z-index: 1;
}

.service-num {
  display: block;
  margin-bottom: 20px;
  color: rgba(201, 168, 76, 0.11);
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  line-height: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #c9a84c;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 8px;
  color: #e8c96a;
  font-size: 19px;
  letter-spacing: 0.08em;
}

.service-en {
  display: block;
  margin-bottom: 20px;
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.service-card > p {
  min-height: 78px;
  color: rgba(245, 228, 168, 0.5);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.service-card ul {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  list-style: none;
}
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(245, 228, 168, 0.46);
  font-size: 12px;
  line-height: 1.6;
}
.service-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  margin-top: 7px;
  border-radius: 50%;
  background: #c9a84c;
}

/* Deliverables */
.section-deliverables {
  overflow: hidden;
  background: linear-gradient(180deg, #0a0804, #1a1710, #0a0804);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: center;
}

.deliverables-visual {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar {
  position: relative;
  width: min(460px, 86vw);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.09), transparent 65%), rgba(201, 168, 76, 0.02);
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.06);
}

.radar-ring,
.radar-cross,
.radar-core,
.radar-point,
.radar-scan {
  position: absolute;
}

.radar-ring {
  inset: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.radar-ring--1 {
  width: 30%;
  height: 30%;
}
.radar-ring--2 {
  width: 60%;
  height: 60%;
}
.radar-ring--3 {
  width: 88%;
  height: 88%;
}

.radar-cross--x {
  top: 50%;
  left: 6%;
  width: 88%;
  height: 1px;
  background: rgba(201, 168, 76, 0.12);
}
.radar-cross--y {
  top: 6%;
  left: 50%;
  width: 1px;
  height: 88%;
  background: rgba(201, 168, 76, 0.12);
}

.radar-scan {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
  animation: radarSweep 5s linear infinite;
}
.radar-scan::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 90deg at 50% 50%, rgba(201, 168, 76, 0.3) 0deg, rgba(201, 168, 76, 0.15) 18deg, rgba(201, 168, 76, 0.04) 42deg, transparent 58deg, transparent 360deg);
  -webkit-mask: radial-gradient(circle at center, transparent 0 48px, #000 50px);
  mask: radial-gradient(circle at center, transparent 0 48px, #000 50px);
}
.radar-scan::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44%;
  height: 1px;
  transform: translateY(-50%);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.95), rgba(201, 168, 76, 0.35) 55%, transparent);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.45);
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.radar-core {
  inset: 50% auto auto 50%;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5e4a8;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  background: #100e08;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}

.radar-point {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8c96a;
  box-shadow: 0 0 12px #c9a84c;
  animation: radarBlink 2s ease-in-out infinite;
}
.radar-point--1 {
  top: 24%;
  left: 66%;
}
.radar-point--2 {
  top: 63%;
  left: 24%;
  animation-delay: 0.6s;
}
.radar-point--3 {
  top: 76%;
  left: 70%;
  animation-delay: 1.2s;
}

@keyframes radarBlink {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}
.deliverables-intro {
  margin-bottom: 20px;
  color: rgba(245, 228, 168, 0.56);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.07em;
}

.deliverable-list article {
  display: flex;
  gap: 27px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: 0.3s ease;
}
.deliverable-list article:hover {
  padding-left: 10px;
  border-color: rgba(201, 168, 76, 0.3);
}
.deliverable-list article > span {
  flex: 0 0 auto;
  color: rgba(201, 168, 76, 0.22);
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  line-height: 1;
}
.deliverable-list h3 {
  margin-bottom: 8px;
  color: #e8c96a;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.deliverable-list p {
  color: rgba(245, 228, 168, 0.48);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

/* Process */
.section-process {
  background: #100e08;
}

.process-list {
  max-width: 980px;
  margin: 0 auto;
  list-style: none;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 50px 1fr;
  min-height: 160px;
}

.process-index {
  padding-top: 4px;
  color: rgba(201, 168, 76, 0.18);
  font-family: "Bebas Neue", sans-serif;
  font-size: 54px;
  line-height: 1;
  transition: color 0.3s ease;
}

.process-line {
  position: relative;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  bottom: 0;
  width: 1px;
  background: linear-gradient(#c9a84c, rgba(201, 168, 76, 0.08));
}
.process-line::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid #c9a84c;
  border-radius: 50%;
  background: #100e08;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.35);
  transform: translateX(-50%);
}

.process-item:last-child .process-line::before {
  display: none;
}

.process-content {
  padding: 0 0 48px 28px;
}

.process-en {
  display: block;
  margin-bottom: 10px;
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.32em;
}

.process-content h3 {
  margin-bottom: 10px;
  color: #e8c96a;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.process-content p {
  color: rgba(245, 228, 168, 0.5);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.process-item:hover .process-index {
  color: #c9a84c;
}

/* Fit */
.section-fit {
  background: #0a0804;
}

.fit-shell {
  position: relative;
  padding: 70px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.11), transparent 45%), rgba(201, 168, 76, 0.025);
}
.fit-shell::before, .fit-shell::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
}
.fit-shell::before {
  top: 18px;
  left: 18px;
  border-top: 2px solid #c9a84c;
  border-left: 2px solid #c9a84c;
}
.fit-shell::after {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid #c9a84c;
  border-bottom: 2px solid #c9a84c;
}

.fit-heading {
  margin-bottom: 55px;
  text-align: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fit-grid article {
  padding: 26px 22px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.fit-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(201, 168, 76, 0.2);
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
}
.fit-grid h3 {
  margin-bottom: 12px;
  color: #e8c96a;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
.fit-grid p {
  color: rgba(245, 228, 168, 0.48);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

/* FAQ */
.section-faq {
  background: linear-gradient(180deg, #1a1710, #100e08);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 140px;
}
.faq-heading > p {
  color: rgba(245, 228, 168, 0.5);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.faq-list details {
  border-bottom: 1px solid rgba(201, 168, 76, 0.13);
}
.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  color: #e8c96a;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.07em;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 1px;
  background: #c9a84c;
  transition: transform 0.3s ease;
}
.faq-list summary::after {
  transform: rotate(90deg);
}
.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 46px 26px 0;
  color: rgba(245, 228, 168, 0.5);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.05em;
}

/* Contact */
.section-contact {
  padding: 145px 0 100px;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(201, 168, 76, 0.13), transparent 35%), linear-gradient(180deg, #100e08, #0a0804);
}

.contact-shell > .section-eyebrow {
  margin-bottom: 30px;
}

.contact-tagline {
  margin-bottom: 45px;
  color: rgba(245, 228, 168, 0.48);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  letter-spacing: 0.1em;
}

.contact-shell h2 {
  margin-bottom: 30px;
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #f5e4a8, #c9a84c 50%, #8b6914);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(245, 228, 168, 0.5);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.contact-shell .hero-cta {
  justify-content: center;
  margin-top: 42px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 65px;
  margin-top: 80px;
}
.contact-info > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}
.contact-info span {
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.35em;
}
.contact-info a,
.contact-info p {
  color: rgba(245, 228, 168, 0.65);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.contact-info a:hover {
  color: #c9a84c;
}

/* Footer */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.11);
  background: #0a0804;
}

.footer-brand img {
  width: 150px;
  opacity: 0.72;
}

footer > span {
  color: rgba(201, 168, 76, 0.25);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* Responsive */
@media (max-width: 1120px) {
  .section-inner,
  .hero-shell {
    width: min(100% - 80px, 1200px);
  }
  #nav,
  #nav.scrolled {
    padding-left: 40px;
    padding-right: 40px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    visibility: hidden;
    opacity: 0;
    background: rgba(16, 14, 8, 0.98);
    backdrop-filter: blur(16px);
    transform: translateY(-18px);
    transition: 0.4s ease;
  }
  .nav-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links {
    position: static;
    flex-direction: column;
    gap: 28px;
    transform: none;
  }
  .nav-link {
    font-size: 14px;
  }
  .nav-cta {
    padding: 14px 38px;
    font-size: 13px;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 150px;
    text-align: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .breadcrumb,
  .hero-points,
  .hero-cta {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 650px);
    min-height: 500px;
    margin: 0 auto;
  }
  .ring-container {
    transform: none;
  }
  .overview-grid,
  .deliverables-grid,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .faq-heading {
    position: static;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  :root {
    --section-space: 100px;
  }
  body,
  button,
  a,
  summary {
    cursor: auto;
  }
  #cursor {
    display: none;
  }
  .section-inner,
  .hero-shell {
    width: calc(100% - 48px);
  }
  #nav,
  #nav.scrolled {
    padding: 14px 24px;
  }
  .nav-logo img {
    width: 160px;
  }
  .seo-hero {
    min-height: auto;
  }
  .hero-shell {
    min-height: auto;
    padding: 125px 0 100px;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 8vw, 40px);
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-visual {
    min-height: 420px;
  }
  .seo-cube-stage {
    top: 6px;
    left: 2px;
    width: 108px;
    height: 108px;
  }
  .seo-cube {
    font-size: 48px;
  }
  .search-panel {
    padding: 18px;
  }
  .growth-chart {
    height: 190px;
  }
  .metric-row strong {
    font-size: 10px;
  }
  .scroll-indicator {
    display: none;
  }
  .section-header {
    margin-bottom: 55px;
  }
  .overview-cards,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    min-height: 0;
  }
  .service-card {
    min-height: 0;
  }
  .deliverables-visual {
    min-height: 360px;
  }
  .process-item {
    grid-template-columns: 64px 35px 1fr;
  }
  .process-index {
    font-size: 42px;
  }
  .process-content {
    padding-left: 16px;
  }
  .fit-shell {
    padding: 55px 26px;
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    flex-direction: column;
    gap: 30px;
  }
  footer {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
    text-align: center;
  }
  .floating-line {
    right: 10px;
    bottom: 14px;
  }
  .floating-line__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}
@media (max-width: 520px) {
  .cover span:nth-child(n+5) {
    display: none;
  }
  .hero-cta {
    width: 100%;
    flex-direction: column;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
  }
  .hero-points {
    gap: 8px;
  }
  .hero-points span {
    padding: 7px 9px;
    font-size: 8px;
  }
  .hero-visual {
    min-height: 360px;
  }
  .seo-cube-stage {
    width: 90px;
    height: 90px;
  }
  .seo-cube {
    font-size: 39px;
  }
  .search-panel__top {
    font-size: 7px;
  }
  .search-field {
    font-size: 10px;
  }
  .growth-chart {
    height: 160px;
  }
  .metric-row {
    grid-template-columns: 1fr;
  }
  .metric-row > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .metric-label {
    margin-bottom: 0;
  }
  .process-item {
    grid-template-columns: 48px 26px 1fr;
  }
  .process-index {
    font-size: 34px;
  }
  .process-content h3 {
    font-size: 17px;
  }
  .faq-list summary {
    padding-right: 40px;
    font-size: 15px;
    line-height: 1.65;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}/*# sourceMappingURL=style.css.map */