:root {
  --bg: #050b18;
  --bg-soft: #091426;
  --panel: rgba(11, 24, 45, 0.72);
  --panel-strong: rgba(12, 29, 54, 0.92);

  --text: #f7fbff;
  --muted: #9db0c8;

  --blue: #2563eb;
  --cyan: #18d7ff;
  --teal: #16e0c0;
  --navy: #0b1730;

  --border: rgba(79, 181, 255, 0.18);
  --border-bright: rgba(34, 211, 238, 0.5);

  --shadow:
    0 20px 80px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(37, 99, 235, 0.12);

  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(24, 215, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #040915 0%, #07101f 48%, #050a14 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  opacity: 0.12;

  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);

  background-size: 64px 64px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(4, 9, 21, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 50%;

  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -1px;

  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.22), transparent 22%),
    linear-gradient(145deg, #11224a, #0a72ff 58%, #19d6ff);

  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.08),
    0 0 24px rgba(23, 189, 255, 0.22);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;

  background: linear-gradient(90deg, #ffffff 0%, #dcecff 45%, #5edfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #b9c8da;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

/* BUTTONS */

.btn {
  min-height: 46px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  border: 1px solid rgba(73, 199, 255, 0.55);

  background:
    linear-gradient(135deg, #2458ff 0%, #1687ff 50%, #18cfff 100%);

  box-shadow:
    0 12px 34px rgba(33, 112, 255, 0.3),
    0 0 28px rgba(24, 215, 255, 0.12);
}

.btn-primary:hover {
  box-shadow:
    0 15px 40px rgba(33, 112, 255, 0.42),
    0 0 32px rgba(24, 215, 255, 0.18);
}

.btn-secondary,
.btn-outline {
  color: #eaf7ff;
  border: 1px solid rgba(118, 198, 255, 0.22);

  background: rgba(255,255,255,0.025);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: rgba(65, 205, 255, 0.55);
  background: rgba(33, 128, 255, 0.08);
}

/* HERO */

.hero {
  position: relative;
  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 200px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(5, 11, 24, 0.75)
    );

  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;

  padding-top: 90px;
  padding-bottom: 100px;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  width: fit-content;

  margin-bottom: 18px;
  padding: 8px 12px;

  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;

  color: #8cecff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;

  background: rgba(20, 116, 177, 0.07);
  box-shadow: inset 0 0 18px rgba(24, 215, 255, 0.04);
}

.hero h1 {
  max-width: 720px;
  margin: 0;

  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -4px;
  font-weight: 900;
}

.hero h1 span,
.section-heading h2 span {
  background:
    linear-gradient(
      90deg,
      #4f7cff 0%,
      #1acbff 52%,
      #17e4c4 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 660px;

  margin: 28px 0 0;

  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;

  margin-top: 34px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-top: 28px;

  color: #8199b5;
  font-size: 13px;
  font-weight: 650;
}

.hero-services span:first-child {
  color: #7fe9ff;
}

/* HERO 3D VISUAL */

.hero-visual {
  position: relative;

  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;

  perspective: 1000px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 8%;
  top: 20%;

  background: rgba(37, 99, 235, 0.48);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  right: 24%;
  top: 38%;

  background: rgba(20, 217, 255, 0.35);
}

.hero-logo {
  position: relative;
  z-index: 4;

  width: 250px;
  height: 250px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.26), transparent 18%),
    radial-gradient(circle at 50% 50%, #14366f 0%, #0e2348 43%, #071326 76%);

  border: 1px solid rgba(80, 210, 255, 0.56);

  box-shadow:
    inset 0 0 38px rgba(47, 200, 255, 0.17),
    inset -14px -20px 40px rgba(0,0,0,0.32),
    0 0 30px rgba(39, 180, 255, 0.32),
    0 0 90px rgba(37, 99, 235, 0.2);

  transform:
    rotateX(5deg)
    rotateY(-8deg);
}

.hero-logo::before,
.hero-logo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-logo::before {
  inset: -26px;

  border:
    2px solid rgba(32, 183, 255, 0.34);

  box-shadow:
    0 0 24px rgba(24, 215, 255, 0.16);
}

.hero-logo::after {
  inset: -58px;

  border:
    1px solid rgba(58, 119, 255, 0.2);

  transform:
    rotateX(67deg)
    rotateZ(-18deg);
}

.hero-logo-inner {
  font-size: 74px;
  font-weight: 1000;
  letter-spacing: -10px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #6de7ff 28%,
      #2975ff 58%,
      #17e6c8 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  filter:
    drop-shadow(0 0 8px rgba(106, 231, 255, 0.6))
    drop-shadow(0 0 18px rgba(31, 119, 255, 0.3));
}

.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 390px;
  height: 190px;

  border: 1px solid rgba(34, 211, 238, 0.25);

  transform: rotate(-16deg);
}

.orbit-two {
  width: 310px;
  height: 460px;

  border: 1px solid rgba(75, 117, 255, 0.19);

  transform: rotate(54deg);
}

.flow-card {
  position: absolute;
  z-index: 8;

  padding: 12px 15px;

  border:
    1px solid rgba(68, 190, 255, 0.22);
  border-radius: 11px;

  color: #c7e8ff;
  font-size: 11px;
  letter-spacing: 0.2px;

  background:
    linear-gradient(
      135deg,
      rgba(10, 28, 54, 0.88),
      rgba(9, 17, 34, 0.7)
    );

  backdrop-filter: blur(12px);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 16px rgba(34, 211, 238, 0.025);
}

.flow-card-one {
  top: 13%;
  right: 0;
}

.flow-card-two {
  left: 0;
  bottom: 22%;
}

.flow-card-three {
  right: -4%;
  bottom: 7%;
}

/* SECTIONS */

.solutions,
.how-it-works {
  position: relative;
  padding: 110px 0;
}

.solutions {
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 129, 255, 0.09), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #06101d 100%);
}

.how-it-works {
  border-top: 1px solid rgba(255,255,255,0.05);

  background:
    radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.08), transparent 25%),
    radial-gradient(circle at 85% 50%, rgba(21, 212, 255, 0.06), transparent 25%),
    #050b16;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;

  text-align: center;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading h2 {
  margin: 0;

  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -2.6px;
  font-weight: 900;
}

.section-heading p {
  max-width: 650px;
  margin: 20px auto 0;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

/* SOLUTIONS */

.solution-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card,
.process-card {
  position: relative;
  overflow: hidden;

  min-height: 310px;

  padding: 30px;

  border:
    1px solid var(--border);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(15, 33, 61, 0.76),
      rgba(5, 13, 27, 0.94)
    );

  box-shadow:
    0 24px 80px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.025);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.solution-card::before,
.process-card::before {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  right: -80px;
  top: -90px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(28, 192, 255, 0.16),
      transparent 68%
    );
}

.solution-card:hover,
.process-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(39, 205, 255, 0.42);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.3),
    0 0 34px rgba(34, 170, 255, 0.08);
}

.solution-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 34px;

  border:
    1px solid rgba(41, 209, 255, 0.32);

  border-radius: 17px;

  color: #8cefff;
  font-weight: 900;

  background:
    linear-gradient(
      145deg,
      rgba(18, 75, 145, 0.4),
      rgba(13, 29, 55, 0.8)
    );

  box-shadow:
    inset 0 0 18px rgba(34, 211, 238, 0.05),
    0 0 26px rgba(37, 99, 235, 0.08);
}

.solution-card h3,
.process-card h3 {
  margin: 0;

  font-size: 23px;
  letter-spacing: -0.6px;
}

.solution-card p,
.process-card p {
  margin: 14px 0 0;

  color: var(--muted);
  line-height: 1.65;
}

.mini-flow {
  margin-top: 28px;
  padding-top: 20px;

  border-top:
    1px solid rgba(255,255,255,0.06);

  color: #6fdfff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* PROCESS */

.process-card {
  min-height: 265px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  margin-bottom: 25px;

  border-radius: 50%;

  color: white;
  font-size: 16px;
  font-weight: 900;

  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.17), transparent 22%),
    linear-gradient(145deg, #154389, #116eff 55%, #1bd4ff);

  border:
    1px solid rgba(73, 211, 255, 0.35);

  box-shadow:
    0 0 28px rgba(33, 135, 255, 0.2),
    inset 0 0 20px rgba(255,255,255,0.05);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;

    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 820px;
    margin-inline: auto;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-services {
    justify-content: center;
  }

  .hero-visual {
    min-height: 510px;
  }

  .solution-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .process-card {
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 19px;
  }

  .site-header .btn {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero-grid {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
    letter-spacing: -3px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-services {
    flex-direction: column;
    gap: 7px;
  }

  .hero-visual {
    min-height: 430px;
    transform: scale(0.86);
  }

  .flow-card {
    font-size: 10px;
  }

  .solutions,
  .how-it-works {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 42px;
  }
}

/* REAL TALYVEX LOGO */

.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 14px;

  box-shadow:
    0 0 18px rgba(24, 215, 255, 0.30),
    0 0 36px rgba(37, 99, 235, 0.18);
}

.hero-logo-image {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: 28%;

  box-shadow:
    0 0 32px rgba(24, 215, 255, 0.35),
    0 0 70px rgba(37, 99, 235, 0.24);

  transform: translateZ(25px);
}

@media (max-width: 640px) {
  .brand-logo-img {
    width: 40px;
    height: 40px;
  }
}

/* HERO LOGO PREMIUM REFINEMENT */

.hero-logo {
  width: 310px;
  height: 310px;

  background: transparent;
  border: none;

  box-shadow: none;

  transform:
    rotateX(3deg)
    rotateY(-4deg);
}

.hero-logo::before {
  inset: -18px;

  border: 2px solid rgba(32, 183, 255, 0.34);

  box-shadow:
    0 0 30px rgba(24, 215, 255, 0.18);
}

.hero-logo::after {
  inset: -58px;

  border:
    1px solid rgba(58, 119, 255, 0.24);

  transform:
    rotateX(67deg)
    rotateZ(-18deg);
}

.hero-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 26%;

  box-shadow:
    0 0 35px rgba(24, 215, 255, 0.36),
    0 0 85px rgba(37, 99, 235, 0.28);

  filter:
    drop-shadow(0 0 18px rgba(24, 215, 255, 0.22));

  transform: translateZ(25px);
}


/* =========================================
   TALYVEX PREMIUM VISUAL PASS
   Contrast + Glass + Neon + 3D Depth
   ========================================= */

:root {
  --muted: #b9c9dc;
}

/* Stronger page atmosphere */

body {
  background:
    radial-gradient(circle at 12% 12%, rgba(38, 105, 255, 0.18), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(0, 210, 255, 0.14), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(17, 224, 192, 0.07), transparent 30%),
    linear-gradient(180deg, #030817 0%, #071426 48%, #030914 100%);
}

/* Make important text sharper */

.hero-copy > p,
.section-heading p,
.solution-card p,
.process-card p {
  color: #b8cbe2;
}

.hero h1 {
  text-shadow:
    0 12px 35px rgba(0, 0, 0, 0.32),
    0 0 38px rgba(37, 99, 235, 0.06);
}

.section-heading h2 {
  text-shadow:
    0 10px 30px rgba(0,0,0,0.28),
    0 0 28px rgba(24, 215, 255, 0.05);
}

/* Brighter eyebrow labels */

.eyebrow {
  color: #a8f4ff;
  border-color: rgba(38, 210, 255, 0.34);

  background:
    linear-gradient(
      135deg,
      rgba(14, 89, 160, 0.18),
      rgba(9, 30, 63, 0.35)
    );

  box-shadow:
    inset 0 0 22px rgba(24, 215, 255, 0.06),
    0 0 22px rgba(24, 215, 255, 0.06);
}

/* Premium glass cards */

.solution-card,
.process-card {
  border-color: rgba(64, 183, 255, 0.28);

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(41, 121, 255, 0.12),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(17, 39, 74, 0.90),
      rgba(5, 13, 28, 0.97)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -24px 50px rgba(0,0,0,0.18),
    0 24px 65px rgba(0,0,0,0.38),
    0 0 30px rgba(34, 160, 255, 0.07);

  transform: translateZ(0);
}

/* Blue neon edge */

.solution-card::after,
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  border-radius: inherit;

  background:
    linear-gradient(
      120deg,
      rgba(32, 200, 255, 0.20),
      transparent 22%,
      transparent 75%,
      rgba(31, 111, 255, 0.13)
    );

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  mask-composite: exclude;
  -webkit-mask-composite: xor;

  padding: 1px;
}

/* More 3D on hover */

.solution-card:hover,
.process-card:hover {
  transform:
    translateY(-9px)
    perspective(900px)
    rotateX(1deg);

  border-color: rgba(68, 218, 255, 0.56);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 32px 85px rgba(0,0,0,0.48),
    0 0 40px rgba(32, 172, 255, 0.14);
}

/* Clearer card headings */

.solution-card h3,
.process-card h3 {
  color: #f8fbff;

  text-shadow:
    0 4px 16px rgba(0,0,0,0.45),
    0 0 15px rgba(54, 175, 255, 0.06);
}

/* Brighter flow text */

.mini-flow {
  color: #7cecff;
  text-shadow: 0 0 14px rgba(24, 215, 255, 0.16);
}

/* Hero floating cards readability */

.flow-card {
  color: #ecf8ff;
  font-size: 12px;

  border-color: rgba(64, 206, 255, 0.38);

  background:
    linear-gradient(
      145deg,
      rgba(13, 37, 70, 0.94),
      rgba(5, 14, 30, 0.91)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 14px 34px rgba(0,0,0,0.40),
    0 0 22px rgba(24, 215, 255, 0.07);
}

/* Stronger section lighting */

.solutions::before,
.how-it-works::before {
  content: "";
  position: absolute;
  pointer-events: none;

  width: 520px;
  height: 280px;

  left: 50%;
  top: 60px;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(28, 147, 255, 0.12),
      rgba(24, 215, 255, 0.035) 45%,
      transparent 72%
    );

  filter: blur(40px);
}

/* More premium CTA glow */

.btn-primary {
  box-shadow:
    0 14px 38px rgba(32, 105, 255, 0.38),
    0 0 30px rgba(24, 215, 255, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

.btn-outline,
.btn-secondary {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.035),
    0 8px 24px rgba(0,0,0,0.18);
}


/* =========================================
   TALYVEX — FINAL HERO PASS v1
   Locked visual direction
   ========================================= */

.site-header {
  background:
    linear-gradient(
      180deg,
      rgba(3, 8, 20, 0.96),
      rgba(3, 9, 22, 0.86)
    );

  box-shadow:
    0 8px 32px rgba(0,0,0,0.24),
    0 1px 0 rgba(37, 180, 255, 0.08);
}

/* Make the top CTA feel premium */

.site-header .btn-outline {
  border-color: rgba(45, 204, 255, 0.55);

  background:
    linear-gradient(
      135deg,
      rgba(31, 90, 255, 0.18),
      rgba(21, 218, 255, 0.12)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 24px rgba(24, 180, 255, 0.08);
}

.site-header .btn-outline:hover {
  border-color: rgba(73, 225, 255, 0.85);

  background:
    linear-gradient(
      135deg,
      rgba(37, 99, 235, 0.38),
      rgba(24, 215, 255, 0.28)
    );

  box-shadow:
    0 0 30px rgba(24, 215, 255, 0.18);
}

/* Space / energy atmosphere */

.hero {
  background:
    radial-gradient(
      circle at 72% 48%,
      rgba(21, 173, 255, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 87% 62%,
      rgba(0, 225, 255, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at 18% 35%,
      rgba(42, 71, 255, 0.10),
      transparent 30%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  opacity: 0.8;

  background:
    radial-gradient(circle at 74% 19%, rgba(31,196,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 34%, rgba(255,143,43,.9) 0 1.5px, transparent 3px),
    radial-gradient(circle at 80% 70%, rgba(22,230,255,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 57% 26%, rgba(48,128,255,.65) 0 1px, transparent 3px),
    radial-gradient(circle at 65% 81%, rgba(255,119,31,.7) 0 1px, transparent 3px);
}

/* Hero headline stronger */

.hero h1 {
  text-shadow:
    0 14px 40px rgba(0,0,0,0.48),
    0 0 26px rgba(66, 140, 255, 0.06);
}

/* Stronger gradient on AI wording */

.hero h1 span {
  background:
    linear-gradient(
      90deg,
      #4573ff 0%,
      #17bfff 48%,
      #14e5c0 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  filter:
    drop-shadow(0 0 14px rgba(32, 196, 255, 0.08));
}

/* More dramatic logo presentation */

.hero-visual {
  min-height: 540px;
}

.hero-logo {
  width: 330px;
  height: 330px;

  filter:
    drop-shadow(0 0 22px rgba(31, 147, 255, 0.26))
    drop-shadow(0 0 54px rgba(20, 221, 255, 0.13));
}

.hero-logo-image {
  filter:
    saturate(1.08)
    contrast(1.05)
    drop-shadow(0 0 12px rgba(24, 215, 255, 0.25))
    drop-shadow(0 0 38px rgba(30, 104, 255, 0.28));
}

/* Extra luminous orbit depth */

.orbit-one {
  width: 440px;
  height: 210px;

  border-color: rgba(40, 220, 255, 0.32);

  box-shadow:
    0 0 20px rgba(24, 215, 255, 0.08),
    inset 0 0 20px rgba(24, 215, 255, 0.03);
}

.orbit-two {
  width: 350px;
  height: 500px;

  border-color: rgba(71, 116, 255, 0.26);

  box-shadow:
    0 0 24px rgba(41, 107, 255, 0.06);
}

/* Floating cards closer to approved artwork */

.flow-card {
  padding: 14px 18px;

  border-color: rgba(61, 210, 255, 0.48);

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(14, 45, 84, 0.96),
      rgba(5, 15, 34, 0.94)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 16px 44px rgba(0,0,0,0.44),
    0 0 28px rgba(20, 190, 255, 0.10);
}

.flow-card-one {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 16px 44px rgba(0,0,0,0.44),
    0 0 30px rgba(20, 190, 255, 0.13);
}

.flow-card-three {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 16px 44px rgba(0,0,0,0.44),
    0 0 26px rgba(255, 126, 27, 0.07);
}

/* Stronger primary CTA like final reference */

.hero .btn-primary {
  min-height: 52px;
  padding-inline: 24px;

  border-radius: 14px;

  background:
    linear-gradient(
      100deg,
      #1764ff 0%,
      #139fff 55%,
      #18d9e8 100%
    );

  box-shadow:
    0 14px 40px rgba(24, 104, 255, 0.34),
    0 0 32px rgba(24, 215, 255, 0.17),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

/* Tiny warm accents keep the design premium */

.hero-glow-two::after {
  content: "";
  position: absolute;

  width: 7px;
  height: 7px;

  top: 18%;
  left: 82%;

  border-radius: 50%;

  background: #ff8a2b;

  box-shadow:
    0 0 8px #ff8a2b,
    0 0 18px rgba(255, 138, 43, 0.65);
}

@media (max-width: 980px) {
  .hero-logo {
    width: 290px;
    height: 290px;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    min-height: 450px;
  }

  .hero-logo {
    width: 270px;
    height: 270px;
  }
}


/* =========================================
   TALYVEX SOLUTIONS — 3D ART PASS v1
   ========================================= */

.solution-card {
  padding-top: 20px;
  overflow: hidden;
}

.solution-art {
  position: relative;
  height: 205px;
  margin: -4px -8px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    radial-gradient(
      circle at 50% 60%,
      rgba(19, 157, 255, 0.16),
      transparent 55%
    );

  isolation: isolate;
}

.solution-art::before {
  content: "";
  position: absolute;

  width: 82%;
  height: 38px;

  left: 9%;
  bottom: 9px;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(25, 205, 255, 0.30),
      rgba(38, 94, 255, 0.10) 45%,
      transparent 72%
    );

  filter: blur(14px);

  z-index: -1;
}

.solution-art img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 16px;

  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 12px 24px rgba(0,0,0,0.28))
    drop-shadow(0 0 18px rgba(25, 190, 255, 0.14));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.solution-card:hover .solution-art img {
  transform:
    translateY(-5px)
    scale(1.035);

  filter:
    saturate(1.12)
    contrast(1.05)
    drop-shadow(0 16px 30px rgba(0,0,0,0.32))
    drop-shadow(0 0 28px rgba(24, 215, 255, 0.22));
}

.solution-number {
  position: absolute;
  z-index: 5;

  top: 8px;
  left: 8px;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  color: #baf5ff;

  font-size: 14px;
  font-weight: 900;

  border:
    1px solid rgba(43, 211, 255, 0.45);

  background:
    linear-gradient(
      145deg,
      rgba(23, 78, 145, 0.90),
      rgba(5, 23, 50, 0.94)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 0 22px rgba(24, 215, 255, 0.12);
}

/* Old placeholder is no longer used */
.solution-icon {
  display: none;
}

@media (max-width: 640px) {
  .solution-art {
    height: 185px;
  }
}


/* =========================================
   TALYVEX — FINAL SOLUTIONS VISUAL PASS
   Blend + Scale + Neon Depth
   ========================================= */

.solution-art {
  height: 220px;
  overflow: hidden;

  background:
    radial-gradient(
      ellipse at 50% 72%,
      rgba(18, 193, 255, 0.20),
      rgba(30, 92, 255, 0.07) 40%,
      transparent 72%
    );
}

/* Blend dark image backgrounds into the cards */
.solution-art img {
  mix-blend-mode: screen;
  object-fit: contain;

  filter:
    saturate(1.12)
    contrast(1.10)
    brightness(1.04)
    drop-shadow(0 16px 28px rgba(0,0,0,0.32))
    drop-shadow(0 0 22px rgba(28, 198, 255, 0.18));
}

/* Individually balance the three 3D illustrations */

.solution-card:nth-child(1) .solution-art img {
  width: 94%;
  height: 94%;
}

.solution-card:nth-child(2) .solution-art img {
  width: 79%;
  height: 79%;
}

.solution-card:nth-child(3) .solution-art img {
  width: 78%;
  height: 78%;
}

/* Stronger holographic floor */
.solution-art::after {
  content: "";
  position: absolute;

  width: 76%;
  height: 24px;

  left: 12%;
  bottom: 7px;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(40, 216, 255, 0.40),
      rgba(25, 104, 255, 0.15) 45%,
      transparent 72%
    );

  filter: blur(11px);
  z-index: -1;
}

/* Slightly richer card illumination */
.solution-card {
  background:
    radial-gradient(
      circle at 50% 9%,
      rgba(31, 154, 255, 0.15),
      transparent 38%
    ),
    linear-gradient(
      150deg,
      rgba(17, 42, 79, 0.94),
      rgba(4, 14, 31, 0.98)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 36px rgba(23, 133, 255, 0.035),
    0 28px 70px rgba(0,0,0,0.38),
    0 0 28px rgba(21, 179, 255, 0.07);
}

/* Number badges float above artwork */
.solution-number {
  top: 10px;
  left: 10px;

  backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 24px rgba(0,0,0,0.28),
    0 0 22px rgba(24,215,255,0.16);
}

/* Extra life on hover without being distracting */
.solution-card:hover .solution-art img {
  transform:
    translateY(-6px)
    scale(1.045);

  filter:
    saturate(1.17)
    contrast(1.11)
    brightness(1.08)
    drop-shadow(0 18px 32px rgba(0,0,0,0.30))
    drop-shadow(0 0 32px rgba(25, 205, 255, 0.27));
}

@media (max-width: 640px) {
  .solution-art {
    height: 195px;
  }
}


/* =========================================
   TALYVEX — HOW IT WORKS 3D PASS
   ========================================= */

.process-card {
  justify-content: flex-start;
  padding: 22px 28px 32px;
}

.process-art {
  position: relative;

  width: 100%;
  height: 220px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 18px;

  background:
    radial-gradient(
      ellipse at 50% 70%,
      rgba(24, 194, 255, 0.18),
      rgba(28, 92, 255, 0.06) 42%,
      transparent 72%
    );
}

.process-art img {
  width: 84%;
  height: 84%;
  object-fit: contain;

  filter:
    saturate(1.08)
    contrast(1.05)
    drop-shadow(0 14px 26px rgba(0,0,0,0.30))
    drop-shadow(0 0 20px rgba(24, 205, 255, 0.16));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.process-card:hover .process-art img {
  transform:
    translateY(-5px)
    scale(1.035);

  filter:
    saturate(1.12)
    contrast(1.06)
    drop-shadow(0 18px 30px rgba(0,0,0,0.30))
    drop-shadow(0 0 30px rgba(24, 215, 255, 0.24));
}

.process-number {
  position: absolute;
  z-index: 5;

  top: 5px;
  left: 5px;

  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  color: #baf5ff;
  font-size: 14px;
  font-weight: 900;

  border: 1px solid rgba(43, 211, 255, 0.45);

  background:
    linear-gradient(
      145deg,
      rgba(23, 78, 145, 0.92),
      rgba(5, 23, 50, 0.95)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 0 22px rgba(24,215,255,0.14);
}

.process-card h3 {
  margin-top: 4px;
}

.step {
  display: none;
}

@media (max-width: 640px) {
  .process-art {
    height: 195px;
  }
}


/* =========================================
   TALYVEX — HOW IT WORKS FINAL BALANCE
   Equal visual scale + sticky-nav anchor fix
   ========================================= */

#solutions,
#how-it-works {
  scroll-margin-top: 105px;
}

.process-art {
  height: 230px;
}

/* Same exact visual scale for all 3 process illustrations */
.process-art img {
  width: 100%;
  height: 100%;
  transform: scale(1.14);

  filter:
    saturate(1.10)
    contrast(1.06)
    drop-shadow(0 15px 28px rgba(0,0,0,0.30))
    drop-shadow(0 0 22px rgba(24,205,255,0.18));
}

.process-card:hover .process-art img {
  transform:
    translateY(-5px)
    scale(1.19);

  filter:
    saturate(1.13)
    contrast(1.07)
    drop-shadow(0 18px 32px rgba(0,0,0,0.30))
    drop-shadow(0 0 30px rgba(24,215,255,0.25));
}

@media (max-width: 640px) {
  .process-art {
    height: 205px;
  }
}


/* =========================================
   TALYVEX — STICKY NAV ANCHOR FIX
   ========================================= */

html {
  scroll-padding-top: 140px;
}

#solutions,
#how-it-works {
  scroll-margin-top: 140px;
}


/* =========================================
   TALYVEX — SOLUTIONS TEXT CENTER ALIGNMENT
   ========================================= */

.solution-card {
  text-align: center;
}

.solution-card h3 {
  text-align: center;
}

.solution-card p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.mini-flow {
  text-align: center;
}


/* =========================================
   TALYVEX — WHY TALYVEX SECTION
   ========================================= */

#about {
  scroll-margin-top: 105px;
}

.why-talyvex {
  position: relative;
  overflow: hidden;

  padding:
    120px
    max(5vw, 32px);

  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(21, 151, 255, 0.11),
      transparent 35%
    ),
    radial-gradient(
      circle at 8% 68%,
      rgba(25, 93, 255, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(12, 221, 207, 0.055),
      transparent 27%
    );
}

.why-heading {
  max-width: 900px;
  margin: 0 auto 64px;

  text-align: center;
}

.why-heading h2 {
  margin-top: 18px;
}

.why-heading h2 span {
  background:
    linear-gradient(
      90deg,
      #477cff,
      #19bfff 52%,
      #13dec2
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-heading p {
  max-width: 760px;

  margin:
    20px
    auto
    0;

  color: #b8cbe2;
  line-height: 1.75;
}


/* 3 equal cards */

.why-grid {
  width: min(1440px, 100%);

  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}

.why-card {
  position: relative;
  overflow: hidden;

  min-height: 620px;

  padding:
    24px
    30px
    32px;

  text-align: center;

  border:
    1px solid rgba(60, 187, 255, 0.29);

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(32, 147, 255, 0.15),
      transparent 39%
    ),
    linear-gradient(
      150deg,
      rgba(17, 43, 81, 0.93),
      rgba(4, 14, 31, 0.98)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 38px rgba(25,120,255,0.035),
    0 30px 75px rgba(0,0,0,0.38),
    0 0 28px rgba(23,180,255,0.06);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(66, 218, 255, 0.52);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 35px 90px rgba(0,0,0,0.43),
    0 0 38px rgba(24,197,255,0.12);
}


/* Artwork */

.why-art {
  height: 245px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;

  background:
    radial-gradient(
      ellipse at 50% 70%,
      rgba(28, 200, 255, 0.18),
      rgba(27, 93, 255, 0.05) 46%,
      transparent 72%
    );
}

.why-art img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transform: scale(1.03);

  filter:
    saturate(1.08)
    contrast(1.05)
    drop-shadow(0 16px 28px rgba(0,0,0,0.28))
    drop-shadow(0 0 22px rgba(25,204,255,0.16));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.why-card:hover .why-art img {
  transform:
    translateY(-5px)
    scale(1.07);

  filter:
    saturate(1.12)
    contrast(1.06)
    drop-shadow(0 18px 32px rgba(0,0,0,0.30))
    drop-shadow(0 0 30px rgba(24,215,255,0.24));
}


/* Typography */

.why-card h3 {
  margin:
    8px
    0
    14px;

  color: #f8fbff;

  font-size:
    clamp(1.35rem, 1.8vw, 1.7rem);

  line-height: 1.2;

  text-shadow:
    0 5px 18px rgba(0,0,0,0.40);
}

.why-card > p {
  max-width: 410px;

  margin:
    0
    auto
    24px;

  color: #b9cbe0;

  line-height: 1.7;
}


/* Benefit list */

.why-points {
  margin:
    24px
    0
    0;

  padding:
    22px
    0
    0;

  list-style: none;

  text-align: left;

  border-top:
    1px solid rgba(145, 184, 224, 0.12);
}

.why-points li {
  position: relative;

  margin: 13px 0;

  padding-left: 27px;

  color: #c3d5e8;

  line-height: 1.45;
}

.why-points li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #55e9f5;

  font-weight: 900;

  text-shadow:
    0 0 12px rgba(37,220,255,0.35);
}


/* Honest trust / positioning strip */

.why-trust-strip {
  width: min(1050px, 100%);

  margin:
    42px
    auto
    0;

  padding:
    20px
    28px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;

  flex-wrap: wrap;

  border:
    1px solid rgba(49, 192, 255, 0.26);

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(14, 45, 83, 0.66),
      rgba(4, 14, 31, 0.79)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 48px rgba(0,0,0,0.24);
}

.why-trust-strip span {
  color: #8ceeff;

  font-size: 0.92rem;
  font-weight: 800;
}

.why-trust-strip span:not(:last-child)::after {
  content: "•";

  margin-left: 22px;

  color: rgba(112, 200, 255, 0.45);
}


/* Responsive */

@media (max-width: 980px) {

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    width: min(620px, 100%);
    min-height: auto;

    margin-inline: auto;
  }

  .why-art {
    height: 260px;
  }
}

@media (max-width: 640px) {

  .why-talyvex {
    padding:
      90px
      20px;
  }

  .why-card {
    padding:
      20px
      22px
      28px;
  }

  .why-art {
    height: 215px;
  }

  .why-trust-strip {
    flex-direction: column;

    gap: 11px;
  }

  .why-trust-strip span::after {
    display: none;
  }
}


/* =========================================
   TALYVEX — FINAL DEMO CTA
   ========================================= */

#demo {
  scroll-margin-top: 105px;
}

.demo-cta {
  position: relative;

  padding:
    80px
    max(5vw, 32px)
    90px;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(28, 157, 255, 0.12),
      transparent 42%
    );
}

.demo-cta-inner {
  width: min(1480px, 100%);

  margin: 0 auto;

  padding: 38px 42px;

  display: grid;

  grid-template-columns:
    1.15fr
    1.7fr
    0.8fr;

  gap: 38px;

  align-items: center;

  border:
    1px solid rgba(49, 200, 255, 0.35);

  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      rgba(14, 45, 83, 0.88),
      rgba(4, 14, 31, 0.96)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 28px 75px rgba(0,0,0,0.40),
    0 0 36px rgba(24, 192, 255, 0.08);
}


/* CTA title */

.demo-cta-title h2 {
  margin-top: 18px;

  color: #f7fbff;

  font-size:
    clamp(2rem, 3vw, 3.2rem);

  line-height: 1.08;
}

.demo-cta-title h2 span {
  background:
    linear-gradient(
      90deg,
      #407cff,
      #19c6ff,
      #16dec3
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


/* Three steps */

.demo-steps {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

.demo-step {
  display: flex;

  gap: 13px;

  align-items: flex-start;
}

.demo-step > span {
  min-width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #8df1ff;

  font-size: 12px;
  font-weight: 900;

  border:
    1px solid rgba(48, 207, 255, 0.45);

  background:
    rgba(10, 38, 73, 0.78);

  box-shadow:
    0 0 20px rgba(24, 215, 255, 0.10);
}

.demo-step h3 {
  margin:
    1px
    0
    6px;

  color: #75ecff;

  font-size: 1rem;
}

.demo-step p {
  margin: 0;

  color: #b7c8dc;

  font-size: 0.9rem;

  line-height: 1.55;
}


/* CTA button */

.demo-action {
  text-align: center;
}

.demo-main-button {
  width: 100%;

  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 1rem;
}

.demo-action p {
  max-width: 250px;

  margin:
    14px
    auto
    0;

  color: #9fb2c8;

  font-size: 0.82rem;

  line-height: 1.45;
}


/* Responsive */

@media (max-width: 1100px) {

  .demo-cta-inner {
    grid-template-columns: 1fr;
  }

  .demo-cta-title {
    text-align: center;
  }

  .demo-action {
    max-width: 420px;
    width: 100%;

    margin-inline: auto;
  }
}

@media (max-width: 720px) {

  .demo-steps {
    grid-template-columns: 1fr;
  }

  .demo-cta {
    padding:
      70px
      20px;
  }

  .demo-cta-inner {
    padding:
      30px
      24px;
  }
}


/* =========================================
   TALYVEX — FINAL CTA POLISH
   ========================================= */

/* Reduce excessive gap between About and CTA */
.why-talyvex {
  padding-bottom: 60px;
}

.demo-cta {
  padding-top: 30px;
}

/* Better CTA proportions */
.demo-cta-inner {
  grid-template-columns:
    1.35fr
    1.85fr
    0.85fr;

  gap: 34px;
}

/* Cleaner headline wrapping */
.demo-cta-title h2 {
  font-size:
    clamp(1.9rem, 2.55vw, 2.8rem);

  max-width: 470px;
}

/* Slightly stronger step readability */
.demo-step p {
  color: #c2d1e2;
}

/* Keep button visually strong */
.demo-main-button {
  box-shadow:
    0 14px 38px rgba(31, 112, 255, 0.34),
    0 0 26px rgba(24, 215, 255, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

@media (max-width: 1100px) {
  .demo-cta-title h2 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================
   TALYVEX — DEMO CTA 3D ICONS
   ========================================= */

.demo-step-icon {
  flex: 0 0 64px;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    radial-gradient(
      circle,
      rgba(24, 190, 255, 0.13),
      transparent 72%
    );

  filter:
    drop-shadow(0 0 16px rgba(24, 215, 255, 0.12));
}

.demo-step-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    saturate(1.08)
    contrast(1.05)
    drop-shadow(0 0 11px rgba(24, 215, 255, 0.18));

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.demo-step:hover .demo-step-icon img {
  transform:
    translateY(-3px)
    scale(1.07);

  filter:
    saturate(1.13)
    contrast(1.07)
    drop-shadow(0 0 18px rgba(24, 215, 255, 0.28));
}

@media (max-width: 720px) {
  .demo-step-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}


/* =========================================
   TALYVEX — FINAL FOOTER
   ========================================= */

.site-footer {
  position: relative;

  padding:
    58px
    max(5vw, 32px)
    24px;

  border-top:
    1px solid rgba(65, 180, 255, 0.15);

  background:
    linear-gradient(
      180deg,
      rgba(4, 13, 29, 0.96),
      rgba(2, 8, 19, 1)
    );
}

.footer-inner {
  width: min(1480px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.6fr
    1fr
    0.8fr
    1fr;

  gap: 60px;
}

.footer-brand {
  max-width: 390px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;

  gap: 13px;

  color: #f6fbff;

  text-decoration: none;

  font-size: 1.65rem;
  font-weight: 900;
}

.footer-logo img {
  width: 54px;
  height: 54px;

  object-fit: contain;

  filter:
    drop-shadow(0 0 14px rgba(22, 190, 255, 0.22));
}

.footer-brand p {
  margin:
    18px
    0
    0;

  max-width: 360px;

  color: #9fb3c9;

  line-height: 1.65;
}


/* Footer columns */

.footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}

.footer-column h3 {
  margin:
    4px
    0
    8px;

  color: #f4f9ff;

  font-size: 0.95rem;
}

.footer-column a,
.footer-column span {
  color: #9fb3c9;

  text-decoration: none;

  font-size: 0.9rem;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column a:hover {
  color: #64e9ff;

  transform: translateX(3px);
}

.footer-contact a {
  color: #69eaff;
}


/* Footer bottom */

.footer-bottom {
  width: min(1480px, 100%);

  margin:
    42px
    auto
    0;

  padding-top: 22px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  border-top:
    1px solid rgba(140, 180, 220, 0.10);

  color: #71869d;

  font-size: 0.78rem;
}


/* Responsive */

@media (max-width: 980px) {

  .footer-inner {
    grid-template-columns:
      repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .site-footer {
    padding:
      48px
      22px
      22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }
}


/* =========================================
   TALYVEX — DEMO CTA PROCESS FINAL LAYOUT
   ========================================= */

.demo-steps {
  position: relative;
  align-items: start;
}

.demo-step {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 0;

  text-align: center;

  padding: 0 12px;
}

/* subtle workflow line */
.demo-step:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 35px;
  left: calc(50% + 43px);

  width: calc(100% - 70px);
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(54, 207, 255, 0.42),
      rgba(54, 207, 255, 0.12)
    );

  z-index: 0;
}

.demo-step-icon {
  position: relative;
  z-index: 2;

  width: 70px;
  height: 70px;
  flex: 0 0 70px;

  margin-bottom: 16px;

  border-radius: 50%;

  border:
    1px solid rgba(51, 211, 255, 0.50);

  background:
    radial-gradient(
      circle at 45% 35%,
      rgba(29, 147, 255, 0.24),
      rgba(5, 24, 49, 0.94) 68%
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 22px rgba(20, 203, 255, 0.12);
}

.demo-svg-icon svg {
  width: 31px;
  height: 31px;

  fill: none;

  stroke: #68efff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 0 6px rgba(49, 220, 255, 0.38));
}

.demo-step h3 {
  margin: 0 0 7px;

  color: #63eaff;

  font-size: 1rem;
}

.demo-step p {
  max-width: 190px;

  margin: 0 auto;

  color: #c2d1e2;

  line-height: 1.55;
}

.demo-step:hover .demo-step-icon {
  transform: translateY(-3px);

  border-color:
    rgba(91, 236, 255, 0.72);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 30px rgba(20, 203, 255, 0.20);
}

.demo-step-icon {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

@media (max-width: 720px) {

  .demo-step:not(:last-child)::after {
    display: none;
  }

  .demo-step-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}


/* =========================================
   TALYVEX — TRUST STRIP ICONS
   ========================================= */

.why-trust-strip .trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;
}

.why-trust-strip .trust-item svg {
  width: 30px;
  height: 30px;

  flex: 0 0 30px;

  fill: none;

  stroke: #55e9f5;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 0 7px rgba(50, 220, 255, 0.34));
}

.why-trust-strip .trust-item strong {
  color: #8ceeff;
  font-size: 0.95rem;
  font-weight: 850;
}

@media (max-width: 640px) {

  .why-trust-strip .trust-item {
    width: 100%;
    justify-content: flex-start;
  }

}


/* =========================================
   TALYVEX — FOOTER CONTACT ICONS
   ========================================= */

.footer-contact-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  width: fit-content;
}

.footer-contact-link svg {
  width: 20px;
  height: 20px;

  flex: 0 0 20px;

  fill: none;

  stroke: #55e9f5;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 0 6px rgba(47, 220, 255, 0.30));
}

.footer-contact-link span {
  transition: color 0.25s ease;
}

.footer-contact-link:hover svg {
  stroke: #8af5ff;

  filter:
    drop-shadow(0 0 9px rgba(47, 220, 255, 0.48));
}


/* =========================================
   TALYVEX — FINAL HERO TYPOGRAPHY POLISH
   Cleaner spacing, same performance
   ========================================= */

.hero h1 {
  letter-spacing: -0.012em !important;
  word-spacing: 0.055em;
  line-height: 1.035;
}

.hero-copy > p,
.hero-subtitle {
  letter-spacing: 0.006em;
  line-height: 1.72;
}

.hero .eyebrow {
  letter-spacing: 0.095em;
}

/* Slightly tighter composition without shrinking the design */
.hero {
  padding-top: 105px;
  padding-bottom: 82px;
}

/* Preserve comfortable mobile typography */
@media (max-width: 720px) {
  .hero h1 {
    letter-spacing: -0.006em !important;
    word-spacing: 0.035em;
    line-height: 1.06;
  }
}


/* =========================================
   TALYVEX — HERO TYPOGRAPHY FINAL CORRECTION
   ========================================= */

.hero h1 {
  letter-spacing: 0 !important;
  word-spacing: 0.01em !important;
  line-height: 1.02 !important;
}

/* Give the headline enough horizontal room */
.hero-copy {
  max-width: 760px;
}

/* Keep CTA visible above the fold */
.hero {
  padding-top: 88px !important;
  padding-bottom: 68px !important;
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: clamp(4.5rem, 5.7vw, 6.25rem);
  }
}

@media (max-width: 720px) {
  .hero h1 {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    line-height: 1.06 !important;
  }
}


/* =========================================
   TALYVEX — FINAL SECTION SPACING FIX
   ========================================= */

/* Remove artificial full-screen heights */
.hero,
#solutions,
#how-it-works,
.why-talyvex {
  min-height: auto !important;
}

/* Hero → Solutions */
.hero {
  padding-bottom: 52px !important;
}

#solutions {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}

/* Solutions → How It Works */
#how-it-works {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}

/* How It Works → Why Talyvex */
.why-talyvex {
  padding-top: 82px !important;
  padding-bottom: 58px !important;
}

/* Keep mobile breathing room */
@media (max-width: 720px) {

  .hero {
    padding-bottom: 44px !important;
  }

  #solutions,
  #how-it-works,
  .why-talyvex {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}


/* =========================================
   TALYVEX — HERO TO SOLUTIONS GAP FINAL FIX
   ========================================= */

.hero {
  padding-bottom: 0 !important;
}

.hero-grid {
  padding-bottom: 28px !important;
}

#solutions {
  padding-top: 46px !important;
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 0 !important;
  }

  .hero-grid {
    padding-bottom: 24px !important;
  }

  #solutions {
    padding-top: 48px !important;
  }
}


/* =========================================
   TALYVEX — HERO ABOVE-THE-FOLD FINAL FIX
   ========================================= */

@media (min-width: 981px) {

  .hero {
    padding-top: 0 !important;
  }

  .hero-grid {
    padding-top: 58px !important;
  }

  .hero-copy {
    max-width: 790px !important;
  }

  .hero h1 {
    max-width: 790px !important;

    font-size:
      clamp(60px, 4.35vw, 82px) !important;

    line-height: 1.01 !important;

    letter-spacing: 0 !important;
    word-spacing: 0.025em !important;
  }
}


/* =========================================
   TALYVEX — MOBILE HERO TOP SPACING FIX
   ========================================= */

@media (max-width: 720px) {

  .hero {
    padding-top: 0 !important;
  }

  .hero-grid {
    padding-top: 36px !important;
  }

}


/* =========================================
   TALYVEX — MOBILE DEMO CTA FINAL FIX
   ========================================= */

@media (max-width: 720px) {

  .demo-cta {
    padding: 48px 16px !important;
    overflow: hidden;
  }

  .demo-cta-inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;

    grid-template-columns: minmax(0, 1fr) !important;
    gap: 30px !important;

    padding: 28px 18px !important;
  }

  .demo-cta-title,
  .demo-steps,
  .demo-action {
    width: 100%;
    min-width: 0;
  }

  .demo-cta-title {
    text-align: center !important;
  }

  .demo-cta-title h2 {
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .demo-steps {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .demo-step {
    width: 100%;
    align-items: center !important;
    text-align: center !important;
  }

  .demo-step:not(:last-child)::after {
    display: none !important;
  }

  .demo-action {
    max-width: none !important;
    margin-inline: auto !important;
  }

  .demo-main-button {
    width: 100% !important;
  }
}


/* =========================================
   TALYVEX — TABLET DEMO CTA FINAL FIX
   ========================================= */

@media (min-width: 721px) and (max-width: 1100px) {

  .demo-cta {
    padding: 52px 28px !important;
    overflow: hidden;
  }

  .demo-cta-inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;

    grid-template-columns: minmax(0, 1fr) !important;
    gap: 36px !important;

    padding: 36px 30px !important;
  }

  .demo-cta-title {
    width: 100%;
    text-align: center !important;
  }

  .demo-cta-title h2 {
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .demo-steps {
    width: 100%;
    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;

    gap: 22px !important;
  }

  .demo-step {
    min-width: 0;
    align-items: center !important;
    text-align: center !important;
  }

  .demo-step p {
    max-width: 180px !important;
    margin-inline: auto !important;
  }

  .demo-action {
    width: 100% !important;
    max-width: 420px !important;
    margin-inline: auto !important;
  }

  .demo-main-button {
    width: 100% !important;
  }
}


/* =========================================
   TALYVEX — ACCESSIBLE KEYBOARD FOCUS
   ========================================= */

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(82, 225, 255, 0.95);
  outline-offset: 4px;
  border-radius: 8px;
}



/* =========================================
   TALYVEX ? SERVICE SELECTION UX
   ========================================= */

/* All three services are equally available */
.hero-service-link {
  position: relative;

  color: #a9bdd5;
  text-decoration: none;

  font: inherit;
  font-weight: 700;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.hero-service-link::before {
  content: "?";
  margin-right: 6px;

  color: #63eaff;
}

.hero-service-link:hover {
  color: #7fe9ff;
  transform: translateY(-1px);
}


/* Each service can now be selected directly */
.solution-card[id] {
  scroll-margin-top: 110px;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 22px;
  margin-inline: auto;

  padding: 10px 15px;

  border:
    1px solid rgba(71, 210, 255, 0.34);

  border-radius: 11px;

  background:
    rgba(23, 126, 220, 0.08);

  color: #6deaff;

  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.solution-cta:hover {
  transform: translateY(-2px);

  border-color:
    rgba(83, 229, 255, 0.72);

  background:
    rgba(28, 163, 240, 0.13);
}

.solution-cta:focus-visible,
.hero-service-link:focus-visible {
  outline:
    3px solid rgba(82, 225, 255, 0.95);

  outline-offset: 4px;
}



/* TALYVEX ? SERVICE SYMBOL ENCODING FIX */
.hero-service-link::before {
  content: "\2713" !important;
}



/* =========================================
   TALYVEX ? SERVICE EXPLANATION UX
   ========================================= */

.solution-number {
  width: auto !important;
  min-width: 74px;
  padding-inline: 12px;

  white-space: nowrap;

  font-size: 0.72rem !important;
  letter-spacing: 0.08em;
}

.solution-fit {
  max-width: 92%;

  margin:
    16px auto
    0 !important;

  color: #a9bfd7 !important;

  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.solution-fit strong {
  color: #6deaff;
}

.solution-details {
  width: calc(100% - 36px);

  margin:
    18px auto
    0;

  border:
    1px solid rgba(74, 211, 255, 0.18);

  border-radius: 12px;

  background:
    rgba(11, 86, 150, 0.08);

  overflow: hidden;
}

.solution-details summary {
  position: relative;

  padding: 12px 40px 12px 15px;

  color: #6deaff;

  cursor: pointer;

  font-size: 0.9rem;
  font-weight: 800;

  list-style: none;

  user-select: none;
}

.solution-details summary::-webkit-details-marker {
  display: none;
}

.solution-details summary::after {
  content: "+";

  position: absolute;
  right: 15px;

  font-size: 1.1rem;
}

.solution-details[open] summary::after {
  content: "-";
}

.solution-details-body {
  padding:
    0 15px
    14px;

  border-top:
    1px solid rgba(74, 211, 255, 0.12);
}

.solution-details-body p {
  margin: 11px 0 0 !important;

  color: #b9cbe0 !important;

  font-size: 0.84rem !important;
  line-height: 1.55 !important;
}

.solution-details-body strong {
  color: #63eaff;
}

@media (max-width: 720px) {

  .solution-number {
    font-size: 0.68rem !important;
  }

  .solution-details {
    width: calc(100% - 28px);
  }

}

/* =========================================
   TALYVEX — LANGUAGE SWITCHER DA / EN
   Danish is the default language.
   ========================================= */

.language-switcher {
  min-height: 44px;
  padding: 4px;

  display: inline-flex;
  align-items: center;
  gap: 3px;

  border: 1px solid rgba(45, 204, 255, 0.38);
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      rgba(31, 90, 255, 0.12),
      rgba(21, 218, 255, 0.07)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 20px rgba(24, 180, 255, 0.06);
}

.lang-button {
  min-width: 40px;
  min-height: 34px;
  padding: 0 10px;

  border: 0;
  border-radius: 8px;

  color: #9db0c8;
  background: transparent;

  cursor: pointer;

  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;

  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.lang-button:hover {
  color: #ffffff;
  background: rgba(24, 215, 255, 0.08);
}

.lang-button[aria-pressed="true"] {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(37, 99, 235, 0.92),
      rgba(24, 207, 255, 0.82)
    );

  box-shadow:
    0 5px 16px rgba(33, 112, 255, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.lang-button:focus-visible {
  outline: 3px solid rgba(109, 234, 255, 0.72);
  outline-offset: 3px;
}

.language-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.10);
}

@media (max-width: 640px) {
  .language-switcher {
    min-height: 40px;
    padding: 3px;
  }

  .lang-button {
    min-width: 36px;
    min-height: 32px;
    padding-inline: 8px;
    font-size: 11px;
  }
}
