*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #06090f;
  --bg2: #0b1220;
  --bg3: #101b31;
  --bg4: #172440;
  --gr: #4d8df0;
  --gr2: #82b2f8;
  --gr3: #c0d8fd;
  --tx: #e6eef8;
  --mt: #7490b2;
  --dm: #405570;
  --ln: rgba(77, 141, 240, 0.14);
  --ln2: rgba(77, 141, 240, 0.3);
  --fd: "Cormorant Garamond", Georgia, serif;
  --fs: "DM Sans", system-ui, sans-serif;
  --w: 1100px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--fs);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* UTILS */
.wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}
.sr-lbl {
  font-family: var(--fs);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 14px;
}
h1 {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
}
h3 {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 600;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fs);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-p {
  background: var(--gr);
  color: #fff;
}
.btn-p:hover {
  background: var(--gr2);
  transform: translateY(-1px);
}
.btn-o {
  border: 1px solid var(--ln2);
  color: var(--tx);
  background: transparent;
}
.btn-o:hover {
  border-color: var(--gr);
  color: var(--gr2);
  background: rgba(77, 141, 240, 0.07);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 99;
  height: 58px;
  border-bottom: 1px solid var(--ln);
  background: rgba(9, 13, 8, 0.92);
  backdrop-filter: blur(14px);
}
.nav-i {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--ln2);
  flex-shrink: 0;
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gr2);
}
.nav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-logo {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tx);
}
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav ul a {
  font-size: 13.5px;
  color: var(--mt);
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--tx);
}

/* DOT PULSE */
.dot {
  width: 7px;
  height: 7px;
  background: var(--gr);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  55% {
    opacity: 0.25;
  }
}

/* HERO */
.hero {
  padding: 96px 0 80px;
}
.hero-g {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77, 141, 240, 0.1);
  border: 1px solid var(--ln2);
  border-radius: 100px;
  padding: 5px 16px 5px 8px;
  font-size: 13px;
  color: var(--gr2);
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  color: var(--gr2);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--mt);
  max-width: 480px;
  margin: 18px 0 34px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-card {
  background: var(--bg3);
  border: 1px solid var(--ln);
  border-radius: 16px;
  overflow: hidden;
}
.hero-card-preview {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.hero-card-preview:hover img {
  transform: scale(1.02);
}
.preview-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
}
.preview-fallback svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--gr);
  stroke-width: 1.5;
  opacity: 0.35;
}
.preview-fallback span {
  font-family: var(--fd);
  font-size: 1.5rem;
  color: var(--dm);
}
.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--ln);
}
.app-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--ln);
}
.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-name {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 600;
}
.app-cat {
  font-size: 12px;
  color: var(--mt);
  margin-top: 1px;
}

/* BAND */
.band {
  border-top: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
  background: var(--bg2);
  padding: 32px 0;
}
.band-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 10px 0;
}
.stat:not(:last-child) {
  border-right: 1px solid var(--ln);
}
.stat-n {
  font-family: var(--fd);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
}
.stat-l {
  font-size: 11.5px;
  color: var(--mt);
  margin-top: 5px;
  letter-spacing: 0.04em;
}

/* SECTION PADDING */
.sec {
  padding: 88px 0;
}
.sec-alt {
  background: var(--bg2);
  padding: 72px 0;
}

/* APP DESC CARDS */
.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.icard {
  background: var(--bg2);
  border: 1px solid var(--ln);
  border-radius: 12px;
  padding: 26px;
}
.icard-lbl {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gr);
  font-weight: 500;
  margin-bottom: 10px;
}
.icard p {
  font-size: 14px;
  color: var(--mt);
  line-height: 1.65;
}

/* SCREENSHOTS */
.screens-wrap {
  margin-top: 8px;
  overflow: hidden;
}
.screens-track {
  display: flex;
  gap: 14px;
  padding: 16px 24px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}
@media (min-width: 1100px) {
  .screens-track {
    justify-content: center;
  }
}
.screens-track::-webkit-scrollbar {
  display: none;
}
.screens-track.drag {
  cursor: grabbing;
  user-select: none;
}
.phone {
  flex-shrink: 0;
  width: 186px;
}
.phone-f {
  background: var(--bg4);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  aspect-ratio: 9/19.5;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.phone-f:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.55);
}
.phone-f img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--bg3), var(--bg4));
}
.phone-ph svg {
  width: 30px;
  height: 30px;
  stroke: var(--gr);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.phone-ph span {
  font-size: 11px;
  color: var(--dm);
  text-align: center;
  line-height: 1.45;
  padding: 0 14px;
}
.phone-cap {
  font-size: 12px;
  color: var(--mt);
  text-align: center;
  margin-top: 9px;
}

/* BUILT */
.built-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--ln);
}
.bitem {
  background: var(--bg2);
  padding: 19px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.chk {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(77, 141, 240, 0.1);
  border: 1px solid var(--ln2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.chk svg {
  width: 10px;
  height: 10px;
  stroke: var(--gr);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.bn {
  font-size: 14.5px;
  color: var(--tx);
}
.bd {
  font-size: 12.5px;
  color: var(--mt);
  margin-top: 2px;
  line-height: 1.5;
}

/* STACK */
.stack-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sbox {
  background: var(--bg3);
  border: 1px solid var(--ln);
  border-radius: 12px;
  padding: 26px;
}
.sbox-lbl {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gr);
  font-weight: 500;
  margin-bottom: 14px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 5px 13px;
  background: var(--bg4);
  border: 1px solid var(--ln);
  border-radius: 6px;
  font-size: 13px;
  color: var(--tx);
  font-family: monospace;
  letter-spacing: 0.01em;
}

/* SERVICES */
.svcs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc {
  background: var(--bg3);
  border: 1px solid var(--ln);
  border-radius: 12px;
  padding: 22px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.svc:hover {
  border-color: var(--ln2);
  background: var(--bg4);
}
.svc-ico {
  font-size: 22px;
  margin-bottom: 10px;
}
.svc-n {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--tx);
  margin-bottom: 5px;
}
.svc-d {
  font-size: 13px;
  color: var(--mt);
  line-height: 1.55;
}

/* WHY ME */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.why-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--ln);
  border-radius: 12px;
  padding: 24px;
}
.why-icon {
  font-size: 20px;
  margin-bottom: 10px;
}
.why-n {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--tx);
  margin-bottom: 6px;
}
.why-d {
  font-size: 13px;
  color: var(--mt);
  line-height: 1.55;
}

/* AVAIL BOX */
.avail-box {
  background: var(--bg3);
  border: 1px solid var(--ln2);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.avail-title {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.avail-sub {
  font-size: 14.5px;
  color: var(--mt);
  max-width: 460px;
  line-height: 1.62;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.pill {
  padding: 5px 14px;
  background: rgba(77, 141, 240, 0.1);
  border: 1px solid var(--ln2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gr2);
}
.ctacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 215px;
}
.ctact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg4);
  border: 1px solid var(--ln);
  border-radius: 10px;
  color: var(--tx);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.ctact:hover {
  border-color: var(--gr);
  color: var(--gr2);
  transform: translateX(2px);
}
.ctact:hover .ctact-d {
  color: var(--gr2);
}
.ctact-ico {
  width: 34px;
  height: 34px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ctact svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctact-txt {
  display: flex;
  flex-direction: column;

}

.ctact-n {
  font-size: 14px;
  font-weight: 500;
  color: var(--tx);
}

.ctact-d {
  font-size: 12px;
  color: var(--mt);
  line-height: 1.2;
}

/* RATE NOTE */
.rate-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(77, 141, 240, 0.06);
  border: 1px solid var(--ln);
  border-radius: 8px;
  font-size: 13px;
  color: var(--mt);
  line-height: 1.5;
}
.rate-note strong {
  color: var(--gr2);
  font-weight: 500;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--ln);
  padding: 28px 0;
}
.ft-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--mt);
}
.ft-i a {
  color: var(--dm);
  transition: color 0.2s;
}
.ft-i a:hover {
  color: var(--mt);
}

/* FADE-IN */
.fi {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fi.on {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-g {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-card {
    max-width: 440px;
  }
  .band-g {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat:nth-child(3) {
    border-top: 1px solid var(--ln);
  }
  .stat:nth-child(4) {
    border-top: 1px solid var(--ln);
    border-right: none;
  }
  .app-cards {
    grid-template-columns: 1fr;
  }
  .stack-cols {
    grid-template-columns: 1fr;
  }
  .svcs {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .avail-box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .sec,
  .sec-alt {
    padding: 60px 0;
  }
  .hero {
    padding: 60px 0 50px;
  }
  .svcs {
    grid-template-columns: 1fr;
  }
  .why-grid, .why-grid1 {
    grid-template-columns: 1fr;
  }
  
  .built-grid {
    grid-template-columns: 1fr;
  }
  nav ul {
    display: none;
  }
  .avail-box {
    padding: 24px 20px;
  }
}
