/* KyrosDirect alternate concept v2 — built on the live Kyros visual system.
   Source of truth: kyros-final-2026-04-26 (Hero.tsx, FeatureSection.tsx, Navbar.tsx, CTASection.tsx). */

:root {
  --black: #000;
  --graphite: #252b36;
  --blue: #2D7EF0;
  --blue-deep: #1E63D8;
  --blue-hover: #2d91f3;
  --paper: #f8f8f8;
  --icy: rgba(142, 166, 194, 0.6); /* add-on card hover border only */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  /* Noise dither lifted from the live FeatureSection background stack */
  --noise-fine: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='128' height='128'><filter id='d'><feTurbulence type='turbulence' baseFrequency='2.5' numOctaves='1' stitchTiles='stitch' seed='9'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23d)'/></svg>");
  --noise-coarse: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='turbulence' baseFrequency='1.4' numOctaves='1' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Switzer', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(45, 145, 243, 0.7), 0 0 0 4px rgba(0, 0, 0, 0.9);
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 550;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, filter 0.2s, border-color 0.2s, color 0.2s;
}

.btn--white {
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.85));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn--white:hover {
  box-shadow: 0 0 0 1px rgba(45, 145, 243, 0.5), 0 10px 30px rgba(45, 145, 243, 0.22);
  transform: translateY(-2px);
}
.btn--white:active { transform: translateY(0) scale(0.98); }

.btn--ghost {
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  color: #fff;
  border-color: rgba(45, 145, 243, 0.55);
  transform: translateY(-2px);
}
.btn__arrow { font-size: 15px; transition: transform 0.2s var(--ease-out); }
.btn--ghost:hover .btn__arrow { transform: translateX(3px); }

.btn--blue {
  border: none;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 45%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  box-shadow: 0 8px 24px rgba(45, 126, 240, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--blue:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn--blue:active { transform: translateY(0) scale(0.99); }

.btn--lg { height: 52px; padding: 0 34px; font-size: 15px; }

/* ============ Nav ============ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: padding 0.2s ease-out, background-color 0.2s ease-out;
}
.nav.is-scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(0, 0, 0, 0.45);
}

.nav__inner {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand { display: flex; align-items: center; gap: 6px; }
.nav__bird { height: 28px; width: 28px; object-fit: contain; }
.nav__wordmark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav__links { display: none; align-items: center; gap: 36px; }

.nav__link {
  position: relative;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--blue-hover);
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease-out);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 9px;
  background: #fff;
  color: var(--black);
  font-size: 14px;
  font-weight: 550;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 145, 243, 0.25);
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.drawer[hidden] { display: none; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.drawer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.drawer__link {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
}
.drawer__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 30px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.85));
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 800%;
  height: auto;
  transform: translateX(-50%) translateY(35%) scaleY(2.7);
  transform-origin: bottom;
  opacity: 0.95;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 42% 34% at 5% 92%, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 42%, transparent 72%);
}
.hero__topfade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.2), transparent);
}
.hero__bottomfade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to top, #000, transparent);
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: -22vh;
}

.hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  animation: rise 0.6s var(--ease-out) 0.1s both;
}

.hero__title {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(1.9rem, 8.4vw, 6.5rem);
  white-space: nowrap;
  color: #fff;
  margin-bottom: 16px;
  animation: rise 0.8s var(--ease-out) 0.25s both;
}

.hero__sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  animation: rise 0.6s var(--ease-out) 0.45s both;
}

.hero__services {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--blue);
  margin-bottom: 24px;
  animation: rise 0.6s var(--ease-out) 0.5s both;
}
.hero__services span { white-space: nowrap; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  animation: rise 0.6s var(--ease-out) 0.6s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Graphite band (services + pricing) ============ */

.band {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background-color: var(--graphite);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    var(--noise-fine),
    var(--noise-coarse);
  background-size: cover, 128px 128px, 400px 400px;
  background-repeat: no-repeat, repeat, repeat;
  padding: 96px 16px 64px;
}

/* Tall non-linear seam: hero black eases into graphite (live FeatureSection treatment) */
.band__seam {
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 360px;
  z-index: 9;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 18%,
    rgba(0, 0, 0, 0.65) 42%,
    rgba(0, 0, 0, 0.30) 65%,
    rgba(0, 0, 0, 0.10) 82%,
    rgba(0, 0, 0, 0) 100%);
}

.band__edges {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 12%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.35) 88%,
    rgba(0, 0, 0, 0.85) 100%);
}

.band__inner {
  position: relative;
  z-index: 10;
  max-width: 1140px;
  margin: 0 auto;
}

.band__inner--pricing {
  padding-top: 110px;
  scroll-margin-top: 80px;
}

.section-head { text-align: center; margin-bottom: 64px; }

.section-head__eyebrow {
  font-size: clamp(8px, 2.5vw, 12.5px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: clamp(0.04em, 0.8vw, 0.14em);
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  margin-bottom: 18px;
}

.section-head__title {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--paper);
}

/* ============ Services ledger ============ */

.ledger {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ledger__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ledger__lead {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.ledger__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.ledger__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}

.ledger__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ Pricing ============ */

.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.pricing__core {
  background: var(--paper);
  color: var(--black);
  border-radius: 14px;
  padding: 32px 24px;
  transform: translateZ(0);
}

.pricing__core-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
}

.pricing__core-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-top: 10px;
}

.pricing__core-desc {
  font-size: 15px;
  line-height: 1.625;
  color: var(--black);
  margin: 18px 0;
}

.pricing__list li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  line-height: 1.5;
}
.pricing__list--dark li {
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pricing__list--dark li:last-child { border-bottom: 0; }
.pricing__list--light li {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  font-size: 14px;
}
.pricing__list--light li:last-child { border-bottom: 0; }

.pricing__core-cta {
  width: 100%;
  height: 52px;
  margin-top: 28px;
  font-size: 14px;
}

.pricing__addons {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing__addons-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: -8px;
  padding-left: 4px;
}

.addon {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.addon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--icy);
  transform: translateY(-4px);
}

.addon__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}

.addon__icon { width: 18px; height: 18px; flex: none; color: #fff; }

.addon__price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin: 6px 0 16px;
}

.addon__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

/* ============ CTA ============ */

.cta {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
  background: var(--black);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 16px 120px;
}

/* Graphite eases back into black using the same non-linear stop curve */
.cta__seam {
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 360px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(37, 43, 54, 1) 0%,
    rgba(37, 43, 54, 0.92) 18%,
    rgba(37, 43, 54, 0.65) 42%,
    rgba(37, 43, 54, 0.30) 65%,
    rgba(37, 43, 54, 0.10) 82%,
    rgba(37, 43, 54, 0) 100%);
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cta__video {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 800%;
  height: auto;
  transform: translateX(-50%) translateY(40%) scaleY(2.2);
  transform-origin: bottom;
  opacity: 0.85;
}
.cta__fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.4) 100%);
}

.cta__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 48rem;
  padding: 40px 0;
}

.cta__title {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(1.875rem, 4.5vw, 3.8rem);
  color: #fff;
}

.cta__sub {
  font-size: 13px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
}

/* ============ Footer ============ */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 20px 48px;
}

.footer__inner {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer__brand { display: flex; align-items: center; gap: 6px; }
.footer__bird { height: 24px; width: 24px; object-fit: contain; }
.footer__wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer__line {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--blue);
}

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============ Reveal on scroll ============ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Desktop ============ */

@media (min-width: 768px) {
  .nav { padding-left: 1.5rem; padding-right: 1.5rem; }
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .drawer { display: none; }

  .hero__video {
    width: 120%;
    transform: translateX(-50%) translateY(52%) scaleY(1.5);
  }

  .hero__eyebrow { font-size: 14px; letter-spacing: 0.22em; margin-bottom: 20px; }
  .hero__title { margin-bottom: 20px; }
  .hero__sub { font-size: 20px; margin-bottom: 12px; }
  .hero__services { font-size: 16px; margin-bottom: 40px; }

  .btn { height: 48px; padding: 0 32px; font-size: 16px; }
  .btn--lg { height: 56px; padding: 0 40px; }

  .band { padding: 132px 24px 80px; }
  .band__seam { height: 600px; }
  .band__inner--pricing { padding-top: 140px; }

  .section-head { margin-bottom: 80px; }

  .ledger__row {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: baseline;
    gap: 32px;
    padding: 34px 8px;
  }
  .ledger__lead { gap: 24px; }
  .ledger__num { font-size: 13px; }
  .ledger__name { font-size: 26px; }
  .ledger__desc { font-size: 16px; }

  .pricing {
    grid-template-columns: 57fr 43fr;
    gap: 56px;
    align-items: center;
  }
  .pricing__core { border-radius: 16px; padding: 48px; }
  .pricing__core-name { font-size: 40px; line-height: 1.05; }
  .pricing__core-price { font-size: 34px; }
  .pricing__core-desc { font-size: 16px; margin: 24px 0; }
  .pricing__list li { padding: 10px 0; font-size: 16px; }
  .pricing__list--light li { font-size: 15px; }
  .pricing__core-cta { height: 56px; font-size: 16px; }
  .addon { padding: 28px; }
  .addon__name { font-size: 20px; }
  .addon__price, .addon__desc { font-size: 15px; }

  .cta { min-height: 540px; padding: 120px 16px 160px; }
  .cta__sub { font-size: 18px; }
  .cta__video { transform: translateX(-50%) translateY(48%) scaleY(1.6); width: 130%; }
}

@media (min-width: 1180px) {
  .pricing__core-name { white-space: nowrap; }
}

/* ============ Reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__services, .hero__actions {
    animation: none;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .nav__cta, .addon { transition: none; }
}
