* {
  box-sizing: border-box;
}

:root {
  --bg: #07090d;
  --bg-soft: #0c0f15;
  --panel: rgba(255,255,255,.045);
  --panel-strong: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.105);
  --text: #f5f7fa;
  --muted: #8d95a5;
  --soft: #b8bec9;
  --accent: #91b8ff;
  --accent-2: #b5a0ff;
  --max: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 3%, rgba(112,142,255,.08), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -2;
}

::selection {
  background: rgba(145,184,255,.28);
}

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

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

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(112, 145, 255, .075), transparent 66%);
  z-index: -1;
}

.nav {
  width: min(calc(100% - 48px), var(--max));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: .13em;
}

.brand-copy span {
  color: #868e9d;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .24em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #aeb5c0;
  font-size: 13px;
}

.nav-links a {
  transition: color .2s;
}

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

.nav-cta {
  font-size: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  transition: .25s ease;
}

.nav-cta:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 82px);
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 65px;
  position: relative;
  padding: 60px 0 110px;
}

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

.eyebrow,
.section-index {
  color: #798292;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .2em;
  font-weight: 700;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9db7ff;
  box-shadow: 0 0 18px rgba(157,183,255,.9);
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 6vw, 90px);
  line-height: .97;
  letter-spacing: -.055em;
  max-width: 750px;
  margin: 0;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 5%, #9ba6bb 56%, #7087ad 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 590px;
  color: #939baa;
  line-height: 1.75;
  font-size: 15px;
  margin: 29px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 13px;
  padding: 0 19px;
  font-size: 12px;
  font-weight: 600;
  transition: .28s ease;
}

.button.primary {
  background: #f3f5f8;
  color: #0c0e13;
}

.button.primary:hover {
  background: white;
  transform: translateY(-2px);
}

.button.ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: #c5cad3;
}

.button.ghost:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.hero-visual {
  perspective: 1200px;
  position: relative;
  z-index: 2;
}

.system-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 21px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20,24,34,.94), rgba(9,12,18,.88));
  box-shadow: 0 40px 120px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.06);
  transform: rotateY(-5deg) rotateX(2deg);
}

.system-topbar,
.system-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #657084;
  font-size: 8px;
  letter-spacing: .1em;
}

.system-topbar {
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #444c5d;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 5px 7px;
}

.live-pill b {
  width: 4px;
  height: 4px;
  background: #75d2a2;
  border-radius: 50%;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.06);
}

.metric-card {
  min-height: 150px;
  background: rgba(10,13,19,.96);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.metric-card > span,
.metric-card div > span {
  color: #646f82;
  font-size: 8px;
  letter-spacing: .18em;
  margin-bottom: 9px;
}

.metric-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  letter-spacing: -.04em;
}

.metric-card small {
  color: #667184;
  margin-top: 5px;
  font-size: 9px;
}

.metric-card.wide {
  min-height: 180px;
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.metric-card.wide strong {
  display: block;
  max-width: 260px;
  font-size: 24px;
  line-height: 1.12;
}

.mini-chart {
  height: 105px;
  width: 175px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.mini-chart i {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, rgba(130,155,255,.16), rgba(147,174,255,.82));
  box-shadow: 0 0 15px rgba(100,130,255,.1);
}

.system-footer {
  min-height: 46px;
  padding: 0 16px;
}

.system-footer > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #87a6ff;
  box-shadow: 0 0 12px rgba(135,166,255,.7);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .13;
}

.orb-one {
  width: 300px;
  height: 300px;
  right: 3%;
  top: 21%;
  background: #688aff;
}

.orb-two {
  width: 250px;
  height: 250px;
  left: 31%;
  bottom: 12%;
  background: #a77fff;
  opacity: .07;
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 0;
  color: #596273;
  font-size: 8px;
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 125px 0;
}

.statement {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-copy {
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.4vw, 61px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.statement-muted {
  color: #4c5360;
}

.statement-copy span:last-child {
  color: #dbe0e8;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -.05em;
  line-height: 1;
  margin: 17px 0 0;
}

.section-heading > p {
  color: #7d8696;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.project-card {
  min-height: 640px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  border: 1px solid var(--border);
  border-radius: 27px;
  overflow: hidden;
  background: #0b0e14;
  box-shadow: 0 30px 100px rgba(0,0,0,.24);
}

.project-copy {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.08);
}

.product-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #747e8f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
}

.app-icon {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #8b9fff, #c0a5ff);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(116,137,255,.21);
}

.project-copy h3 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -.055em;
  margin: 35px 0 19px;
}

.project-copy p {
  color: #8e96a5;
  font-size: 13px;
  line-height: 1.75;
  max-width: 420px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 25px;
}

.tag-row span {
  color: #8992a1;
  font-size: 8px;
  letter-spacing: .09em;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d0d5df;
  font-size: 11px;
}

.product-visual {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(113,136,255,.19), transparent 29%),
    linear-gradient(145deg, #111620, #090b10);
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.phone {
  width: 278px;
  height: 570px;
  border: 7px solid #20242b;
  border-radius: 48px;
  background: #080a0f;
  padding: 8px;
  box-shadow:
    0 45px 90px rgba(0,0,0,.56),
    0 0 0 1px rgba(255,255,255,.13),
    inset 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
  transform: rotate(-4deg);
  z-index: 2;
}

.phone-island {
  width: 83px;
  height: 22px;
  border-radius: 999px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #020204;
  z-index: 4;
}

.phone-screen {
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  padding: 34px 16px 16px;
  background:
    radial-gradient(circle at 80% 8%, rgba(112,130,255,.13), transparent 20%),
    #0e1118;
}

.aa-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aa-logo {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #8097ff, #b599ff);
  font-size: 12px;
  font-weight: 800;
}

.aa-top div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aa-top small {
  color: #647085;
  font-size: 5px;
  letter-spacing: .12em;
}

.aa-top strong {
  font-size: 9px;
}

.balance-card {
  min-height: 120px;
  margin: 20px 0 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(126,146,255,.13), rgba(255,255,255,.025));
}

.balance-card small {
  color: #738098;
  font-size: 6px;
  letter-spacing: .13em;
}

.balance-card strong {
  font-size: 21px;
  margin: 5px 0;
}

.balance-card span {
  color: #9eb2ff;
  font-size: 6px;
}

.quick-title {
  color: #737e90;
  font-size: 7px;
  margin: 0 0 9px 2px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.quick-grid > div {
  min-height: 66px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.028);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  column-gap: 5px;
}

.quick-grid span {
  grid-row: span 2;
  color: #9bafff;
  font-size: 13px;
}

.quick-grid b {
  font-size: 7px;
}

.quick-grid small {
  color: #657083;
  font-size: 6px;
}

.activity-card {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  padding: 11px;
  margin-top: 10px;
  background: rgba(255,255,255,.02);
}

.activity-card > div {
  display: flex;
  justify-content: space-between;
  color: #687388;
  font-size: 6px;
  margin-bottom: 7px;
}

.activity-card > div b {
  color: #8eadff;
}

.activity-card p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8791a2;
  font-size: 6px;
}

.activity-card p i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #80a0ff;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  min-width: 145px;
  padding: 11px 12px;
  color: #6e788b;
  background: rgba(16,20,30,.83);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
  font-size: 7px;
  letter-spacing: .1em;
  animation: float 5s ease-in-out infinite;
}

.floating-chip b {
  color: #dfe4ed;
  float: right;
}

.chip-one {
  top: 18%;
  left: 8%;
}

.chip-two {
  top: 38%;
  right: 6%;
  animation-delay: -1.4s;
}

.chip-three {
  bottom: 18%;
  left: 7%;
  animation-delay: -2.8s;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.next-project {
  margin-top: 16px;
  border: 1px dashed rgba(255,255,255,.11);
  border-radius: 18px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  align-items: center;
  gap: 30px;
  color: #5f6877;
}

.next-project > span {
  font-size: 8px;
  letter-spacing: .18em;
}

.next-project p {
  font-size: 11px;
  margin: 0;
}

.loader-line {
  height: 2px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.loader-line i {
  display: block;
  height: 100%;
  width: 50%;
  background: #819cff;
  animation: loading 2.7s ease-in-out infinite;
}

@keyframes loading {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(220%); }
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cap-card {
  min-height: 380px;
  padding: 35px;
  position: relative;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background .3s;
}

.cap-card:last-child {
  border-right: 0;
}

.cap-card:hover {
  background: rgba(255,255,255,.025);
}

.cap-number {
  position: absolute;
  top: 31px;
  right: 31px;
  color: #555d6d;
  font-size: 9px;
}

.cap-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 60px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  color: #9fb2ff;
  background: rgba(255,255,255,.03);
}

.cap-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  margin: 0 0 13px;
  letter-spacing: -.025em;
}

.cap-card p {
  color: #798292;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.about-panel {
  min-height: 540px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 17%, rgba(114,137,255,.09), transparent 25%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  overflow: hidden;
}

.about-copy {
  padding: 58px;
}

.about-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5vw, 69px);
  line-height: 1.04;
  letter-spacing: -.055em;
  margin: 24px 0 27px;
}

.about-copy > p:last-child {
  max-width: 560px;
  color: #87909f;
  font-size: 13px;
  line-height: 1.8;
}

.about-stats {
  border-left: 1px solid var(--border);
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.about-stats > div {
  padding: 34px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.about-stats > div:last-child {
  border-bottom: 0;
}

.about-stats span {
  color: #5f6879;
  font-size: 8px;
  letter-spacing: .18em;
}

.about-stats strong {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -.025em;
}

.contact {
  border-top: 1px solid var(--border);
  padding-top: 145px;
  padding-bottom: 145px;
}

.contact-inner h2 {
  font-family: "Manrope", sans-serif;
  max-width: 950px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .97;
  letter-spacing: -.06em;
  margin: 26px 0 20px;
}

.contact-inner > p:not(.section-index) {
  color: #788292;
  margin-bottom: 44px;
}

.contact-link {
  width: 100%;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cfd5df;
  font-size: clamp(17px, 2vw, 25px);
  transition: color .2s;
}

.contact-link:hover {
  color: white;
}

footer {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  min-height: 130px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: #616a7a;
  font-size: 9px;
}

footer > p:nth-child(2) {
  text-align: center;
}

footer > p:last-child {
  text-align: right;
}

.footer-brand {
  opacity: .68;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1);
}

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

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
  }
  .hero-visual { max-width: 650px; }
  .system-card { transform: none; }
  .statement,
  .section-heading,
  .project-card,
  .about-panel {
    grid-template-columns: 1fr;
  }
  .statement { gap: 38px; }
  .project-copy { min-height: 540px; border-right: 0; border-bottom: 1px solid var(--border); }
  .section-heading { gap: 25px; }
  .section-heading > p { max-width: 580px; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-card { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--border); }
  .cap-card:last-child { border-bottom: 0; }
  .about-stats { border-left: 0; border-top: 1px solid var(--border); }
  .next-project { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav,
  .hero,
  .section,
  footer {
    width: min(calc(100% - 30px), var(--max));
  }
  .nav { height: 70px; }
  .nav-cta { display: none; }
  .hero { padding-top: 65px; gap: 60px; }
  .hero h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { justify-content: space-between; }
  .section { padding: 90px 0; }
  .statement-copy { font-size: 36px; }
  .project-copy { padding: 28px; min-height: 520px; }
  .project-copy h3 { font-size: 48px; }
  .product-visual { min-height: 580px; }
  .phone { transform: scale(.88) rotate(-3deg); }
  .floating-chip { transform: scale(.84); }
  .chip-one { left: -1%; }
  .chip-two { right: -2%; }
  .chip-three { left: 0; }
  .about-copy { padding: 34px 28px; }
  .about-copy h2 { font-size: 43px; }
  footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 0;
  }
  footer > p:nth-child(2),
  footer > p:last-child { text-align: left; margin: 0; }
  .cursor-glow { display: none; }
}
