@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

/* ── PAGE EXIT OVERLAY ── */
#page-exit {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9998;
  transform: translateY(100%);
  pointer-events: none;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

#loader.exit {
  transform: translateY(-100%);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo {
  height: 32px;
  width: auto;
  filter: invert(1);
  opacity: 0;
  transform: translateY(8px);
  animation: loader-fade-in 0.5s ease forwards 0.1s;
}

.loader-bar-track {
  position: relative;
  width: 180px;
  height: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  opacity: 0;
  overflow: visible;
  animation: loader-fade-in 0.5s ease forwards 0.3s;
}

/* Soft ambient bloom behind the filled area — wide & faint far from bar */
.loader-bar-bloom {
  position: absolute;
  inset: -60px -40px;
  border-radius: 80px;
  background: radial-gradient(
    ellipse at 40% 50%,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.04) 20%,
    rgba(255, 255, 255, 0.015) 45%,
    rgba(255, 255, 255, 0.005) 65%,
    transparent 85%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.loader-bar-fill {
  position: relative;
  height: 100%;
  width: 0%;
  border-radius: 5px;
  overflow: visible;
  /* Main fill: bright center fading to edges — non-uniform glow */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.35) 15%,
    rgba(255, 255, 255, 0.65) 35%,
    rgba(255, 255, 255, 0.90) 50%,
    rgba(255, 255, 255, 0.65) 65%,
    rgba(255, 255, 255, 0.35) 85%,
    rgba(255, 255, 255, 0.12) 100%
  );
  /* Layered neon glow: tight core → mid diffusion → wide faint halo */
  box-shadow:
    0 0  3px 0px  rgba(255, 255, 255, 0.90),
    0 0  6px 1px  rgba(255, 255, 255, 0.45),
    0 0 14px 3px  rgba(255, 255, 255, 0.18),
    0 0 30px 6px  rgba(255, 255, 255, 0.07),
    0 0 55px 12px rgba(255, 255, 255, 0.03),
    0 0 90px 20px rgba(255, 255, 255, 0.012);
}

/* Hot white core line — concentrated in the center of the bar */
.loader-bar-core {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(255, 255, 255, 1.0) 0%,
    rgba(255, 255, 255, 0.7) 30%,
    rgba(255, 255, 255, 0.2) 70%,
    transparent 100%
  );
  border-radius: 1px;
  box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.6);
}

@keyframes loader-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

.loader-percent-row {
  display: flex;
  justify-content: flex-end;
  width: 180px;
  margin-top: 6px;
  opacity: 0;
  animation: loader-fade-in 0.5s ease forwards 0.3s;
}

.loader-percent {
  font-family: 'Bytesized', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.03em;
  line-height: 1;
}

.loader-cursor {
  font-family: 'Bytesized', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.30);
  line-height: 1;
  animation: cursor-blink 0.8s step-start infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

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

:root {
  --bg: #000000;
  --text: #ffffff;
  --text-muted: #999999;
  --accent: #e8956d;
  --border: rgba(255,255,255,0.25);
  --border-hover: rgba(255,255,255,0.6);
}

html {
  height: 100%;
  zoom: 1.2;
  scrollbar-gutter: stable;
}

body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: calc(100% - 64px);
  max-width: 1200px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 22px;
  width: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

/* ── NAV SCROLLED ── */
nav {
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  max-width: 480px;
}

.nav-links {
  overflow: hidden;
  max-width: 400px;
  opacity: 1;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

nav.scrolled .nav-links {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}

/* ── POSITION-AWARE NAV BTN ── */
.btn-posnawr {
  position: relative;
  overflow: hidden;
}
.btn-posnawr span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transform: translate(-50%, -50%);
  transition: width 0.45s ease-in-out, height 0.45s ease-in-out;
  z-index: 0;
  pointer-events: none;
}
.btn-posnawr:hover span {
  width: var(--ripple-size, 300px);
  height: var(--ripple-size, 300px);
}
.btn-posnawr svg,
.btn-posnawr:not(span) {
  position: relative;
  z-index: 1;
}

.btn .arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  border-radius: 5px;
}

/* ── LOCK ACTIVE STATE ── */
.lock-icon.active {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
}

/* ── PRIVATE PAGE ── */
.private-page {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.private-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.private-lock {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.private-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.private-subtitle {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.private-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 260px;
  margin-top: 20px;
  text-align: left;
}

.private-form label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.private-form input {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.private-form input:focus {
  border-color: var(--border-hover);
}

.private-submit {
  margin-top: 4px;
  padding: 11px;
  background: #ffffff;
  color: #0e0e0e;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.private-submit:hover {
  opacity: 0.85;
}

/* ── MAIN LAYOUT ── */
.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr;
  padding-top: 78px;
  position: relative;
}

.content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 78px);
  padding: 0 32px 40px;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

/* ── HERO ROW ── */
.hero-row {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 78px);
  padding-top: 90px;
}

/* ── LEFT COLUMN ── */
.left-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 48px;
  padding-right: 0;
  flex: 1;
  min-width: 0;
}

.hero-heading {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 60px;
  margin-top: auto;
}

.hero-heading .plus {
  color: var(--text-muted);
  font-weight: 700;
}

.bot-icon {
  display: inline-block;
  vertical-align: middle;
  width: 0.85em;
  height: 0.85em;
  position: relative;
  top: -0.05em;
}

.bot-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: bot-blink 4s ease-in-out infinite;
  animation-play-state: paused;
}

body.page-ready .bot-eye {
  animation-play-state: running;
}

@keyframes bot-blink {
  0%, 80%, 100% { transform: scaleY(1); }
  86%           { transform: scaleY(0.1); }
  92%           { transform: scaleY(1); }
}

.hero-heading.bot-hovering .bot-eye {
  animation: bot-look 1.3s ease-in-out infinite;
}

@keyframes bot-look {
  0%   { transform: translate(0px,    0px); }
  35%  { transform: translate(-1.5px, 1.5px); }
  65%  { transform: translate(1.5px,  1.5px); }
  100% { transform: translate(0px,    0px); }
}

.bottom-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.status-line {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-online {
  color: var(--text);
  font-weight: 500;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-description {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 380px;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 4px;
  align-items: center;
}


/* ── RIGHT COLUMN ── */
.right-col {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 60px;
  gap: 16px;
}

.cards-wrapper {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.card {
  width: 290px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #1c1c1c;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

/* Placeholder gradients when no real images */
.card-image.img-banking {
  background: linear-gradient(135deg, #1a2a1a 0%, #0d1a0d 40%, #101a10 60%, #1c2c1c 100%);
  position: relative;
}

.card-image.img-banking::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,80,40,0.4) 0%, transparent 70%);
}

.card-image.img-piracy {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}

.card-image.img-piracy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(100,60,180,0.35) 0%, transparent 70%);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}


/* ── MOCK PHONE INSIDE BANKING CARD ── */
.mock-phone {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.mock-phone svg {
  width: 70%;
  height: 70%;
  opacity: 0.7;
}

/* ── LOCK ICON ── */
.lock-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── BORDER GLOW CARD ── */
.border-glow-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 30;
  --color-sensitivity: calc(var(--edge-sensitivity) + 20);
  --border-radius: 28px;
  --glow-padding: 40px;
  --cone-spread: 25;

  position: relative;
  border-radius: var(--border-radius);
  isolation: isolate;
  transform: translate3d(0, 0, 0.01px);
  display: grid;
  border: 1px solid rgb(255 255 255 / 15%);
  background: var(--card-bg, #060010);
  overflow: visible;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 2px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px,
    rgba(0, 0, 0, 0.1) 0px 4px 8px,
    rgba(0, 0, 0, 0.1) 0px 8px 16px,
    rgba(0, 0, 0, 0.1) 0px 16px 32px,
    rgba(0, 0, 0, 0.1) 0px 32px 64px;
}

.border-glow-card::before,
.border-glow-card::after,
.border-glow-card > .edge-light {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity 0.25s ease-out;
  z-index: -1;
}

.border-glow-card:not(:hover):not(.sweep-active)::before,
.border-glow-card:not(:hover):not(.sweep-active)::after,
.border-glow-card:not(:hover):not(.sweep-active) > .edge-light {
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}

.border-glow-card::before {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-bg, #060010) 0 100%) padding-box,
    linear-gradient(rgb(255 255 255 / 0%) 0% 100%) border-box,
    var(--gradient-one,   radial-gradient(at 80% 55%, hsla(268,100%,76%,1) 0px, transparent 50%)) border-box,
    var(--gradient-two,   radial-gradient(at 69% 34%, hsla(349,100%,74%,1) 0px, transparent 50%)) border-box,
    var(--gradient-three, radial-gradient(at  8%  6%, hsla(136,100%,78%,1) 0px, transparent 50%)) border-box,
    var(--gradient-four,  radial-gradient(at 41% 38%, hsla(192,100%,64%,1) 0px, transparent 50%)) border-box,
    var(--gradient-five,  radial-gradient(at 86% 85%, hsla(186,100%,74%,1) 0px, transparent 50%)) border-box,
    var(--gradient-six,   radial-gradient(at 82% 18%, hsla( 52,100%,65%,1) 0px, transparent 50%)) border-box,
    var(--gradient-seven, radial-gradient(at 51%  4%, hsla( 12,100%,72%,1) 0px, transparent 50%)) border-box,
    var(--gradient-base, linear-gradient(#c299ff 0 100%)) border-box;

  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));

  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black calc(var(--cone-spread) * 1%),
      transparent calc((var(--cone-spread) + 15) * 1%),
      transparent calc((100 - var(--cone-spread) - 15) * 1%),
      black calc((100 - var(--cone-spread)) * 1%)
    );
}

.border-glow-card::after {
  border: 1px solid transparent;
  background:
    var(--gradient-one,   radial-gradient(at 80% 55%, hsla(268,100%,76%,1) 0px, transparent 50%)) padding-box,
    var(--gradient-two,   radial-gradient(at 69% 34%, hsla(349,100%,74%,1) 0px, transparent 50%)) padding-box,
    var(--gradient-three, radial-gradient(at  8%  6%, hsla(136,100%,78%,1) 0px, transparent 50%)) padding-box,
    var(--gradient-four,  radial-gradient(at 41% 38%, hsla(192,100%,64%,1) 0px, transparent 50%)) padding-box,
    var(--gradient-five,  radial-gradient(at 86% 85%, hsla(186,100%,74%,1) 0px, transparent 50%)) padding-box,
    var(--gradient-six,   radial-gradient(at 82% 18%, hsla( 52,100%,65%,1) 0px, transparent 50%)) padding-box,
    var(--gradient-seven, radial-gradient(at 51%  4%, hsla( 12,100%,72%,1) 0px, transparent 50%)) padding-box,
    var(--gradient-base, linear-gradient(#c299ff 0 100%)) padding-box;

  mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);

  mask-composite: subtract, add, add, add, add, add;
  opacity: calc(var(--fill-opacity, 0.5) * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  mix-blend-mode: soft-light;
}

.border-glow-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  pointer-events: none;
  z-index: 1;

  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%
    );

  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  mix-blend-mode: plus-lighter;
}

.border-glow-card > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color, hsl(40deg 80% 80% / 100%)),
    inset 0 0 1px 0 var(--glow-color-60, hsl(40deg 80% 80% / 60%)),
    inset 0 0 3px 0 var(--glow-color-50, hsl(40deg 80% 80% / 50%)),
    inset 0 0 6px 0 var(--glow-color-40, hsl(40deg 80% 80% / 40%)),
    inset 0 0 15px 0 var(--glow-color-30, hsl(40deg 80% 80% / 30%)),
    inset 0 0 25px 2px var(--glow-color-20, hsl(40deg 80% 80% / 20%)),
    inset 0 0 50px 2px var(--glow-color-10, hsl(40deg 80% 80% / 10%)),
    0 0 1px 0 var(--glow-color-60, hsl(40deg 80% 80% / 60%)),
    0 0 3px 0 var(--glow-color-50, hsl(40deg 80% 80% / 50%)),
    0 0 6px 0 var(--glow-color-40, hsl(40deg 80% 80% / 40%)),
    0 0 15px 0 var(--glow-color-30, hsl(40deg 80% 80% / 30%)),
    0 0 25px 2px var(--glow-color-20, hsl(40deg 80% 80% / 20%)),
    0 0 50px 2px var(--glow-color-10, hsl(40deg 80% 80% / 10%));
}

.border-glow-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* ── HERO CTA GLOW BUTTON ── */
.hero-cta-glow {
  display: inline-grid;
}

.hero-cta-glow .btn-hero-inner,
.hero-cta-glow .btn-hero-inner:hover {
  border: none;
  background: transparent;
}

/* ── SHOWCASE CARD GROUP ── */
.showcase-card-group {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-shrink: 0;
}


/* ── SHOWCASE CARD WRAPPER ── */
.showcase-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-card-eyebrow {
  font-family: 'Bytesized', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
}

.showcase-card-eyebrow-cursor {
  animation: cursor-blink 0.8s step-start infinite;
}

/* ── SHOWCASE CARD ── */
.showcase-card {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  border-radius: 5px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--border);
  cursor: pointer;
}

.showcase-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.showcase-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-card-img img {
  transform: scale(1.04);
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 18px 22px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.05) 55%,
    rgba(0, 0, 0, 0.65) 85%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.showcase-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.showcase-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.showcase-card-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.45);
}

.showcase-card-btn svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.showcase-card-number {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  font-family: 'Bytesized', monospace;
}

.showcase-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase-card-heading {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}

.showcase-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 14px;
}

.showcase-card-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  max-width: 320px;
}

/* ── APPROACH SECTION ── */
.approach-section {
  padding: 0px 0 160px;
}

.approach-heading {
  font-size: clamp(20px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 60px;
  max-width: 1100px;
}

.approach-muted {
  color: var(--text-muted);
}

.blur-word {
  display: inline-block;
  filter: blur(6px);
  opacity: 0.15;
  transform: translateY(18px);
  transition: filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blur-word.unblurred {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.blur-word.approach-muted.unblurred {
  opacity: 1;
}

.approach-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 64px;
}

.approach-col-text {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-col-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.approach-btn {
  margin-top: 8px;
  align-self: flex-start;
}

.approach-col-services {
  grid-column: 3;
  display: flex;
  flex-direction: column;
}

.service-item {
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}

.service-item:last-child {
  border-bottom: 1px solid var(--border);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
  transition: padding-left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-header:hover {
  padding-left: 10px;
}

.service-header:hover > span:first-child {
  color: var(--text);
}

.service-header > span:first-child {
  transition: color 0.25s ease;
  color: var(--text-muted);
}

.service-item.open .service-header > span:first-child {
  color: var(--text);
}

.service-plus {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s ease;
  display: inline-block;
}

.service-header:hover .service-plus {
  color: var(--text);
}

.service-item.open .service-plus {
  transform: rotate(45deg);
  color: var(--text);
}

.service-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.service-body p {
  margin: 0;
  padding-bottom: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  display: flex;
  justify-content: center;
  padding: 0 32px 24px;
  margin-top: 20px;
}

.footer-inner {
  width: calc(100% - 64px);
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  padding: 28px 32px 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-top-links {
  display: flex;
  gap: 24px;
}

.footer-top-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-top-links a:hover {
  color: var(--text);
}

.footer-mid {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 32px;
}

.footer-mid-left,
.footer-mid-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-mid-right {
  text-align: right;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 6px;
}

.footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.footer-hours {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.footer-mid-right p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.footer-mono {
  font-family: 'Bytesized', monospace !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-cursor {
  font-family: 'Bytesized', monospace;
  animation: cursor-blink 0.8s step-start infinite;
}

.footer-coords {
  font-weight: 600;
  color: var(--text) !important;
  margin-top: 4px !important;
}

.footer-brand {
  margin: 0 -32px;
  padding: 20px 24px 0;
  user-select: none;
  line-height: 0;
  height: 200px;
  overflow: hidden;
}

.footer-brand-logo {
  width: 100%;
  height: auto;
  filter: blur(20px) drop-shadow(1px 0 0 transparent) drop-shadow(-1px 0 0 transparent) drop-shadow(0 1px 0 transparent) drop-shadow(0 -1px 0 transparent);
  opacity: 0;
  display: block;
  transform: translateY(40px);
  transition: filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease,
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-brand-logo.visible {
  filter: blur(0px) drop-shadow(1px 0 0 rgba(255,255,255,0.9)) drop-shadow(-1px 0 0 rgba(255,255,255,0.9)) drop-shadow(0 1px 0 rgba(255,255,255,0.9)) drop-shadow(0 -1px 0 rgba(255,255,255,0.9));
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 48px;
  }

  .left-col {
    padding-right: 0;
    max-width: 100%;
  }

  .right-col {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cards-wrapper {
    flex-direction: column;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }

  .showcase-card-group {
    width: 100%;
  }

  .showcase-card-wrapper {
    width: 100%;
  }

  .showcase-card {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  /* Approach: passer en 2 colonnes */
  .approach-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .approach-col-text {
    grid-column: 1;
  }

  .approach-col-services {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  /* Supprimer le zoom desktop sur mobile */
  html {
    zoom: 1;
  }

  nav {
    padding: 12px 16px;
    width: calc(100% - 32px);
    top: 12px;
  }

  .nav-links {
    display: none;
  }

  .content {
    padding: 0 16px 40px;
  }

  .hero-row {
    padding-top: 32px;
    min-height: auto;
    padding-bottom: 40px;
    gap: 24px;
  }

  .hero-heading {
    font-size: clamp(26px, 7.5vw, 40px);
    margin-bottom: 32px;
  }

  .hero-description {
    max-width: 100%;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Showcase card plein largeur */
  .showcase-card {
    aspect-ratio: 3 / 4;
  }

  /* Approach: colonne unique */
  .approach-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .approach-col-text {
    grid-column: 1;
  }

  .approach-col-services {
    grid-column: 1;
  }

  .approach-section {
    padding-bottom: 80px;
  }

  .approach-heading {
    margin-bottom: 40px;
  }

  /* Footer */
  footer {
    padding: 0 16px 20px;
  }

  .footer-inner {
    width: 100%;
    padding: 20px 20px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-mid {
    flex-direction: column;
    gap: 20px;
  }

  .footer-mid-right {
    text-align: left;
  }

  .footer-brand {
    height: 120px;
    margin: 0 -20px;
  }
}
