@font-face {
  font-family: "Technique BRK";
  src: url("../../fonts/technique/techniqu.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap
}

:root {
  --bg: #05080d;
  --panel: #0b1220;
  --text: #f4f8ff;
  --muted: #aab7c9;
  --blue: #57afe1;
  --cyan: #8be9ff;
  --line: rgba(255, 255, 255, .12);
  --glass: rgba(255, 255, 255, .07);
  --shadow: 0 30px 80px rgba(0, 0, 0, .45);
  --header-height: 68px;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Technique BRK", Impact, Haettenschweiler, "Arial Black", sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(87, 175, 225, .28), transparent 34%), radial-gradient(circle at 80% 20%, rgba(139, 233, 255, .12), transparent 25%), var(--bg);
  overflow-x: hidden
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100% - 32px));
  height: 68px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 13, .72);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .04em
}

.brand img,
.footer img {
  width: 36px;
  height: 36px;
  object-fit: contain
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px
}

.nav a:hover {
  color: var(--text)
}

.nav-cta,
.btn,
.price-card a {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #03111b;
  font-weight: 800;
  padding: 13px 18px;
  box-shadow: 0 14px 35px rgba(87, 175, 225, .25)
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 15px;
  font-weight: 800
}

.section-shell {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto
}

/* Prevent anchor targets from being hidden under the fixed header */
section[id],
.section-shell[id] {
  /* smaller global offset so sections aren't pushed too far down */
  scroll-margin-top: calc(var(--header-height) + 5px);
}

/* Specific tweaks: move these sections up ~15px relative to global */
#features,
#packages,
#contact {
  scroll-margin-top: calc(var(--header-height) - 10px);
}


/* Price list inside price-card so font can be adjusted easily */
.price-card .price-list {
  font-size: 13px;
  line-height: 1.6;
  margin-left: 18px;
}

/* Tighter line-height for short descriptions inside price cards */
.price-card p {
  line-height: 1.45;
}

/* Only add visual spacing for the Solution panel without affecting other sections */
#solution {
  /* make anchor land lower when navigating to #solution */
  scroll-margin-top: calc(var(--header-height) + 30px);
}

#solution .glass-panel {
  /* increase visual top spacing to match desired layout */
  padding-top: 36px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center;
  padding-top: calc(var(--header-height) + 8px);
}

.eyebrow,
.mini-label,
.section-title p {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px
}

.eyebrow span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--blue);
  margin-right: 8px
}

h1 {
  /* Slightly reduced size and weight for better balance */
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
  margin: 18px 0;
  font-weight: 700;
  letter-spacing: -.04em
}

h2 {
  /* Slightly smaller and lighter h2 to reduce visual density */
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.06;
  margin: 8px 0 16px;
  letter-spacing: -.03em;
  font-weight: 600;
}

p {
  color: var(--muted);
  line-height: 1.75
}

.hero-text {
  font-size: 15px;
  max-width: 620px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0
}

.btn.ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 610px
}

.stats div,
.feature-card,
.price-card,
.problem-grid article {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(14px)
}

/* Reduce article/feature paragraph size for better readability */
.problem-grid article,
.feature-card p,
.price-card p {
  font-size: 15px;
}

/* Small, reusable class for contact-related links so size can be tweaked */
.contact {
  font-size: 11px;
  line-height: 1.2;
}

.stats strong {
  display: block;
  font-size: 22px
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px
}

.hero-visual {
  position: relative;
  min-height: 620px
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .75
}

.orb-a {
  width: 180px;
  height: 180px;
  background: var(--blue);
  right: 20px;
  top: 48px;
  box-shadow: 0 0 90px rgba(87, 175, 225, .4)
}

.orb-b {
  width: 110px;
  height: 110px;
  background: #fff;
  left: 20px;
  bottom: 120px;
  opacity: .12
}

.browser-card {
  position: absolute;
  inset: 80px 20px 120px 20px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden
}

.browser-top {
  height: 54px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 22px;
  border-bottom: 1px solid var(--line)
}

.browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35)
}

.mock-site {
  padding: 28px
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 14px
}

.mock-header img {
  width: 40px
}

.mock-header div {
  height: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .14);
  flex: 1
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 18px;
  margin-top: 38px
}

.mock-left,
.mock-panel {
  min-height: 260px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .09);
  padding: 26px
}

.mock-left b {
  font-size: 28px;
  letter-spacing: -.04em
}

.mock-left button {
  margin-top: 24px;
  border: 0;
  border-radius: 99px;
  padding: 13px 18px;
  background: white;
  color: #06111d;
  font-weight: 800
}

.mock-panel {
  background: linear-gradient(145deg, rgba(87, 175, 225, .32), rgba(255, 255, 255, .06))
}

.chat-card {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(370px, 90%);
  border: 1px solid var(--line);
  background: rgba(8, 16, 29, .86);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.floating {
  animation: float 5s ease-in-out infinite
}

@keyframes float {
  50% {
    transform: translateY(-14px)
  }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 14px
}

.chat-head img {
  width: 32px
}

.bubble {
  padding: 12px 14px;
  margin: 8px 0;
  border-radius: 18px;
  color: #dcecff;
  font-size: 14px
}

.bubble.bot {
  background: rgba(87, 175, 225, .17)
}

.bubble.user {
  background: rgba(255, 255, 255, .12);
  margin-left: 42px
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px
}

.section-title.left {
  text-align: left;
  margin-left: 0
}

.problem,
.features,
.packages,
.contact {
  padding: 80px 0
}

/* Reduce vertical gap specifically for Packages to sit closer to menu */
#packages {
  padding: 48px 0;
}

.problem-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr)
}

.feature-card span {
  color: var(--cyan);
  font-weight: 900
}

.feature-card h3,
.price-card h3 {
  font-size: 22px;
  margin: 18px 0 8px
}

.glass-panel,
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  border-radius: 38px;
  padding: 42px;
  box-shadow: var(--shadow)
}

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap
}

.flow span {
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid var(--line);
  font-weight: 800
}

.flow i {
  color: var(--cyan);
  font-style: normal
}

.price-card {
  position: relative;
  padding: 28px
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(87, 175, 225, .22), rgba(255, 255, 255, .06));
  transform: translateY(-12px)
}

.badge {
  position: absolute;
  right: 22px;
  top: 20px;
  background: white;
  color: #05111c;
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px
}

.price-card ul {
  padding-left: 18px;
  color: #d9e7f7;
  line-height: 2
}

.price-card a {
  display: inline-block;
  margin-top: 14px
}

.lead-form {
  display: grid;
  gap: 12px
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none
}

.lead-form textarea {
  min-height: 110px;
  resize: vertical
}

.lead-form option {
  color: #111
}

.lead-form button {
  border: 0;
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
  color: #03111b;
  cursor: pointer
}

.lead-form small {
  color: var(--muted)
}

.footer {
  width: min(1140px, calc(100% - 32px));
  margin: 30px auto 46px;
  padding: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.show {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .15s
}

@media(max-width:900px) {

  .nav,
  .nav-cta {
    display: none
  }

  .menu-btn {
    display: block
  }

  .site-header.open .nav {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 8, 13, .94);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px
  }

  .hero,
  .glass-panel,
  .contact-card {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 55px
  }

  .hero-visual {
    min-height: 560px
  }

  .stats,
  .problem-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: none
  }

  .mock-grid {
    grid-template-columns: 1fr
  }

  .mock-panel {
    display: none
  }

  .footer {
    align-items: flex-start
  }

  .problem,
  .features,
  .packages,
  .contact {
    padding: 50px 0
  }
}