:root {
--bg: #f1efe6;
--surface: #ffffff;
--surface-hover: #e7e1d2;
--text: #0c1730;
--text-dim: rgba(12, 23, 48, 0.65);
--accent: #0045ba;
--accent-rgb: 0, 69, 186;
--accent-glow: rgba(0, 69, 186, 0.35);
--accent-warm: #e56a1e;
--accent-warm-rgb: 229, 106, 30;
--accent-pink: #6fa3dd;
--accent-green: #e56a1e;
--accent-dark: #0c1730;
--border: rgba(12, 23, 48, 0.15);
--font-head: 'Inter', sans-serif;
--font-sub: 'Space Grotesk', sans-serif;
--font-body: 'Manrope', sans-serif;
--header-height: 90px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
.visually-hidden {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
body {
background-color: var(--bg);
background-image:
linear-gradient(to right, rgba(12, 23, 48, 0.06) 1px, transparent 1px),
linear-gradient(to bottom, rgba(12, 23, 48, 0.06) 1px, transparent 1px);
background-size: 40px 40px;
color: var(--text);
font-family: var(--font-body);
overflow-x: hidden;
font-size: 18px;
scrollbar-width: thin;
scrollbar-color: var(--accent) var(--bg);
scroll-behavior: smooth;
}
body.hero-embed-active {
background-color: #050505;
background-image: none;
}
body.hero-embed-active .noise-overlay {
display: none;
}
/* GLOBAL NOISE TEXTURE */
.noise-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
pointer-events: none; z-index: 9999; mix-blend-mode: overlay;
}
h1, h2, h3, h4 { font-family: var(--font-head); text-transform: none; line-height: 0.95; font-weight: 600; letter-spacing: -0.02em; }
p { font-weight: 400; line-height: 1.6; color: var(--text-dim); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.highlight { color: var(--accent); }
/* --- BUTTONS --- */
.btn-wrapper { display: inline-block; padding: 6px; }
.btn {
display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 2.2rem;
font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
background: var(--surface); color: var(--text); border: 1px solid var(--border);
position: relative; overflow: hidden; transition: all 0.2s ease-out; cursor: pointer; z-index: 20; border-radius: 999px;
box-shadow: 0 12px 30px rgba(12,23,48,0.25);
}
.btn::before {
content: none;
}
.btn:hover { background: var(--accent-warm); color: #fff; border-color: var(--accent-warm); box-shadow: 0 0 0 3px rgba(var(--accent-warm-rgb),0.18), 0 18px 40px rgba(12,23,48,0.35); }
/* --- HEADER / NAV --- */
.lynck-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10050;
padding: 0.75rem 1rem;
display: flex;
justify-content: center;
pointer-events: none;
}
.lynck-header-inner {
width: 100%;
max-width: 1200px;
pointer-events: auto;
display: flex;
align-items: center;
gap: 1rem;
}
.lynck-mobile-menu {
display: none;
flex: 0 0 auto;
position: relative;
}
.lynck-mobile-about,
.lynck-mobile-lang {
display: none;
}
.lynck-mobile-menu-trigger {
justify-content: center;
gap: 0.6rem;
width: auto;
min-height: 46px;
font-weight: 700;
}
.lynck-mobile-lang-trigger {
justify-content: center;
gap: 0.35rem;
min-height: 44px;
font-weight: 700;
}
.lynck-mobile-menu-text {
display: inline;
}
.lynck-mobile-menu-icon {
display: inline-flex;
flex-direction: column;
justify-content: center;
gap: 3px;
width: 15px;
}
.lynck-mobile-menu-icon span {
display: block;
width: 15px;
height: 2px;
border-radius: 999px;
background: currentColor;
}
.lynck-mobile-menu-panel {
width: min(92vw, 24rem);
padding: 0.9rem;
display: none;
flex-direction: column;
gap: 0.9rem;
right: 0;
left: auto;
}
.nav-dropdown.open .nav-dropdown-menu.lynck-mobile-menu-panel {
display: flex;
}
.lynck-mobile-menu-group {
display: grid;
gap: 0.35rem;
}
.lynck-mobile-menu-label {
font-size: 0.68rem;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(148, 163, 184, 0.92);
padding: 0 0.15rem 0.15rem;
}
.lynck-mobile-social {
display: grid;
gap: 0.35rem;
}
.lynck-mobile-social a {
display: inline-flex;
align-items: center;
gap: 0.55rem;
}
.lynck-mobile-menu-cta {
width: 100%;
justify-content: center;
min-height: 44px;
}
.lynck-header-bar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
padding: 0.45rem 0.9rem;
border-radius: 999px;
background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(255, 255, 255, 0.62);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
flex: 1;
min-width: 0;
}
.lynck-home-logo {
width: 72px;
height: 72px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.18);
background: rgba(8, 10, 15, 0.8);
display: inline-flex;
align-items: center;
justify-content: center;
overflow: hidden;
box-shadow: 0 12px 24px rgba(0,0,0,0.45);
transition: transform 0.2s ease, border-color 0.2s ease;
margin-left: -0.75rem;
}
.lynck-partner-badge {
      width: 72px;
      height: 72px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      background: rgba(255, 255, 255, 0.36);
      backdrop-filter: blur(14px) saturate(1.2);
      -webkit-backdrop-filter: blur(14px) saturate(1.2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      margin-right: -0.75rem;
    }
.lynck-partner-badge img {
      width: 84%;
      height: 84%;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    }
.lynck-partner-badge:hover {
      transform: translateY(-2px) scale(1.03);
      border-color: rgba(255, 255, 255, 0.92);
      background: rgba(255, 255, 255, 0.48);
    }
.lynck-home-logo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.lynck-home-logo:hover {
transform: scale(1.04);
border-color: rgba(255, 255, 255, 0.4);
}
.lynck-header-left,
.lynck-header-right {
display: flex;
align-items: center;
gap: 0.75rem;
}
.lynck-header-right {
justify-content: flex-end;
flex-shrink: 0;
min-width: 278px;
}
.nav-social {
display: flex;
align-items: center;
gap: 0.35rem;
}
.nav-social a,
.nav-social button {
width: 30px;
height: 30px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255, 255, 255, 0.72);
color: rgba(15, 23, 42, 0.82);
transition: 0.2s ease;
}
.nav-social a:hover,
    .nav-social button:hover {
      color: #0f172a;
      border-color: rgba(255, 255, 255, 0.82);
      background: rgba(255, 255, 255, 0.92);
}
.nav-pill {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.35rem 0.7rem;
border-radius: 999px;
background: rgba(255, 255, 255, 0.72);
border: 1px solid rgba(255,255,255,0.12);
color: rgba(15, 23, 42, 0.78);
font-size: 0.8rem;
cursor: pointer;
transition: 0.2s ease;
}
.nav-pill:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.nav-caret {
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid rgba(15, 23, 42, 0.7);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
position: absolute;
top: calc(100% + 0.6rem);
left: 0;
min-width: 210px;
padding: 0.4rem;
border-radius: 14px;
background: rgba(10, 12, 18, 0.98);
border: 1px solid rgba(255,255,255,0.12);
box-shadow: 0 20px 50px rgba(0,0,0,0.55);
display: none;
}
.nav-dropdown.right .nav-dropdown-menu { right: 0; left: auto; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a,
.nav-dropdown-menu button {
display: block;
padding: 0.5rem 0.7rem;
border-radius: 10px;
color: rgba(255,255,255,0.75);
font-size: 0.85rem;
transition: 0.2s ease;
width: 100%;
text-align: left;
background: transparent;
border: 0;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu button:hover { color: #fff; background: rgba(255,255,255,0.08); }
.lynck-nav-links {
display: flex;
align-items: center;
gap: 1.4rem;
color: rgba(15, 23, 42, 0.82);
font-size: 0.88rem;
}
.lynck-nav-links a,
.lynck-nav-links button {
color: inherit;
background: transparent;
border: 0;
cursor: pointer;
font: inherit;
padding: 0;
}
.lynck-nav-links a:hover,
.lynck-nav-links button:hover { color: #e36b21; }

/* --- Services Mega Menu --- */
.lynck-services-dropdown {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}
.lynck-services-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.lynck-services-dropdown .svc-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor;
  transition: transform 0.2s ease;
}
.lynck-services-dropdown:is(:hover, :focus-within) .svc-caret {
  transform: rotate(180deg);
}
.lynck-services-mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.35rem);
  padding: 1.6rem 1.8rem;
  min-width: 520px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 18, 36, 0.1);
  border-radius: 1.2rem;
  box-shadow: 0 24px 64px rgba(10, 18, 36, 0.14), 0 0 0 1px rgba(10, 18, 36, 0.04);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.lynck-services-mega::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.lynck-services-dropdown:is(:hover, :focus-within) .lynck-services-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.lynck-services-mega a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 0.55rem;
  color: #0a1224 !important;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.lynck-services-mega a:hover {
  background: rgba(227, 107, 33, 0.08) !important;
  color: #e36b21 !important;
}

/* --- Header CTA Button --- */
.gradient-border-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 168px;
  min-height: 44px;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: #0045ba;
  color: #fff;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,69,186,0.25);
}
.gradient-border-btn:hover {
  background: #e56a1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229,106,30,0.3);
}
.gradient-border-btn .btn-beam,
.gradient-border-btn .btn-bg { display: none; }
.gradient-border-btn .btn-core {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
}
@media (max-width: 1080px) {
  .lynck-nav-links { display: none; }
}
/* --- HERO SECTION --- */
.hero {
position: relative; height: 100vh; height: 100dvh; width: 100%; display: flex; flex-direction: column;
align-items: center; justify-content: center; overflow: hidden; perspective: 1200px;
padding-top: var(--header-height); padding-bottom: 80px; z-index: 2; background: var(--bg);
}
.hero.hero-embed {
padding: 0;
min-height: 100vh; min-height: 100dvh;
background: #050505;
z-index: 10001;
align-items: stretch;
justify-content: stretch;
}
.hero-embed-fallback {
position: absolute;
inset: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
background:
linear-gradient(rgba(8, 10, 16, 0.46), rgba(8, 10, 16, 0.46)),
url("/assets/hero-bg-glass-sphere.webp") center / cover no-repeat;
transition: opacity 0.6s ease;
}
.hero-embed-fallback::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(7, 9, 14, 0.12) 0%, rgba(7, 9, 14, 0.45) 100%);
}
.hero-embed-fallback.is-hidden {
opacity: 0;
pointer-events: none;
}
.hero-embed-fallback-content {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: clamp(0.25rem, 0.8vh, 0.65rem);
width: 100%;
height: 100%;
padding: calc(var(--header-height) + 1.5rem) 1rem 2.5rem;
pointer-events: none;
}
.hero-fallback-word {
font-family: "Inter", sans-serif;
font-size: clamp(3.3rem, 13.8vw, 10.6rem);
line-height: 0.86;
letter-spacing: -0.07em;
font-weight: 500;
text-transform: uppercase;
color: #ffffff;
text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.hero-embed-frame {
width: 100%;
height: 100%;
border: 0;
display: block;
background: #050505;
position: relative;
z-index: 2;
contain: layout paint size;
}
.hero-scramble-stack {
position: absolute;
left: clamp(14px, 2.8vw, 46px);
bottom: clamp(18px, 4vh, 62px);
z-index: 3;
width: min(48vw, 620px);
max-width: calc(100vw - 28px);
pointer-events: none;
}
.hero-copy-block {
margin: 0;
max-width: 620px;
pointer-events: auto;
background: rgba(8, 10, 16, 0.36);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 16px;
padding: clamp(0.8rem, 1.3vw, 1.15rem);
backdrop-filter: blur(6px);
}
.hero-copy-headline {
margin: 0;
font-size: clamp(1.35rem, 2.1vw, 2rem);
line-height: 1.08;
letter-spacing: -0.02em;
color: #ffffff;
text-wrap: balance;
}
.hero-copy-subheadline {
margin: 0.65rem 0 0;
font-size: clamp(0.9rem, 1.14vw, 1.05rem);
line-height: 1.48;
color: rgba(240, 246, 255, 0.92);
max-width: 58ch;
}
.hero-copy-proof {
margin: 0.55rem 0 0;
font-size: clamp(0.74rem, 0.9vw, 0.84rem);
line-height: 1.35;
letter-spacing: 0.05em;
color: rgba(196, 214, 247, 0.95);
font-weight: 600;
}
.hero-copy-actions {
display: flex;
align-items: center;
gap: 0.6rem;
margin-top: 0.85rem;
flex-wrap: wrap;
}
.hero-copy-actions .gradient-border-btn {
min-width: 186px;
}
.hero-copy-actions .btn {
padding: 0.65rem 1.2rem;
font-size: 0.82rem;
letter-spacing: 0.06em;
box-shadow: 0 6px 22px rgba(12,23,48,0.3);
}
.hero-scramble-list {
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 0.38rem;
pointer-events: auto;
}
.hero-scramble-line {
display: block;
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: clamp(11px, 1.08vw, 16px);
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffffff;
line-height: 1.2;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 900px) {
  .lynck-header {
    padding: 0.6rem 0.75rem;
  }
  .lynck-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.42rem 0.48rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  }
  .lynck-mobile-menu {
    display: block;
  }
  .lynck-mobile-about {
    display: inline-flex;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 0.7rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(15, 23, 42, 0.88);
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .lynck-mobile-lang {
    display: block;
    flex: 0 0 auto;
    position: relative;
  }
  .lynck-home-logo,
  .lynck-partner-badge {
    width: 48px;
    height: 48px;
    margin: 0;
    flex: 0 0 48px;
    box-shadow: none;
  }
  .lynck-header-bar {
    display: none;
  }
  .lynck-home-logo {
    border-radius: 14px;
  }
  .lynck-home-logo img {
    object-fit: cover;
  }
  .lynck-partner-badge {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.56);
  }
  .lynck-partner-badge img {
    width: 78%;
    height: 78%;
  }
  .lynck-mobile-menu.nav-dropdown.right .lynck-mobile-menu-panel {
    position: fixed;
    left: 50%;
    right: auto;
    width: min(calc(100vw - 1.5rem), 22rem);
    transform: translateX(-50%);
    top: calc(env(safe-area-inset-top, 0px) + 4.6rem);
    max-height: min(72vh, 34rem);
    overflow-y: auto;
    padding: 0.9rem;
    border-radius: 18px;
    box-sizing: border-box;
    overscroll-behavior: contain;
  }
  .lynck-mobile-menu-trigger {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 14px;
    font-size: 0;
    gap: 0;
  }
  .lynck-mobile-menu-text {
    display: none;
  }
  .lynck-mobile-menu-icon {
    width: 16px;
    gap: 3px;
  }
  .lynck-mobile-menu-icon span {
    width: 16px;
  }
  .lynck-mobile-lang-trigger {
    min-width: 52px;
    min-height: 44px;
    padding: 0 0.55rem;
    border-radius: 14px;
    font-size: 0.74rem;
  }
  .lynck-mobile-lang-menu {
    right: 0;
    left: auto;
    min-width: 152px;
  }
  .lynck-mobile-menu-panel .lynck-mobile-menu-label {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .lynck-mobile-menu-panel a,
  .lynck-mobile-menu-panel button {
    padding: 0.72rem 0.85rem;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: normal;
  }
  .lynck-mobile-social {
    gap: 0.45rem;
  }
  .hero-fallback-word {
    font-size: clamp(3.1rem, 18vw, 5.9rem);
    letter-spacing: -0.06em;
  }
  .hero-scramble-stack {
    width: min(92vw, 460px);
    left: 12px;
    bottom: 12px;
  }
  .hero-copy-block {
    border-radius: 12px;
    padding: 0.8rem 0.75rem;
  }
  .hero-copy-headline {
    font-size: clamp(1.18rem, 6.8vw, 1.5rem);
    line-height: 1.1;
  }
  .hero-copy-subheadline {
    font-size: clamp(0.82rem, 3.3vw, 0.94rem);
    line-height: 1.42;
  }
  .hero-copy-proof {
    font-size: clamp(0.68rem, 2.7vw, 0.76rem);
  }
  .hero-copy-actions {
    margin-top: 0.72rem;
    gap: 0.5rem;
  }
  .hero-copy-actions .gradient-border-btn,
  .hero-copy-actions .btn {
    min-height: 40px;
    min-width: 0;
    padding: 0.55rem 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }
}
/* --- MARQUEE --- */
.stream-bar {
background: var(--accent-dark);
padding: 1rem 0;
overflow: hidden;
position: relative;
z-index: 2;
border-top: 1px solid rgba(12,23,48,0.15);
border-bottom: 1px solid rgba(12,23,48,0.15);
mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
-webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.stream-track {
display: flex;
width: max-content;
align-items: center;
animation: marquee-loop 20s linear infinite;
will-change: transform;
transform: translate3d(0, 0, 0);
gap: 0;
font-size: 0;
}
.stream-group {
display: flex;
flex-shrink: 0;
align-items: center;
}
.stream-item {
display: inline-flex;
align-items: center;
font-family: var(--font-head);
font-size: clamp(1rem, 1.55vw, 2.1rem);
font-weight: 600;
letter-spacing: 0.02em;
text-transform: uppercase;
white-space: nowrap;
gap: clamp(0.7rem, 1.3vw, 1.3rem);
margin-right: clamp(2.9rem, 5.2vw, 6.4rem);
}
.stream-item::before,
.stream-item::after {
content: "//";
color: rgba(255, 255, 255, 0.52);
font-weight: 700;
letter-spacing: 0;
}
.stream-group .stream-item:nth-child(4n+1) { color: #ffffff; }
.stream-group .stream-item:nth-child(4n+2) { color: #ffe1bf; }
.stream-group .stream-item:nth-child(4n+3) { color: #ffd7ef; }
.stream-group .stream-item:nth-child(4n+4) { color: #fff4b8; }
@keyframes marquee-loop {
0% { transform: translate3d(0, 0, 0); }
100% { transform: translate3d(-50%, 0, 0); }
}
/* --- FEATURES GRID --- */
.section-grid {
padding: 8rem 0; position: relative; background: var(--bg); z-index: 2; border-top: 1px solid rgba(12,23,48,0.12); overflow: hidden;
}
.section-title { font-size: 4.2rem; margin-bottom: 4rem; border-left: 6px solid var(--accent); padding-left: 2rem; line-height: 1; font-weight: 600; letter-spacing: -0.02em; }
/* --- PIPELINE --- */
.pipeline-section { overflow: hidden; z-index: 2; position: relative; background: var(--bg); }
.pin-wrap-container { width: 100%; height: 100vh; display: flex; background: var(--bg); position: relative; overflow: hidden; align-items: flex-end; }
.pipeline-heading {
position: absolute;
top: clamp(1.3rem, 2.2vh, 2.4rem);
left: 6vw;
right: 6vw;
z-index: 4;
pointer-events: none;
}
.pipeline-heading-kicker {
display: inline-block;
font-family: var(--font-sub);
font-size: 0.78rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(12,23,48,0.6);
margin-bottom: 0.45rem;
}
.pipeline-heading-title {
font-size: clamp(2rem, 4vw, 3.6rem);
line-height: 1.05;
letter-spacing: -0.02em;
color: #0b1220;
margin: 0;
max-width: 900px;
}
.pin-wrap { height: 100%; display: flex; align-items: flex-end; padding: 0 5vw 5vh; }
.horiz-card {
width: 60vw;
height: 70vh;
margin-right: 5vw;
background: #0f111a;
border: 1px solid rgba(255,255,255,0.12);
flex-shrink: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: clamp(2.1rem, 3vw, 4rem);
position: relative;
overflow: hidden;
transform: translate3d(0,0,0);
border-radius: 28px;
box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.horiz-card:last-child { margin-right: 0; }
.horiz-img {
position: absolute; top: 0; left: 0;
width: 100%; height: 100%; object-fit: cover;
transform: scale(1.12); transform-origin: center center;
opacity: 0.46; filter: grayscale(18%) contrast(1) saturate(0.96);
transition: 0.5s ease; z-index: 0;
will-change: transform, filter;
}
.intro-card { background: linear-gradient(170deg, #141b2e 0%, #0e1321 45%, #0a0f1a 100%); }
.intro-card::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(560px circle at 75% -10%, rgba(116,169,255,0.2), transparent 55%);
z-index: 0;
}
.horiz-card::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(0deg, rgba(4,6,11,0.82) 0%, rgba(7,10,18,0.68) 38%, rgba(9,14,25,0.2) 100%);
z-index: 1;
}
.horiz-card:hover .horiz-img { filter: grayscale(0%) contrast(1.03) saturate(1); opacity: 0.56; transform: scale(1.16); }
.horiz-content { position: relative; z-index: 2; max-width: min(860px, 88%); }
.approach-kicker {
display: inline-block;
font-family: var(--font-sub);
font-size: 0.78rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255,255,255,0.66);
margin-bottom: 0.55rem;
}
.approach-lede {
font-size: clamp(1.15rem, 2vw, 1.65rem);
line-height: 1.35;
color: #f2f5ff;
margin-bottom: 1.1rem;
font-weight: 600;
}
.horiz-num {
font-family: var(--font-head);
font-size: clamp(3.2rem, 8vw, 5.2rem);
line-height: 0.82;
color: #77a9ff;
margin-bottom: 0.35rem;
display: block;
}
.horiz-title {
font-size: clamp(2rem, 4.8vw, 3.5rem);
margin-bottom: 0.7rem;
color: #ffffff;
line-height: 0.96;
letter-spacing: -0.02em;
}
.horiz-desc {
font-size: clamp(1.2rem, 2.16vw, 1.66rem);
max-width: 840px;
margin-bottom: 1rem;
color: rgba(236,243,255,0.95);
}
.horiz-detail {
font-size: 1.2rem;
color: rgba(219,228,246,0.78);
max-width: 840px;
line-height: 1.62;
border-left: 2px solid rgba(106,160,255,0.8);
padding-left: 0.95rem;
margin-bottom: 0.8rem;
}
.horiz-list {
list-style: none;
margin: 0.75rem 0 0.95rem;
padding: 0;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.45rem 1.1rem;
}
.horiz-list li {
font-size: 1.1rem;
line-height: 1.45;
color: rgba(231,238,252,0.86);
position: relative;
padding-left: 0.95rem;
}
.horiz-list li::before {
content: "";
position: absolute;
left: 0;
top: 0.58rem;
width: 6px;
height: 6px;
border-radius: 50%;
background: rgba(116, 169, 255, 0.9);
}
.horiz-note {
margin: 0.3rem 0 0;
color: rgba(255,255,255,0.86);
font-size: 1.18rem;
line-height: 1.55;
}
.horiz-closure {
margin-top: 1.2rem;
padding-top: 0.95rem;
border-top: 1px solid rgba(255,255,255,0.2);
font-size: 1.2rem;
line-height: 1.62;
color: rgba(236,242,255,0.9);
}
.horiz-closure strong {
color: #ffffff;
font-weight: 600;
display: block;
margin-top: 0.45rem;
}
/* --- NEURAL GRID --- */
.neural-section { position: relative; padding: 10rem 0; background: var(--bg); z-index: 2; overflow: hidden; }
.mesh-pulse-unified {
  position: relative;
  z-index: 3;
  overflow: visible;
  margin-top: -1px;
  background:
    linear-gradient(rgba(241, 239, 230, 0.92), rgba(241, 239, 230, 0.92)),
    url('/assets/soft-abstract-curved-waves-in-neutral-tones-4k.webp') center / cover no-repeat;
}
/* Progressive overlay: dark pipeline fades smoothly into light beige */
.mesh-pulse-unified::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  height: 180px;
  background: linear-gradient(180deg,
    rgba(241, 239, 230, 0) 0%,
    rgba(241, 239, 230, 0.15) 20%,
    rgba(241, 239, 230, 0.4) 40%,
    rgba(241, 239, 230, 0.7) 65%,
    rgba(241, 239, 230, 0.92) 100%
  );
  pointer-events: none;
  z-index: 4;
}
.mesh-pulse-unified::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(241, 239, 230, 0.12) 0%, rgba(241, 239, 230, 0.05) 42%, rgba(241, 239, 230, 0.18) 100%);
  pointer-events: none;
  z-index: 0;
}
.mesh-pulse-unified .neural-section,
.mesh-pulse-unified .pulse-section { background: transparent; }
.mesh-pulse-unified .neural-section { position: static; padding-bottom: 1.5rem; }
.mesh-pulse-unified .pulse-section { padding-top: 1.5rem; }
.mesh-pulse-unified .neural-grid { inset: 0; height: 100%; }
.mesh-pulse-unified .neural-content { background: transparent; }
.mesh-pulse-unified .neural-content,
.mesh-pulse-unified .pulse-section .container { position: relative; z-index: 2; }
.mesh-pulse-unified .neural-header { color: rgba(242, 247, 255, 0.97); }
.mesh-pulse-unified .neural-sub { color: rgba(226, 234, 249, 0.88); }
.mesh-pulse-unified .m-stat p { color: rgba(220, 228, 244, 0.8); }
.neural-content { position: relative; z-index: 2; text-align: center; background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%); padding: 4rem 2rem; }
.neural-header { font-size: clamp(3rem, 8vw, 7rem); margin-bottom: 2rem; color: var(--text); text-shadow: none; }
.neural-sub { font-size: 1.5rem; max-width: 700px; margin: 0 auto 4rem; color: rgba(12,23,48,0.65); }
.mesh-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem; max-width: 900px; margin: 0 auto; }
.m-stat .stat-value {
display: block;
font-size: 3rem;
font-family: var(--font-head);
font-weight: 600;
line-height: 0.95;
color: var(--accent);
margin-bottom: 0.5rem;
}
.mesh-stats .m-stat:nth-child(2) .stat-value { color: var(--accent-green); }
.mesh-stats .m-stat:nth-child(3) .stat-value { color: var(--accent-pink); }
.m-stat p { font-size: 0.9rem; letter-spacing: 2px; color: rgba(12,23,48,0.6); text-transform: uppercase; }
/* --- SYSTEM PULSE --- */
.pulse-section { padding: 10rem 0; background: var(--bg); z-index: 2; position: relative; }
.mesh-pulse-unified .pulse-text h2,
.mesh-pulse-unified .pulse-text p { color: rgba(239, 244, 255, 0.95); }
.mesh-pulse-unified .pulse-text ul { color: rgba(222, 230, 248, 0.9) !important; }
.mesh-pulse-unified .stat-item span { color: rgba(222, 230, 248, 0.8); }
.mesh-pulse-unified .stat-row { border-top-color: rgba(255,255,255,0.22); }
.mesh-pulse-unified .pulse-visual { transform: none; margin-top: 0; }

/* --- WHY LYNCK ACCORDION --- */
.why-lynck-section {
  padding: 8.5rem 0;
  --why-card-height: 800px;
  --why-card-collapsed: clamp(74px, 5.2vw, 90px);
}
.why-lynck-section#mesh {
  border-radius: clamp(20px, 2.4vw, 34px);
  overflow: hidden;
  margin-inline: clamp(0.6rem, 1.6vw, 1.2rem);
  box-shadow:
    0 0 0 clamp(8px, 1vw, 14px) rgba(237, 233, 224, 0.96),
    0 20px 42px rgba(8, 14, 30, 0.22);
}
.why-lynck-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  grid-template-rows: auto var(--why-card-height);
  gap: 0.75rem 1.25rem;
  align-items: start;
  max-width: min(1880px, calc(100vw - 1rem));
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 1.4vw, 1.25rem);
}
.why-lynck-header {
  display: contents;
}
.why-lynck-header .section-chip {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  align-self: end;
}
.why-lynck-title {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  margin: 0 0 0 0.3rem;
  font-size: clamp(3.55rem, 4.7vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: rgba(12, 23, 48, 0.98);
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  justify-content: center;
  max-width: 420px;
  position: relative;
  z-index: 3;
}
.why-lynck-word {
  display: block;
}
.why-lynck-word-black { color: #0c1730; }
.why-lynck-word-blue { color: var(--accent); }
.why-lynck-word-orange { color: var(--accent-warm); }
.why-lynck-accordion {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
  overflow: hidden;
  padding-left: 0.35rem;
  padding-right: 0.2rem;
}
.why-accordion-item {
  position: relative;
  flex: 0 0 var(--why-card-collapsed);
  min-width: 0;
  height: var(--why-card-height);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}
.why-accordion-item:hover {
  transform: translateY(-2px);
  border-color: rgba(163, 198, 255, 0.2);
}
.why-accordion-item.is-active {
  flex: 0 0 clamp(520px, 43vw, 700px);
  box-shadow: none;
  border-color: rgba(165, 200, 255, 0.2);
}
.why-accordion-media {
  position: absolute;
  inset: 0;
  background-image: var(--why-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
  transition: transform 0.8s ease;
}
.why-accordion-item.is-active .why-accordion-media {
  transform: scale(1.08);
}
.why-accordion-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 22, 0.22) 0%, rgba(5, 10, 22, 0.6) 44%, rgba(4, 8, 18, 0.88) 100%);
}
.why-accordion-label {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  font-family: var(--font-sub);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
  color: rgba(247, 251, 255, 0.93);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.42);
  transition: opacity 0.35s ease, transform 0.45s ease;
  pointer-events: none;
}
.why-accordion-item.is-active .why-accordion-label {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.92);
}
.why-accordion-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.5rem 1.45rem;
  color: rgba(243, 248, 255, 0.96);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.why-accordion-item.is-active .why-accordion-copy {
  opacity: 1;
  transform: translateY(0);
}
.why-accordion-copy h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.why-accordion-copy p {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
  line-height: 1.48;
  color: rgba(228, 236, 252, 0.92);
}
.why-accordion-copy p:last-child {
  margin-bottom: 0;
}
.pulse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pulse-text h2 { font-size: 4rem; margin-bottom: 1.5rem; }
.pulse-text p { font-size: 1.2rem; margin-bottom: 2rem; }
.stat-row { display: flex; gap: 3rem; margin-top: 2rem; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 2rem; }
.stat-item .stat-value {
display: block;
font-size: 2.5rem;
font-family: var(--font-head);
font-weight: 600;
line-height: 0.95;
color: var(--accent);
margin-bottom: 0.5rem;
}
.stat-row .stat-item:last-child .stat-value { color: var(--accent-pink); }
.stat-item span { font-size: 0.9rem; color: var(--text-dim); letter-spacing: 1px; }
.pulse-visual { position: relative; height: 500px; perspective: 1000px; }
.db-card { background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.1); border-radius: 24px; position: absolute; backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); transition: transform 0.5s ease-out; }
.db-main { width: 100%; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; padding: 1.5rem; display: flex; flex-direction: column; }
.testimonials-subtitle,
.testimonials-pill,
.m-stat p,
.stat-item span {
  font-family: var(--font-sub);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
/* --- FOOTER --- */
footer { position: relative; width: 100%; background: var(--accent-dark); z-index: 1; padding: 0; border-top: 1px solid rgba(255,255,255,0.08); color: #f1efe6; }
.footer-big-wrap { padding: 3rem 2rem 2.5rem; overflow: hidden; }
.footer-big {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5.4rem, 14.4vw, 15.6rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  text-align: center;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.footer-links-row { max-width: 1400px; margin: 0 auto; padding: 2.5rem 2rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-links-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-col a { color: rgba(241,239,230,0.85); text-decoration: none; font-family: var(--font-sub); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-links-col a:hover { color: #fff; }
.footer-social-row { display: flex; align-items: center; gap: 0.85rem; }
.footer-social-row a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.footer-social-row a:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; color: rgba(241,239,230,0.5); }
.footer-bottom a { color: rgba(241,239,230,0.65); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-legal { display: flex; gap: 1.8rem; }
/* --- PACKIT-INSPIRED SECTIONS --- */
.pack-section { padding: 7rem 0; background: var(--bg); color: var(--text); border-top: 1px solid rgba(0,0,0,0.08); position: relative; z-index: 2; content-visibility: auto; contain-intrinsic-size: 800px; }
.pack-section.dark { background: var(--accent-dark); color: #f1efe6; }
.pack-section.accent { background: var(--accent); color: #f1efe6; }
.pack-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.pack-title { text-align: center; font-size: 2.4rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4rem; }
.pack-muted { color: rgba(255,255,255,0.65); }
.pack-benefit-row { display: flex; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.pack-benefit-row.reverse { flex-direction: row-reverse; }
.pack-benefit-row,
.section-title { position: relative; z-index: 2; }
.pack-number { width: 30px; height: 30px; background: var(--accent-dark); color: var(--accent-warm); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.pack-benefit-row:nth-of-type(2) .pack-number { background: var(--accent-pink); color: var(--accent-dark); }
.pack-benefit-row:nth-of-type(3) .pack-number { background: var(--accent-green); color: var(--accent-dark); }
.pack-benefit-text h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.pack-benefit-text p { font-size: 1.26rem; line-height: 1.7; color: rgba(12,23,48,0.65); }
.benefits-intro { max-width: 960px; margin-bottom: 3.2rem; }
.benefits-kicker {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(12,23,48,0.9);
  margin-bottom: 1rem;
}
.benefits-headline {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0b1220;
  margin: 0 0 1.25rem;
}
.benefits-lead {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(12,23,48,0.72);
  max-width: 900px;
}
.about-lynck-story {
  margin-top: 2rem;
  max-width: 980px;
  padding: 1.4rem 1.5rem 1.45rem;
  border: 1px solid rgba(12, 23, 48, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(2px);
}
.about-lynck-story h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 0.95rem;
  letter-spacing: -0.02em;
  color: #0b1220;
}
.about-lynck-story p {
  font-size: 1.08rem;
  line-height: 1.66;
  color: rgba(12,23,48,0.78);
  margin: 0 0 0.72rem;
}
.about-lynck-story p:last-child { margin-bottom: 0; }
.about-lynck-story-strong {
  font-family: var(--font-head);
  color: #0b1220 !important;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pack-benefit-text .pillar-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12,23,48,0.5);
  margin-bottom: 0.7rem;
}
.benefits-transition {
  margin-top: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(12,23,48,0.14);
  font-size: clamp(1.42rem, 2.04vw, 1.61rem);
  line-height: 1.75;
  color: rgba(12,23,48,0.78);
}
.benefits-transition strong { color: var(--text); font-weight: 600; font-size: 1.2em; }
#arch {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/who-we-are-overlay.webp') 62% center / cover no-repeat;
  opacity: 0.68;
  mix-blend-mode: normal;
  filter: saturate(1.14) contrast(1.08);
  pointer-events: none;
  z-index: 0;
}
#arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243,244,239,0.82) 0%, rgba(243,244,239,0.36) 36%, rgba(243,244,239,0.14) 62%, rgba(243,244,239,0.24) 100%);
  pointer-events: none;
  z-index: 0;
}
#arch > .container { position: relative; z-index: 1; }
#arch .pack-benefit-row { gap: 5.6rem; margin-bottom: 7rem; }
#arch .pack-number { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 9px; margin-bottom: 1.3rem; color: #fff; }
#arch .pack-benefit-row:nth-of-type(2) .pack-number,
#arch .pack-benefit-row:nth-of-type(3) .pack-number { color: #fff; }
#arch .pack-benefit-text h3 { font-size: 2.52rem; line-height: 1.08; margin-bottom: 0.95rem; }
#arch .pack-image-card { width: 688px; max-width: 100%; box-sizing: border-box; padding: 20px; }
#arch .pack-image-card img { height: 646px; }

.pack-image-card { background: #ffffff; padding: 12px; border-radius: 24px; box-shadow: 0 18px 40px rgba(0,0,0,0.12); transform: rotate(1.5deg); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.08); }
.pack-image-card.rotate-left { transform: rotate(-2deg); }
.pack-image-card img { width: 100%; height: 320px; object-fit: cover; border-radius: 18px; filter: grayscale(60%); transition: filter 0.4s ease; }
.pack-image-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 26px 60px rgba(0,0,0,0.12); }
.pack-image-card:hover img { filter: grayscale(0%); }
.pack-feature-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.pack-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pack-feature-card { background: #ffffff; border-radius: 22px; padding: 14px; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.08); }
.pack-feature-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; filter: grayscale(100%); transition: filter 0.4s ease; }
.pack-feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.1); }
.pack-feature-card:hover img { filter: grayscale(0%); }
.pack-feature-card p { text-align: center; margin-top: 0.8rem; font-weight: 600; color: var(--text); }
.frame-section { padding: 0; background: var(--bg); color: var(--text); }
.frame-section#our-services {
  border-radius: 0;
  overflow: visible;
  margin-inline: 0;
  box-shadow: none;
}
.frame-section .pack-container { max-width: none; width: 100%; height: 100vh; display: flex; flex-direction: column; gap: 1.35rem; padding: 2rem; }
.frame-section .pack-feature-header { margin-bottom: 0; }
.frame-section .pack-title { color: var(--text); }
.frame-section .pack-title.section-chip { color: #f5f8ff; }
.frame-section .pack-nav-btn { background: var(--accent-dark); color: #fff; border-color: rgba(255,255,255,0.12); }
.frame-section .pack-nav-btn.dark { background: #fff; color: var(--accent-dark); border-color: #fff; }
.frame-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: 4fr 4fr;
  grid-template-columns: 4fr 4fr 4fr;
  gap: 4px;
  width: 100%;
  height: 100%;
  transition: grid-template-rows 0.4s ease, grid-template-columns 0.4s ease;
  will-change: grid-template-rows, grid-template-columns;
  contain: layout paint;
}
.frame-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
  cursor: pointer;
}
.frame-item.is-hovered { transform: none; box-shadow: none; }
.frame-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(10%) contrast(1.03) saturate(0.95);
}
.frame-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.38) 0%, rgba(4, 7, 14, 0.9) 68%, rgba(2, 4, 9, 0.96) 100%);
}
.frame-shutter {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
  opacity: 0;
}
.frame-shutter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.48);
}
.frame-shutter-top {
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transform: translateY(-102%);
}
.frame-shutter-bottom {
  bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.13);
  background-position: center bottom;
  transform: translateY(102%);
}
.frame-item.is-hovered .frame-media { transform: scale(1.08); filter: grayscale(0%) contrast(1.07) saturate(1.03); }
.frame-item.is-hovered .frame-shutter-top { animation: frame-shutter-open-top 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.frame-item.is-hovered .frame-shutter-bottom { animation: frame-shutter-open-bottom 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
@keyframes frame-shutter-open-top {
  0% { transform: translateY(0); opacity: 0.94; }
  100% { transform: translateY(-102%); opacity: 0; }
}
@keyframes frame-shutter-open-bottom {
  0% { transform: translateY(0); opacity: 0.94; }
  100% { transform: translateY(102%); opacity: 0; }
}
.frame-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(0.9rem, 1.4vw, 1.3rem);
}
.frame-index {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.8vw, 3.3rem);
  line-height: 0.92;
  color: #76abff;
  margin: 0 0 0.35rem;
}
.frame-title {
  font-size: clamp(2.1rem, 3.7vw, 3.2rem);
  line-height: 0.98;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: font-size 0.25s ease, line-height 0.25s ease, margin 0.25s ease;
}
.frame-lede {
  margin: 0;
  color: rgba(236,242,255,0.94);
  font-size: 1.24rem;
  line-height: 1.45;
}
.frame-body,
.frame-lede,
.frame-list,
.frame-outcome {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.frame-item.is-hovered .frame-content {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.frame-item.is-hovered .frame-title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.04;
  margin: 0 0 0.55rem;
}
.frame-item.is-hovered .frame-lede,
.frame-item.is-hovered .frame-body,
.frame-item.is-hovered .frame-list,
.frame-item.is-hovered .frame-outcome {
  opacity: 1;
  transform: translateY(0);
  max-height: 520px;
  pointer-events: auto;
}
.frame-body {
  margin-top: 0;
  color: rgba(216,227,248,0.84);
  font-size: 1.18rem;
  line-height: 1.4;
}
.frame-item.is-hovered .frame-body { margin-top: 0.5rem; }
.frame-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.24rem;
}
.frame-item.is-hovered .frame-list { margin: 0.6rem 0 0; }
.frame-list li {
  position: relative;
  padding-left: 0.72rem;
  color: rgba(229,237,253,0.88);
  font-size: 1.13rem;
  line-height: 1.35;
}
.frame-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(122,171,255,0.95);
}
.frame-outcome {
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  color: rgba(236,242,255,0.95);
  font-size: 1.15rem;
  line-height: 1.35;
}
.frame-item.is-hovered .frame-outcome {
  margin-top: auto;
  padding-top: 0.55rem;
  border-top-color: rgba(255,255,255,0.15);
}
.frame-outcome strong { color: #ffffff; font-weight: 600; }
.services-marquee-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.4rem, 4vw, 3.5rem);
  background: var(--accent-dark);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.home-light-continuum {
  position: relative;
  background:
    linear-gradient(rgba(241, 239, 230, 0.92), rgba(241, 239, 230, 0.92)),
    url('/assets/soft-abstract-curved-waves-in-neutral-tones-4k.webp') center / cover no-repeat;
}
.home-light-continuum > .services-marquee-section,
.home-light-continuum > .section-seam,
.home-light-continuum > .frame-section#our-services,
.home-light-continuum > .testimonials-section,
.home-light-continuum > .lets-talk-cta {
  background: transparent;
}
.home-light-continuum .services-marquee-section {
  color: var(--text);
  border-top-color: rgba(12, 23, 48, 0.1);
  border-bottom-color: rgba(12, 23, 48, 0.1);
}
.home-light-continuum .services-marquee-header p {
  color: rgba(12, 23, 48, 0.66);
}
.home-light-continuum .services-marquee-window::before {
  background: linear-gradient(90deg, rgba(241, 239, 230, 0.96) 0%, rgba(241, 239, 230, 0) 100%);
}
.home-light-continuum .services-marquee-window::after {
  background: linear-gradient(270deg, rgba(241, 239, 230, 0.96) 0%, rgba(241, 239, 230, 0) 100%);
}
.home-light-continuum .marquee-arrow {
  border-color: rgba(12, 23, 48, 0.16);
  background: rgba(241, 239, 230, 0.92);
  color: var(--text);
}
.home-light-continuum .marquee-arrow:hover {
  background: rgba(0, 69, 186, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.section-seam {
  position: relative;
  height: clamp(120px, 16vw, 210px);
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 40%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 55%),
    url('/assets/soft-abstract-curved-waves-in-neutral-tones-4k.webp') center center / cover no-repeat;
}
.section-seam::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 23, 48, 0.92) 0%,
    rgba(12, 23, 48, 0.62) 18%,
    rgba(12, 23, 48, 0.06) 46%,
    rgba(241, 239, 230, 0.10) 60%,
    rgba(241, 239, 230, 0.75) 86%,
    rgba(241, 239, 230, 1) 100%
  );
}
.home-light-continuum .section-seam {
  background: transparent;
}
.home-light-continuum .section-seam::before {
  background: linear-gradient(
    to bottom,
    rgba(241, 239, 230, 0.06) 0%,
    rgba(241, 239, 230, 0.34) 55%,
    rgba(241, 239, 230, 0.86) 100%
  );
}
.services-marquee-header {
  max-width: 1180px;
  margin: 0 auto 2rem;
  padding: 0 clamp(1.1rem, 3vw, 2.4rem);
  text-align: center;
}
.services-marquee-title {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-transform: uppercase;
}
.services-marquee-header p {
  margin: 0 auto;
  max-width: 880px;
  color: rgba(229, 236, 248, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.26rem);
  line-height: 1.64;
}
.services-marquee-window {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(1.1rem, 3vw, 2.4rem);
  cursor: default;
}
.services-marquee-window::before,
.services-marquee-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 118px);
  z-index: 2;
  pointer-events: none;
}
.services-marquee-window::before {
  left: 0;
  background: linear-gradient(90deg, var(--accent-dark) 0%, rgba(12,23,48,0) 100%);
}
.services-marquee-window::after {
  right: 0;
  background: linear-gradient(270deg, var(--accent-dark) 0%, rgba(12,23,48,0) 100%);
}
.services-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: services-marquee-scroll 160s linear infinite;
  will-change: transform;
}
.services-marquee-window:hover .services-marquee-track {
  animation-play-state: paused;
}
/* --- Marquee Arrow Buttons --- */
.marquee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(12,23,48,0.75);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.marquee-arrow:hover {
  background: rgba(0,69,186,0.85);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.08);
}
.marquee-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.marquee-arrow--left {
  left: clamp(1.1rem, 3vw, 2.4rem);
}
.marquee-arrow--right {
  right: clamp(1.1rem, 3vw, 2.4rem);
}
.services-marquee-group {
  display: flex;
  gap: 0.75rem;
  padding-right: 0.75rem;
}
.service-mini-card {
  position: relative;
  width: clamp(161px, 13.8vw, 198px);
  min-width: clamp(161px, 13.8vw, 198px);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(18, 32, 60, 0.84) 0%, rgba(8, 13, 27, 0.98) 100%);
  box-shadow: none;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}
.service-mini-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}
.service-mini-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8% 8% 18% 8%;
  opacity: 0.85;
  transform: scale(var(--icon-scale, 1));
  transition: transform 0.55s ease, opacity 0.45s ease;
}
.service-mini-card:hover .service-mini-image {
  transform: scale(calc(var(--icon-scale, 1) * 1.06));
  opacity: 1;
}
.service-mini-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 25, 0) 0%,
    rgba(6, 11, 25, 0.08) 60%,
    rgba(5, 9, 20, 0.65) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.service-mini-top {
  position: absolute;
  bottom: 0.55rem;
  left: 0.55rem;
  right: 0.55rem;
  top: auto;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-mini-card:hover .service-mini-top {
  opacity: 0;
  transform: translateY(8px);
}
.service-mini-name {
  margin: 0;
  color: #f6fbff;
  font-family: var(--font-head);
  font-size: clamp(0.83rem, 0.98vw, 1.01rem);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.service-mini-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.75rem 0.7rem 0.7rem;
  background: linear-gradient(0deg, rgba(5, 9, 22, 0.94) 0%, rgba(8, 16, 38, 0.88) 70%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.service-mini-card:hover .service-mini-reveal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.service-mini-reveal-title {
  margin: 0 0 0.22rem;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: clamp(0.81rem, 0.9vw, 0.94rem);
  font-weight: 600;
  line-height: 1.18;
}
.service-mini-reveal p {
  margin: 0;
  color: rgba(231, 240, 255, 0.88);
  font-size: clamp(0.71rem, 0.78vw, 0.83rem);
  line-height: 1.36;
}
@keyframes services-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.lets-talk-cta {
  position: relative;
  background: var(--bg);
  color: var(--text);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.lets-talk-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 1rem;
  color: var(--text);
}
.lets-talk-sub {
  max-width: 580px;
  margin: 0 auto 2.2rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
}
.lets-talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,69,186,0.25);
}
.lets-talk-btn:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229,106,30,0.3);
}
.testimonials-section { padding: 6rem 0; background: var(--bg); color: var(--text); }
.testimonials-header { max-width: 560px; margin: 0 auto 3.5rem; text-align: center; }
.testimonials-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-dim); }
.testimonials-title { font-size: 3.75rem; line-height: 1.05; margin-top: 1.2rem; letter-spacing: -0.02em; }
.testimonials-subtitle { margin-top: 1rem; color: var(--text-dim); font-size: 1.05rem; }
.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.02rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-sub);
  font-size: clamp(0.96rem, 1.28vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: #f5f8ff;
}
.badge-blue {
  background: linear-gradient(150deg, #0f52cf 0%, #1e66e7 100%);
  border-color: rgba(148, 185, 255, 0.35);
}
.badge-orange {
  background: linear-gradient(150deg, #db6f18 0%, #f2882e 100%);
  border-color: rgba(255, 210, 166, 0.36);
}
.digit-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: clamp(74px, 9vw, 102px);
  height: clamp(74px, 9vw, 102px);
  border-radius: 14px;
  font-family: var(--font-head);
  font-size: clamp(2.05rem, 4.7vw, 3.25rem) !important;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.85rem !important;
  color: #f5f8ff !important;
}
.frame-section .pack-title.section-chip,
.testimonials-title.section-chip {
  font-size: clamp(0.96rem, 1.28vw, 1.14rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
}
.horiz-num.digit-badge,
.frame-index.digit-badge,
.pack-number.digit-badge {
  min-width: clamp(74px, 9vw, 102px);
}
.testimonials-columns { display: flex; justify-content: center; gap: 1.5rem; max-height: 740px; overflow: hidden; mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); }
.testimonials-col { width: 100%; max-width: 320px; }
.testimonials-col ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 1.5rem; margin: 0; animation: testimonial-scroll var(--duration) linear infinite; will-change: transform; }
.testimonials-col:hover ul { animation-play-state: paused; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 1.6rem; box-shadow: 0 18px 40px rgba(12,23,48,0.12); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(12,23,48,0.18); }
.testimonial-card p { color: var(--text-dim); font-size: 0.98rem; line-height: 1.6; }
.testimonial-footer { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
.testimonial-footer img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--surface-hover); }
.testimonial-name { font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.85rem; color: var(--text-dim); }
@keyframes testimonial-scroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
.contact-section { padding: 6rem 0; background: #05060b; color: #f1efe6; position: relative; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1.6px); background-size: 3px 3px; opacity: 0.12; }
.contact-orbit { position: absolute; width: 720px; height: 720px; border-radius: 50%; border: 6px solid rgba(111,163,221,0.75); box-shadow: 0 0 35px rgba(111,163,221,0.6), 0 0 120px rgba(0,69,186,0.7); right: -160px; top: -140px; opacity: 0.95; }
.contact-orbit::after { content: ""; position: absolute; inset: 22px; border-radius: 50%; border: 4px solid rgba(79,182,255,0.9); box-shadow: 0 0 25px rgba(79,182,255,0.7); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.contact-card { background: rgba(15,18,28,0.75); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 2.5rem; box-shadow: 0 30px 80px rgba(0,0,0,0.35); backdrop-filter: blur(16px); min-height: 320px; }
.contact-card h4,
.contact-kicker { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.contact-card h2 { font-size: 2.6rem; line-height: 1.1; margin-bottom: 1.2rem; color: #fff; }
.contact-card p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.contact-actions { display: flex; gap: 1rem; align-items: center; margin-top: 2rem; flex-wrap: wrap; }
.contact-details { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.contact-pill,
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.contact-pill,
.contact-phone { padding: 0.75rem 1.2rem; border-radius: 999px; background: #fff; color: #0c1730; font-weight: 600; font-size: 0.95rem; }
.contact-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.2rem; border-radius: 999px; background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.18); font-weight: 600; }
.contact-social { display: flex; gap: 0.75rem; margin-top: 2rem; }
.contact-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.contact-links h3 { font-size: 1.4rem; margin-bottom: 1rem; color: #fff; }
.contact-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; color: rgba(255,255,255,0.7); }
.contact-links .chip { display: inline-flex; padding: 0.45rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #fff; margin-bottom: 1rem; font-size: 0.8rem; }
.contact-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 1.5rem 0; }
.spotlight-card { position: relative; overflow: hidden; --mouse-x: -999px; --mouse-y: -999px; }
.spotlight-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(520px circle at var(--mouse-x) var(--mouse-y), rgba(var(--accent-rgb), 0.55), transparent 55%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.spotlight-card::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(var(--accent-rgb), 0.7) 2px, transparent 3px); background-size: 22px 22px; mask-image: radial-gradient(440px circle at var(--mouse-x) var(--mouse-y), #000 25%, transparent 65%); opacity: 0; transition: opacity 0.3s ease; mix-blend-mode: screen; pointer-events: none; }
.spotlight-card:hover::before,
.spotlight-card:hover::after { opacity: 1; }
/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
.neural-text { font-size: 15vw; }
.pack-feature-grid { grid-template-columns: repeat(2, 1fr); }
.frame-section .pack-container { height: auto; padding: 2rem; }
.frame-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 260px; grid-template-rows: none; }
.frame-body,
.frame-list,
.frame-outcome { opacity: 1; transform: none; }
.services-marquee-track { animation-duration: 130s; }
.why-lynck-section { padding: 7rem 0; }
.why-lynck-section { --why-card-height: 650px; --why-card-collapsed: 86px; }
.why-lynck-content { display: block; }
.why-lynck-header { display: block; margin-bottom: 1.3rem; }
.why-lynck-header .section-chip { grid-column: auto; grid-row: auto; }
.why-lynck-accordion {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}
.why-accordion-item {
  flex: 0 0 var(--why-card-collapsed);
  min-width: var(--why-card-collapsed);
  height: var(--why-card-height);
}
.why-accordion-item.is-active {
  flex: 0 0 min(76vw, var(--why-card-height));
}
.why-lynck-title {
  grid-column: auto;
  grid-row: auto;
  margin: 0.6rem 0 0;
  flex: initial;
  height: auto;
  display: block;
  font-size: clamp(2.35rem, 6.1vw, 3.1rem);
  line-height: 0.96;
}
.why-accordion-copy {
  padding: 1.25rem 1.2rem 1.2rem;
}
.why-accordion-copy p {
  font-size: 1rem;
  line-height: 1.38;
}
}
@media (max-width: 768px) {
/* General */
.section-title { font-size: 3rem; }
.container { padding: 0 1.5rem; }
#arch .pack-benefit-row { gap: 2rem; margin-bottom: 4.2rem; }
#arch .pack-number { width: 34px; height: 34px; font-size: 0.9rem; margin-bottom: 1rem; }
#arch .pack-benefit-text h3 { font-size: 2rem; }
#arch .pack-image-card { padding: 14px; }
#arch .pack-image-card img { height: 461px; }
.about-lynck-story { padding: 1.1rem 1rem 1.15rem; border-radius: 14px; }
.about-lynck-story h3 { font-size: 1.75rem; }
.about-lynck-story p { font-size: 1rem; line-height: 1.62; }
.benefits-kicker { font-size: 0.9rem; letter-spacing: 0.11em; }
.benefits-transition { font-size: 1.26rem; line-height: 1.6; }
/* Nav */
.btn { padding: 0.6rem 1.2rem; font-size: 1rem; }
.lynck-header-right {
  min-width: 0;
}
.lynck-mobile-menu-trigger {
  min-height: 40px;
  width: 40px;
  min-width: 40px;
  padding: 0;
}
.lynck-mobile-about {
  min-height: 40px;
  padding: 0 0.55rem;
  font-size: 0.68rem;
}
.lynck-mobile-menu.nav-dropdown.right .lynck-mobile-menu-panel {
  left: 50%;
  right: auto;
  width: min(calc(100vw - 1.2rem), 20.75rem);
  transform: translateX(-50%);
  padding: 0.8rem;
}
.lynck-mobile-menu-cta {
  min-height: 40px;
  font-size: 0.72rem;
}
.lynck-mobile-lang-trigger {
  min-width: 46px;
  min-height: 40px;
  padding: 0 0.45rem;
  font-size: 0.68rem;
}
.lynck-home-logo,
.lynck-partner-badge {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}
/* Pipeline */
.pipeline-heading {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  padding: calc(var(--header-height) + 2.35rem) 4vw 0;
  margin-bottom: 1rem;
  pointer-events: auto;
}
.pipeline-heading-title { font-size: clamp(1.55rem, 6.2vw, 2.4rem); }
.pipeline-section { overflow: visible; }
.pin-wrap-container { height: auto; min-height: 0; overflow: visible; align-items: flex-start; }
.pin-wrap {
  width: 100%;
  min-height: 0;
  padding: 1.15rem 4vw 4rem;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4vw;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}
.pin-wrap::-webkit-scrollbar { display: none; }
.pin-wrap { scrollbar-width: none; }
.horiz-card {
  flex: 0 0 min(88vw, 32rem);
  width: min(88vw, 32rem);
  height: auto;
  min-height: clamp(540px, 118vw, 660px);
  padding: 1.1rem;
  margin-right: 0;
  justify-content: flex-start;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.horiz-content { max-width: 100%; max-height: none; overflow: visible; padding-right: 0; }
.horiz-list { grid-template-columns: 1fr; gap: 0.35rem; }
.horiz-title { font-size: clamp(1.8rem, 8.2vw, 2.45rem); line-height: 0.95; margin-bottom: 0.45rem; }
.horiz-desc { font-size: 1.12rem; line-height: 1.34; margin-bottom: 0.68rem; }
.horiz-list li { font-size: 0.96rem; line-height: 1.35; }
.horiz-detail { font-size: 0.98rem; line-height: 1.42; margin-bottom: 0.56rem; }
.horiz-note, .horiz-closure { font-size: 0.98rem; line-height: 1.4; }
.horiz-closure { margin-top: 0.85rem; padding-top: 0.72rem; }
.services-marquee-section { padding-top: 2.4rem; }
.section-seam { height: clamp(96px, 24vw, 138px); }
.marquee-arrow { width: 38px; height: 38px; }
.marquee-arrow--left { left: 0.6rem; }
.marquee-arrow--right { right: 0.6rem; }
.services-marquee-header { margin-bottom: 1.1rem; }
.services-marquee-title { font-size: clamp(1.35rem, 6.1vw, 2rem); line-height: 1.02; }
.services-marquee-header p { font-size: 0.92rem; line-height: 1.5; }
.services-marquee-track { gap: 0; animation-duration: 112s; }
.services-marquee-group { gap: 0.6rem; padding-right: 0.6rem; }
.service-mini-card { width: 138px; min-width: 138px; border-radius: 12px; }
.service-mini-top { bottom: 0.5rem; left: 0.5rem; right: 0.5rem; }
.service-mini-name { font-size: 0.78rem; line-height: 1.14; }
.service-mini-reveal { padding: 0.52rem 0.46rem 0.52rem; }
.service-mini-reveal-title { font-size: 0.74rem; }
.service-mini-reveal p { font-size: 0.67rem; line-height: 1.3; }
/* Neural */
.mesh-stats { grid-template-columns: 1fr; gap: 1.5rem; }
/* Pulse & Velocity & Terminal */
.pulse-grid { grid-template-columns: 1fr; gap: 3rem; }
/* Pulse Visual */
.pulse-visual { height: 400px; transform: scale(0.85); transform-origin: center top; margin-bottom: 0; }
/* Footer */
.footer-big {
  font-size: clamp(3rem, 12vw, 6.2rem);
  line-height: 0.9;
  white-space: normal;
  max-width: 7.4ch;
  margin-inline: auto;
  text-wrap: balance;
}
.footer-big-wrap { padding: 2rem 1.5rem 1.5rem; overflow: visible; }
.footer-links-row { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; width: 100%; box-sizing: border-box; }
.footer-links-col { width: 100%; }
.footer-social-row { flex-wrap: wrap; }
.footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1rem 1.5rem; width: 100%; box-sizing: border-box; }
.footer-bottom-legal { width: 100%; flex-wrap: wrap; gap: 0.75rem 1.2rem; }
footer { height: auto; }
.pack-benefit-row { flex-direction: column; }
.pack-benefit-row.reverse { flex-direction: column; }
.pack-feature-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
.pack-feature-grid { grid-template-columns: 1fr; }
.frame-section .pack-container { height: auto; padding: 1.5rem; }
.frame-grid { grid-template-columns: 1fr; grid-auto-rows: 310px; grid-template-rows: none; }
.frame-content { padding: 1.05rem; }
.frame-title { font-size: 1.75rem; }
.frame-index { font-size: 2.1rem; }
.frame-item.is-hovered .frame-title { font-size: 1.35rem; }
.frame-lede { font-size: 1.13rem; }
.frame-body { font-size: 1.08rem; }
.frame-list li { font-size: 1.06rem; }
.frame-outcome { font-size: 1.08rem; }
.why-lynck-section {
  padding: 5.4rem 0;
  --why-card-height: 535px;
  --why-card-collapsed: 74px;
}
.why-lynck-section#mesh {
  border-radius: 18px;
  margin-inline: 0.55rem;
  box-shadow:
    0 0 0 6px rgba(237, 233, 224, 0.96),
    0 12px 26px rgba(8, 14, 30, 0.2);
}
.why-lynck-header {
  margin-bottom: 1.3rem;
}
.why-lynck-title {
  font-size: clamp(2.05rem, 8vw, 2.75rem);
  display: block;
  height: auto;
}
.why-accordion-item {
  height: var(--why-card-height);
  border-radius: 18px;
  flex: 0 0 var(--why-card-collapsed);
  min-width: var(--why-card-collapsed);
}
.why-accordion-item.is-active {
  flex: 0 0 min(84vw, var(--why-card-height));
}
.why-accordion-label {
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 0.88rem;
  letter-spacing: 0.11em;
}
.why-accordion-copy {
  padding: 1rem 0.95rem 0.95rem;
}
.why-accordion-copy h3 {
  font-size: 1.28rem;
  margin-bottom: 0.45rem;
}
.why-accordion-copy p {
  font-size: 0.96rem;
  line-height: 1.34;
  margin-bottom: 0.35rem;
}
.section-chip { font-size: 0.82rem; letter-spacing: 0.13em; padding: 0.5rem 0.78rem; }
.digit-badge { width: 62px; height: 62px; font-size: 1.82rem !important; border-radius: 11px; margin-bottom: 0.68rem !important; }
.contact-grid { grid-template-columns: 1fr; }
.contact-card { padding: 2rem; }
.testimonials-columns { flex-direction: column; align-items: center; max-height: none; mask-image: none; }
.testimonials-col { max-width: 520px; }
.testimonials-col ul { animation: none; }
}
