?/* =========================================
   IMPORT STUDIO
   ========================================= */

/* Self-hosted Black Rockie ? drop BlackRockie.ttf in the project root */
@font-face {
  font-family: 'BlackRockie';
  src: local('BlackRockie'),
       url('./BlackRockie.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&family=UnifrakturMaguntia&family=Share+Tech+Mono&family=Barlow+Condensed:ital,wght@0,400;0,700;0,900;1,900&family=Bebas+Neue&display=swap');

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: rgba(255,255,255,0.85);
  --dim: rgba(255,255,255,0.45);
  --dimmer: rgba(255,255,255,0.18);
  --border: rgba(255,255,255,0.1);
  --mono: 'Share Tech Mono', monospace;
  --sans: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  font-family: var(--sans);
  overflow-x: hidden;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.logo-box {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--sans);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-links a.active {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 160px;
  justify-content: flex-end;
}

.nav-plus {
  color: var(--dimmer);
  font-size: 16px;
  font-weight: 300;
}

.btn-get {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 0;
  font-size: 10px;
  letter-spacing: 2.5px;
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.3s;
}

.btn-get::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-get:hover {
  color: #fff;
}

.btn-get:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

/* --- Background --- */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('bg.webp') center center / cover no-repeat;
  filter: brightness(0.38) grayscale(0.3);
  z-index: 0;
  transform: none !important;
}

/* --- Scanlines --- */
.scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

/* --- Smoke layers --- */
.smoke {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: smokeDrift 8s ease-in-out infinite alternate;
}

.smoke-left {
  width: 340px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.25) 0%, transparent 70%);
  left: 28%;
  top: 10%;
}

.smoke-center {
  width: 260px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,200,255,0.3) 0%, transparent 70%);
  left: 44%;
  top: 0%;
  animation-delay: -3s;
}

@keyframes smokeDrift {
  0%   { transform: translateY(0) scaleX(1); opacity: 0.15; }
  100% { transform: translateY(-30px) scaleX(1.08); opacity: 0.22; }
}

/* --- HUD circle target --- */
.hud-circle {
  position: absolute;
  z-index: 4;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -62%);
  pointer-events: none;
}

.hud-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}

/* --- HUD TOP LEFT --- */
.hud-topleft {
  position: absolute;
  top: 68px; left: 28px;
  z-index: 10;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
}

.hud-est {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.35);
}

.hud-status div {
  color: rgba(255,255,255,0.38);
}



/* =========================================
   TERMINAL BOX
   ========================================= */
.terminal-box {
  position: absolute;
  top: 68px;
  right: 28px;
  z-index: 20;
  width: 300px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.term-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.term-dots { display: flex; gap: 5px; }

.tdot { width: 10px; height: 10px; border-radius: 50%; }
.tdot.red    { background: #ff5f57; }
.tdot.yellow { background: #febc2e; }
.tdot.green  { background: #28c840; }

.term-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  flex: 1;
  text-align: center;
}

.term-body {
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
  color: #b0ffb0;
  min-height: 130px;
  max-height: 165px;
  overflow: hidden;
}

.term-line   { display: block; }
.term-prompt { color: #ff4c4c; }
.term-cmd    { color: #e0e0e0; }
.term-out    { color: #7fff7f; }
.term-dim    { color: rgba(255,255,255,0.3); }
.term-warn   { color: #ffcc44; }

.term-cursor {
  display: inline-block;
  width: 7px; height: 11px;
  background: #7fff7f;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* (overlay removed) */

/* --- Slide numbers --- */
.slide-numbers {
  position: absolute;
  right: 340px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  font-family: var(--mono);
}

.slide-numbers span.active { color: rgba(255,255,255,0.85); }

/* --- 3-panel sliced image buttons --- */
.side-panels {
  position: absolute;
  right: 0;
  top: 270px;
  bottom: 0;
  z-index: 8;
  width: 290px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  min-height: 0;
}

/*
  The image is positioned absolutely at full width.
  Total height = 3 ? panel height (since 3 equal panels).
  panel-1: top:0        ? shows top third
  panel-2: top:-100%    ? shifts image up, shows middle third
  panel-3: top:-200%    ? shifts image up more, shows bottom third
*/
.panel .panel-img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 300%;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(0.9) contrast(1.1);
  transition: filter 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.panel-1 .panel-img { top: 0; }
.panel-2 .panel-img { top: -100%; }
.panel-3 .panel-img { top: -200%; }

/* 2px black cut line */
.panel + .panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #000;
  z-index: 4;
}

/* dark overlay */
.panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  transition: background 0.35s ease;
  z-index: 2;
}

/* label ? always show icon, text appears on hover */
.panel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 20px 14px 12px;
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 700;
  font-family: var(--sans);
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  /* gradient so text is readable */
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.76,0,0.24,1);
}

.panel-label svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.panel-label span {
  display: inline-block;
  margin-left: auto;
  transform: translateX(-4px);
  transition: transform 0.3s ease;
}

/* left border sweep */
.panel-border {
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: #fff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: 5;
}

/* hover */
.panel:hover .panel-img      { filter: grayscale(0) brightness(1.05) contrast(1.1); }
.panel:hover .panel-overlay   { background: rgba(0,0,0,0.05); }
.panel:hover .panel-label     { transform: translateY(0); }
.panel:hover .panel-label span { transform: translateX(3px); }
.panel:hover .panel-border    { transform: scaleY(1); }

/* --- HUD cross markers --- */
.hud-cross {
  position: absolute;
  z-index: 10;
  color: rgba(255,255,255,0.2);
  font-size: 18px;
  font-weight: 300;
  pointer-events: none;
}

.hud-cross.small { font-size: 12px; }

/* --- Sparkle --- */
.sparkle {
  position: absolute;
  z-index: 10;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 0 12px #fff, 0 0 28px rgba(255,255,255,0.5);
  animation: twinkle 2s ease-in-out infinite;
  pointer-events: none;
}

.s1 { top: 35%; left: 52%; }
.s2 { top: 42%; left: 50.5%; opacity: 0.6; font-size: 10px; animation-delay: -1s; }

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

/* --- Side vertical text --- */
.side-text {
  position: absolute;
  left: 18px;
  bottom: 30%;
  z-index: 10;
  font-size: 7px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-family: var(--mono);
}

/* --- Hero content --- */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 30px;
}

/* -- Sword wrap -- */
.sword-wrap {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  cursor: pointer;
}

.sword-img {
  width: 380px;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(0.85) contrast(1.2);
  mix-blend-mode: screen;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.sword-wrap:hover .sword-img {
  filter: grayscale(0) brightness(1.1) contrast(1.1);
  transform: scale(1.03);
}

/* popup menu */
.sword-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 30;
}

.sword-menu.visible {
  opacity: 1;
  pointer-events: all;
}

.sword-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  background: rgba(8,8,8,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 700;
  font-family: var(--sans);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sword-btn span {
  font-size: 12px;
  transition: transform 0.2s;
}

.sword-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.sword-btn:hover span {
  transform: translateX(4px);
}

.hero-title {
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1;
  font-family: 'BlackRockie', cursive;
  color: #fff;
  text-shadow:
    0 0 40px rgba(255,255,255,0.15),
    0 0 80px rgba(255,255,255,0.06);
}

.hero-sub {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--mono);
}

.sparkle-sub {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 0 10px #fff;
  animation: twinkle 2s ease-in-out infinite;
}

/* =========================================
   DARK KATANA BANNER
   ========================================= */
.katana-banner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 60px;
  width: 480px;
  z-index: 6;
  cursor: pointer;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}

.katana-img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(0.85) contrast(1.2);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.katana-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background 0.4s ease;
}

/* hover */
.katana-banner:hover .katana-img {
  filter: grayscale(0.1) brightness(1) contrast(1.15);
  transform: scale(1.02);
}

.katana-banner:hover .katana-overlay {
  background: rgba(0,0,0,0);
}

/* =========================================
   SYSTEM LOG HUD
   ========================================= */
.syslog {
  position: absolute;
  bottom: 48px;
  left: 36px;
  z-index: 15;
  width: 240px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 14px 16px 12px;
  
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
}

.syslog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 9px;
}

.syslog-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.syslog-live {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 5px;
}

.syslog-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 5px rgba(255,255,255,0.5);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px rgba(255,255,255,0.5); }
  50%       { opacity: 0.3; box-shadow: none; }
}

.syslog-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100px;
}

.syslog-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.syslog-row.show {
  opacity: 1;
  transform: translateX(0);
}

.syslog-ok {
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  flex-shrink: 0;
}

.syslog-text {
  color: rgba(255,255,255,0.5);
}

.syslog-footer {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.18);
}

/* corner bracket decorations */
.syslog-corner {
  position: absolute;
  width: 9px; height: 9px;
  border-color: rgba(255,255,255,0.2);
  border-style: solid;
}
.syslog-corner.tl { top: -1px;    left: -1px;   border-width: 1px 0 0 1px; }
.syslog-corner.tr { top: -1px;    right: -1px;  border-width: 1px 1px 0 0; }
.syslog-corner.bl { bottom: -1px; left: -1px;   border-width: 0 0 1px 1px; }
.syslog-corner.br { bottom: -1px; right: -1px;  border-width: 0 1px 1px 0; }

/* =========================================
   SERVICES STRIP
   ========================================= */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin: 0 28px;
  background: rgba(10,10,10,0.95);
  position: relative;
  z-index: 20;
  margin-top: -2px;
}

.service-card {
  padding: 22px 24px 18px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background 0.2s;
}

.service-card:last-child { border-right: none; }

.service-card:hover {
  background: rgba(255,255,255,0.03);
}

.svc-icon {
  color: rgba(255,255,255,0.65);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-icon {
  font-size: 18px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.65);
}

.svc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.svc-desc {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-family: var(--mono);
}

.svc-dots {
  font-size: 8px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 3px;
  margin-top: 4px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-top: 1px solid var(--border);
  background: #000;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  font-family: var(--mono);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(1) brightness(1.4);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  font-size: 9px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-grid {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 2px;
}

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 860px) {
  .hud-cbd, .hud-date { right: 16px; }
  .services-strip { grid-template-columns: repeat(2, 1fr); margin: 0 12px; }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(3) { border-top: 1px solid var(--border); }
  .service-card:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-title { letter-spacing: 4px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hud-topleft .hud-status { display: none; }
  .hud-cbd { display: none; }
  .hud-date { display: none; }
  .services-strip { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
}

/* -------------------------------------------
   ABOUT SECTION ? PAGE 2
   ------------------------------------------- */
.about-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr 360px;
  grid-template-rows: 44px 1fr 38px;
}

/* BG */
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) grayscale(0.4) contrast(1.3);
  display: block;
}

.about-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom, transparent, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}

.about-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* TOP BAR */
.about-topbar {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 10;
}

.about-cross { color: rgba(255,255,255,0.2); font-size: 14px; }
.about-cross-pos {
  position: absolute;
  color: rgba(255,255,255,0.18);
  font-size: 14px;
  z-index: 10;
  pointer-events: none;
}

.about-topbar-right {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}

/* LEFT SYSLOG */
.about-syslog {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 10;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.about-syslog-title {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.about-syslog-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.asl-line {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  display: flex;
  gap: 6px;
}

.asl-prompt { color: rgba(255,255,255,0.5); }

/* CENTER */
.about-center {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 10;
  padding: 30px 40px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: space-between;
}

.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 300px;
  min-height: 200px;
}

.about-butterfly {
  position: absolute;
  left: -20px;
  top: -50px;
  width: 420px;
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}

.butterfly-img {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(3) contrast(2);
}

.about-title-wrap {
  position: relative;
  z-index: 3;
}

.about-title {
  font-family: 'BlackRockie', 'UnifrakturCook', cursive;
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 400;
  color: #fff;
  line-height: 0.88;
  letter-spacing: 4px;
  text-shadow: 0 0 80px rgba(255,255,255,0.1);
}

.about-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  text-transform: uppercase;
}

.about-tagline {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.22);
  margin-top: 6px;
  text-transform: uppercase;
}

/* Studio box */
.studio-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 22px;
  backdrop-filter: blur(8px);
  position: relative;
}

.studio-box-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  font-weight: 700;
}

.studio-desc {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.3px;
  line-height: 2.1;
  color: rgba(255,255,255,0.6);
}

/* Stats */
.studio-stats {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-lbl {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* RIGHT TEAM */
.about-team {
  grid-column: 3;
  grid-row: 2;
  position: relative;
  z-index: 10;
  padding: 20px 20px 20px 16px;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.team-label-highlight {
  color: #fff;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(255,255,255,0.5), 0 0 28px rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}

.team-label-count {
  color: rgba(255,255,255,0.25);
  font-size: 7px;
  letter-spacing: 2px;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scroll-behavior: smooth;
}

/* custom scrollbar */
.team-cards::-webkit-scrollbar { width: 2px; }
.team-cards::-webkit-scrollbar-track { background: transparent; }
.team-cards::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.team-cards::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }

/* placeholder cards */
.team-placeholder {
  opacity: 0.35;
  border-style: dashed !important;
}

.team-placeholder:hover { opacity: 0.55; }

.team-img-empty {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-name-dim {
  color: rgba(255,255,255,0.4) !important;
}

.team-card {
  display: flex;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.25);
  padding: 12px 16px;
  
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
  flex: 1;
  align-items: center;
}

.team-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.team-img-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.7) contrast(1.2);
  display: block;
}

.team-num {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(255,255,255,0.3);
}

.team-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.team-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
}

.team-role {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
}

.team-bio {
  font-family: var(--mono);
  font-size: 9.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* Japanese vertical text */
.about-jp {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.12);
  z-index: 11;
  pointer-events: none;
}

.about-jp-label {
  position: absolute;
  right: 10px;
  bottom: 60px;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.12);
  z-index: 11;
  pointer-events: none;
}

/* BOTTOM STATUS BAR */
.about-statusbar {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.3);
  
}

.sb-left, .sb-right {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sb-mid {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sb-item {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.2);
}

.sb-val { color: rgba(255,255,255,0.55); }

.sb-tag {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0 4px;
  font-size: 7px;
  color: rgba(255,255,255,0.4);
}

.sb-dot-white {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 0 5px rgba(255,255,255,0.4);
  display: inline-block;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* About divider + tags */
.about-divider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-div-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.about-tag {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
  white-space: nowrap;
}

.studio-box {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px 28px;
  backdrop-filter: blur(10px);
  position: relative;
  flex: 1;
}

/* Stats */
.studio-stats {
  display: flex;
  gap: 32px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat-num {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 4px;
}

/* Team card fill */
.team-card {
  flex: 1;
}

.team-img-wrap {
  width: 72px;
  height: 100%;
  min-height: 70px;
}

/* Studio inline tags */
.studio-tag {
  font-family: var(--mono);
  font-size: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1px 5px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  letter-spacing: 1px;
}

.stats-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.1);
  margin: 0 auto;
}

/* v.png in about left column */
.about-syslog {
  display: flex;
  flex-direction: column;
}

.about-syslog-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
}

.about-syslog-img img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.4) contrast(1.2);
  opacity: 0.85;
}

/* Butterfly float animation */
@keyframes butterflyFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

/* Dock hide when scrolling (optional fade) */
.dock-outer {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dock-outer.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

/* -------------------------------------------
   ABOUT PAGE ? GLOW & ATMOSPHERE
   ------------------------------------------- */

/* Ambient glow orbs ? pure CSS, GPU-composited only */
.about-section::before,
.about-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}

/* Top-left soft glow */
.about-section::before {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
}

/* Bottom-right soft glow */
.about-section::after {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: 60px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* ABOUT title glow */
.about-title {
  text-shadow:
    0 0 30px rgba(255,255,255,0.25),
    0 0 80px rgba(255,255,255,0.08),
    0 0 120px rgba(255,255,255,0.04);
}

/* Subtle glow on studio box border */
.studio-box {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 30px rgba(255,255,255,0.03),
    inset 0 0 40px rgba(255,255,255,0.01);
}

/* Team card glow on hover */
.team-card:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 20px rgba(255,255,255,0.05), inset 0 0 20px rgba(255,255,255,0.02);
}

/* Syslog dot brighter pulse */
.about-syslog-title {
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

/* Status bar glow */
.about-statusbar {
  box-shadow: 0 -1px 0 rgba(255,255,255,0.06), 0 0 20px rgba(255,255,255,0.02);
}

.sb-dot-white {
  box-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.3);
}

/* Stat numbers glow */
.stat-num {
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* System log lines faint glow */
.asl-prompt {
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

/* Subtle scanline vignette overlay */
.about-section .about-scanlines {
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
}

/* Top edge light bleed */
.about-topbar {
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

/* Japanese text faint glow */
.about-jp {
  text-shadow: 0 0 12px rgba(255,255,255,0.08);
}

/* v.png image subtle glow */
.about-syslog-img img {
  filter: grayscale(1) brightness(1.4) contrast(1.2) drop-shadow(0 0 8px rgba(255,255,255,0.12));
}

/* butterfly glow */
.butterfly-img {
  filter: grayscale(1) brightness(2.5) contrast(1.8) drop-shadow(0 0 16px rgba(255,255,255,0.2));
}

.team-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 8px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.team-link:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.6);
}

/* -- Team card link -- */
.team-card-link {
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Hover glow sweep */
.team-card-hover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.04) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.team-card-link:hover .team-card-hover-glow { opacity: 1; }

.team-card-link:hover {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 24px rgba(255,255,255,0.06), inset 0 0 16px rgba(255,255,255,0.02);
}

.team-card-link:hover .team-img {
  filter: grayscale(0) brightness(0.9) contrast(1.1);
  transform: scale(1.04);
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* Skill pills */
.team-tags {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.team-tag-pill {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2px 6px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.team-card-link:hover .team-tag-pill {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

/* Portfolio button */
.team-portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.team-portfolio-btn span {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.team-card-link:hover .team-portfolio-btn {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.team-card-link:hover .team-portfolio-btn span {
  transform: translate(2px, -2px);
}

/* -------------------------------------------
   STORE SECTION ? PAGE 3
   ------------------------------------------- */
.store-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* BG video */
.store-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.store-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) grayscale(1);
  display: block;
  will-change: auto;
}

.store-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom, transparent, transparent 3px,
    rgba(0,0,0,0.05) 3px, rgba(0,0,0,0.05) 4px
  );
  pointer-events: none;
}

/* Japanese side text */
.store-jp-left, .store-jp-right,
.store-label-left, .store-label-right {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 5;
}
.store-jp-left  { left: 12px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.1); }
.store-jp-right { right: 12px; top: 50%; transform: translateY(-50%) rotate(180deg); color: rgba(255,255,255,0.1); }
.store-label-left  { left: 14px; bottom: 60px; font-family: var(--sans); font-size: 8px; color: rgba(255,255,255,0.08); letter-spacing: 3px; }
.store-label-right { right: 14px; bottom: 60px; font-family: var(--sans); font-size: 8px; color: rgba(255,255,255,0.08); letter-spacing: 3px; transform: rotate(180deg); }

/* Main inner */
.store-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 80px 20px;
  gap: 24px;
}

/* Header */
.store-header {
  text-align: center;
}
.store-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.store-title {
  font-family: 'BlackRockie', 'UnifrakturCook', cursive;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 6px;
  text-shadow: 0 0 40px rgba(255,255,255,0.15), 0 0 80px rgba(255,255,255,0.06);
}
.store-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  line-height: 1.8;
  text-align: center;
}

/* Grid ? flex rows, last row centered */
.store-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
}

.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}


/* -- Store squares -- */
/* -- Store squares -- */
/* -- Store squares -- */
.store-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.store-circle {
  position: relative;
  width: 110px;
  height: 90px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff; cursor: pointer;
  transition: width 0.3s ease-out, height 0.3s ease-out, opacity 0.24s ease-out, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0; overflow: hidden;
}
.store-row.has-active .store-circle:not(.active) {
  height: 60px;
  opacity: 0.65;
  border-color: rgba(255,255,255,0.12);
}
.store-circle.active {
  width: 200px;
  height: 220px;
  border-color: rgba(255,255,255,0.6);
  background: rgba(8,8,8,0.96);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 0 20px rgba(255,255,255,0.07);
  z-index: 5;
}
.circle-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 6px; transition: opacity 0.15s ease;
  position: relative; z-index: 2; width: 100%;
  pointer-events: none; text-align: center;
}
.store-circle.active .circle-inner { opacity: 0; pointer-events: none; }
.circle-card {
  position: absolute; inset: 0; padding: 12px;
  display: flex; flex-direction: column; gap: 7px;
  opacity: 0; pointer-events: none; transition: opacity 0.18s ease 0.1s; z-index: 3;
}
.store-circle.active .circle-card { opacity: 1; pointer-events: all; }
.card-img-placeholder {
  width: 100%; height: 68px; border-radius: 4px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-img-placeholder .circle-icon { width: 20px; height: 20px; color: rgba(255,255,255,0.3); position: static; opacity: 1; }
.card-img-placeholder .circle-icon svg { width: 20px; height: 20px; }
.card-title { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; line-height: 1.2; text-shadow: 0 0 8px rgba(255,255,255,0.3); }
.card-desc { font-family: var(--mono); font-size: 8.5px; line-height: 1.6; color: rgba(255,255,255,0.45); flex: 1; overflow: hidden; }
.card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 6px; gap: 5px; }
.card-price { font-family: var(--sans); font-size: 13px; font-weight: 900; color: #fff; white-space: nowrap; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.card-price span { font-size: 7px; color: rgba(255,255,255,0.35); margin-left: 2px; }
.card-btn { font-family: var(--mono); font-size: 7px; letter-spacing: 1.2px; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.22); padding: 4px 7px; text-decoration: none; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.card-btn:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
/* icon + label in normal state ? brighter */
.circle-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.88); transition: color 0.2s; filter: drop-shadow(0 0 4px rgba(255,255,255,0.2)); }
.circle-icon svg { width: 100%; height: 100%; }
.circle-label { font-family: var(--sans); font-size: 8px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.7); text-align: center; text-transform: uppercase; line-height: 1.3; text-shadow: 0 0 6px rgba(255,255,255,0.2); }
.circle-label span { font-size: 6px; color: rgba(255,255,255,0.4); display: block; }
.store-circle:hover .circle-icon { color: #fff; filter: drop-shadow(0 0 6px rgba(255,255,255,0.4)); }
.store-circle:hover .circle-label { color: #fff; }
.store-circle-featured { border-color: rgba(255,255,255,0.35); }
.circle-num { position: absolute; bottom: 5px; right: 7px; font-family: var(--mono); font-size: 6px; color: rgba(255,255,255,0.2); letter-spacing: 1px; z-index: 4; }

/* CTA box */
.store-cta {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 24px;
  text-align: center;
  
  max-width: 300px;
  box-shadow: 0 0 20px rgba(255,255,255,0.03);
}
.store-cta-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  margin-bottom: 6px;
}
.store-cta-text {
  font-family: var(--mono);
  font-size: 8.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

/* Status bar */
.store-statusbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.5);
  
  flex-wrap: wrap;
}
.ssb-item {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}
.ssb-green { color: #39ff6a; text-shadow: 0 0 8px rgba(57,255,106,0.5); }
.ssb-val   { color: rgba(255,255,255,0.55); }
.ssb-bar   { color: rgba(255,255,255,0.25); letter-spacing: 0; }
.ssb-tag   {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1px 6px;
  color: rgba(255,255,255,0.4);
}
.ssb-right { margin-left: auto; color: rgba(255,255,255,0.25); }

/* -------------------------------------------
   REVIEWS SECTION ? PAGE 4
   ------------------------------------------- */
.reviews-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* BG */
.rv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rv-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22) grayscale(0.6);
  display: block;
}
.rv-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%);
}
.rv-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom, transparent, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

/* Side text */
.rv-jp-left, .rv-jp-right {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.rv-jp-left  { left: 12px; }
.rv-jp-right { right: 12px; transform: translateY(-50%) rotate(180deg); }

/* Inner */
.rv-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 80px 20px;
  gap: 32px;
}

/* Header */
.rv-header { text-align: center; }

.rv-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

.rv-title {
  font-family: 'BlackRockie', 'UnifrakturCook', cursive;
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 6px;
  text-shadow: 0 0 40px rgba(255,255,255,0.15), 0 0 80px rgba(255,255,255,0.05);
}

.rv-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.28);
  margin-top: 8px;
}

.rv-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  justify-content: center;
}

.rv-div-line {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.rv-stars {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
}

/* Stats bar */
.rv-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  
  padding: 16px 36px;
  width: fit-content;
}

.rv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px;
}

.rv-stat-num {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.rv-stat-lbl {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
}

.rv-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Review grid */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 960px;
}

/* Card */
.rv-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
}

.rv-card:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 24px rgba(255,255,255,0.04);
}

.rv-card:hover::before {
  background: rgba(255,255,255,0.4);
}

/* Featured card */
.rv-card-featured {
  grid-column: span 1;
  border-color: rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.45);
}

.rv-card-featured::after {
  content: '? FEATURED';
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--mono);
  font-size: 6.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}

/* Card header */
.rv-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-avatar {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.rv-user {
  flex: 1;
}

.rv-username {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
}

.rv-role {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

.rv-rating {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* Review text */
.rv-text {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
  flex: 1;
}

/* Card footer */
.rv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
}

.rv-service {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 7px;
}

.rv-date {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.2);
}

/* CTA */
.rv-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rv-cta-text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
}

.rv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 3px;
  transition: border-color 0.3s, color 0.3s;
}

.rv-cta-btn:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.6);
}

/* Status bar */
.rv-statusbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 9px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.4);
  
}

.rv-sb-item {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

.rv-sb-right { margin-left: auto; }

/* Scroll animation ? cards fade in */
.rv-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.rv-card.rv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Review placeholder styles */
.rv-avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.rv-avatar-img svg {
  width: 100%;
  height: 100%;
}

.rv-text-placeholder {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  padding: 4px 0;
}

.rv-text-placeholder span {
  display: block;
  height: 9px;
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
  animation: shimmer 2s ease-in-out infinite;
}

.rv-text-placeholder span:nth-child(1) { width: 100%; }
.rv-text-placeholder span:nth-child(2) { width: 85%; }
.rv-text-placeholder span:nth-child(3) { width: 65%; }

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.9; }
}

.rv-service-empty {
  width: 60px;
  height: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 2px;
  display: inline-block;
}

/* hh.png left side of reviews */
.rv-side-img {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 6;
  width: 380px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%),
                      linear-gradient(to left, transparent 0%, black 25%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%),
              linear-gradient(to left, transparent 0%, black 25%);
  mask-composite: intersect;
}



@keyframes rvImgPulse {
  0%, 100% { opacity: 0.85; }
  50%       { opacity: 1; }
}
  50% { filter: grayscale(1) brightness(1.3) contrast(1.3)
    drop-shadow(0 0 26px rgba(255,255,255,0.55))
    drop-shadow(0 0 60px rgba(255,255,255,0.25))
    drop-shadow(0 0 100px rgba(255,255,255,0.1)); }
}

/* Garden flowers ? duplicates of hh.png scattered at bottom */
.rv-flower {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
}

.rv-flower img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) contrast(1.1);
}

/* flower 2 ? right side, medium, slightly rotated */
.rv-flower-2 {
  right: 20px;
  bottom: 60px;
  width: 200px;
  opacity: 0.55;
  transform: rotate(15deg) scaleX(-1);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}



/* flower 3 ? far right corner, small, dimmer */
.rv-flower-3 {
  right: 180px;
  bottom: 20px;
  width: 120px;
  opacity: 0.3;
  transform: rotate(-8deg);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 85%, transparent 100%);
}



/* flower 4 ? bottom center-right, tiny, very faint */
.rv-flower-4 {
  right: 42%;
  bottom: 0;
  width: 90px;
  opacity: 0.18;
  transform: rotate(5deg);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 90%, transparent 100%);
}



/* flower 5 ? left side, medium, beside main flower */
.rv-flower-5 {
  left: 320px;
  bottom: 40px;
  width: 140px;
  opacity: 0.22;
  transform: rotate(-12deg);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}


/* flower 6 ? far left, small, very faint */
.rv-flower-6 {
  left: 10px;
  bottom: 15px;
  width: 100px;
  opacity: 0.12;
  transform: rotate(8deg) scaleX(-1);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 90%, transparent 100%);
}


/* flower 7 ? left center bottom, tiny whisper */
.rv-flower-7 {
  left: 200px;
  bottom: 0;
  width: 80px;
  opacity: 0.1;
  transform: rotate(3deg);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 90%, transparent 100%);
}


/* -------------------------------------------
   CONTACT SECTION ? PAGE 5
   ------------------------------------------- */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* BG */
.ct-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ct-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) grayscale(0.6);
  display: block;
}
.ct-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.ct-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom, transparent, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

/* Side text */
.ct-jp-left, .ct-jp-right {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  z-index: 5;
  top: 50%; transform: translateY(-50%);
}
.ct-jp-left  { left: 12px; }
.ct-jp-right { right: 12px; transform: translateY(-50%) rotate(180deg); }

/* Inner */
.ct-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 80px 24px;
  gap: 36px;
}

/* Header */
.ct-header { text-align: center; }
.ct-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 8px;
}
.ct-title {
  font-family: 'BlackRockie', 'UnifrakturCook', cursive;
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 6px;
  text-shadow: 0 0 40px rgba(255,255,255,0.15), 0 0 80px rgba(255,255,255,0.05);
}
.ct-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* Layout */
.ct-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  width: 100%;
  max-width: 960px;
  align-items: start;
}

/* Info panel */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-info-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.28);
}

.ct-info-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  transition: border-color 0.25s, background 0.25s;
}
.ct-info-link:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

.ct-info-icon {
  width: 28px; height: 28px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ct-info-icon svg { width: 100%; height: 100%; }

.ct-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.ct-info-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
}
.ct-info-val {
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}
.ct-info-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  transition: transform 0.2s, color 0.2s;
}
.ct-info-link:hover .ct-info-arrow {
  transform: translate(2px, -2px);
  color: rgba(255,255,255,0.7);
}

/* Online badge */
.ct-badge-row { display: flex; flex-direction: column; gap: 6px; }
.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
}
.ct-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.ct-badge-sub {
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* Tags */
.ct-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ct-tag {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
}

/* Form */
.ct-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-form-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.28);
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-label {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.28);
}
.ct-input {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-family: var(--mono);
  font-size: 11px;
  padding: 10px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  letter-spacing: 0.5px;
}
.ct-input::placeholder { color: rgba(255,255,255,0.2); }
.ct-input:focus { border-color: rgba(255,255,255,0.3); }
.ct-select { appearance: none; cursor: pointer; }
.ct-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

/* Submit */
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #000;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.ct-submit:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}
.ct-submit-arrow {
  transition: transform 0.2s;
}
.ct-submit:hover .ct-submit-arrow { transform: translateX(4px); }

.ct-form-note {
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  text-align: center;
}
.ct-form-note a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.ct-form-note a:hover { color: rgba(255,255,255,0.8); }

/* Status bar */
.ct-statusbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 9px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.4);
}
.ct-sb-item {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
}
.ct-sb-right { margin-left: auto; }

/* -------------------------------------------
   CONTACT SECTION ? PAGE 5
   ------------------------------------------- */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ct-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ct-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) grayscale(0.6);
  display: block;
}
.ct-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.ct-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom, transparent, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

/* Side text */
.ct-jp-left, .ct-jp-right {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.ct-jp-left  { left: 12px; }
.ct-jp-right { right: 12px; transform: translateY(-50%) rotate(180deg); }

/* Inner layout */
.ct-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 80px 24px;
  align-items: start;
}

/* -- Left info panel -- */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px;
}

.ct-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}

.ct-title {
  font-family: 'BlackRockie', 'UnifrakturCook', cursive;
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 400;
  color: #fff;
  line-height: 0.95;
  letter-spacing: 5px;
  text-shadow: 0 0 40px rgba(255,255,255,0.15), 0 0 80px rgba(255,255,255,0.05);
}

.ct-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.28);
  margin-top: 12px;
  line-height: 1.8;
}

.ct-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 24px 0;
}

/* Contact methods */
.ct-methods {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
  text-decoration: none;
  color: #fff;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.ct-method::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: rgba(255,255,255,0);
  transition: background 0.25s;
}

.ct-method:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
}
.ct-method:hover::before { background: rgba(255,255,255,0.5); }

.ct-method-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.ct-method-icon svg { width: 100%; height: 100%; }
.ct-method:hover .ct-method-icon { color: #fff; }

.ct-method-info { flex: 1; }

.ct-method-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}

.ct-method-val {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
}

.ct-method-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}
.ct-method:hover .ct-method-arrow {
  color: rgba(255,255,255,0.7);
  transform: translate(2px, -2px);
}

/* Badge */
.ct-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
}

.ct-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* -- Right form -- */
.ct-form-wrap {
  padding-top: 20px;
}

.ct-form-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-label {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}

.ct-input, .ct-select, .ct-textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  -webkit-appearance: none;
}

.ct-input::placeholder, .ct-textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.ct-input:focus, .ct-select:focus, .ct-textarea:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}

.ct-textarea {
  resize: vertical;
  min-height: 100px;
}

.ct-select {
  cursor: pointer;
  padding-right: 36px;
}
.ct-select option { background: #0a0a0a; color: #fff; }

.ct-select-wrap {
  position: relative;
}
.ct-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  pointer-events: none;
}

/* Form footer */
.ct-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.ct-form-note {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.18);
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.ct-submit:hover { background: rgba(255,255,255,0.85); }
.ct-submit-arrow { font-size: 14px; transition: transform 0.2s; }
.ct-submit:hover .ct-submit-arrow { transform: translateX(4px); }

/* Status bar */
.ct-statusbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 9px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.4);
  
}
.ct-sb-item {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}
.ct-sb-right { margin-left: auto; display: flex; align-items: center; gap: 7px; }
.ct-online-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
  display: inline-block;
  animation: pulse-dot 1.8s ease-in-out infinite;
}


/* -- Performance-fixed flower styles -- */
.rv-side-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(1.2) contrast(1.2) drop-shadow(0 0 20px rgba(255,255,255,0.4));
  mix-blend-mode: screen;
  animation: rvImgPulse 4s ease-in-out infinite;
}
.rv-flower-2 img {
  filter: grayscale(1) brightness(0.9) contrast(1.1) drop-shadow(0 0 12px rgba(255,255,255,0.2));
  mix-blend-mode: screen;
  animation: rvImgPulse 5s ease-in-out infinite;
  animation-delay: -2s;
}
.rv-flower-3 img {
  filter: grayscale(1) brightness(0.7) contrast(1.05);
  mix-blend-mode: screen;
  animation: rvImgPulse 7s ease-in-out infinite;
  animation-delay: -4s;
}
.rv-flower-4 img {
  filter: grayscale(1) brightness(0.8);
  mix-blend-mode: screen;
  animation: rvImgPulse 9s ease-in-out infinite;
  animation-delay: -6s;
}
.rv-flower-5 img {
  filter: grayscale(1) brightness(0.8) contrast(1.05);
  mix-blend-mode: screen;
  animation: rvImgPulse 6s ease-in-out infinite;
  animation-delay: -1s;
}
.rv-flower-6 img {
  filter: grayscale(1) brightness(0.7);
  mix-blend-mode: screen;
  animation: rvImgPulse 8s ease-in-out infinite;
  animation-delay: -3.5s;
}
.rv-flower-7 img {
  filter: grayscale(1) brightness(0.75);
  mix-blend-mode: screen;
  animation: rvImgPulse 11s ease-in-out infinite;
  animation-delay: -7s;
}



/* Garden wrapper — anchors all flowers to the bottom of reviews section */
.rv-garden {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 320px;
  pointer-events: none;
  z-index: 5;
}

/* Override flower positions to be relative to the garden wrapper */
.rv-garden .rv-flower {
  position: absolute;
}

/* ── Dev popup notification ── */
.dev-popup {
  display: none;
  position: fixed;
  top: 60px;
  right: 24px;
  z-index: 9999;
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.dev-popup-inner {
  background: rgba(5,5,5,0.96);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 20px 14px;
  min-width: 260px;
  max-width: 320px;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.6);
}

.dev-popup-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--mono);
  padding: 2px 4px;
  transition: color 0.2s;
}
.dev-popup-close:hover { color: #fff; }

.dev-popup-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  padding-right: 20px;
}

.dev-popup-msg {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}
