    :root {
      --navy-950: #030a12;
      --navy-900: #06111f;
      --navy-850: #091827;
      --navy-800: #0b2135;
      --navy-700: #10314f;
      --blue-600: #1268a8;
      --blue-500: #148bd1;
      --blue-400: #48b5ef;
      --cyan-300: #80d8ff;
      --ice-100: #eaf7ff;
      --steel-100: #d8e8f2;
      --steel-300: #8faabd;
      --steel-500: #5f7d92;
      --white: #ffffff;
      --success: #70e5b1;
      --warning: #f9c86a;
      --border: rgba(136, 194, 228, 0.18);
      --border-strong: rgba(136, 194, 228, 0.32);
      --surface: rgba(9, 24, 39, 0.78);
      --surface-strong: rgba(7, 19, 32, 0.96);
      --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --container: 1220px;
      --nav-height: 78px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-height) + 0px);
    }

    body {
      min-width: 320px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--steel-100);
      background:
        radial-gradient(circle at 15% -5%, rgba(20, 139, 209, 0.24), transparent 28rem),
        radial-gradient(circle at 92% 14%, rgba(72, 181, 239, 0.13), transparent 32rem),
        linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 32%, #071422 100%);
      line-height: 1.65;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--cyan-300);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue-400));
    }

    .section {
      position: relative;
      padding: 104px 0;
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 48px;
    }

    .section-heading h2 {
      margin-top: 16px;
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3.45rem);
      line-height: 1.06;
      letter-spacing: -0.045em;
    }

    .section-heading p {
      margin-top: 18px;
      max-width: 680px;
      color: var(--steel-300);
      font-size: 1.05rem;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      height: var(--nav-height);
      border-bottom: 1px solid transparent;
      transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .site-header.scrolled {
      background: rgba(3, 10, 18, 0.9);
      border-color: var(--border);
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(18px);
    }

    .nav-shell {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      color: var(--white);
    }

    .brand-mark {
      position: relative;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(128, 216, 255, 0.35);
      border-radius: 10px;
      background:
        linear-gradient(145deg, rgba(72, 181, 239, 0.18), rgba(18, 104, 168, 0.06)),
        rgba(5, 19, 32, 0.85);
      box-shadow:
        inset 0 0 20px rgba(72, 181, 239, 0.08),
        0 0 24px rgba(20, 139, 209, 0.11);
      overflow: hidden;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border: 2px solid var(--blue-400);
      transform: skewX(-12deg);
    }

    .brand-mark::after {
      inset: 13px 8px 8px 15px;
      border-left: 0;
      border-bottom: 0;
      opacity: 0.55;
    }

    .brand-text {
      font-size: 1.14rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 6px;
      width: 100%;
    }

    .nav-list {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-item {
      position: relative;
    }

    .nav-link,
    .dropdown-trigger {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 44px;
      padding: 0 13px;
      color: #c5d8e5;
      border: 0;
      background: transparent;
      font-size: 0.88rem;
      font-weight: 750;
      border-radius: 9px;
      transition: color 180ms ease, background 180ms ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .dropdown-trigger:hover,
    .dropdown-trigger:focus-visible,
    .nav-item.open > .dropdown-trigger {
      color: var(--white);
      background: rgba(128, 216, 255, 0.08);
      outline: none;
    }

    .chevron {
      width: 7px;
      height: 7px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 180ms ease;
    }

    .nav-item.open .chevron {
      transform: rotate(225deg) translate(-1px, -1px);
    }

    .dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      width: 260px;
      padding: 10px;
      border: 1px solid var(--border-strong);
      border-radius: 14px;
      background: rgba(5, 16, 28, 0.98);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .nav-item.open .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 11px 12px;
      color: #bfd3e1;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 650;
      transition: background 160ms ease, color 160ms ease, transform 160ms ease;
    }

    .dropdown a:hover,
    .dropdown a:focus-visible {
      color: var(--white);
      background: rgba(72, 181, 239, 0.1);
      transform: translateX(2px);
      outline: none;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      color: var(--white);
      background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
      border: 1px solid rgba(128, 216, 255, 0.32);
      border-radius: 10px;
      font-size: 0.84rem;
      font-weight: 850;
      box-shadow: 0 14px 30px rgba(18, 104, 168, 0.28);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(18, 104, 168, 0.38);
      outline: none;
    }

    .mobile-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--border);
      border-radius: 11px;
      background: rgba(128, 216, 255, 0.06);
      color: var(--white);
      place-items: center;
    }

    .mobile-toggle span,
    .mobile-toggle::before,
    .mobile-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-toggle span {
      margin: 4px 0;
    }

    .mobile-toggle.active span {
      opacity: 0;
    }

    .mobile-toggle.active::before {
      transform: translateY(6px) rotate(45deg);
    }

    .mobile-toggle.active::after {
      transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
      position: relative;
      min-height: 920px;
      padding: 158px 0 86px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(128, 216, 255, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 216, 255, 0.038) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: linear-gradient(to bottom, black 25%, transparent 92%);
      pointer-events: none;
    }

    .hero-glow {
      position: absolute;
      width: 760px;
      height: 760px;
      right: -270px;
      top: 20px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(20, 139, 209, 0.2), transparent 68%);
      filter: blur(8px);
      pointer-events: none;
    }

    .hero-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
      gap: 68px;
      align-items: center;
    }

    .hero-copy h1 {
      max-width: 760px;
      margin-top: 22px;
      color: var(--white);
      font-size: clamp(3.25rem, 6.8vw, 6.65rem);
      line-height: 0.92;
      letter-spacing: -0.07em;
      text-wrap: balance;
    }

    .hero-copy h1 span {
      display: block;
      color: transparent;
      background: linear-gradient(90deg, #ffffff 0%, var(--cyan-300) 55%, var(--blue-400) 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-copy > p {
      max-width: 650px;
      margin-top: 28px;
      color: #a9c0d0;
      font-size: clamp(1.03rem, 1.6vw, 1.2rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 11px;
      font-size: 0.9rem;
      font-weight: 850;
      letter-spacing: 0.01em;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .button-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
      border: 1px solid rgba(128, 216, 255, 0.35);
      box-shadow: 0 18px 38px rgba(18, 104, 168, 0.28);
    }

    .button-secondary {
      color: var(--ice-100);
      border: 1px solid var(--border-strong);
      background: rgba(128, 216, 255, 0.045);
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
      outline: none;
    }

    .button-primary:hover,
    .button-primary:focus-visible {
      box-shadow: 0 22px 44px rgba(18, 104, 168, 0.4);
    }

    .button-secondary:hover,
    .button-secondary:focus-visible {
      border-color: rgba(128, 216, 255, 0.48);
      background: rgba(128, 216, 255, 0.08);
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 22px 30px;
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #9cb3c3;
      font-size: 0.82rem;
      font-weight: 750;
    }

    .trust-icon {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(112, 229, 177, 0.25);
      border-radius: 50%;
      color: var(--success);
      background: rgba(112, 229, 177, 0.07);
      font-size: 0.7rem;
    }

    .infrastructure-visual {
      position: relative;
      min-height: 590px;
      display: grid;
      align-items: center;
    }

    .core-visual {
      position: relative;
      width: min(100%, 560px);
      padding: 26px;
      border: 1px solid rgba(128, 216, 255, 0.23);
      border-radius: 28px;
      background:
        radial-gradient(circle at 50% 42%, rgba(72, 181, 239, 0.12), transparent 38%),
        linear-gradient(150deg, rgba(12, 39, 61, 0.9), rgba(4, 14, 24, 0.96));
      box-shadow:
        inset 0 0 50px rgba(72, 181, 239, 0.04),
        0 40px 100px rgba(0, 0, 0, 0.4);
      overflow: hidden;
    }

    .core-visual::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(140deg, rgba(128, 216, 255, 0.42), transparent 38%, rgba(20, 139, 209, 0.2));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .core-header {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(128, 216, 255, 0.12);
    }

    .core-kicker {
      display: block;
      color: var(--cyan-300);
      font-size: 0.69rem;
      font-weight: 850;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .core-header h2 {
      margin-top: 7px;
      color: var(--white);
      font-size: 1.32rem;
      line-height: 1.1;
      letter-spacing: -0.025em;
    }

    .core-header p {
      max-width: 330px;
      margin-top: 8px;
      color: #8ea9bb;
      font-size: 0.78rem;
      line-height: 1.55;
    }

    .live-badge {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 10px;
      border: 1px solid rgba(112, 229, 177, 0.18);
      border-radius: 999px;
      color: var(--success);
      background: rgba(112, 229, 177, 0.055);
      font-size: 0.64rem;
      font-weight: 850;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .live-badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 14px rgba(112, 229, 177, 0.7);
      animation: pulse 1.8s infinite;
    }

    .core-flow {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 42px 1.25fr;
      align-items: stretch;
      gap: 12px;
      padding: 24px 0 20px;
    }

    .core-stack {
      display: grid;
      gap: 10px;
    }

    .core-node {
      position: relative;
      min-height: 82px;
      padding: 15px;
      border: 1px solid rgba(128, 216, 255, 0.13);
      border-radius: 13px;
      background: linear-gradient(180deg, rgba(16, 49, 79, 0.58), rgba(6, 17, 31, 0.86));
      overflow: hidden;
    }

    .core-node::after {
      content: "";
      position: absolute;
      inset: 0 auto 0 -65%;
      width: 45%;
      background: linear-gradient(90deg, transparent, rgba(128, 216, 255, 0.045), transparent);
      animation: scan 5.5s linear infinite;
    }

    .core-node-label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      font-size: 0.76rem;
      font-weight: 850;
    }

    .core-node-label i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue-400);
      box-shadow: 0 0 10px rgba(72, 181, 239, 0.42);
    }

    .core-node p {
      margin-top: 7px;
      color: #7f9caf;
      font-size: 0.69rem;
      line-height: 1.45;
    }

    .core-arrow {
      display: grid;
      place-items: center;
      color: var(--blue-400);
    }

    .core-arrow span {
      width: 34px;
      height: 1px;
      position: relative;
      background: linear-gradient(90deg, rgba(72, 181, 239, 0.2), var(--blue-400));
    }

    .core-arrow span::after {
      content: "";
      position: absolute;
      top: -4px;
      right: 0;
      width: 8px;
      height: 8px;
      border-top: 1px solid var(--blue-400);
      border-right: 1px solid var(--blue-400);
      transform: rotate(45deg);
    }

    .core-compute {
      display: grid;
      grid-template-rows: auto 1fr;
      min-height: 174px;
      border: 1px solid rgba(72, 181, 239, 0.24);
      border-radius: 15px;
      background: rgba(8, 27, 45, 0.72);
      overflow: hidden;
    }

    .compute-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 15px;
      border-bottom: 1px solid rgba(128, 216, 255, 0.12);
      color: var(--white);
      font-size: 0.76rem;
      font-weight: 850;
    }

    .compute-title span:last-child {
      color: #7696aa;
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .compute-nodes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      padding: 14px;
    }

    .compute-node {
      display: grid;
      align-content: space-between;
      min-height: 104px;
      padding: 11px;
      border: 1px solid rgba(128, 216, 255, 0.12);
      border-radius: 10px;
      background: linear-gradient(180deg, rgba(17, 51, 80, 0.58), rgba(5, 17, 29, 0.82));
    }

    .compute-node strong {
      color: #bcd4e3;
      font-size: 0.68rem;
    }

    .compute-bars {
      display: grid;
      gap: 6px;
    }

    .compute-bars i {
      height: 5px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
    }

    .compute-bars i:nth-child(2) { width: 72%; opacity: 0.55; }
    .compute-bars i:nth-child(3) { width: 48%; opacity: 0.32; }

    .core-services {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding-top: 20px;
      border-top: 1px solid rgba(128, 216, 255, 0.12);
    }

    .core-service {
      padding: 13px;
      border: 1px solid rgba(128, 216, 255, 0.11);
      border-radius: 11px;
      background: rgba(7, 23, 38, 0.58);
    }

    .core-service strong {
      display: block;
      color: #d8e7f0;
      font-size: 0.69rem;
    }

    .core-service span {
      display: block;
      margin-top: 5px;
      color: #7591a4;
      font-size: 0.63rem;
      line-height: 1.4;
    }

    .core-metrics {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .core-metric {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 15px;
      border: 1px solid rgba(128, 216, 255, 0.14);
      border-radius: 11px;
      background: rgba(5, 17, 29, 0.68);
    }

    .core-metric span {
      color: #7895a8;
      font-size: 0.64rem;
      font-weight: 780;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .core-metric strong {
      color: var(--white);
      font-size: 1rem;
      white-space: nowrap;
    }

    .stats-strip {
      position: relative;
      z-index: 2;
      margin-top: -30px;
    }

    .stats-shell {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border-strong);
      border-radius: 18px;
      background: rgba(5, 16, 28, 0.86);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    .stat {
      padding: 28px 24px;
      border-right: 1px solid var(--border);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--white);
      font-size: clamp(1.55rem, 3vw, 2.25rem);
      line-height: 1;
      letter-spacing: -0.045em;
    }

    .stat span {
      display: block;
      margin-top: 9px;
      color: var(--steel-300);
      font-size: 0.8rem;
      font-weight: 720;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      position: relative;
      min-height: 310px;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background:
        linear-gradient(145deg, rgba(13, 44, 69, 0.54), rgba(5, 17, 29, 0.74));
      overflow: hidden;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -90px;
      top: -90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(72, 181, 239, 0.12), transparent 68%);
      transition: transform 220ms ease;
    }

    .service-card:hover {
      transform: translateY(-7px);
      border-color: rgba(128, 216, 255, 0.34);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
    }

    .service-card:hover::before {
      transform: scale(1.2);
    }

    .service-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(128, 216, 255, 0.24);
      border-radius: 13px;
      color: var(--cyan-300);
      background: rgba(72, 181, 239, 0.08);
      font-size: 1.28rem;
      font-weight: 900;
      box-shadow: inset 0 0 18px rgba(72, 181, 239, 0.04);
    }

    .service-card h3 {
      margin-top: 24px;
      color: var(--white);
      font-size: 1.24rem;
      letter-spacing: -0.02em;
    }

    .service-card p {
      margin-top: 12px;
      color: var(--steel-300);
      font-size: 0.92rem;
    }

    .service-card a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      color: var(--cyan-300);
      font-size: 0.82rem;
      font-weight: 850;
    }

    .service-card a::after {
      content: "→";
      transition: transform 160ms ease;
    }

    .service-card a:hover::after {
      transform: translateX(4px);
    }

    .platform {
      background:
        linear-gradient(180deg, rgba(9, 24, 39, 0.3), rgba(9, 24, 39, 0.75)),
        radial-gradient(circle at 78% 40%, rgba(20, 139, 209, 0.12), transparent 24rem);
      border-block: 1px solid rgba(128, 216, 255, 0.07);
    }

    .platform-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 70px;
      align-items: center;
    }

    .platform-copy h2 {
      margin-top: 16px;
      color: var(--white);
      font-size: clamp(2.15rem, 4.5vw, 4rem);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .platform-copy > p {
      margin-top: 20px;
      color: var(--steel-300);
      font-size: 1.03rem;
    }

    .feature-list {
      list-style: none;
      display: grid;
      gap: 17px;
      margin-top: 30px;
    }

    .feature-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 13px;
      align-items: start;
      color: #b9cfdd;
      font-size: 0.92rem;
    }

    .feature-list li::before {
      content: "✓";
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(112, 229, 177, 0.22);
      border-radius: 8px;
      color: var(--success);
      background: rgba(112, 229, 177, 0.065);
      font-size: 0.75rem;
      font-weight: 900;
    }

    .network-map {
      position: relative;
      min-height: 510px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(rgba(128, 216, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 216, 255, 0.03) 1px, transparent 1px),
        linear-gradient(145deg, rgba(13, 44, 69, 0.52), rgba(4, 14, 24, 0.88));
      background-size: 42px 42px, 42px 42px, auto;
      overflow: hidden;
      box-shadow: inset 0 0 60px rgba(72, 181, 239, 0.04);
    }

    .network-map::before {
      content: "";
      position: absolute;
      inset: 12%;
      border: 1px dashed rgba(128, 216, 255, 0.13);
      border-radius: 50%;
      transform: rotate(-12deg);
    }

    .network-map::after {
      content: "";
      position: absolute;
      inset: 23%;
      border: 1px solid rgba(128, 216, 255, 0.09);
      border-radius: 50%;
      transform: rotate(18deg);
    }

    .node {
      position: absolute;
      z-index: 2;
      width: 18px;
      height: 18px;
      border: 3px solid #0a2033;
      border-radius: 50%;
      background: var(--blue-400);
      box-shadow: 0 0 0 8px rgba(72, 181, 239, 0.07), 0 0 24px rgba(72, 181, 239, 0.5);
    }

    .node span {
      position: absolute;
      top: 25px;
      left: 50%;
      transform: translateX(-50%);
      color: #9db8c9;
      font-size: 0.66rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .node-core {
      width: 28px;
      height: 28px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: var(--success);
      box-shadow: 0 0 0 12px rgba(112, 229, 177, 0.06), 0 0 34px rgba(112, 229, 177, 0.44);
    }

    .node-1 { left: 16%; top: 24%; }
    .node-2 { right: 16%; top: 20%; }
    .node-3 { left: 12%; bottom: 24%; }
    .node-4 { right: 19%; bottom: 17%; }
    .node-5 { left: 47%; top: 12%; }

    .network-line {
      position: absolute;
      z-index: 1;
      height: 1px;
      transform-origin: left center;
      background: linear-gradient(90deg, rgba(72, 181, 239, 0.08), rgba(72, 181, 239, 0.48), rgba(72, 181, 239, 0.08));
    }

    .line-1 { width: 39%; left: 18%; top: 27%; transform: rotate(24deg); }
    .line-2 { width: 40%; left: 49%; top: 50%; transform: rotate(-35deg); }
    .line-3 { width: 43%; left: 17%; top: 69%; transform: rotate(-28deg); }
    .line-4 { width: 36%; left: 50%; top: 53%; transform: rotate(31deg); }
    .line-5 { width: 32%; left: 49%; top: 17%; transform: rotate(85deg); }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .client-card {
      position: relative;
      min-height: 215px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(7, 20, 34, 0.7);
      overflow: hidden;
      transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
    }

    .client-card::after {
      content: "";
      position: absolute;
      inset: auto -50px -70px auto;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(72, 181, 239, 0.1), transparent 68%);
    }

    .client-card:hover {
      transform: translateY(-5px);
      border-color: rgba(128, 216, 255, 0.3);
      background: rgba(10, 29, 47, 0.78);
    }

    .client-category {
      color: var(--cyan-300);
      font-size: 0.68rem;
      font-weight: 850;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .client-card h3 {
      margin-top: 18px;
      color: var(--white);
      font-size: 1.3rem;
      line-height: 1.1;
      letter-spacing: -0.025em;
    }

    .client-card p {
      margin-top: 11px;
      color: var(--steel-300);
      font-size: 0.84rem;
    }

    .client-link {
      position: relative;
      z-index: 2;
      display: inline-flex;
      width: max-content;
      margin-top: 24px;
      color: #b8cfdd;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .security-grid {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, 1fr);
      gap: 18px;
    }

    .security-lead,
    .security-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(13, 44, 69, 0.45), rgba(5, 17, 29, 0.68));
    }

    .security-lead {
      padding: 34px;
    }

    .security-lead h3 {
      color: var(--white);
      font-size: 1.65rem;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .security-lead p {
      margin-top: 16px;
      color: var(--steel-300);
      font-size: 0.94rem;
    }

    .security-item {
      min-height: 250px;
      padding: 28px;
    }

    .security-item strong {
      display: block;
      margin-top: 22px;
      color: var(--white);
      font-size: 1.06rem;
    }

    .security-item p {
      margin-top: 10px;
      color: var(--steel-300);
      font-size: 0.83rem;
    }

    .cta-section {
      padding-top: 50px;
    }

    .cta-panel {
      position: relative;
      padding: 62px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      border: 1px solid rgba(128, 216, 255, 0.28);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 82% 20%, rgba(72, 181, 239, 0.19), transparent 22rem),
        linear-gradient(135deg, rgba(14, 52, 81, 0.98), rgba(5, 19, 33, 0.98));
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(128, 216, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 216, 255, 0.04) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: linear-gradient(90deg, black, transparent 80%);
      pointer-events: none;
    }

    .cta-copy {
      position: relative;
      z-index: 1;
    }

    .cta-copy h2 {
      max-width: 760px;
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3.55rem);
      line-height: 1.04;
      letter-spacing: -0.045em;
    }

    .cta-copy p {
      margin-top: 16px;
      max-width: 660px;
      color: #adc3d1;
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 220px;
    }

    .site-footer {
      margin-top: 104px;
      border-top: 1px solid var(--border);
      background: #030b14;
    }

    .footer-main {
      padding: 70px 0 48px;
      display: grid;
      grid-template-columns: 1.3fr repeat(4, 1fr);
      gap: 48px;
    }

    .footer-brand p {
      margin-top: 20px;
      max-width: 330px;
      color: #7894a7;
      font-size: 0.88rem;
    }

    .footer-column h3 {
      color: var(--white);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .footer-links a {
      color: #809caf;
      font-size: 0.84rem;
      transition: color 160ms ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--cyan-300);
      outline: none;
    }

    .footer-bottom {
      min-height: 78px;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      border-top: 1px solid var(--border);
      color: #648095;
      font-size: 0.76rem;
    }

    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.55; transform: scale(0.75); }
    }

    @keyframes scan {
      from { transform: translateX(0); }
      to { transform: translateX(330%); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (hover: hover) and (min-width: 1041px) {
      .nav-item:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav-item:hover .chevron {
        transform: rotate(225deg) translate(-1px, -1px);
      }
    }

    @media (max-width: 1120px) {
      .nav-link,
      .dropdown-trigger {
        padding-inline: 9px;
      }

      .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
        gap: 40px;
      }

      .clients-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .security-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .security-lead {
        grid-column: span 2;
      }
    }

    @media (max-width: 1040px) {
      :root {
        --nav-height: 72px;
      }

      .mobile-toggle {
        display: grid;
      }

      .desktop-nav {
        position: fixed;
        inset: var(--nav-height) 0 0;
        display: block;
        padding: 22px 20px 40px;
        background: rgba(3, 10, 18, 0.985);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 240ms ease;
      }

      .desktop-nav.open {
        transform: translateX(0);
      }

      .nav-list {
        display: grid;
        align-items: stretch;
        gap: 4px;
      }

      .nav-item {
        width: 100%;
      }

      .nav-link,
      .dropdown-trigger {
        width: 100%;
        min-height: 50px;
        justify-content: space-between;
        padding: 0 14px;
        font-size: 0.96rem;
      }

      .dropdown {
        position: static;
        width: auto;
        max-height: 0;
        margin: 0 8px;
        padding: 0 10px;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: hidden;
        background: rgba(128, 216, 255, 0.035);
        box-shadow: none;
        transition: max-height 220ms ease, padding 220ms ease;
      }

      .nav-item.open .dropdown {
        max-height: 420px;
        padding-block: 9px;
      }

      .nav-cta {
        width: 100%;
        margin-top: 18px;
      }

      .hero {
        min-height: auto;
        padding-top: 132px;
      }

      .hero-layout {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        text-align: center;
      }

      .hero-copy h1,
      .hero-copy > p {
        margin-inline: auto;
      }

      .hero-actions,
      .hero-trust {
        justify-content: center;
      }

      .infrastructure-visual {
        margin-top: 16px;
      }

      .platform-layout {
        grid-template-columns: 1fr;
      }

      .network-map {
        min-height: 470px;
      }

      .footer-main {
        grid-template-columns: 1.4fr repeat(2, 1fr);
      }
    }

    @media (max-width: 820px) {
      .section {
        padding: 82px 0;
      }

      .stats-shell {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat:nth-child(2) {
        border-right: 0;
      }

      .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        padding: 42px 30px;
        grid-template-columns: 1fr;
      }

      .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .footer-main {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-brand {
        grid-column: span 2;
      }
    }


    @media (max-width: 480px) {
      .compute-nodes {
        grid-template-columns: 1fr;
      }

      .compute-node {
        min-height: 76px;
      }

      .core-metric {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 600px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .brand-text {
        font-size: 0.98rem;
      }

      .hero {
        padding-bottom: 68px;
      }

      .hero-copy h1 {
        font-size: clamp(3.1rem, 17vw, 4.7rem);
      }

      .hero-actions {
        display: grid;
      }

      .button {
        width: 100%;
      }

      .hero-trust {
        display: grid;
        justify-content: start;
        max-width: 310px;
        margin-inline: auto;
        text-align: left;
      }

      .infrastructure-visual {
        min-height: auto;
      }

      .core-visual {
        padding: 18px;
      }

      .core-header {
        display: grid;
      }

      .live-badge {
        width: max-content;
      }

      .core-flow {
        grid-template-columns: 1fr;
      }

      .core-arrow {
        height: 22px;
        transform: rotate(90deg);
      }

      .core-services {
        grid-template-columns: 1fr;
      }

      .core-metrics {
        grid-template-columns: 1fr;
      }

      .stats-strip {
        margin-top: -10px;
      }

      .stat {
        padding: 22px 17px;
      }

      .clients-grid,
      .security-grid {
        grid-template-columns: 1fr;
      }

      .security-lead {
        grid-column: auto;
      }

      .network-map {
        min-height: 390px;
      }

      .cta-panel {
        padding: 34px 22px;
      }

      .cta-actions {
        display: grid;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }

      .footer-brand {
        grid-column: auto;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    .service-contact,
    .client-link,
    .footer-contact {
      appearance: none;
      border: 0;
      padding: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
    }

    .service-contact {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      color: var(--cyan-300);
      font-size: 0.82rem;
      font-weight: 850;
    }

    .service-contact::after {
      content: "→";
      transition: transform 160ms ease;
    }

    .service-contact:hover::after,
    .service-contact:focus-visible::after {
      transform: translateX(4px);
    }

    .service-contact:focus-visible,
    .client-link:focus-visible,
    .footer-contact:focus-visible {
      outline: 2px solid var(--blue-400);
      outline-offset: 5px;
      border-radius: 3px;
    }

    .footer-contact {
      color: #809caf;
      font-size: 0.84rem;
      transition: color 160ms ease;
    }

    .footer-contact:hover,
    .footer-contact:focus-visible {
      color: var(--cyan-300);
    }

    .contact-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 200ms ease, visibility 200ms ease;
    }

    .contact-modal.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      border: 0;
      background: rgba(1, 7, 13, 0.82);
      backdrop-filter: blur(12px);
    }

    .modal-dialog {
      position: relative;
      z-index: 1;
      width: min(100%, 720px);
      max-height: min(90vh, 900px);
      overflow-y: auto;
      border: 1px solid rgba(128, 216, 255, 0.3);
      border-radius: 24px;
      background:
        radial-gradient(circle at 90% 0%, rgba(72, 181, 239, 0.13), transparent 20rem),
        linear-gradient(145deg, #0b2135, #05111d 72%);
      box-shadow: 0 36px 110px rgba(0, 0, 0, 0.56);
    }

    .modal-inner {
      padding: 38px;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--white);
      background: rgba(128, 216, 255, 0.055);
      font-size: 1.35rem;
      line-height: 1;
    }

    .modal-close:hover,
    .modal-close:focus-visible {
      border-color: rgba(128, 216, 255, 0.45);
      background: rgba(128, 216, 255, 0.1);
      outline: none;
    }

    .modal-heading h2 {
      margin-top: 14px;
      color: var(--white);
      font-size: clamp(2rem, 6vw, 3rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
    }

    .modal-heading p {
      margin-top: 15px;
      max-width: 600px;
      color: var(--steel-300);
    }

    .contact-form {
      display: grid;
      gap: 18px;
      margin-top: 30px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      color: #c9dce8;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      border: 1px solid rgba(128, 216, 255, 0.2);
      border-radius: 10px;
      color: var(--white);
      background: rgba(2, 11, 19, 0.62);
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    .form-field input,
    .form-field select {
      min-height: 49px;
      padding: 0 14px;
    }

    .form-field textarea {
      min-height: 132px;
      padding: 13px 14px;
      resize: vertical;
    }

    .form-field select option {
      color: #071422;
      background: var(--white);
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--blue-400);
      box-shadow: 0 0 0 3px rgba(72, 181, 239, 0.11);
    }

    .form-honeypot {
      position: absolute !important;
      left: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
    }

    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .form-note {
      color: #7894a7;
      font-size: 0.76rem;
    }

    .form-status {
      min-height: 24px;
      color: #f7b9b9;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .form-submit[disabled] {
      cursor: wait;
      opacity: 0.68;
      transform: none;
    }

    .thank-you-state {
      display: none;
      min-height: 440px;
      padding: 38px;
      place-items: center;
      text-align: center;
    }

    .thank-you-state.active {
      display: grid;
    }

    .thank-you-icon {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      margin-inline: auto;
      border: 1px solid rgba(112, 229, 177, 0.28);
      border-radius: 50%;
      color: var(--success);
      background: rgba(112, 229, 177, 0.07);
      box-shadow: 0 0 40px rgba(112, 229, 177, 0.1);
      font-size: 2rem;
      font-weight: 900;
    }

    .thank-you-state h2 {
      margin-top: 24px;
      color: var(--white);
      font-size: clamp(2rem, 6vw, 3.2rem);
      line-height: 1;
      letter-spacing: -0.045em;
    }

    .thank-you-state p {
      max-width: 510px;
      margin: 17px auto 0;
      color: var(--steel-300);
    }

    .thank-you-state .button {
      margin-top: 28px;
    }

    @media (max-width: 600px) {
      .contact-modal {
        padding: 10px;
      }

      .modal-inner,
      .thank-you-state {
        padding: 30px 20px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-field.full {
        grid-column: auto;
      }

      .form-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .form-submit {
        width: 100%;
      }
    }

/* =========================================================
   NOCTERIS.AI INTRODUCTION
   ========================================================= */

.nocteris-ai-section {
  --nai-green: #63ff9f;
  --nai-green-bright: #a0ffc5;
  --nai-green-deep: #18c968;
  --nai-green-dim: rgba(99, 255, 159, 0.12);
  --nai-background: #020a06;
  --nai-background-soft: #06130c;
  --nai-panel: rgba(5, 24, 14, 0.94);
  --nai-border: rgba(99, 255, 159, 0.18);
  --nai-text: #f1fff6;
  --nai-muted: #94b9a2;
  --nai-muted-dark: #668b73;

  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0;
  color: var(--nai-text);
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(58, 236, 126, 0.13),
      transparent 28rem
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(29, 154, 81, 0.08),
      transparent 34rem
    ),
    linear-gradient(
      135deg,
      #010704 0%,
      var(--nai-background) 44%,
      #04130b 100%
    );
  border-top: 1px solid rgba(99, 255, 159, 0.12);
  border-bottom: 1px solid rgba(99, 255, 159, 0.12);
  isolation: isolate;
}

.nocteris-ai-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.25;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(99, 255, 159, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(99, 255, 159, 0.04) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.nocteris-ai-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.nocteris-ai-glow-one {
  top: -180px;
  right: 3%;
  width: 480px;
  height: 480px;
  background: rgba(48, 226, 119, 0.12);
}

.nocteris-ai-glow-two {
  bottom: -260px;
  left: 10%;
  width: 560px;
  height: 560px;
  background: rgba(28, 159, 82, 0.08);
}

.nocteris-ai-container {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.06fr)
    minmax(440px, 0.94fr);
  align-items: center;
  gap: clamp(64px, 8vw, 126px);
}

.nocteris-ai-content {
  position: relative;
  z-index: 2;
}

.nocteris-ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--nai-green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(108, 255, 178, 0.45);
}

.nocteris-ai-status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nai-green);
  box-shadow:
    0 0 0 5px rgba(99, 255, 159, 0.07),
    0 0 20px rgba(99, 255, 159, 0.72);
}

.nocteris-ai-section .nocteris-ai-content h2 {
    font-family: "Orbitron", sans-serif !important;
    font-weight: 400 !important;
    color: #fff;
  max-width: 780px;
  margin: 0;
  color: var(--nai-text);
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}


.nocteris-ai-section .nocteris-ai-content h2 span {
  color: var(--nai-green);
}

.nocteris-ai-lead,
.nocteris-ai-supporting-copy {
  max-width: 730px;
  color: var(--nai-muted);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.78;
}

.nocteris-ai-lead {
  margin: 30px 0 0;
}

.nocteris-ai-supporting-copy {
  margin: 18px 0 0;
  color: #7fa68d;
}

.nocteris-ai-principles {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(99, 255, 159, 0.14);
}

.nocteris-ai-principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(99, 255, 159, 0.14);
}

.nocteris-ai-principle-number {
  padding-top: 3px;
  color: var(--nai-green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.nocteris-ai-principle h3 {
  margin: 0 0 7px;
  color: #ecfff3;
  font-size: 1rem;
  font-weight: 600;
}

.nocteris-ai-principle p {
  max-width: 620px;
  margin: 0;
  color: #789b84;
  font-family: "Inter", sans-serif;
  font-size: 0.89rem;
  line-height: 1.65;
}

.nocteris-ai-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.nocteris-ai-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--nai-green);
  border-radius: 7px;
  color: #021007;
  background: linear-gradient(
    135deg,
    var(--nai-green),
    var(--nai-green-deep)
  );
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    0 0 25px rgba(97, 255, 157, 0.18),
    0 12px 34px rgba(24, 201, 104, 0.17),
    inset 0 1px rgba(255, 255, 255, 0.25);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nocteris-ai-button:hover,
.nocteris-ai-button:focus-visible {
  color: #021007;
  background: linear-gradient(
    135deg,
    var(--nai-green-bright),
    var(--nai-green)
  );
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(97, 255, 157, 0.24),
    0 17px 44px rgba(24, 201, 104, 0.23),
    inset 0 1px rgba(255, 255, 255, 0.3);
}

.nocteris-ai-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.nocteris-ai-note {
  color: var(--nai-muted-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nocteris-ai-visual {
  position: relative;
  font-family: "Inter", sans-serif;
}

.nocteris-ai-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--nai-border);
  border-radius: 23px;
  background:
    linear-gradient(
      145deg,
      rgba(9, 34, 21, 0.96),
      rgba(2, 13, 7, 0.98)
    );
  font-family: "Rajdhani", sans-serif;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.035);
}

.nocteris-ai-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(99, 255, 159, 0.038) 45%,
      transparent 72%
    );
}

.nocteris-ai-panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.nocteris-ai-panel-header > div {
  display: grid;
  gap: 5px;
}

.nocteris-ai-panel-domain {
  color: var(--nai-green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.nocteris-ai-panel-header strong {
  color: #eafff1;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.nocteris-ai-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(99, 255, 159, 0.2);
  border-radius: 999px;
  color: #9dd4af;
  background: rgba(99, 255, 159, 0.05);
  font-family: "Orbitron", sans-serif;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nocteris-ai-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nai-green);
  box-shadow: 0 0 12px rgba(99, 255, 159, 0.8);
}

.nocteris-ai-panel-purpose {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding: 23px;
  border: 1px solid rgba(99, 255, 159, 0.13);
  border-radius: 13px;
  background: rgba(99, 255, 159, 0.035);
}

.nocteris-ai-panel-purpose > span {
  color: var(--nai-green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nocteris-ai-panel-purpose h3 {
  margin: 13px 0 0;
  color: #ecfff3;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.nocteris-ai-panel-purpose p {
  margin: 13px 0 0;
  color: #789b84;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  line-height: 1.65;
}

.nocteris-ai-model {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  margin: 32px auto 26px;
}

.nocteris-ai-model::before,
.nocteris-ai-model::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 255, 159, 0.16),
    transparent
  );
  transform: translate(-50%, -50%);
}

.nocteris-ai-model::before {
  width: 94%;
  height: 1px;
}

.nocteris-ai-model::after {
  width: 1px;
  height: 94%;
  background: linear-gradient(
    transparent,
    rgba(99, 255, 159, 0.16),
    transparent
  );
}

.nocteris-ai-model-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 152px;
  height: 152px;
  display: grid;
  place-content: center;
  padding: 18px;
  border: 1px solid rgba(99, 255, 159, 0.38);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(
      circle,
      rgba(99, 255, 159, 0.13),
      rgba(5, 25, 14, 0.97) 68%
    );
  box-shadow:
    0 0 0 14px rgba(99, 255, 159, 0.025),
    0 0 52px rgba(42, 223, 116, 0.14);
  transform: translate(-50%, -50%);
}

.nocteris-ai-core-label {
  color: var(--nai-green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nocteris-ai-model-core strong {
  margin-top: 9px;
  color: #edfff4;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.05;
}

.nocteris-ai-model-node {
  position: absolute;
  z-index: 3;
  width: 100px;
  min-height: 72px;
  display: grid;
  align-content: center;
  padding: 10px;
  border: 1px solid rgba(99, 255, 159, 0.2);
  border-radius: 10px;
  text-align: center;
  background: rgba(4, 20, 11, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.23);
}

.nocteris-ai-model-node > span {
  color: var(--nai-green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.53rem;
  font-weight: 700;
}

.nocteris-ai-model-node strong {
  margin-top: 4px;
  color: #e9fff1;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
}

.nocteris-ai-model-node small {
  margin-top: 3px;
  color: #759682;
  font-family: "Inter", sans-serif;
  font-size: 0.63rem;
}

.nocteris-ai-node-entity {
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.nocteris-ai-node-proof {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.nocteris-ai-node-trust {
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.nocteris-ai-node-recommend {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nocteris-ai-connector {
  position: absolute;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent,
    var(--nai-green),
    transparent
  );
  opacity: 0.34;
}

.connector-one,
.connector-three {
  left: 50%;
  width: 1px;
  height: 54px;
  background: linear-gradient(
    transparent,
    var(--nai-green),
    transparent
  );
  transform: translateX(-50%);
}

.connector-one {
  top: 19%;
}

.connector-three {
  bottom: 19%;
}

.connector-two,
.connector-four {
  top: 50%;
  width: 54px;
  height: 1px;
  transform: translateY(-50%);
}

.connector-two {
  right: 20%;
}

.connector-four {
  left: 20%;
}

.nocteris-ai-platforms {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.nocteris-ai-platforms span {
  padding: 9px 8px;
  border: 1px solid rgba(99, 255, 159, 0.11);
  border-radius: 6px;
  color: #668d73;
  background: rgba(99, 255, 159, 0.025);
  font-family: "Orbitron", sans-serif;
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.nocteris-ai-objective {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding-top: 21px;
  border-top: 1px solid rgba(99, 255, 159, 0.13);
}

.nocteris-ai-objective > span {
  color: var(--nai-green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nocteris-ai-objective p {
  margin: 10px 0 0;
  color: #d9f4e2;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
}

.nocteris-ai-objective small {
  display: block;
  margin-top: 8px;
  color: #668b73;
  font-family: "Inter", sans-serif;
  font-size: 0.73rem;
}

@media (max-width: 1060px) {
  .nocteris-ai-container {
    grid-template-columns: 1fr;
  }

  .nocteris-ai-visual {
    width: min(100%, 720px);
  }
}

@media (max-width: 640px) {
  .nocteris-ai-section {
    padding: 82px 0;
  }

  .nocteris-ai-section .nocteris-ai-content h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .nocteris-ai-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .nocteris-ai-panel {
    padding: 20px;
    border-radius: 17px;
  }

  .nocteris-ai-panel-purpose {
    padding: 18px;
  }

  .nocteris-ai-model {
    width: min(100%, 310px);
  }

  .nocteris-ai-model-core {
    width: 124px;
    height: 124px;
  }

  .nocteris-ai-model-node {
    width: 80px;
    min-height: 64px;
    padding: 7px;
  }

  .nocteris-ai-model-node strong {
    font-size: 0.85rem;
  }

  .nocteris-ai-platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .nocteris-ai-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nocteris-ai-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nocteris-ai-button {
    transition: none;
  }
}

/* =========================================================
   LEAD HOG SECTION
   ========================================================= */

.leadhog-section {
  --lh-pink: #fdebf3;
  --lh-pink-strong: #ff87ba;
  --lh-green: #c7ffdc;
  --lh-dark: #42474c;
  --lh-ink: #202428;
  --lh-white: #ffffff;
  --lh-muted: rgba(255, 255, 255, 0.76);
  --lh-border: rgba(255, 255, 255, 0.15);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 24px;
  color: var(--lh-white);
  background: var(--lh-dark);
}

.leadhog-background {
  position: absolute;
  z-index: -3;
  inset: 0;

  background-image: url("https://leadhog.com/assets/images/mbr-1920x1218.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  filter: grayscale(1);
  transform: scale(1.025);
}

.leadhog-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;

  background:

    /* Left → Right */
    linear-gradient(
      90deg,
      rgba(18, 34, 22, 0.90) 0%,
      rgba(28, 42, 34, 0.84) 38%,
      rgba(42, 34, 46, 0.72) 100%
    ),

    /* Top → Bottom */
    linear-gradient(
      180deg,
      rgba(80, 150, 110, 0.18) 0%,
      rgba(150, 60, 120, 0.12) 45%,
      rgba(18, 20, 24, 0.78) 100%
    );
}

.leadhog-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -260px;
  left: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;

  background: rgba(255, 135, 186, 0.15);
  filter: blur(90px);
  pointer-events: none;
}

.leadhog-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -240px;
  bottom: -300px;
  width: 680px;
  height: 680px;
  border-radius: 50%;

  background: rgba(199, 255, 220, 0.11);
  filter: blur(100px);
  pointer-events: none;
}

.leadhog-container {
  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

.leadhog-content {
  position: relative;
  z-index: 2;
}

.leadhog-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;

  color: var(--lh-green);
  font-family: "Inter", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.leadhog-eyebrow-line {
  display: inline-block;
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--lh-green);
  box-shadow: 0 0 12px rgba(199, 255, 220, 0.6);
}

.leadhog-logo {
  display: block;
  width: min(305px, 70%);
  height: auto;
  margin: 0 0 33px;
}

.leadhog-content h2 {
  max-width: 760px;
  margin: 0;

  color: var(--lh-white);
  font-family: "Inter", sans-serif;
  font-size: clamp(2.0rem, 3.5vw, 3.75rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.leadhog-content h2 span {
  color: var(--lh-pink-strong);
}

.leadhog-lead {
  max-width: 690px;
  margin: 34px 0 0;

  color: var(--lh-white);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.14rem, 1.7vw, 1.4rem);
  font-weight: 600;
  line-height: 1.6;
}

.leadhog-supporting-copy {
  max-width: 700px;
  margin: 20px 0 0;

  color: var(--lh-muted);
  font-family: "Inter", sans-serif;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.78;
}

.leadhog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.leadhog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 54px;
  padding: 0 25px;
  border-radius: 6px;

  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.leadhog-button-primary {
  color: var(--lh-ink);
  background:
    linear-gradient(
      135deg,
      var(--lh-pink) 0%,
      var(--lh-pink-strong) 100%
    );

  box-shadow:
    0 15px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.leadhog-button-primary:hover,
.leadhog-button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 19px 40px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(255, 135, 186, 0.26);
}

.leadhog-text-link {
  position: relative;
  color: var(--lh-green);

  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.leadhog-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;

  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease;
}

.leadhog-text-link:hover::after,
.leadhog-text-link:focus-visible::after {
  transform: scaleX(1);
}

/* =========================================================
   RIGHT PANEL
   ========================================================= */

.leadhog-panel {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--lh-border);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(74, 79, 84, 0.82),
      rgba(35, 38, 41, 0.9)
    );

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.leadhog-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 38px;
  width: 118px;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--lh-pink-strong),
      var(--lh-green)
    );

  box-shadow: 0 0 20px rgba(255, 135, 186, 0.34);
}

.leadhog-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
}

.leadhog-panel-kicker {
  display: block;
  margin-bottom: 10px;

  color: var(--lh-pink-strong);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.leadhog-panel h3 {
  margin: 0;
  color: var(--lh-white);

  font-family: "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.0rem);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.leadhog-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;

  padding: 8px 11px;
  border: 1px solid rgba(199, 255, 220, 0.2);
  border-radius: 999px;

  color: var(--lh-green);
  background: rgba(199, 255, 220, 0.06);

  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadhog-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;

  background: var(--lh-green);
  box-shadow: 0 0 10px rgba(199, 255, 220, 0.8);
}

.leadhog-panel-intro {
  margin: 24px 0 0;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--lh-border);

  color: var(--lh-muted);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.72;
}

.leadhog-capabilities {
  margin-top: 8px;
}

.leadhog-capability {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;

  padding: 22px 0;
  border-bottom: 1px solid var(--lh-border);
}

.leadhog-capability-number {
  color: var(--lh-pink-strong);
  font-family: "Permanent Marker", cursive;
  font-size: 1.08rem;
  line-height: 1.2;
}

.leadhog-capability h4 {
  margin: 0 0 7px;

  color: var(--lh-white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.leadhog-capability p {
  margin: 0;

  color: var(--lh-muted);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.62;
}

.leadhog-panel-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-top: 28px;
}

.leadhog-marker {
  color: var(--lh-pink);
  font-family: "Permanent Marker", cursive;
  font-size: 1.55rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-3deg);
}

.leadhog-panel-footer p {
  margin: 0;
  min-width:400px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Inter", sans-serif;
  font-size: 1.28rem;
  line-height: 1.55;
  font-weight:600;
  white-space: nowrap;
}

.leadhog-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 33px;
}

.leadhog-brand-logo {
  display: block;
  width: auto;
  height: 52px;
  flex: 0 0 auto;
}

.leadhog-brand-name {
  color: var(--lh-pink);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: rotate(-2deg);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}




/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .leadhog-container {
    grid-template-columns: 1fr;
  }

  .leadhog-content {
    max-width: 800px;
  }

  .leadhog-panel {
    max-width: 800px;
  }

  .leadhog-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(28, 31, 34, 0.96) 0%,
        rgba(36, 39, 42, 0.91) 55%,
        rgba(30, 33, 36, 0.96) 100%
      );
  }
}

@media (max-width: 640px) {
  .leadhog-section {
    padding-right: 19px;
    padding-left: 19px;
  }

  .leadhog-logo {
    width: min(270px, 82%);
  }

  .leadhog-content h2 {
    font-size: clamp(2.05rem, 11vw, 3.25rem);
  }

  .leadhog-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .leadhog-button {
    width: 100%;
  }

  .leadhog-panel-header {
    flex-direction: column-reverse;
  }

  .leadhog-status {
    align-self: flex-start;
  }

  .leadhog-panel-footer {
    grid-template-columns: 1fr;
  }

  .leadhog-marker {
    width: max-content;
  }
}

/* =========================================================
   BW WEB DEV SECTION
   ========================================================= */

.bwweb-section {
  --bw-navy: #17324d;
  --bw-navy-dark: #10263a;
  --bw-blue: #5f8fa8;
  --bw-blue-light: #dcebf0;
  --bw-cream: #f7f1e7;
  --bw-cream-dark: #eadfce;
  --bw-orange: #d97845;
  --bw-orange-light: #f2b38e;
  --bw-text: #243746;
  --bw-muted: #62727e;
  --bw-white: #ffffff;
  --bw-border: rgba(23, 50, 77, 0.14);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 10vw, 145px) 24px;

  color: var(--bw-text);
  background:
    linear-gradient(
      135deg,
      #fbf7f0 0%,
      var(--bw-cream) 45%,
      #edf4f5 100%
    );
}

.bwweb-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;

  background-image:
    linear-gradient(rgba(23, 50, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 50, 77, 0.035) 1px, transparent 1px);

  background-size: 42px 42px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 18%,
      black 82%,
      transparent
    );
}

.bwweb-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.bwweb-decoration-left {
  top: -250px;
  left: -260px;
  width: 620px;
  height: 620px;

  background: rgba(217, 120, 69, 0.14);
  filter: blur(15px);
}

.bwweb-decoration-right {
  right: -280px;
  bottom: -300px;
  width: 720px;
  height: 720px;

  background: rgba(95, 143, 168, 0.18);
  filter: blur(20px);
}

.bwweb-container {
  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(55px, 7vw, 100px);
  align-items: center;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

.bwweb-content {
  position: relative;
  z-index: 2;
}

.bwweb-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 27px;

  color: var(--bw-orange);
  font-family: "DM Sans", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bwweb-eyebrow-line {
  display: inline-block;
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--bw-orange);
}

.bwweb-brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 34px;
}

.bwweb-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;

  border-radius: 16px;
  color: var(--bw-cream);
  background:
    linear-gradient(
      145deg,
      var(--bw-navy) 0%,
      var(--bw-navy-dark) 100%
    );

  box-shadow:
    0 13px 28px rgba(23, 50, 77, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.5);
}

.bwweb-monogram span {
  font-family: "Bree Serif", serif;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.bwweb-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bwweb-brand-name {
  color: var(--bw-navy);
  font-family: "Bree Serif", serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
}

.bwweb-brand-tagline {
  color: var(--bw-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.bwweb-content h2 {
  max-width: 780px;
  margin: 0;

  color: var(--bw-navy);
  font-family: "Bree Serif", serif;
  font-size: clamp(2.75rem, 5.2vw, 5.3rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.bwweb-content h2 span {
  color: var(--bw-orange);
}

.bwweb-lead {
  max-width: 690px;
  margin: 32px 0 0;

  color: var(--bw-text);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.12rem, 1.7vw, 1.37rem);
  font-weight: 600;
  line-height: 1.62;
}

.bwweb-supporting-copy {
  max-width: 700px;
  margin: 19px 0 0;

  color: var(--bw-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 1.03rem;
  line-height: 1.8;
}

.bwweb-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.bwweb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 54px;
  padding: 0 25px;
  border-radius: 8px;

  color: var(--bw-white);
  background:
    linear-gradient(
      135deg,
      var(--bw-orange) 0%,
      #c76737 100%
    );

  box-shadow:
    0 15px 30px rgba(178, 87, 42, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;

  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.bwweb-button:hover,
.bwweb-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 19px 38px rgba(178, 87, 42, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.bwweb-personal-note {
  max-width: 330px;

  color: var(--bw-navy);
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.55;
}

/* =========================================================
   RIGHT PANEL
   ========================================================= */

.bwweb-panel {
  position: relative;
  padding: clamp(28px, 4vw, 43px);
  border: 1px solid rgba(23, 50, 77, 0.12);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.83);

  box-shadow:
    0 30px 70px rgba(40, 57, 68, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bwweb-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 126px;
  height: 4px;

  border-radius: 0 0 5px 5px;

  background:
    linear-gradient(
      90deg,
      var(--bw-orange),
      var(--bw-blue)
    );
}

.bwweb-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.bwweb-panel-kicker {
  display: block;
  margin-bottom: 10px;

  color: var(--bw-orange);
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bwweb-panel h3 {
  max-width: 470px;
  margin: 0;

  color: var(--bw-navy);
  font-family: "Bree Serif", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.bwweb-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;

  padding: 8px 11px;
  border: 1px solid rgba(95, 143, 168, 0.24);
  border-radius: 999px;

  color: var(--bw-navy);
  background: rgba(220, 235, 240, 0.6);

  font-family: "DM Sans", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bwweb-panel-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 17px;
  height: 17px;
  border-radius: 50%;

  color: var(--bw-white);
  background: var(--bw-blue);

  font-size: 0.65rem;
}

.bwweb-panel-intro {
  margin: 24px 0 0;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--bw-border);

  color: var(--bw-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.94rem;
  line-height: 1.72;
}

.bwweb-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bwweb-service {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;

  padding: 25px 20px 25px 0;
  border-bottom: 1px solid var(--bw-border);
}

.bwweb-service:nth-child(even) {
  padding-right: 0;
  padding-left: 20px;
  border-left: 1px solid var(--bw-border);
}

.bwweb-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  border-radius: 10px;

  color: var(--bw-navy);
  background: var(--bw-blue-light);
}

.bwweb-service-icon span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.bwweb-service h4 {
  margin: 0 0 7px;

  color: var(--bw-navy);
  font-family: "DM Sans", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.bwweb-service p {
  margin: 0;

  color: var(--bw-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
}

.bwweb-panel-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  padding-top: 28px;
}

.bwweb-footer-message {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 390px;
}

.bwweb-footer-message strong {
  color: var(--bw-navy);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
}

.bwweb-footer-message span {
  color: var(--bw-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.77rem;
  line-height: 1.5;
}

.bwweb-signature {
  color: var(--bw-orange);
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
  line-height: 1;
  white-space: nowrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1040px) {
  .bwweb-container {
    grid-template-columns: 1fr;
  }

  .bwweb-content,
  .bwweb-panel {
    max-width: 820px;
  }
}

@media (max-width: 680px) {
  .bwweb-section {
    padding-right: 19px;
    padding-left: 19px;
  }

  .bwweb-brand {
    align-items: flex-start;
  }

  .bwweb-monogram {
    width: 58px;
    height: 58px;
  }

  .bwweb-monogram span {
    font-size: 1.4rem;
  }

  .bwweb-content h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .bwweb-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .bwweb-button {
    width: 100%;
  }

  .bwweb-panel-header {
    flex-direction: column-reverse;
  }

  .bwweb-panel-badge {
    align-self: flex-start;
  }

  .bwweb-services {
    grid-template-columns: 1fr;
  }

  .bwweb-service,
  .bwweb-service:nth-child(even) {
    padding: 22px 0;
    border-left: 0;
  }

  .bwweb-panel-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
