/* ===================================================
   SHOUROVE — STUDIO CSS
   Replicating Lusion aesthetic with custom branding
   =================================================== */

/* ── Modern Normalize ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { line-height: 1.15; -webkit-text-size-adjust: 100%; tab-size: 4; -webkit-font-smoothing: antialiased; }
body { margin: 0; }
button, input, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button, select { text-transform: none; }
button, [type=button], [type=reset], [type=submit] { -webkit-appearance: button; border: none; background: transparent; }
a { text-decoration: none; }
a, a:active, a:hover, a:visited { color: currentColor; outline: 0; }

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --color-error: #e90000;
  --color-off-white: #f0f1fa;
  --color-white: #ffffff;
  --color-dark-white: #e4e6ef;
  --color-off-white-semi: rgba(240, 241, 250, 0.7);
  --color-black: #000000;
  --color-green: #c1ff00;
  --color-blue: #1a2ffb;
  --color-red: #ff4c41;
  --color-grey-blue: #2b2e3a;
  --color-dark-blue: #071bdf;
  --color-accent: #c1ff00;
  --grid-gap: 2vw;
  --grid-space: calc((100% - 11 * var(--grid-gap)) / 12);
  --global-border-radius: 20px;
  --base-padding-x: max(5vw, 40px);
  --base-padding-y: clamp(30px, 4vw, 50px);
  --header-color: #c1ff00;
  --header-text-color: #000000;
  --header-size: clamp(1rem, 1vw, 2rem);
  --cross-size: clamp(0.875rem, 1vw, 2rem);
}
@media (max-width: 812px) {
  :root {
    --grid-gap: 4vw;
    --global-border-radius: 15px;
    --base-padding-x: 25px;
    --base-padding-y: 25px;
  }
}
@media (max-width: 400px) {
  :root {
    --base-padding-x: 15px;
    --base-padding-y: 15px;
  }
}

/* ── Typography ─────────────────────────────────────── */
html, body, h1, h2, h3, h4, button, input {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mono {
  font-family: 'DM Mono', monospace;
}

.text-xs  { font-size: 0.75em; }
.text-base { font-size: clamp(1rem, 1.5vw, 2rem); }
@media (max-width: 812px) { .text-base { font-size: 0.875em; } }
.text-lg  { font-size: 1.75em; }
@media (max-width: 812px) { .text-lg  { font-size: 1.5em; } }
.text-4xl { font-size: clamp(7em, 8vw, 20em); }
@media (max-width: 812px) { .text-4xl { font-size: 13vw; } }

/* ── Base Layout ────────────────────────────────────── */
html, body {
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  color: var(--color-off-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ── Canvas Background ──────────────────────────────── */
#canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── UI Layer ───────────────────────────────────────── */
#ui {
  position: relative;
  width: 100%;
  color: var(--color-black);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
a, button, input { pointer-events: auto; }
a { user-select: none; -webkit-user-drag: none; }

/* ── Section Grid ───────────────────────────────────── */
.section {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  padding: var(--base-padding-y) var(--base-padding-x);
}
@media (max-width: 812px) {
  .section { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* ── Transition Overlay ─────────────────────────────── */
#transition-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 100;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 200;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--base-padding-y) var(--base-padding-x);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader-logo {
  position: absolute;
  top: var(--base-padding-y);
  left: var(--base-padding-x);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
#preloader-percent-digits {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: clamp(7em, 8vw, 18em);
  height: 0.75em;
  line-height: 0.75em;
  color: var(--color-white);
  overflow: hidden;
  font-weight: 700;
}
@media (max-width: 812px) { #preloader-percent-digits { font-size: 13vw; } }
.preloader-percent-digit {
  position: relative;
  width: 1ch;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.preloader-percent-digit-num {
  height: 0.75em;
  line-height: 0.75em;
  display: block;
}
#preloader-percent-sign {
  font-size: 0.4em;
  align-self: flex-end;
  margin-bottom: 0.05em;
  color: var(--color-accent);
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
#header {
  position: fixed;
  left: 0;
  z-index: 52;
  width: 100%;
  color: var(--color-black);
  padding: var(--base-padding-y) var(--base-padding-x);
  font-size: clamp(1rem, 1vw, 1.5rem);
  transition: color 0.25s;
  pointer-events: none;
  top: 0;
}
#header p { margin: 0; }

/* Black/dark-bg state */
html.is-dark #header { color: var(--color-white); }

#header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding-bottom: 0.1em;
  position: relative;
}
#header-background {
  position: absolute;
  top: 0; right: 0;
  height: 100vh;
  width: 50vw;
  background: linear-gradient(270deg, rgba(11,11,18,0.5), rgba(11,11,18,0));
  opacity: 0;
  transition: opacity 0.4s 0.4s;
  pointer-events: none;
}
@media (max-width: 812px) {
  #header-background {
    background: #111;
    width: 100vw;
  }
}
#header-background.--opened {
  transition: opacity 0.4s;
  pointer-events: auto;
  opacity: 1;
}

/* Logo */
#header-logo {
  transition: color 0.5s;
  z-index: 1;
  pointer-events: auto;
}
.logo-text {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: currentColor;
  text-transform: uppercase;
}

/* Header right */
#header-right {
  position: relative;
  display: flex;
  gap: 0.75em;
  will-change: transform;
  pointer-events: auto;
}

/* Talk button */
#header-right-talk-btn {
  font-size: 0.875em;
  border-radius: 6.25em;
  padding: 0 1.125em 0 1.625em;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  height: 3.2em;
  cursor: pointer;
  background: var(--color-grey-blue);
  color: var(--color-white);
  transition: color 0.4s, background-color 0.4s;
  overflow: hidden;
  position: relative;
}
#header-right-talk-btn a { position: absolute; inset: 0; z-index: 1; }
@media (max-width: 812px) {
  #header-right-talk-btn { width: 3.2em; padding: 0; }
}
#header-right-talk-btn:hover { background: #c1ff00; color: #000; }
#header-right-talk-container {
  display: flex; align-items: center; justify-content: center;
  gap: 0.625em; white-space: nowrap;
}
#header-right-talk-btn-text { transition: transform 0.3s cubic-bezier(0.4,0,0.1,1); }
#header-right-talk-btn-arrow {
  position: absolute;
  left: 1.2em;
  transform: translate3d(-2.5em, 0, 0);
  width: 1em; height: 1em;
  transition: transform 0.3s cubic-bezier(0.4,0,0.1,1);
}
#header-right-talk-btn-arrow svg { width: 100%; height: 100%; }
#header-right-talk-btn-dots {
  position: relative;
  width: 1.15em; height: 1.15em;
  transition: transform 0.1s cubic-bezier(0.4,0,0.1,1);
  transform: scale(0.9);
}
.header-right-talk-btn-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0.3125em; height: 0.3125em;
  background: var(--color-white);
  border-radius: 100%;
  display: block;
}

/* Menu button */
#header-right-menu-btn {
  font-size: 0.875em;
  border-radius: 6.25em;
  padding: 0 1.125em 0 1.625em;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  height: 3.2em;
  cursor: pointer;
  background: var(--color-dark-white);
  color: var(--color-black);
  transition: color 0.4s, background-color 0.4s;
}
@media (max-width: 812px) {
  #header-right-menu-btn { width: 3.2em; padding: 0; }
}
#header-right-menu-btn:hover,
#header-right-menu-btn.--opened { background: var(--color-white); color: #000; }
#header-right-menu-btn.--opened #header-right-menu-btn-dots { transform: translateY(-0.1em) rotate(270deg); }
#header-right-menu-btn.--opened #header-right-menu-btn-text { transform: translate3d(0,-100%,0); }
#header-right-menu-btn.--opened #header-right-menu-btn-text-close { transform: translateZ(0); }
#header-right-menu-btn-inner {
  display: flex; justify-content: center; align-items: center;
  position: relative; gap: 0.625em; overflow: hidden;
}
#header-right-menu-btn-text {
  transition: transform 0.3s cubic-bezier(0.4,0,0.1,1);
  line-height: 1.2em;
}
@media (max-width: 812px) { #header-right-menu-btn-text { display: none; } }
#header-right-menu-btn-text-close {
  position: absolute;
  transform: translate3d(0, 100%, 0);
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.1,1);
}
@media (max-width: 812px) { #header-right-menu-btn-text-close { display: none; } }
#header-right-menu-btn-dots {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4,0,0.1,1);
  transform: rotate(180deg);
  width: 1.15em; height: 1.15em;
}
#header-right-menu-btn-dots .header-right-menu-btn-dot {
  position: absolute;
  width: 0.3125em; height: 0.3125em;
  background: currentColor;
  border-radius: 100%;
  transition: background-color 0.4s;
  transform: translateY(-50%);
  top: 50%;
}
#header-right-menu-btn-dots .header-right-menu-btn-dot:first-child { left: 0.1em; }
#header-right-menu-btn-dots .header-right-menu-btn-dot:last-child { right: 0.1em; }

/* ── Dropdown Menu ──────────────────────────────────── */
#header-menu {
  position: absolute;
  top: calc(var(--base-padding-y) + var(--header-size) * 3.1 + 0.5em);
  right: var(--base-padding-x);
  width: 19.38em;
  display: flex;
  flex-direction: column;
  gap: 0.625em;
  pointer-events: none;
  color: var(--color-black);
  transform: translateY(-0.5em);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.1,1), opacity 0.4s;
}
@media (max-width: 812px) {
  #header-menu {
    width: calc(100% - var(--base-padding-x) * 2);
    top: calc(var(--base-padding-y) * 2 + 3.5em);
  }
}
#header-menu.--opened {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}
#header-menu input, #header-menu textarea, #header-menu a, #header-menu button { pointer-events: none; }
#header-menu.--opened input,
#header-menu.--opened textarea,
#header-menu.--opened a,
#header-menu.--opened button { pointer-events: auto; }

/* Menu links */
#header-menu-links {
  background: var(--color-white);
  border-radius: var(--global-border-radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.header-menu-link {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.header-menu-link-background {
  position: absolute; inset: 0;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.4,0,0.1,1);
  border-radius: 0;
}
.header-menu-link:hover .header-menu-link-background { transform: scaleY(1); }
.header-menu-link-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.25em;
  font-weight: 500;
  font-size: 1em;
  overflow: hidden;
  height: 3.5em;
}
.header-menu-link:not(:last-child) .header-menu-link-inner {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-menu-link-text { transition: transform 0.3s cubic-bezier(0.4,0,0.1,1); }
.header-menu-link:hover .header-menu-link-text { transform: translateX(0.3em); }
.header-menu-link-text-clone {
  position: absolute;
  left: 1.25em;
  transform: translateY(100%);
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.4,0,0.1,1);
}
.header-menu-link:hover .header-menu-link-text-clone { transform: translateY(0); }
.header-menu-link-svg {
  width: 1em; height: 1em;
  transform: translateX(-0.5em);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.header-menu-link:hover .header-menu-link-svg { transform: translateX(0); opacity: 1; }

/* Menu newsletter */
#header-menu-newsletter {
  background: var(--color-white);
  border-radius: var(--global-border-radius);
  padding: 1.25em;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
#header-menu-newsletter-title {
  font-size: 0.875em;
  font-weight: 500;
  margin: 0 0 0.875em;
  line-height: 1.4;
}
.header-menu-newsletter-title-line { display: block; }
#header-menu-newsletter-input { position: relative; }
#header-menu-newsletter-input-bg {
  position: absolute; inset: 0;
  background: var(--color-dark-white);
  border-radius: 6.25em;
}
#header-menu-newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 0.5em 0.5em 1em;
}
#header-menu-newsletter-input-field {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.875em;
  color: var(--color-black);
  outline: none;
}
#header-menu-newsletter-input-field::placeholder { color: rgba(0,0,0,0.4); }
#header-menu-newsletter-input-arrow {
  width: 2.2em; height: 2.2em;
  border-radius: 50%;
  background: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
#header-menu-newsletter-input-arrow:hover { background: var(--color-accent); }
#header-menu-newsletter-input-arrow svg path { fill: var(--color-white); }
#header-menu-newsletter-input-arrow:hover svg path { fill: var(--color-black); }
#header-menu-newsletter-feedback-message {
  font-size: 0.75em;
  color: var(--color-accent);
  min-height: 1.5em;
  padding: 0.25em 1em 0;
}

/* Menu talk button */
#header-menu-talk {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--global-border-radius);
  padding: 1.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  font-size: 1em;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
#header-menu-talk:hover { background: var(--color-accent); color: var(--color-black); }
#header-menu-talk a { position: absolute; inset: 0; z-index: 1; }
#header-menu-talk-icon { flex-shrink: 0; }
#header-menu-talk:hover #header-menu-talk-icon path:first-child { fill: var(--color-accent); }

/* ══════════════════════════════════════════════════════
   PAGE CONTAINER
══════════════════════════════════════════════════════ */
#page-container {
  position: relative;
  width: 100%;
  padding-top: calc(var(--base-padding-y) * 2 + 4em);
}

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
#home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: var(--color-black);
}
#home-hero-title {
  position: relative;
  z-index: 2;
  grid-column: 1 / 10;
  font-size: clamp(2.5rem, 5vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin: 0;
  max-width: 14em;
  animation: fadeSlideUp 1.2s 0.5s cubic-bezier(0.4,0,0.1,1) both;
}
@media (max-width: 812px) {
  #home-hero-title { grid-column: 1 / -1; font-size: clamp(2rem, 8vw, 4rem); }
}

/* Hero visual */
#home-hero-visual-container {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  pointer-events: none;
  overflow: hidden;
}
@media (max-width: 812px) { #home-hero-visual-container { width: 100%; right: 0; top: 0; height: 100%; opacity: 0.3; } }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 6s ease-in-out infinite;
}
.hero-orb-1 {
  width: 40%; height: 40%;
  background: radial-gradient(circle, #c1ff0060, transparent);
  top: 10%; left: 20%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 60%; height: 60%;
  background: radial-gradient(circle, #1a2ffb40, transparent);
  top: 30%; left: 10%;
  animation-delay: -2s;
}
.hero-orb-3 {
  width: 30%; height: 30%;
  background: radial-gradient(circle, #ff4c4130, transparent);
  bottom: 10%; right: 20%;
  animation-delay: -4s;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8%) scale(1.05); }
}

/* Scroll hint */
#home-hero-scroll-container {
  position: absolute;
  bottom: var(--base-padding-y);
  left: var(--base-padding-x);
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  z-index: 2;
}
#home-hero-scroll-container-crosses {
  display: flex;
  gap: 1em;
}
.home-hero-scroll-container-cross {
  width: var(--cross-size); height: var(--cross-size);
  position: relative;
}
.home-hero-scroll-container-cross::before,
.home-hero-scroll-container-cross::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.3);
}
.home-hero-scroll-container-cross::before { width: 1px; height: 100%; left: 50%; }
.home-hero-scroll-container-cross::after { width: 100%; height: 1px; top: 50%; }
#home-hero-scroll {
  font-size: 0.75em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'DM Mono', monospace;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ══════════════════════════════════════════════════════
   REEL SECTION
══════════════════════════════════════════════════════ */
#home-reel {
  background: var(--color-white);
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 120px);
  grid-column: 1 / -1;
  display: block;
}
#home-reel-title {
  margin: 0 0 1em;
  padding: 0 var(--base-padding-x);
}
#home-reel-title-inner {
  font-size: clamp(3rem, 6vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-black);
}
#home-reel-title-line-1,
#home-reel-title-line-2 { display: block; }
#home-reel-title-line-2 { color: transparent; -webkit-text-stroke: 2px var(--color-black); }

#home-reel-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2em;
  align-items: start;
  padding: 0 var(--base-padding-x);
  margin-bottom: 3em;
}
@media (max-width: 812px) { #home-reel-content { grid-template-columns: 1fr; } }
#home-reel-desc {
  grid-column: 1;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  margin: 0;
  max-width: 36em;
}
#home-reel-cta {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 1em 1.5em;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 6.25em;
  font-weight: 500;
  font-size: 0.875em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
  align-self: center;
}
#home-reel-cta:hover { background: var(--color-accent); color: var(--color-black); transform: scale(1.03); }
#home-reel-cta-dot {
  width: 0.5em; height: 0.5em;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
#home-reel-cta:hover #home-reel-cta-dot { background: var(--color-black); }

/* Ticker */
#home-reel-ticker-wrapper {
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0.875em 0;
  margin-bottom: 3em;
  background: var(--color-black);
}
#home-reel-ticker {
  display: flex;
  gap: 1.5em;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-family: 'DM Mono', monospace;
  font-size: 0.875em;
  color: var(--color-accent);
}
.ticker-item { flex-shrink: 0; }
.ticker-sep { flex-shrink: 0; color: rgba(193,255,0,0.4); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reel video box */
#home-reel-container { padding: 0 var(--base-padding-x); }
#home-reel-container-inner { position: relative; }
#home-reel-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-black);
  border-radius: var(--global-border-radius);
  overflow: hidden;
  cursor: pointer;
}
#home-reel-video-container-decoration { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
#home-reel-video-container-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3em;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0 1.5em;
  background: linear-gradient(rgba(0,0,0,0.6), transparent);
}
.home-reel-video-container-cross {
  width: 0.875em; height: 0.875em;
  position: relative; flex-shrink: 0;
}
.home-reel-video-container-cross::before,
.home-reel-video-container-cross::after {
  content: ''; position: absolute; background: rgba(255,255,255,0.3);
}
.home-reel-video-container-cross::before { width: 1px; height: 100%; left: 50%; }
.home-reel-video-container-cross::after { width: 100%; height: 1px; top: 50%; }
.home-reel-video-container-svg-wrapper {
  display: flex; gap: 1.5em;
  overflow: hidden; font-family: 'DM Mono', monospace;
  font-size: 0.7em;
}
.reel-label-text { color: rgba(255,255,255,0.35); flex-shrink: 0; letter-spacing: 0.05em; }
#home-reel-video-container-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3em;
  display: flex;
  align-items: center;
  padding: 0 1.5em;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

/* Reel placeholder visual */
#home-reel-video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 0;
  overflow: hidden;
}
.reel-bg-animation {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.reel-dot {
  position: absolute;
  border-radius: 50%;
  animation: reelPulse 4s ease-in-out infinite;
}
.reel-dot-1 {
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(193,255,0,0.15), transparent 70%);
  animation-delay: 0s;
}
.reel-dot-2 {
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(26,47,251,0.1), transparent 70%);
  animation-delay: -1.5s;
}
.reel-dot-3 {
  width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255,76,65,0.1), transparent 70%);
  top: 20%; right: 15%;
  animation-delay: -3s;
}
.reel-wave {
  position: absolute;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.015) 3px,
    rgba(255,255,255,0.015) 4px
  );
}
@keyframes reelPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
#home-reel-video-title {
  position: relative; z-index: 1;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.03em;
  pointer-events: none;
}

/* Play button */
#home-reel-video-watch-btn {
  position: absolute;
  bottom: 2em; right: 2em;
  z-index: 3;
  width: 4.5em; height: 4.5em;
  border-radius: 50%;
  cursor: pointer;
  background: var(--color-white);
  color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
#home-reel-video-watch-btn:hover { transform: scale(1.1); background: var(--color-accent); }
#home-reel-video-watch-btn-svg { width: 2em; height: 2em; padding-left: 0.2em; }

/* ══════════════════════════════════════════════════════
   FEATURED WORK
══════════════════════════════════════════════════════ */
#home-featured {
  background: var(--color-white);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  grid-column: 1 / -1;
  display: block;
}
#home-featured-title-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2em;
  padding: 0 var(--base-padding-x);
  margin-bottom: 2.5em;
}
@media (max-width: 812px) { #home-featured-title-top { flex-direction: column; align-items: flex-start; } }
#home-featured-title-wrapper {}
#home-featured-title {
  font-size: clamp(2rem, 3.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-black);
  margin: 0;
}
#home-featured-disclaimer {
  max-width: 28em;
  font-size: clamp(0.875rem, 1.2vw, 1.2rem);
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  text-align: right;
}
@media (max-width: 812px) { #home-featured-disclaimer { text-align: left; } }

/* Project grid */
.project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  padding: 0 var(--base-padding-x);
  margin-bottom: 3em;
}
@media (max-width: 1100px) { .project-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .project-list { grid-template-columns: 1fr; gap: 1em; } }

.project-item {
  border-radius: var(--global-border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4,0,0.1,1);
  background: var(--color-black);
}
.project-item:hover { transform: translateY(-6px); }
.project-item-main { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.project-item-image {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.1,1);
  position: relative;
}
.project-item:hover .project-item-image { transform: scale(1.04); }
.project-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Project visual styles */
.project-img-1 { background: linear-gradient(135deg, #0a0a14, #1a1f40); }
.project-img-1 .pv-circle {
  width: 40%; aspect-ratio: 1;
  border: 1px solid rgba(193,255,0,0.4);
  border-radius: 50%;
  animation: rotateSlow 8s linear infinite;
}
.project-img-1 .pv-circle::after {
  content: ''; position: absolute;
  width: 60%; height: 60%;
  border: 1px solid rgba(193,255,0,0.2);
  border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.project-img-1 .pv-line { position: absolute; background: rgba(193,255,0,0.15); }
.project-img-1 .pv-line-h { width: 80%; height: 1px; }
.project-img-1 .pv-line-v { width: 1px; height: 80%; }

.project-img-2 { background: linear-gradient(135deg, #0f1a0a, #152010); }
.project-img-2 .pv-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(217,243,222,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,243,222,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.project-img-2 .pv-badge {
  position: relative; z-index: 1;
  font-size: 3em; font-weight: 800;
  color: rgba(217,243,222,0.3);
  letter-spacing: -0.05em;
  font-family: 'Syne';
}

.project-img-3 { background: linear-gradient(135deg, #120f1e, #1e1040); }
.project-img-3 .pv-wave-anim {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px
  );
}
.project-img-3 .pv-text {
  position: relative; z-index: 1;
  font-size: 2em; font-weight: 800;
  color: rgba(255,255,255,0.15);
}

.project-img-4 { background: linear-gradient(135deg, #1a0e0e, #280d0d); }
.project-img-4 .pv-diamond {
  width: 40%; aspect-ratio: 1;
  background: rgba(255,237,215,0.1);
  transform: rotate(45deg);
  border: 1px solid rgba(255,237,215,0.2);
}
.project-img-4 .pv-rings {
  position: absolute;
  width: 60%; aspect-ratio: 1;
  border: 1px solid rgba(255,237,215,0.1);
  border-radius: 50%;
  animation: rotateSlow 12s linear infinite reverse;
}

.project-img-5 { background: linear-gradient(135deg, #0d0d1f, #161630); }
.project-img-5 .pv-bars {
  position: absolute; bottom: 20%; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5em; align-items: flex-end;
}
.project-img-5 .pv-bars::before {
  content: '';
  display: block; width: 12px; height: 60%; background: rgba(160,180,255,0.3); border-radius: 3px 3px 0 0;
  animation: barAnim 2s ease-in-out infinite;
}
.project-img-5 .pv-bars::after {
  content: '';
  display: block; width: 12px; height: 40%; background: rgba(160,180,255,0.2); border-radius: 3px 3px 0 0;
  animation: barAnim 2s ease-in-out infinite 0.5s;
}

.project-img-6 { background: linear-gradient(135deg, #0a1510, #0f1e15); }
.project-img-6 .pv-spiral {
  width: 50%; aspect-ratio: 1;
  border: 2px solid rgba(193,255,0,0.2);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: rotateSlow 6s linear infinite;
  box-shadow: 0 0 30px rgba(193,255,0,0.1);
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }
@keyframes barAnim {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

.project-item-footer {
  padding: 1em 1.25em 1.25em;
  background: var(--color-black);
}
.project-item-line-1 {
  font-size: 0.7em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  font-family: 'DM Mono', monospace;
}
.project-item-line-2 {
  display: flex; align-items: center; gap: 0.5em;
  font-size: 1em; font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.project-item-line-2-icon {
  font-size: 0.875em;
  color: var(--color-accent);
  transition: transform 0.3s;
}
.project-item:hover .project-item-line-2-icon { transform: translate(2px, -2px); }

/* CTA */
#home-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 1em 1.75em;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 6.25em;
  font-weight: 500;
  font-size: 0.875em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  margin-left: var(--base-padding-x);
}
#home-featured-cta:hover { background: var(--color-accent); color: var(--color-black); transform: scale(1.03); }
#home-featured-cta-dot {
  width: 0.5em; height: 0.5em;
  background: var(--color-accent);
  border-radius: 50%;
}
#home-featured-cta:hover #home-featured-cta-dot { background: var(--color-black); }

/* ══════════════════════════════════════════════════════
   GOAL / ABOUT SECTION
══════════════════════════════════════════════════════ */
#home-goal {
  background: var(--color-off-white);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  grid-column: 1 / -1;
  display: block;
}
#home-goal-context {
  padding: 0 var(--base-padding-x);
  margin-bottom: 4em;
}
#home-goal-context-inner { max-width: 60em; }
#home-goal-title {
  font-size: clamp(2rem, 3.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-black);
  margin-bottom: 1.5em;
}
#home-goal-texts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
@media (max-width: 812px) { #home-goal-texts { grid-template-columns: 1fr; } }
.home-goal-texts-paragraph {
  font-size: clamp(0.875rem, 1.2vw, 1.2rem);
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
}

/* Services grid */
#services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  padding: 0 var(--base-padding-x);
  margin-bottom: 5em;
}
@media (max-width: 1100px) { #services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--color-white);
  border-radius: var(--global-border-radius);
  padding: 2em;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.service-card-icon {
  color: var(--color-black);
  margin-bottom: 1.25em;
  opacity: 0.7;
}
.service-card-title {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.75em;
  letter-spacing: -0.02em;
}
.service-card-desc {
  font-size: 0.875em;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
}

/* Tunnel title */
#home-goal-tunnel-title {
  padding: 0 var(--base-padding-x);
  font-size: clamp(2.5rem, 5vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.15);
  margin-bottom: 3em;
}
.home-goal-tunnel-title-line { display: block; }
.home-goal-tunnel-title-line:nth-child(2) { padding-left: 2em; }
.home-goal-tunnel-title-line:nth-child(3) { padding-left: 4em; color: var(--color-black); -webkit-text-stroke: 0; }

/* Goal visual */
#home-goal-image-in-outer { padding: 0 var(--base-padding-x); }
#home-goal-image-in-inner {
  border-radius: var(--global-border-radius);
  overflow: hidden;
}
#home-goal-image-in {
  aspect-ratio: 21 / 9;
  background: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.goal-visual-anim {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(193,255,0,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(26,47,251,0.1) 0%, transparent 50%);
  animation: goalAnim 8s ease-in-out infinite alternate;
}
@keyframes goalAnim {
  from { background:
    radial-gradient(circle at 20% 40%, rgba(193,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(26,47,251,0.12) 0%, transparent 50%); }
  to { background:
    radial-gradient(circle at 70% 60%, rgba(193,255,0,0.12) 0%, transparent 50%),
    radial-gradient(circle at 30% 40%, rgba(26,47,251,0.15) 0%, transparent 50%); }
}

/* ══════════════════════════════════════════════════════
   END SECTION / CTA
══════════════════════════════════════════════════════ */
#end-section {
  background: var(--color-black);
  min-height: 80vh;
  display: flex; align-items: center;
  grid-column: 1 / -1;
  padding: clamp(60px, 10vw, 120px) var(--base-padding-x);
}
#end-section-outer { width: 100%; }
#end-section-inner { position: relative; }
#end-section-content { position: relative; }

.end-section-content-cross {
  display: inline-block;
  width: var(--cross-size); height: var(--cross-size);
  position: relative; margin-right: 1em;
}
.end-section-content-cross::before,
.end-section-content-cross::after {
  content: ''; position: absolute; background: rgba(255,255,255,0.2);
}
.end-section-content-cross::before { width: 1px; height: 100%; left: 50%; }
.end-section-content-cross::after { width: 100%; height: 1px; top: 50%; }

#end-section-content-crosses { margin-bottom: 2em; }
#end-section-subtitle-text {
  font-size: clamp(0.875rem, 1.5vw, 1.5rem);
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  font-family: 'DM Mono', monospace;
}
#end-section-title-link {
  font-size: clamp(4rem, 9vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-white);
  display: inline-block;
  transition: color 0.3s;
}
#end-section-title { position: relative; display: inline-block; cursor: pointer; }
#end-section-title:hover #end-section-title-link { color: var(--color-accent); }
#end-section-title-top-decoration {
  position: absolute; top: -0.15em; left: -0.3em;
  width: 1.5em; height: 1.5em;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  pointer-events: none;
}
#end-section-title-bottom-left-decoration {
  position: absolute; bottom: 0; left: 0;
  width: 0.5em; height: 0.5em;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
}
#end-section-title-bottom-right-decoration {
  position: absolute; top: 0; right: -0.5em;
  width: 0.3em; height: 0.3em;
  background: var(--color-blue);
  border-radius: 50%;
  pointer-events: none;
}

#end-bottom {
  display: flex; align-items: center; gap: 1em;
  margin-top: 4em;
  color: rgba(255,255,255,0.2);
}
.end-bottom-arrow-container { display: flex; gap: 0.25em; }
.end-bottom-arrow {
  width: 1.5em; height: 1.5em;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.end-bottom-arrow::after {
  content: '↓';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.7em;
}
#end-bottom-text-container { display: flex; gap: 2em; }
.end-bottom-text {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'DM Mono', monospace;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
#footer-section {
  background: var(--color-white);
  grid-column: 1 / -1;
  display: block;
  padding: clamp(60px, 8vw, 100px) var(--base-padding-x) 2em;
  border-top: 1px solid rgba(0,0,0,0.06);
}
#footer-top {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 3em;
}
#footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  margin-bottom: 4em;
}
@media (max-width: 812px) { #footer-middle { grid-template-columns: 1fr; gap: 2em; } }

/* Contact column */
#footer-contact-address {
  display: block;
  margin-bottom: 2em;
}
.footer-address-line {
  font-size: 0.875em;
  color: rgba(0,0,0,0.5);
  line-height: 1.8;
  transition: color 0.2s;
}
#footer-contact-address:hover .footer-address-line { color: rgba(0,0,0,0.8); }

#footer-contact-socials { margin-bottom: 2em; }
.footer-socials-line {
  display: flex; align-items: center; gap: 0.5em;
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: gap 0.3s;
}
.footer-socials-line:hover { gap: 1em; }
.footer-socials-line-svg { width: 1.2em; height: 1.2em; opacity: 0.5; }
.footer-socials-text { font-size: 0.875em; color: rgba(0,0,0,0.6); }

#footer-enquires-header, #footer-business-header {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.4em;
  font-family: 'DM Mono', monospace;
}
#footer-enquires-link, #footer-business-link {
  font-size: 1em;
  font-weight: 600;
  color: var(--color-black);
  transition: color 0.2s;
}
#footer-enquires-link:hover, #footer-business-link:hover { color: var(--color-blue); }
#footer-contact-enquires { margin-bottom: 1.5em; }

/* Newsletter column */
#footer-newsletter-header {
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-black);
  margin-bottom: 1.5em;
  display: flex; flex-direction: column;
}
.footer-newsletter-line { display: block; }
#footer-newsletter-input { position: relative; max-width: 28em; }
#footer-newsletter-bg {
  position: absolute; inset: 0;
  background: var(--color-dark-white);
  border-radius: 6.25em;
}
#footer-newsletter-form {
  position: relative;
  display: flex; align-items: center;
  gap: 0.5em;
  padding: 0.75em 0.75em 0.75em 1.5em;
}
#footer-newsletter-input-field {
  flex: 1;
  border: none; background: transparent;
  font-size: 1em; color: var(--color-black);
  outline: none;
}
#footer-newsletter-input-field::placeholder { color: rgba(0,0,0,0.35); }
#footer-newsletter-input-arrow {
  width: 2.75em; height: 2.75em;
  border-radius: 50%;
  background: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
#footer-newsletter-input-arrow:hover { background: var(--color-accent); }
#footer-newsletter-input-arrow svg path { fill: var(--color-white); }
#footer-newsletter-input-arrow:hover svg path { fill: var(--color-black); }
#footer-newsletter-feedback-message {
  font-size: 0.875em;
  color: var(--color-accent);
  min-height: 2em;
  padding: 0.5em 1.5em 0;
}

/* Footer bottom */
#footer-bottom {
  display: flex;
  align-items: center;
  gap: 2em;
  padding-top: 2em;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}
#footer-bottom-copyright {
  font-size: 0.75em;
  color: rgba(0,0,0,0.35);
  font-family: 'DM Mono', monospace;
}
#footer-bottom-labs {
  font-size: 0.75em;
  color: rgba(0,0,0,0.35);
  font-family: 'DM Mono', monospace;
  transition: color 0.2s;
}
#footer-bottom-labs:hover { color: var(--color-black); }
#footer-bottom-tagline {
  margin-left: auto;
  font-size: 0.75em;
  color: rgba(0,0,0,0.35);
  font-family: 'DM Mono', monospace;
}
#footer-bottom-up {
  width: 2.5em; height: 2.5em;
  border-radius: 50%;
  background: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
#footer-bottom-up:hover { background: var(--color-accent); transform: translateY(-3px); }
#footer-bottom-up svg path { fill: var(--color-white); }
#footer-bottom-up:hover svg path { fill: var(--color-black); }

/* ══════════════════════════════════════════════════════
   SCROLL INDICATOR
══════════════════════════════════════════════════════ */
#scroll-indicator {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 999;
}
#scroll-indicator-bar {
  height: 100%;
  background: var(--color-accent);
  width: 0%;
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════════ */
#custom-cursor {
  position: fixed;
  width: 40px; height: 40px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  top: 0; left: 0;
}
#custom-cursor-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  transform: scale(0.3);
  transition: transform 0.3s cubic-bezier(0.4,0,0.1,1);
}
body:has(a:hover) #custom-cursor-inner,
body:has(button:hover) #custom-cursor-inner { transform: scale(1.2); }
@media (hover: none) { #custom-cursor { display: none; } }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll-based reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.1,1), transform 0.8s cubic-bezier(0.4,0,0.1,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Focus styles */
button:focus, *:focus { outline: 2px solid var(--color-accent); outline-offset: 2px; }
button:focus:not(:focus-visible), *:focus:not(:focus-visible) { outline: none; }
