/* ══════════════════════════════════════════
   RYVIN Media & Tech
   Pristine White & Luxury Navy Theme
   3D Sculpted Typography & Glassmorphism
   ══════════════════════════════════════════ */

:root {
  /* surfaces — pristine luxury white palette */
  --navy-deep:  #ffffff;   /* base background is clean white */
  --hero-bg:    #ffffff;   /* hero background */
  --navy:       #112340;   /* standard elegant luxury deep navy */
  --navy-card:  #ffffff;   /* elevated card surfaces */
  --cream:      #F1F5F9;   /* soft slate surface */
  --white:      #ffffff;
  --off-white:  #F8FAFC;
  --surface-alt: #F3F6FA;

  /* ink — standard luxury sapphire-navy across all texts */
  --dark-font:  #112340;   /* primary standard luxury deep navy */
  --navy-text:  #112340;
  --body-font:  #2C3E5B;   /* readable soft navy-slate body */
  --light-font: #112340;
  --grey-light: #4D607B;   /* standard slate-navy subtext & labels */
  --grey-muted: #6B7E99;   /* muted captions */

  /* hairlines & borders */
  --line-dark:  #E2E8F0;   /* clean subtle border */
  --line-cream: #CBD5E1;   /* mid tone hairline */
  --line-soft:  rgba(17, 35, 64, 0.08);

  /* brand colors */
  --blue:       #2D7FF9;   /* RYVIN electric blue */
  --blue-soft:  #5B9CFF;
  --blue-glow:  rgba(45, 127, 249, 0.22);
  --blue-dark:  #155CC4;

  --font-display: "Familjen Grotesk", sans-serif;
  --font-body:    "Inter", sans-serif;
  --font-mono:    "Martian Mono", monospace;
}

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

/* Both html and body must clip, or Chrome's mobile layout viewport
   expands to fit the marquee and every fixed width:100% grows with it. */
html { overflow-x: hidden; background: var(--navy-deep); }
body {
  background: var(--navy-deep);
  color: var(--dark-font);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
img, svg { display: block; }
::selection { background: var(--blue); color: #ffffff; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ── type scale — Luxury 3D Sculpted Typography ── */

.h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.5rem, 6.6vw, 6.25rem);
  line-height: clamp(2.35rem, 5.95vw, 5.625rem);
  letter-spacing: -0.06em;
  color: var(--dark-font);
}
.h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.25rem, 6.28vw, 5.938rem);
  line-height: clamp(2.1rem, 5.95vw, 5.625rem);
  letter-spacing: -0.06em;
  color: var(--dark-font);
}
.h2.big {
  font-size: clamp(2.75rem, 6.35vw, 6rem);
  line-height: clamp(2.6rem, 5.82vw, 5.5rem);
}
.h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.75rem; line-height: 1.1; letter-spacing: -0.04em;
  color: var(--dark-font);
}
.p, .small {
  font-family: var(--font-body); font-weight: 400;
  font-size: 1.25rem; line-height: 1.5;
  color: var(--grey-light);
}
.small { font-size: 1rem; }
.title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.125rem; line-height: 1;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--dark-font);
}
.numbers {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.5rem, 7vw, 5.375rem);
  line-height: 1; letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  color: var(--dark-font);
}
.button-text {
  font-family: var(--font-mono); font-weight: 400;
  font-size: 0.8rem; letter-spacing: -0.04em; text-transform: uppercase;
}
.lbl { color: var(--grey-light); font-weight: 500; }

.tr-container { max-width: 96rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) { .tr-container { padding-inline: 2.5rem; } }

/* ══ PRELOADER ══ */
.pl { position: fixed; inset: 0; z-index: 9050; pointer-events: none; }
.pl-belts { position: absolute; inset: 0; }
.pl-belt {
  position: absolute; left: 0; width: 100%;
  background: #ffffff;
  transform: scaleY(1); transform-origin: 50% 50%;
  margin-top: -1px;
}
.pl-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.pl-logo-wrap {
  position: relative;
  width: clamp(7rem, 16vw, 12rem); aspect-ratio: 591 / 750;
}
.pl-mark { width: 100%; height: 100%; fill: var(--blue); opacity: 0; filter: drop-shadow(0 12px 30px rgba(45,127,249,0.35)); }
.pl-corner {
  position: absolute; width: 13px; height: 13px; opacity: 0;
  background:
    linear-gradient(var(--navy), var(--navy)) center/100% 1px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center/1px 100% no-repeat;
}
.pl-corner.tl { top: -12px; left: -12px; }
.pl-corner.tr { top: -12px; right: -12px; }
.pl-corner.bl { bottom: -12px; left: -12px; }
.pl-corner.br { bottom: -12px; right: -12px; }

.pl-counter {
  position: absolute; bottom: 4.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 1px; opacity: 0;
}
.pl-reel {
  display: block; width: 0.8rem; height: 1.05rem;
  overflow: hidden; position: relative;
}
.pl-strip {
  display: block;
  font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.05rem;
  color: var(--dark-font); font-weight: 500;
  white-space: pre; writing-mode: vertical-lr; text-orientation: upright;
  letter-spacing: 0;
}
.pl-tagline {
  position: absolute; bottom: 2.6rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.55rem; align-items: center;
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-light);
  white-space: nowrap;
}
.pl-tagline span, .pl-tagline i { opacity: 0; transform: translateY(6px); display: inline-block; font-style: normal; }

/* ══ NAV ══ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 99;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 24px rgba(10, 25, 55, 0.03);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  perspective: 1000px;
}
@media (min-width: 768px) { .nav { padding: 1.75rem 2.5rem; } }
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.nav-logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav-logo svg {
  width: 22px; height: 28px; fill: #112340;
  transition: fill 0.3s ease;
}

.nav-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; letter-spacing: -0.03em; color: #112340;
  text-shadow: none;
  transition: color 0.3s ease;
}

.nav-logo:hover .nav-word {
  color: #112340;
  text-shadow: none;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--grey-light);
  letter-spacing: -0.01em;
  padding: 0.4rem 0.6rem;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--dark-font);
}

.nav-link.is-active {
  color: var(--blue);
  font-weight: 600;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

@media (min-width: 1100px) {
  .nav-cta { display: inline-flex; }
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45, 127, 249, 0.3);
}

.nav-right { display: flex; align-items: center; gap: 1rem; }

.sound-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10, 17, 40, 0.04);
  border: 1px solid rgba(10, 17, 40, 0.1);
  display: grid; place-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sound-toggle:hover {
  background: rgba(45, 127, 249, 0.1);
  border-color: var(--blue);
  transform: scale(1.05);
}
.sound-toggle svg { width: 16px; height: 16px; fill: none; stroke: var(--dark-font); stroke-width: 1.6; stroke-linecap: round; }
.sound-toggle svg path:first-child { fill: var(--dark-font); stroke: none; }
.sound-toggle[aria-pressed="false"] .sw { opacity: 0.25; }

.menu-btn {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--dark-font); font-weight: 500;
  padding: 0.4rem 0.6rem; border-radius: 4px;
  transition: color 0.3s ease;
}
.menu-btn:hover { color: var(--blue); }
.mb-bars { display: flex; flex-direction: column; gap: 4px; width: 18px; }
.mb-bars i { display: block; height: 1.5px; background: var(--dark-font); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s ease; }
.menu-btn:hover .mb-bars i { background: var(--blue); }
.menu-btn[aria-expanded="true"] .mb-bars i:first-child { transform: translateY(2.75px) rotate(45deg); background: var(--dark-font); }
.menu-btn[aria-expanded="true"] .mb-bars i:last-child { transform: translateY(-2.75px) rotate(-45deg); background: var(--dark-font); }

/* ══ MENU PANEL ══ */
.menu-panel {
  position: fixed; top: 0; right: 0; z-index: 98;
  width: min(100%, 28rem); height: 100dvh;
  background: #ffffff; color: var(--dark-font);
  border-left: 1px solid var(--line-dark);
  box-shadow: -15px 0 50px rgba(10, 25, 55, 0.08);
  padding: 6.5rem 2.5rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: circle(0% at 92% 5%);
  visibility: hidden;
}
.mp-links { display: flex; flex-direction: column; gap: 0.25rem; }
.mp-link {
  font-family: var(--font-display); font-weight: 600;
  font-size: 3rem; line-height: 1.15; letter-spacing: -0.04em;
  color: var(--dark-font); overflow: hidden;
  transition: color 0.3s ease;
}
.mp-link:hover { color: var(--blue); }
.mp-link span { display: inline-block; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.mp-link:hover span { transform: translateX(0.7rem); }
.mp-foot { display: flex; flex-direction: column; gap: 0.45rem; border-top: 1px solid var(--line-dark); padding-top: 1.5rem; }
.mp-foot .title { color: var(--grey-light); margin-bottom: 0.5rem; }
.mp-mail { font-family: var(--font-body); font-size: 1.05rem; color: var(--dark-font); font-weight: 500; }
.mp-mail:hover { color: var(--blue); }
.mp-social { display: flex; gap: 1.25rem; margin-top: 1.25rem; }
.mp-social a {
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  color: var(--dark-font); border-bottom: 1px solid var(--line-cream); padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.mp-social a:hover { border-color: var(--blue); color: var(--blue); }

/* ══ BUTTON — interactive letters & cascade ══ */
.btn {
  --run: 26px;
  position: relative; display: inline-flex; align-items: center;
  gap: 0.65rem; padding: 0.5rem 0 0.7rem; width: fit-content;
  font-family: var(--font-mono); font-weight: 400;
  font-size: 0.82rem; letter-spacing: -0.04em; text-transform: uppercase;
  color: var(--dark-font); cursor: pointer; overflow: hidden;
  transition: color 0.3s ease;
}
.btn:hover { color: var(--blue); }
.btn-label { display: inline-flex; white-space: pre; }
.btn-label .ch {
  display: inline-block;
  transition: transform var(--dur, 300ms) ease var(--delay, 0s);
}
.btn.is-hovered .btn-label .ch { transform: translateX(var(--run)); }
.btn-arrows { position: relative; width: 1rem; height: 1rem; flex: none; }
.btn-arrows .ar {
  position: absolute; top: 50%; font-style: normal; line-height: 1;
  transform: translateY(-50%);
  transition: opacity 200ms ease, transform 320ms cubic-bezier(0.16,1,0.3,1);
}
.ar-l { left: calc(-1 * var(--run) - 1rem); opacity: 0; }
.ar-r { left: 0; opacity: 1; }
.btn.is-hovered .ar-l { opacity: 1; transform: translateY(-50%) translateX(calc(var(--run) + 1rem)); }
.btn.is-hovered .ar-r { opacity: 0; transform: translateY(-50%) translateX(var(--run)); }
.btn-ul { position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px; }
.btn-ul i { position: absolute; inset: 0; background: var(--dark-font); display: block; transition: background 0.3s ease; }
.btn:hover .btn-ul i { background: var(--blue); }
.ul-r { transform-origin: right; transition: transform 1000ms cubic-bezier(0.16,1,0.3,1); }
.ul-l { transform-origin: left; transform: scaleX(0); transition: transform 500ms cubic-bezier(0.16,1,0.3,1) 120ms; }
.btn.is-hovered .ul-r { transform: scaleX(0); }
.btn.is-hovered .ul-l { transform: scaleX(1); }
.btn-lg { font-size: 0.95rem; --run: 32px; }

/* ══ BACKGROUND LAYER + CANVAS ══ */
.bg-layer { position: fixed; inset: 0; z-index: 0; background: var(--hero-bg); }
#webgl { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
#main { position: relative; z-index: 2; }
section { position: relative; }

/* ══ 1 · HERO — 3D Sculpted Luxury Headline ══ */
.hero { min-height: 100dvh; display: flex; align-items: flex-end; padding: 9rem 0 4rem; background: transparent; }
.hero-grid { width: 100%; }

/* 3D Model Sculpted Effect for Main Display Text */
.hero-h1 {
  max-width: 16ch;
  position: relative;
  user-select: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.065em;
  perspective: 1200px;
}
.hero-h1 .bt {
  display: block;
  position: relative;
  color: #112340;
  /* Multi-layered 3D extruded bevel relief with smooth ambient directional depth */
  text-shadow:
    0 1px 0 #335384,
    0 2px 0 #233e66,
    0 3px 0 #182e4e,
    0 4px 1px #10213a,
    0 5px 2px #0c1a2e,
    0 8px 16px rgba(17, 35, 64, 0.22),
    0 18px 36px rgba(17, 35, 64, 0.12),
    0 32px 64px rgba(45, 127, 249, 0.12);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.5s ease, color 0.5s ease;
  cursor: default;
}
.hero-h1 .bt:hover {
  transform: translateY(-3px);
  color: #0d1c34;
  text-shadow:
    0 1px 0 #466ca8,
    0 2px 0 #315488,
    0 3px 0 #203f6c,
    0 4px 1px #152f54,
    0 5px 2px #0c1e38,
    0 12px 24px rgba(17, 35, 64, 0.28),
    0 24px 48px rgba(17, 35, 64, 0.15),
    0 40px 80px rgba(45, 127, 249, 0.18);
}

.hero-grid .btn { margin-top: 2.75rem; color: var(--dark-font); }

.hero-bottom {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: end; gap: 2rem; margin-top: 5.5rem;
}
.scroll-cue {
  width: 44px; height: 44px; border: 1.5px solid var(--line-cream); border-radius: 50%;
  display: grid; place-items: center; color: var(--dark-font); font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(10, 25, 55, 0.05);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.scroll-cue:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(3px); box-shadow: 0 8px 20px rgba(45,127,249,0.18);
}
.blast-prompt {
  color: var(--dark-font); line-height: 1.5; justify-self: center; text-align: center;
  font-weight: 500;
}
.bolt { width: 0.85em; height: 0.85em; display: inline-block; vertical-align: -0.1em; fill: var(--blue); }
.bp-dim { color: var(--grey-light); text-transform: none; font-size: 0.95rem; letter-spacing: 0; }
.stat-box {
  display: flex; gap: 0.9rem; align-items: flex-start;
  border: 1px solid var(--line-dark); border-radius: 8px;
  padding: 1rem 1.25rem; min-height: 4.5rem; max-width: 22rem;
  color: var(--dark-font);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(10, 25, 55, 0.04);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.stat-box:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(45, 127, 249, 0.12);
  transform: translateY(-2px);
}
.sb-globe { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--blue); stroke-width: 1.5; margin-top: 2px; }
.sb-sub { color: var(--grey-light); font-size: 0.85rem; margin-top: 0.3rem; }

/* ══ 2 · ABOUT ══ */
.about { padding: 9rem 0; min-height: 100dvh; display: flex; align-items: center; background: #ffffff; }
.about-head { display: block; margin-bottom: 2rem; }
@media (min-width: 1024px) {
  .about-head { margin-bottom: 3rem; }
}
/* headline fills word-by-word as it scrolls */
.fill-text .wd { color: rgba(8, 15, 30, 0.15); transition: color 0.25s linear; }
.fill-text .wd.on {
  color: var(--dark-font);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(8, 15, 30, 0.06);
}

.line-plus { display: flex; align-items: center; gap: 0.75rem; margin: 5rem 0 4rem; }
.lp-mark { font-style: normal; color: var(--grey-muted); font-size: 0.85rem; }
.lp-line { flex: 1; height: 1px; background: var(--line-dark); transform-origin: left; }

.about-foot { display: grid; gap: 3rem; }
@media (min-width: 1024px) {
  .about-foot { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .ab-statement { max-width: 16rem; font-weight: 500; color: var(--dark-font); }
}
.ab-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
.ab-copy .p { color: var(--grey-light); max-width: 34rem; }

/* ══ 3 · VISION / MARQUEE ══ */
.vision { padding: 8rem 0; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; gap: 5rem; background: var(--off-white); }
.vis-title {
  color: var(--dark-font);
  background: linear-gradient(175deg, #050A14 0%, #11203E 60%, #1D3664 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(8, 15, 30, 0.15));
}
.vis-foot { color: var(--grey-light); }
.marquee { width: 100%; max-width: 100vw; min-width: 0; overflow: hidden; }
.mq-track { display: flex; align-items: center; width: max-content; white-space: nowrap; will-change: transform; }
.mq-item {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.5rem, 9.16vw, 10rem);
  line-height: 1; letter-spacing: -0.08em; text-transform: uppercase;
  color: var(--dark-font);
  text-shadow: 0 4px 18px rgba(8, 15, 30, 0.08);
}
.mq-x { font-style: normal; color: var(--blue); font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 2.5rem; }
@media (min-width: 1024px) { .mq-x { margin: 0 4rem; } }

/* ══ 4 · SERVICES ══ */
.services { padding: 9rem 0 11rem; background: #ffffff; }
.svc-head { margin: 1.5rem 0 5rem; }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  position: relative; border: 1px solid var(--line-dark); border-radius: 12px;
  padding: 2.25rem 2rem 2.5rem; min-height: 20rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(8, 15, 30, 0.03);
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.svc-card:hover {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(45, 127, 249, 0.14);
  transform: translateY(-6px);
}
.svc-idx {
  position: absolute; top: 1.8rem; right: 2rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey-muted); font-weight: 500;
}
.svc-ico { width: 42px; height: 42px; fill: none; stroke: var(--blue); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-card .h3 { margin-top: auto; color: var(--dark-font); }
.svc-card .p { font-size: 1rem; color: var(--grey-light); }

/* ══ 5 · KEY FACTS ══ */
.keyfacts {
  padding: 8rem 0 10rem;
  background: linear-gradient(0deg, #EDF2F7 0%, #F8FAFC 100%);
  color: var(--dark-font);
}
.kf-head { text-align: center; margin-bottom: 4.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.kf-head .h2 {
  color: var(--dark-font);
  background: linear-gradient(175deg, #050A14 0%, #12213E 70%, #1C3560 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(8, 15, 30, 0.12));
}
.kf-head .small { color: var(--grey-light); }
.kf-list { display: grid; gap: 1.75rem; perspective: 1400px; }
@media (min-width: 800px) { .kf-list { grid-template-columns: repeat(3, 1fr); } }
.kf-card {
  border-radius: 14px; padding: 2.5rem 2.25rem;
  min-height: 24rem; display: flex; flex-direction: column; justify-content: space-between;
  transform-style: preserve-3d; backface-visibility: hidden;
  box-shadow: 0 15px 40px rgba(8, 15, 30, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.kf-card:hover { transform: translateY(-5px); }
.kf-dark  {
  background: #080F1E; color: #ffffff;
  box-shadow: 0 20px 48px rgba(8, 15, 30, 0.22);
}
.kf-dark .title { color: rgba(255, 255, 255, 0.85); }
.kf-dark .numbers { color: #ffffff; }
.kf-dark .small { color: #CBD5E1; opacity: 0.9; }

.kf-cream {
  background: #ffffff; color: var(--dark-font);
  border: 1px solid var(--line-dark);
  box-shadow: 0 16px 40px rgba(8, 15, 30, 0.06);
}
.kf-blue  {
  background: linear-gradient(145deg, #2D7FF9 0%, #175ec2 100%);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(45, 127, 249, 0.32);
}
.kf-blue .title { color: #ffffff; }
.kf-blue .numbers { color: #ffffff; }
.kf-blue .small { color: #E0EFFF; opacity: 0.95; }

.kf-card .title { opacity: 0.85; }
.kf-mid { position: relative; display: flex; align-items: baseline; }
.kf-disc {
  position: absolute; left: -1.25rem; top: 50%; transform: translateY(-50%);
  width: 8rem; height: 8rem; border-radius: 50%;
  background: rgba(45, 127, 249, 0.08);
}
.kf-dark .kf-disc { background: rgba(45, 127, 249, 0.22); }
.kf-blue .kf-disc { background: rgba(255, 255, 255, 0.16); }
.kf-mid .numbers { position: relative; }
.kf-card .small { max-width: 22rem; }

/* ══ 6 · WORK ══ */
.work { padding: 0 0 10rem; background: var(--off-white); color: var(--dark-font); }

/* ── helix gallery stage ── */
.work-stage {
  position: relative;
  height: 100dvh; min-height: 40rem;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 2.5rem 2.5rem;
  background: var(--off-white);
}
/* the two wordmark lines slide apart in opposite directions on scroll */
.ws-type {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 0.5rem;
  pointer-events: none; user-select: none;
}
.ws-line {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.5rem, 11.5vw, 11rem);
  line-height: 0.9; letter-spacing: -0.06em;
  color: #94A3B8;
  white-space: nowrap;
  will-change: transform;
  text-shadow: 0 4px 20px rgba(8, 15, 30, 0.05);
}
.ws-sub {
  font-family: var(--font-mono); font-weight: 400;
  font-size: clamp(0.62rem, 0.9vw, 0.85rem);
  letter-spacing: 0.02em; text-transform: uppercase;
  text-align: center; color: var(--grey-light);
  line-height: 1.5; margin: 0.6rem 0;
  will-change: transform;
}
#workgl {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.work-stage-foot {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: flex-end; justify-content: space-between;
}
.ws-note { color: var(--grey-light); max-width: 24rem; }
.ws-link { color: var(--dark-font); font-weight: 500; }
.ws-link:hover { color: var(--blue); }

.work .lbl { color: var(--grey-light); }
.work .h2 {
  color: var(--dark-font); margin: 1.5rem 0 4rem;
  background: linear-gradient(175deg, #050A14 0%, #12213E 70%, #1C3560 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(8, 15, 30, 0.12));
}
.work .tr-container { padding-top: 7rem; }
.work-list { border-top: 1px solid var(--line-dark); }
.work-row {
  display: grid; grid-template-columns: 3rem 1.3fr 1.4fr 1fr 2rem;
  align-items: center; gap: 1.5rem;
  padding: 2.25rem 0.75rem; border-bottom: 1px solid var(--line-dark);
  cursor: pointer; position: relative;
  transition: background 0.3s ease, padding 0.3s ease;
}
.work-row:hover { background: rgba(45, 127, 249, 0.03); }
.work-row::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1.5px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.work-row:hover::after { transform: scaleX(1); }
.wr-idx { font-family: var(--font-mono); font-size: 0.75rem; color: var(--grey-muted); }
.wr-name { color: var(--dark-font); font-weight: 600; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), color 0.35s ease; }
.work-row:hover .wr-name { transform: translateX(0.6rem); color: var(--blue); }
.wr-tag, .wr-url { color: var(--grey-light); }
.wr-url { font-family: var(--font-mono); font-size: 0.78rem; }
.wr-arrow { justify-self: end; font-size: 1.2rem; color: var(--grey-muted); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), color 0.35s ease; }
.work-row:hover .wr-arrow { transform: translateX(6px); color: var(--blue); }

/* ══ 7 · TEAM ══ */
.team { padding: 8rem 0 10rem; background: var(--surface-alt); color: var(--dark-font); }
.team .lbl { color: var(--grey-light); }
.team-head { max-width: 52rem; margin-bottom: 4.5rem; }
.team-head .h2 {
  color: var(--dark-font); margin: 1.5rem 0 1.75rem;
  background: linear-gradient(175deg, #050A14 0%, #12213E 70%, #1C3560 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(8, 15, 30, 0.12));
}
.team-intro { color: var(--grey-light); max-width: 36rem; }
/* WebGL scatter wall — cards ride a wave and spring off each other */
.team-stage { position: relative; width: 100%; height: 80vh; min-height: 34rem; }
#teamgl { position: absolute; inset: 0; width: 100%; height: 100%; }
.team-stage + .team-grid { display: none; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
/* keep the fallback readable to assistive tech once WebGL takes over */
.team-grid.sr-only {
  display: block; position: absolute;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.tm-card { display: flex; flex-direction: column; gap: 1rem; }
.tm-photo {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 14px; overflow: hidden;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(8, 15, 30, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.tm-card:hover .tm-photo { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(8, 15, 30, 0.14); }
.tm-p1 { background: linear-gradient(150deg, #1B2739, #0F1826); }
.tm-p2 { background: linear-gradient(150deg, #2D7FF9, #1B5FC4); }
.tm-p3 { background: linear-gradient(150deg, #E2E8F0, #CBD5E1); }
.tm-p4 { background: linear-gradient(150deg, #223148, #16202F); }
.tm-p5 { background: linear-gradient(150deg, #5199FF, #2D7FF9); }
.tm-p6 { background: linear-gradient(150deg, #FFFFFF, #E2E8F0); border: 1.5px dashed #94A3B8; }
.tm-mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(255, 255, 255, 0.22);
}
.tm-p3 .tm-mark { color: rgba(8, 15, 30, 0.15); }
.tm-join-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05; letter-spacing: -0.04em;
  text-align: center; color: var(--dark-font);
}
.tm-name { color: var(--dark-font); font-weight: 600; }
.tm-role { color: var(--grey-light); margin-top: 0.35rem; }
.tm-apply { color: var(--blue); display: inline-block; font-weight: 500; }
.tm-apply:hover { text-decoration: underline; }

/* ══ 8 · CONTACT — 3D Sculpted Luxury Text ══ */
.contact { padding: 9rem 0; min-height: 90dvh; display: flex; align-items: center; background: #ffffff; }
.ct-head {
  margin: 1.5rem 0 3.5rem;
  background: linear-gradient(172deg, #040812 0%, #0a1329 32%, #14284f 68%, #081122 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 1px 0px rgba(255, 255, 255, 0.95))
    drop-shadow(0 2px 1px rgba(45, 127, 249, 0.25))
    drop-shadow(0 4px 2px rgba(8, 15, 30, 0.35))
    drop-shadow(0 10px 20px rgba(8, 15, 30, 0.12));
}
.ct-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem;
  margin-top: 6rem; padding-top: 2.5rem; border-top: 1px solid var(--line-dark);
}
@media (min-width: 900px) { .ct-grid { grid-template-columns: repeat(4, 1fr); } }
.ct-grid .lbl { margin-bottom: 0.6rem; font-weight: 600; color: var(--grey-light); }
.ct-a { color: var(--dark-font); font-weight: 500; transition: color 0.3s ease; }
.ct-a:hover { color: var(--blue); }
.ct-grid .p { color: var(--dark-font); }

/* ══ FOOTER — Premium Luxury Dark ══ */
.footer {
  position: relative; z-index: 2; padding: 2.5rem 0 1.75rem; 
  background: #0B162C; color: #ffffff;
}
.ft-wire { width: 100%; height: auto; max-height: 85px; color: rgba(255,255,255,0.18); cursor: crosshair; }
.ft-wire:hover { color: var(--blue); }
.ft-wire path { transition: stroke 0.4s cubic-bezier(0.16,1,0.3,1); }

.ft-row {
  display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-family: var(--font-mono);
}
.ft-link {
  font-size: 0.95rem; font-family: var(--font-body); font-weight: 500;
  color: rgba(255,255,255,0.85); transition: color 0.3s ease; text-decoration: none;
}
.ft-link:hover { color: var(--blue); }
.ft-link.is-active { color: var(--blue); font-weight: 600; }
.ft-top {
  color: rgba(255,255,255,0.7); font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: color 0.3s ease, transform 0.3s ease;
  background: none; border: none; outline: none;
}
.ft-top:hover { color: #ffffff; transform: translateY(-2px); }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .hero { padding: 7rem 0 2.5rem; }
  .hero-bottom { grid-template-columns: 1fr; gap: 2rem; margin-top: 3.5rem; }
  .blast-prompt { justify-self: start; text-align: left; }
  .about, .vision, .contact { padding: 5.5rem 0; min-height: auto; }
  .services, .work, .keyfacts { padding: 5rem 0 6rem; }
  .about-head { margin-bottom: 1.5rem; }
  .line-plus { margin: 3rem 0 2.5rem; }
  .work-row { grid-template-columns: 2rem 1fr 1.5rem; gap: 1rem; padding: 1.5rem 0.25rem; }
  .wr-tag, .wr-url { display: none; }
  .work-stage { padding: 0 1.5rem 2rem; }
  .team { padding: 5rem 0 6rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .team-head { margin-bottom: 3rem; }
  .menu-panel { width: 100%; padding: 6rem 1.5rem 2.5rem; }
  .mp-link { font-size: 2.25rem; }
  .kf-card { min-height: 20rem; }
}

/* ══ RYBRO — Popup Character in Vision Section ══ */
.rybro-popup {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  z-index: 5;
  pointer-events: none;
  perspective: 1000px;
}

.rybro-popup-inner {
  position: relative;
  pointer-events: auto;
  cursor: pointer;
  animation: rybroFloat 3.5s ease-in-out infinite;
}

@keyframes rybroFloat {
  0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
  25% { transform: translateY(-8px) rotateY(4deg) rotateX(2deg); }
  50% { transform: translateY(-16px) rotateY(0deg) rotateX(-2deg); }
  75% { transform: translateY(-8px) rotateY(-4deg) rotateX(1deg); }
}

.rybro-popup-img {
  width: 220px;
  height: auto;
  user-select: none;
  filter: drop-shadow(0 8px 24px rgba(10, 25, 55, 0.22));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.rybro-popup-inner:hover .rybro-popup-img {
  transform: scale(1.06) translateY(-6px);
  filter: drop-shadow(0 16px 36px rgba(45, 127, 249, 0.28));
}

/* Speech bubble */
.rybro-bubble {
  position: absolute;
  top: -10px;
  left: -20px;
  background: #ffffff;
  border: 1.5px solid var(--line-dark);
  border-radius: 16px 16px 4px 16px;
  padding: 0.5rem 0.9rem;
  box-shadow: 0 6px 20px rgba(10, 25, 55, 0.1);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.5) translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

.rybro-bubble.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.rybro-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-right: 1.5px solid var(--line-dark);
  border-bottom: 1.5px solid var(--line-dark);
  transform: rotate(45deg);
}

.rybro-bubble-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-font);
  letter-spacing: -0.01em;
}

/* Vision section needs relative for popup positioning */
.vision { position: relative; overflow: hidden; }

/* Responsive */
@media (max-width: 900px) {
  .rybro-popup { right: 0.5rem; bottom: 2rem; }
  .rybro-popup-img { width: 160px; }
  .rybro-bubble { top: -6px; left: -10px; padding: 0.4rem 0.7rem; }
  .rybro-bubble-text { font-size: 0.75rem; }
}

@media (max-width: 500px) {
  .rybro-popup-img { width: 120px; }
  .rybro-bubble { top: -4px; left: 0; }
  .rybro-bubble-text { font-size: 0.68rem; }
}

/* ══ REDUCED MOTION ══ */
@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
  .fill-text .wd { color: var(--dark-font); }
  .rybro-popup-inner { animation: none !important; }
}

/* ══════════════════════════════════════════
   MULTI-PAGE STYLES & COMPONENTS
   ══════════════════════════════════════════ */

/* ── Page Hero Header ── */
.page-hero {
  padding-top: clamp(6.5rem, 12vw, 9.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--navy-deep);
  position: relative;
  border-bottom: 1px solid var(--line-dark);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--grey-light);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb-sep {
  color: var(--line-cream);
}

.breadcrumb-cur {
  color: var(--blue);
  font-weight: 500;
}

.page-hero-title {
  margin-bottom: 1.25rem;
}

.page-hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--grey-light);
  max-width: 44rem;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--dark-font);
  letter-spacing: -0.01em;
}

.tag-badge i {
  color: var(--blue);
  font-style: normal;
}

/* ── Common Section Structure ── */
.page-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.pb-sm { padding-bottom: clamp(2rem, 4vw, 3.5rem) !important; }

.page-section.alt-bg {
  background: var(--off-white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.section-head-wrap {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── About Page: Story & RyBro Stage ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.about-story-p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--body-font);
  margin-bottom: 1.5rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(17, 35, 64, 0.06);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: block;
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-font);
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.45;
}

/* ── Dedicated RyBro Mascot Stage ── */
.rybro-stage-container {
  background: linear-gradient(145deg, #ffffff, #f0f5ff);
  border: 1.5px solid rgba(45, 127, 249, 0.2);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(10, 25, 55, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.rybro-stage-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(45, 127, 249, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.rybro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(10, 25, 55, 0.04);
}

.rybro-character-podium {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rybro-interactive-wrap {
  position: relative;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rybro-interactive-wrap:hover {
  transform: scale(1.04);
}

.rybro-interactive-wrap .rybro-popup-img {
  width: 260px;
  max-width: 100%;
  filter: drop-shadow(0 15px 35px rgba(10, 25, 55, 0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.rybro-interactive-wrap:hover .rybro-popup-img {
  filter: drop-shadow(0 20px 45px rgba(45, 127, 249, 0.3));
}

.stage-bubble {
  position: absolute;
  top: 10px;
  left: -20px;
  background: #ffffff;
  border: 1.5px solid var(--line-dark);
  border-radius: 16px 16px 4px 16px;
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 24px rgba(10, 25, 55, 0.1);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stage-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-right: 1.5px solid var(--line-dark);
  border-bottom: 1.5px solid var(--line-dark);
  transform: rotate(45deg);
}

.stage-bubble-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-font);
}

.rybro-triggers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  z-index: 2;
}

.rybro-prompt-btn {
  padding: 0.4rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--dark-font);
  transition: all 0.25s ease;
}

.rybro-prompt-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   IMMERSIVE 3D RYBRO INTRODUCTION
   ══════════════════════════════════════════ */

.rybro-intro {
  position: relative;
  padding: 5rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(175deg, #ffffff 0%, #f0f5ff 35%, #e8f0fe 65%, #f8fafc 100%);
}

/* Three.js canvas - behind everything */
.rybro-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Floating particle layer */
.rybro-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.rybro-particle-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  pointer-events: none;
  animation: rybro-float-particle linear infinite alternate;
}

@keyframes rybro-float-particle {
  0%   { transform: translateY(0) scale(1); opacity: 0.15; }
  50%  { transform: translateY(-25px) scale(1.3); opacity: 0.4; }
  100% { transform: translateY(5px) scale(0.8); opacity: 0.1; }
}

/* Ambient glow orbs */
.rybro-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.rybro-glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 127, 249, 0.15) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.rybro-glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(17, 35, 64, 0.08) 0%, transparent 70%);
  bottom: 5%;
  left: -8%;
}

.rybro-glow--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 127, 249, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 35%;
}

/* Inner layout */
.rybro-intro__inner {
  position: relative;
  z-index: 5;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .rybro-intro__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ── Text column ── */
.rybro-intro__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rybro-intro__label {
  color: var(--blue);
  letter-spacing: 0.15em;
}

.rybro-intro__headline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rybro-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--dark-font);
}

.rybro-line--accent {
  background: linear-gradient(135deg, #2D7FF9 0%, #155CC4 50%, #112340 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
}

/* Typewriter */
.rybro-intro__typewriter {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--grey-light);
  line-height: 1.6;
  min-height: 2.5rem;
  display: flex;
  align-items: flex-start;
}

.rybro-tw-text {
  color: var(--dark-font);
  font-weight: 400;
}

.rybro-tw-cursor {
  color: var(--blue);
  font-weight: 300;
  animation: rybro-blink 0.8s step-end infinite;
  margin-left: 1px;
}

@keyframes rybro-blink {
  50% { opacity: 0; }
}

/* Skill tags */
.rybro-intro__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.rybro-skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 127, 249, 0.15);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--dark-font);
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.rybro-skill-tag:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(45, 127, 249, 0.25);
}

.rybro-skill-icon {
  font-size: 1rem;
  line-height: 1;
}

/* CTA button */
.rybro-intro__cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── Character stage ── */
.rybro-intro__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  perspective: 1200px;
}

/* Orbit rings */
.rybro-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 127, 249, 0.12);
  pointer-events: none;
}

.rybro-orbit-ring--1 {
  width: 380px;
  height: 380px;
  animation: rybro-ring-spin 25s linear infinite;
}

.rybro-orbit-ring--2 {
  width: 300px;
  height: 300px;
  border-color: rgba(17, 35, 64, 0.08);
  animation: rybro-ring-spin 35s linear infinite reverse;
}

.rybro-orbit-ring--3 {
  width: 440px;
  height: 440px;
  border-style: dashed;
  border-color: rgba(45, 127, 249, 0.06);
  animation: rybro-ring-spin 50s linear infinite;
}

@keyframes rybro-ring-spin {
  to { transform: rotate(360deg); }
}

/* Orbiting tech badges */
.rybro-orbit-badge {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.rybro-orbit-badge span {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(45, 127, 249, 0.2);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--blue);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(10, 25, 55, 0.08);
  white-space: nowrap;
}

.rybro-ob--1 { animation: rybro-orbit-1 18s linear infinite; }
.rybro-ob--2 { animation: rybro-orbit-2 22s linear infinite; }
.rybro-ob--3 { animation: rybro-orbit-3 20s linear infinite; }
.rybro-ob--4 { animation: rybro-orbit-4 26s linear infinite; }
.rybro-ob--5 { animation: rybro-orbit-5 24s linear infinite; }
.rybro-ob--6 { animation: rybro-orbit-6 28s linear infinite; }
.rybro-ob--7 { animation: rybro-orbit-7 21s linear infinite; }

@keyframes rybro-orbit-1 {
  0%   { transform: rotate(0deg)   translateX(200px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
@keyframes rybro-orbit-2 {
  0%   { transform: rotate(51deg)  translateX(170px) rotate(-51deg); }
  100% { transform: rotate(411deg) translateX(170px) rotate(-411deg); }
}
@keyframes rybro-orbit-3 {
  0%   { transform: rotate(103deg) translateX(220px) rotate(-103deg); }
  100% { transform: rotate(463deg) translateX(220px) rotate(-463deg); }
}
@keyframes rybro-orbit-4 {
  0%   { transform: rotate(154deg) translateX(185px) rotate(-154deg); }
  100% { transform: rotate(514deg) translateX(185px) rotate(-514deg); }
}
@keyframes rybro-orbit-5 {
  0%   { transform: rotate(206deg) translateX(210px) rotate(-206deg); }
  100% { transform: rotate(566deg) translateX(210px) rotate(-566deg); }
}
@keyframes rybro-orbit-6 {
  0%   { transform: rotate(257deg) translateX(230px) rotate(-257deg); }
  100% { transform: rotate(617deg) translateX(230px) rotate(-617deg); }
}
@keyframes rybro-orbit-7 {
  0%   { transform: rotate(309deg) translateX(195px) rotate(-309deg); }
  100% { transform: rotate(669deg) translateX(195px) rotate(-669deg); }
}

/* Speech bubble */
.rybro-speech {
  position: absolute;
  top: 8%;
  left: 5%;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.rybro-speech__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
  margin-left: 1.2rem;
  animation: rybro-dot-pulse 2s ease-in-out infinite;
}

.rybro-speech__dot--2 {
  width: 12px;
  height: 12px;
  opacity: 0.55;
  margin-left: 0.6rem;
  animation-delay: 0.3s;
}

@keyframes rybro-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}

.rybro-speech__bubble {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(45, 127, 249, 0.2);
  border-radius: 20px 20px 20px 6px;
  padding: 0.75rem 1.2rem;
  box-shadow:
    0 8px 30px rgba(10, 25, 55, 0.1),
    0 0 0 1px rgba(45, 127, 249, 0.05);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-font);
  max-width: 240px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Character wrapper */
.rybro-char-wrap {
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
  will-change: transform;
}

.rybro-char-img {
  width: clamp(240px, 30vw, 340px);
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(10, 25, 55, 0.2));
  transition: filter 0.5s ease;
  animation: rybro-float 4s ease-in-out infinite;
}

.rybro-char-wrap:hover .rybro-char-img {
  filter: drop-shadow(0 25px 50px rgba(45, 127, 249, 0.35));
}

@keyframes rybro-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Ground shadow */
.rybro-char-shadow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(10, 25, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: rybro-shadow-pulse 4s ease-in-out infinite;
}

@keyframes rybro-shadow-pulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.6; }
  50%      { transform: translateX(-50%) scaleX(0.85); opacity: 0.4; }
}

/* Platform glow */
.rybro-platform {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.rybro-platform__glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(45, 127, 249, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: rybro-platform-glow 3s ease-in-out infinite alternate;
}

@keyframes rybro-platform-glow {
  0%   { transform: scaleX(0.9); opacity: 0.5; }
  100% { transform: scaleX(1.1); opacity: 0.8; }
}

/* Scroll indicator */
.rybro-intro__scroll {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.rybro-intro__scroll span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--grey-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rybro-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: rybro-scroll-pulse 2s ease-in-out infinite;
}

@keyframes rybro-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .rybro-intro__stage {
    min-height: 380px;
  }

  .rybro-orbit-ring--1 { width: 280px; height: 280px; }
  .rybro-orbit-ring--2 { width: 220px; height: 220px; }
  .rybro-orbit-ring--3 { width: 340px; height: 340px; }

  @keyframes rybro-orbit-1 {
    0%   { transform: rotate(0deg)   translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
  }
  @keyframes rybro-orbit-2 {
    0%   { transform: rotate(72deg)  translateX(130px) rotate(-72deg); }
    100% { transform: rotate(432deg) translateX(130px) rotate(-432deg); }
  }
  @keyframes rybro-orbit-3 {
    0%   { transform: rotate(144deg) translateX(160px) rotate(-144deg); }
    100% { transform: rotate(504deg) translateX(160px) rotate(-504deg); }
  }
  @keyframes rybro-orbit-4 {
    0%   { transform: rotate(216deg) translateX(140px) rotate(-216deg); }
    100% { transform: rotate(576deg) translateX(140px) rotate(-576deg); }
  }
  @keyframes rybro-orbit-5 {
    0%   { transform: rotate(288deg) translateX(155px) rotate(-288deg); }
    100% { transform: rotate(648deg) translateX(155px) rotate(-648deg); }
  }
}


/* ── Services Page: Deep Dive ── */
.svc-deep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .svc-deep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.svc-deep-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.svc-deep-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(10, 25, 55, 0.06);
}

.svc-deep-top {
  margin-bottom: 2rem;
}

.svc-deep-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--blue);
  margin-bottom: 1rem;
  display: block;
}

.svc-deep-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark-font);
  margin-bottom: 1rem;
}

.svc-deep-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--grey-light);
  margin-bottom: 1.5rem;
}

.svc-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
}

.svc-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--body-font);
}

.svc-feat-item i {
  color: var(--blue);
  font-style: normal;
  font-weight: bold;
}

/* ── Process Workflow Timeline ── */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--dark-font);
}

.step-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--grey-light);
}

/* ── Projects Page: Showcase & Filters ── */
.proj-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--grey-light);
  letter-spacing: -0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
}

.filter-btn:hover {
  color: var(--dark-font);
  border-color: var(--line-cream);
}

.filter-btn.is-active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proj-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.proj-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(10, 25, 55, 0.08);
}

.proj-visual {
  height: 220px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.proj-visual-content {
  text-align: center;
  padding: 1.5rem;
}

.proj-mark-letter {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(17, 35, 64, 0.08);
  line-height: 1;
}

.proj-info {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.proj-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.proj-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--dark-font);
}

.proj-desc {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.proj-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey-muted);
}

.proj-link-arrow {
  color: var(--blue);
  font-weight: bold;
}

/* ── Team Page: Culture & Openings ── */
.team-culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.culture-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 2rem;
}

.culture-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.culture-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--dark-font);
}

.culture-desc {
  font-size: 0.98rem;
  color: var(--grey-light);
  line-height: 1.55;
}

.careers-box {
  background: var(--navy);
  color: #ffffff;
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 860px) {
  .careers-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.careers-left h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.careers-left p {
  color: #CBD5E1;
  max-width: 32rem;
}

.careers-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: var(--blue);
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
}

.careers-btn:hover {
  background: #ffffff;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Contact Us Page: Interactive Form & Direct Channels ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
  }
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 10px 30px rgba(10, 25, 55, 0.04);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-font);
  margin-bottom: 0.65rem;
}

.form-label span {
  font-size: 0.8rem;
  color: var(--grey-muted);
  font-weight: 400;
}

.form-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.form-pill-btn {
  padding: 0.5rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-pill-btn:hover {
  border-color: var(--line-cream);
  color: var(--dark-font);
}

.form-pill-btn.is-selected {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-font);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 127, 249, 0.15);
}

.form-control::placeholder {
  color: var(--grey-muted);
  font-size: 0.92rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 1.75rem;
  background: var(--navy);
  color: #ffffff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 127, 249, 0.3);
}

.contact-channels-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.channel-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.channel-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.channel-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
  display: block;
}

.channel-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark-font);
  line-height: 1.3;
}

.whatsapp-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #25D366;
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.25s ease;
}

.whatsapp-badge-btn:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ── Toast Alert ── */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.is-show {
  transform: translateY(0);
  opacity: 1;
}

