@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  background: #070B14;
  color: #C8D8EE;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: rgba(87, 187, 255, 0.3);
  color: #FFFFFF;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

:root {
  --blue: #57BBFF;
  --red: #EA3E2E;
  --gold: #F5CE82;
  --dark: #070B14;
  --mid: #1A2B4A;
  --border: rgba(87, 187, 255, 0.15);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #070B14;
}

::-webkit-scrollbar-thumb {
  background: #57BBFF;
  border-radius: 2px;
}

.dark-tech-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .dark-tech-container {
    padding: 0 20px;
  }
}
@media (max-width: 479px) {
  .dark-tech-container {
    padding: 0 16px;
  }
}

.dark-tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #57BBFF;
  background: rgba(87, 187, 255, 0.08);
  border: 1px solid rgba(87, 187, 255, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.dark-tech-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #57BBFF;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.dark-tech-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .dark-tech-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}
.dark-tech-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.dark-tech-btn:hover::after {
  opacity: 1;
}
.dark-tech-btn--primary {
  background: #57BBFF;
  color: #070B14;
}
.dark-tech-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(87, 187, 255, 0.4);
}
.dark-tech-btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(87, 187, 255, 0.15);
}
.dark-tech-btn--outline:hover {
  border-color: rgba(87, 187, 255, 0.5);
  transform: translateY(-2px);
}
.dark-tech-btn--ghost {
  background: transparent;
  color: #57BBFF;
  padding: 0;
  gap: 6px;
  font-size: 14px;
}
.dark-tech-btn--ghost:hover {
  gap: 12px;
}
.dark-tech-btn--ghost::after {
  display: none;
}

#wsLanding .animate-me {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1), transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
#wsLanding .animate-me.in-view {
  opacity: 1;
  transform: translateY(0);
}
#wsLanding .animate-me:nth-child(1) {
  transition-delay: 0s;
}
#wsLanding .animate-me:nth-child(2) {
  transition-delay: 0.08s;
}
#wsLanding .animate-me:nth-child(3) {
  transition-delay: 0.16s;
}
#wsLanding .animate-me:nth-child(4) {
  transition-delay: 0.24s;
}
#wsLanding .animate-me:nth-child(5) {
  transition-delay: 0.32s;
}
#wsLanding .animate-me:nth-child(6) {
  transition-delay: 0.4s;
}
#wsLanding .animate-me:nth-child(7) {
  transition-delay: 0.48s;
}
#wsLanding .animate-me:nth-child(8) {
  transition-delay: 0.56s;
}
#wsLanding .animate-me:nth-child(9) {
  transition-delay: 0.64s;
}
#wsLanding .animate-me:nth-child(10) {
  transition-delay: 0.72s;
}
#wsLanding .animate-me:nth-child(11) {
  transition-delay: 0.8s;
}
#wsLanding .animate-me:nth-child(12) {
  transition-delay: 0.88s;
}
#wsLanding .animate-me--left {
  transform: translateX(-32px);
}
#wsLanding .animate-me--left.in-view {
  transform: translateX(0);
}
#wsLanding .animate-me--right {
  transform: translateX(32px);
}
#wsLanding .animate-me--right.in-view {
  transform: translateX(0);
}
#wsLanding .animate-me--scale {
  transform: scale(0.93);
}
#wsLanding .animate-me--scale.in-view {
  transform: scale(1);
}

.dark-tech-noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-size: 200px 200px;
}

/*
.dark-tech-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;

  &.scrolled {
    background: rgba($dark, 0.88);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid $border;
  }

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

  &__logo {
    flex-shrink: 0;
    svg, img { height: 34px; width: auto; }

    @include sm { svg, img { height: 28px; } }
  }

  &__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;

    @include md { gap: 20px; }

    a {
      font-size: 14px;
      font-weight: 500;
      color: $text-dim;
      transition: color 0.2s;
      &:hover { color: $white; }
    }
  }

  &__actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  &__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;

    span {
      display: block;
      width: 24px; height: 2px;
      background: $white;
      border-radius: 2px;
      transition: all 0.3s;
    }
  }

  // Hide nav links + outline btn on mobile, show hamburger
  @include md {
    &__nav { display: none; }
    &__actions .dark-tech-btn--outline { display: none; }
    &__hamburger { display: flex; }
  }

  // Mobile nav (revealed by jQuery)
  &__nav--mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba($dark, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid $border;
    z-index: 999;

    @include sm { padding: 20px; }
  }
}
*/
/*
.dark-tech-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;

  @include md { padding: 110px 0 70px; }
  @include sm { padding: 100px 0 60px; min-height: auto; }

  &__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: -20%; left: -10%;
      width: 70%; height: 80%;
      background: radial-gradient(ellipse, rgba($blue, 0.12) 0%, transparent 60%);
    }

    &::after {
      content: '';
      position: absolute;
      bottom: -10%; right: -5%;
      width: 50%; height: 60%;
      background: radial-gradient(ellipse, rgba($red, 0.08) 0%, transparent 60%);
    }
  }

  &__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba($blue, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba($blue, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  &__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;

    @include lg { gap: 40px; }
    @include md { grid-template-columns: 1fr; gap: 48px; }
  }

  &__content {
    // Prevent text overflow at any width
    min-width: 0;
    max-width: 600px;

    @include md { max-width: 100%; }
  }

  &__headline {
    font-family: $font-display;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: $white;
    margin-bottom: 20px;
    word-break: break-word;
    overflow-wrap: break-word;

    span.accent-blue { color: $blue; }
    span.accent-gold { color: $gold; }
    span.accent-red  { color: $red; }

    @include lg  { font-size: 48px; }
    @include md  { font-size: 44px; }
    @include sm  { font-size: 38px; letter-spacing: -0.025em; }
    @include xs  { font-size: 32px; letter-spacing: -0.02em; }
  }

  &__sub {
    font-size: 18px;
    color: $text-dim;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;

    @include md { font-size: 16px; max-width: 100%; }
    @include sm { font-size: 15px; }
  }

  &__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;

    @include xs {
      flex-direction: column;
      align-items: stretch;

      .dark-tech-btn { justify-content: center; }
    }
  }

  &__trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;

    &-label {
      font-size: 11px;
      font-family: $font-mono;
      color: $text-dim;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    &-avatars {
      display: flex;
      .dark-tech-avatar {
        width: 32px; height: 32px;
        border-radius: 50%;
        border: 2px solid $dark;
        background: $mid;
        margin-left: -8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        color: $blue;
        flex-shrink: 0;
        &:first-child { margin-left: 0; }
      }
    }
  }

  &__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    // Hide visual on tablet/mobile to save space
    @include md { display: none; }
  }
}
*/
/*
.dark-tech-cloud-visual {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  position: relative;

  &__orb {
    position: absolute;
    border-radius: 50%;

    &--core {
      width: 180px; height: 180px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba($blue, 0.3) 0%, rgba($blue, 0.05) 60%, transparent 80%);
      border: 1px solid rgba($blue, 0.25);
      animation: orb-pulse 4s ease-in-out infinite;
    }

    &--ring1 {
      width: 280px; height: 280px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border: 1px solid rgba($blue, 0.12);
      animation: ring-rotate 20s linear infinite;
    }

    &--ring2 {
      width: 400px; height: 400px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border: 1px dashed rgba($blue, 0.07);
      animation: ring-rotate 30s linear infinite reverse;
    }
  }

  &__node {
    position: absolute;
    background: $dark-card;
    border: 1px solid $border;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-family: $font-mono;
    color: $text-light;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);

    .dark-tech-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    &--1 { top: 8%;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
    &--2 { top: 50%; right: 2%; transform: translateY(-50%); animation-delay: 1.5s; }
    &--3 { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
    &--4 { top: 50%; left: 2%; transform: translateY(-50%); animation-delay: 4.5s; }
  }

  &__center-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 76px; height: 76px;
    background: linear-gradient(135deg, rgba($blue, 0.2), rgba($blue, 0.05));
    border: 1px solid rgba($blue, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: orb-pulse 4s ease-in-out infinite;
    color: $blue;

    i { font-size: 32px; color: $blue; }
  }
}

@keyframes orb-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: 0.8; }
}

@keyframes ring-rotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

@keyframes float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}
*/
/*
.dark-tech-stats-bar {
  padding: 48px 0;
  border-top: 1px solid $border;
  border-bottom: 1px solid $border;
  background: $dark-2;

  &__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    @include md { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    @include xs { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  }

  &__item { text-align: center; }

  &__number {
    font-family: $font-display;
    font-size: 44px;
    font-weight: 800;
    color: $white;
    line-height: 1;
    margin-bottom: 6px;

    span { color: $blue; }

    @include md { font-size: 38px; }
    @include sm { font-size: 32px; }
    @include xs { font-size: 28px; }
  }

  &__label {
    font-size: 12px;
    color: $text-dim;
    font-family: $font-mono;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    @include sm { font-size: 10px; }
  }
}
*/
/*
// ============================================
// CORE APP SECTION
// ============================================

.dark-tech-core-section {
  padding: 100px 0;
  position: relative;

  @include md { padding: 80px 0; }
  @include sm { padding: 64px 0; }

  &__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;

    @include lg { gap: 48px; }
    @include md { grid-template-columns: 1fr; gap: 40px; }
  }

  &__sticky {
    position: sticky;
    top: 100px;

    @include md { position: static; }
  }

  &__heading {
    font-family: $font-display;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: $white;
    margin-bottom: 16px;
    word-break: break-word;

    @include lg { font-size: 40px; }
    @include md { font-size: 36px; }
    @include sm { font-size: 30px; }
    @include xs { font-size: 26px; }
  }

  &__body {
    font-size: 16px;
    color: $text-dim;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  &__pricing-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba($gold, 0.1);
    border: 1px solid rgba($gold, 0.25);
    border-radius: 12px;
    padding: 12px 20px;

    .dark-tech-amount {
      font-family: $font-display;
      font-size: 32px;
      font-weight: 800;
      color: $gold;

      @include sm { font-size: 26px; }
    }
    .dark-tech-period {
      font-size: 14px;
      color: $text-dim;
    }
  }
}

.dark-tech-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dark-tech-feature-card {
  background: $dark-card;
  border: 1px solid $border;
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
  min-width: 0; // prevent overflow

  &:hover {
    border-color: rgba($blue, 0.4);
    transform: translateX(5px);

    @include sm { transform: none; }
  }

  &__icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba($blue, 0.1);
    border: 1px solid rgba($blue, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: $blue;
    font-size: 18px;

    i { font-size: 18px; }
  }

  &__content { min-width: 0; } // prevent text overflow

  &__name {
    font-weight: 700;
    color: $white;
    font-size: 15px;
    margin-bottom: 4px;

    @include sm { font-size: 14px; }
  }

  &__desc {
    font-size: 13px;
    color: $text-dim;
    line-height: 1.6;
  }
}
*/
/*
.dark-tech-addons-section {
  padding: 100px 0;
  background: $dark-2;
  position: relative;
  overflow: hidden;

  @include md { padding: 80px 0; }
  @include sm { padding: 64px 0; }

  &::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, $blue, transparent);
  }

  &__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;

    @include sm { margin-bottom: 40px; }
  }

  &__heading {
    font-family: $font-display;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: $white;
    margin-bottom: 14px;
    word-break: break-word;

    @include lg { font-size: 40px; }
    @include md { font-size: 36px; }
    @include sm { font-size: 28px; }
    @include xs { font-size: 24px; }
  }

  &__sub {
    font-size: 17px;
    color: $text-dim;
    line-height: 1.7;

    @include sm { font-size: 15px; }
  }

  &__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    @include lg { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    @include md { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    @include sm { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    @include xs { grid-template-columns: 1fr; }
  }
}

.dark-tech-addon-card {
  background: $dark-card;
  border: 1px solid $border;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  min-width: 0;

  @include sm { padding: 20px; border-radius: 16px; }

  &::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent, #57BBFF), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  &:hover {
    border-color: rgba($blue, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);

    &::before { opacity: 1; }

    @include md { transform: none; box-shadow: none; }
  }

  &__icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent, #57BBFF);
    background: rgba(var(--accent-rgb, 87, 187, 255), 0.1);
    border: 1px solid rgba(var(--accent-rgb, 87, 187, 255), 0.2);
    flex-shrink: 0;

    i { font-size: 20px; }
  }

  &__name {
    font-family: $font-display;
    font-weight: 700;
    font-size: 18px;
    color: $white;
    margin-bottom: 8px;
    word-break: break-word;
  }

  &__desc {
    font-size: 13px;
    color: $text-dim;
    line-height: 1.65;
    margin-bottom: 16px;

    @include xs { font-size: 12px; }
  }

  &__badge {
    display: inline-block;
    font-family: $font-mono;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent, #57BBFF);
    background: rgba(var(--accent-rgb, 87, 187, 255), 0.1);
    border: 1px solid rgba(var(--accent-rgb, 87, 187, 255), 0.2);
    border-radius: 100px;
    padding: 4px 10px;
  }
}
*/
.dark-tech-pricing-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .dark-tech-pricing-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .dark-tech-pricing-section {
    padding: 64px 0;
  }
}
.dark-tech-pricing-section::before {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(87, 187, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.dark-tech-pricing-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
@media (max-width: 767px) {
  .dark-tech-pricing-section__header {
    margin-bottom: 40px;
  }
}
.dark-tech-pricing-section__heading {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 14px;
  word-break: break-word;
}
@media (max-width: 1279px) {
  .dark-tech-pricing-section__heading {
    font-size: 40px;
  }
}
@media (max-width: 1023px) {
  .dark-tech-pricing-section__heading {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .dark-tech-pricing-section__heading {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .dark-tech-pricing-section__heading {
    font-size: 24px;
  }
}
.dark-tech-pricing-section__sub {
  font-size: 17px;
  color: #8BA4C4;
}
@media (max-width: 767px) {
  .dark-tech-pricing-section__sub {
    font-size: 15px;
  }
}

.dark-tech-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .dark-tech-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

.dark-tech-pricing-card {
  background: #0C1628;
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 0;
}
@media (max-width: 1279px) {
  .dark-tech-pricing-card {
    padding: 28px 22px;
  }
}
@media (max-width: 767px) {
  .dark-tech-pricing-card {
    padding: 28px 22px;
  }
}
.dark-tech-pricing-card:hover {
  transform: translateY(-5px);
}
.dark-tech-pricing-card--featured {
  border-color: rgba(87, 187, 255, 0.5);
  background: linear-gradient(180deg, rgba(87, 187, 255, 0.06) 0%, #0C1628 40%);
  box-shadow: 0 0 0 1px rgba(87, 187, 255, 0.15), 0 32px 80px rgba(87, 187, 255, 0.1);
}
.dark-tech-pricing-card--featured .dark-tech-pricing-card__badge-top {
  display: block;
}
.dark-tech-pricing-card__badge-top {
  display: none;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #57BBFF;
  color: #070B14;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.dark-tech-pricing-card__tier {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8BA4C4;
  margin-bottom: 14px;
}
.dark-tech-pricing-card__range {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #C8D8EE;
  margin-bottom: 8px;
  word-break: break-word;
}
.dark-tech-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.dark-tech-pricing-card__price-row .dark-tech-from {
  font-size: 13px;
  color: #8BA4C4;
  margin-right: 2px;
}
.dark-tech-pricing-card__price-row .dark-tech-amount {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}
.dark-tech-pricing-card__price-row .dark-tech-period {
  font-size: 14px;
  color: #8BA4C4;
}
.dark-tech-pricing-card__spec {
  font-size: 12px;
  color: #8BA4C4;
  margin-bottom: 24px;
  line-height: 1.6;
  word-break: break-word;
}
.dark-tech-pricing-card__divider {
  height: 1px;
  background: rgba(87, 187, 255, 0.15);
  margin-bottom: 20px;
}
.dark-tech-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.dark-tech-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #C8D8EE;
  word-break: break-word;
}
.dark-tech-pricing-card__features li::before {
  content: "✓";
  color: #57BBFF;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.dark-tech-pricing-note {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(245, 206, 130, 0.06);
  border: 1px solid rgba(245, 206, 130, 0.2);
  border-radius: 16px;
  color: #8BA4C4;
  font-size: 13px;
  line-height: 1.7;
}
.dark-tech-pricing-note strong {
  color: #F5CE82;
}
@media (max-width: 767px) {
  .dark-tech-pricing-note {
    padding: 20px;
    font-size: 12px;
  }
}

/*
.dark-tech-cta-section {
  padding: 100px 0;
  background: $dark-2;
  position: relative;
  overflow: hidden;
  text-align: center;

  @include md { padding: 80px 0; }
  @include sm { padding: 64px 0; }

  &__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;

    &::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba($blue, 0.15) 0%, transparent 70%);
    }
  }

  &__heading {
    font-family: $font-display;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: $white;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    word-break: break-word;

    @include lg { font-size: 52px; }
    @include md { font-size: 44px; }
    @include sm { font-size: 36px; }
    @include xs { font-size: 30px; }
  }

  &__sub {
    font-size: 18px;
    color: $text-dim;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 2;

    @include sm { max-width: 100%; }
  }

  &__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;s
    z-index: 2;

    @include xs {
      flex-direction: column;
      align-items: center;
      .dark-tech-btn { width: 100%; max-width: 320px; justify-content: center; }
    }
  }
}
*/
/*
.dark-tech-footer {
  padding: 64px 0 40px;
  border-top: 1px solid $border;

  @include sm { padding: 48px 0 32px; }

  &__inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;

    @include lg { gap: 32px; }
    @include md { grid-template-columns: 1fr 1fr 1fr; }
    @include sm { grid-template-columns: 1fr 1fr; gap: 32px; }
    @include xs { grid-template-columns: 1fr; gap: 28px; }
  }

  &__brand {
    @include md { grid-column: 1 / -1; } // full width on tablet
    @include sm { grid-column: 1 / -1; }

    svg, img { height: 30px; width: auto; margin-bottom: 14px; }
    p { font-size: 13px; color: $text-dim; line-height: 1.7; max-width: 280px; }
  }

  &__col-title {
    font-family: $font-mono;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: $text-dim;
    margin-bottom: 14px;
  }

  &__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;

    a {
      font-size: 14px;
      color: $text-dim;
      transition: color 0.2s;
      &:hover { color: $white; }
    }
  }

  &__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid $border;
    flex-wrap: wrap;
    gap: 14px;

    p { font-size: 12px; color: $text-dim; }
  }

  &__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  &__badge {
    font-family: $font-mono;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: $text-dim;
    border: 1px solid $border;
    border-radius: 4px;
    padding: 4px 8px;
  }
}
*/
/*
.dark-tech-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, $border, transparent);
  max-width: 1240px;
  margin: 0 auto;
}
*/

/*# sourceMappingURL=dark-tech.css.map */
