/* Intro path selector */
.intro { min-height: 100svh; }
.intro-landing {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(62, 107, 242, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 107, 242, .055) 1px, transparent 1px),
    linear-gradient(145deg, #f9fbff 0%, #eef3fb 58%, #f7f8fb 100%);
  background-size: 44px 44px, 44px 44px, auto;
}
.intro-landing[hidden], .qa-journey[hidden] { display: none; }
.landing-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.orb-one { top: -24%; right: -8%; width: min(48vw, 660px); aspect-ratio: 1; background: radial-gradient(circle at 36% 38%, rgba(126, 159, 255, .35), rgba(204, 219, 255, .1) 58%, transparent 70%); animation: landing-float 8s ease-in-out infinite; }
.orb-two { bottom: -35%; left: -14%; width: min(44vw, 600px); aspect-ratio: 1; border: 1px solid rgba(62, 107, 242, .13); box-shadow: inset 0 0 80px rgba(62, 107, 242, .05); animation: landing-float 9s 1.2s ease-in-out infinite reverse; }
.landing-content { position: relative; padding-block: clamp(40px, 8vh, 86px); }
.landing-content::before { content: ""; position: absolute; top: 0; bottom: 0; left: -28px; width: 1px; background: linear-gradient(transparent, rgba(62, 107, 242, .26) 18%, rgba(62, 107, 242, .26) 82%, transparent); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid #d5e0f8; border-radius: 100px; background: rgba(255, 255, 255, .62); color: var(--blue-dark); font-size: .72rem; font-weight: 900; letter-spacing: .09em; }
.landing-index { margin: clamp(20px, 4vh, 38px) 0 9px; color: #8b98ab; font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.landing-content h1 { max-width: 12ch; margin: 0; font-size: clamp(3rem, 6.6vw, 6.1rem); line-height: 1.02; letter-spacing: -.075em; }
.landing-content h1 span { display: block; color: #7d8da5; font-weight: 650; }
.intro-copy { max-width: 62ch; margin: clamp(18px, 2.8vh, 28px) 0 0; color: #5f6f86; font-size: clamp(.96rem, 1.2vw, 1.08rem); line-height: 1.75; }
.path-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 930px; margin-top: clamp(28px, 4.5vh, 44px); }
.path-card { text-decoration: none; position: relative; display: grid; grid-template-columns: 36px 1fr 40px; min-height: 132px; align-items: center; gap: 14px; padding: 22px; overflow: hidden; border: 1px solid #d6e0ee; border-radius: 17px; background: rgba(255, 255, 255, .78); color: var(--ink); text-align: left; box-shadow: 0 16px 38px rgba(34, 59, 100, .07); backdrop-filter: blur(12px); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease; }
.path-card::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, var(--blue), #83a2ff); transform: scaleX(0); transform-origin: left; transition: transform .32s ease; }
.path-card:hover, .path-card:focus-visible { border-color: #aebfe8; outline: none; background: white; box-shadow: 0 24px 48px rgba(34, 59, 100, .13); transform: translateY(-5px); }
.path-card:hover::before, .path-card:focus-visible::before { transform: scaleX(1); }
.path-number { align-self: start; color: #8b99ad; font-size: .7rem; font-weight: 900; }
.path-copy { display: block; min-width: 0; }
.path-copy small { display: block; color: var(--blue); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.path-copy strong { display: block; margin: 6px 0 5px; font-size: clamp(1.18rem, 1.7vw, 1.45rem); letter-spacing: -.04em; }
.path-copy > span { display: block; color: #69788e; font-size: .82rem; line-height: 1.5; }
.path-arrow { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #dbe3ef; border-radius: 50%; background: #f5f8fd; color: var(--blue-dark); transition: color .25s ease, background .25s ease, transform .25s ease; }
.path-card:hover .path-arrow, .path-card:focus-visible .path-arrow { background: var(--blue); color: white; transform: rotate(7deg) scale(1.06); }
.portfolio-path { background: rgba(22, 38, 62, .96); color: white; }
.portfolio-path .path-number, .portfolio-path .path-copy > span { color: #adbad0; }
.portfolio-path .path-arrow { border-color: rgba(255, 255, 255, .15); background: rgba(255, 255, 255, .07); color: white; }
.portfolio-path:hover, .portfolio-path:focus-visible { border-color: #263f66; background: #182941; }
.landing-footnote { display: flex; align-items: center; gap: 9px; margin: 18px 0 0; color: #7b899c; font-size: .73rem; }
.landing-footnote span { width: 22px; height: 1px; background: #91a1b8; }

@keyframes landing-float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -16px, 0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

