:root {
  --bg: #fbfaf7;
  --bg-soft: #f4f2ec;
  --ink: #1c2030;
  --muted: #5e6172;
  --muted-2: #9092a0;
  --line: rgba(28, 32, 48, 0.1);
  --line-strong: rgba(28, 32, 48, 0.16);
  --gold: #ffb81c;
  --gold-deep: #f29d00;
  --gold-2: #ff8f24;
  --cyan: #2ba8de;
  --green: #3eb95c;
  --navy: #202745;
  --card-sh: 0 14px 36px -16px rgba(28, 32, 48, 0.16);
  --card-sh-hover: 0 26px 52px -20px rgba(28, 32, 48, 0.24);
  --r: 22px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- header ---------- */
header.bar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(150%) blur(14px);
  background: rgba(251, 250, 247, 0.85);
  border-bottom: 1px solid var(--line);
}
.bar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 42px;
  height: 42px;
  display: block;
}
.brand .nm {
  font-family: "Sora";
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand .nm small {
  display: block;
  font-family: "JetBrains Mono";
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 1px;
}
.bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  transition: 0.18s ease;
  white-space: nowrap;
  color: var(--ink);
}
.pill svg {
  width: 16px;
  height: 16px;
}
.pill:hover {
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--card-sh);
}
.pill.solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #231804;
  border: none;
  box-shadow: 0 10px 24px -10px rgba(242, 157, 0, 0.6);
}
.pill.solid:hover {
  filter: brightness(1.05);
}
.pill.wa {
  border-color: rgba(37, 180, 95, 0.45);
}
.pill.wa svg {
  color: #1fab57;
}
.pill.wa:hover {
  border-color: #1fab57;
}
@media (max-width: 780px) {
  .bar-actions .lbl {
    display: none;
  }
  .pill {
    padding: 0 13px;
  }
}
@media (max-width: 560px) {
  .brand .nm small {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 30px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero {
    padding: 44px 0 18px;
  }
}
.deco-ring {
  position: absolute;
  border: 2px dashed rgba(242, 157, 0, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.dr1 {
  width: 520px;
  height: 520px;
  top: -220px;
  left: -160px;
  animation: spin 60s linear infinite;
}
.dr2 {
  width: 300px;
  height: 300px;
  bottom: -130px;
  left: 38%;
  border-color: rgba(43, 168, 222, 0.22);
  animation: spin 80s linear infinite reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono";
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(242, 157, 0, 0.35);
  background: rgba(255, 184, 28, 0.1);
  padding: 8px 15px;
  border-radius: 999px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(62, 185, 92, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 185, 92, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(62, 185, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 185, 92, 0);
  }
}
.hero h1 {
  font-family: "Sora";
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  font-size: clamp(36px, 5vw, 58px);
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15.5px, 1.7vw, 17.5px);
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14.5px;
  transition: 0.18s ease;
  white-space: nowrap;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #231804;
  box-shadow: 0 14px 30px -12px rgba(242, 157, 0, 0.7);
}
.btn.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn.ghost {
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
}
.btn.ghost:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--card-sh);
}
.btn svg {
  width: 17px;
  height: 17px;
}
.stats {
  display: flex;
  gap: 38px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.stats b {
  font-family: "Sora";
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.02em;
  display: block;
}
.stats b em {
  font-style: normal;
  color: var(--gold-deep);
}
.stats span {
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
}

/* hero photo */
.photo-wrap {
  position: relative;
  height: 560px;
  display: grid;
  place-items: end center;
}
@media (max-width: 920px) {
  .photo-wrap {
    height: 480px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .photo-wrap {
    height: 430px;
  }
}
.blob {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 30%,
    rgba(255, 184, 28, 0.34),
    rgba(255, 143, 36, 0.12) 62%,
    transparent 75%
  );
}
.ring2 {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 500px;
  height: 500px;
  margin-left: -250px;
  border-radius: 50%;
  border: 2px dashed rgba(242, 157, 0, 0.4);
  animation: spin 50s linear infinite;
}
image-slot#hero-person {
  width: min(420px, 86%);
  height: 520px;
  display: block;
  position: relative;
  z-index: 2;
}
@media (max-width: 920px) {
  image-slot#hero-person {
    height: 440px;
  }
}
@media (max-width: 480px) {
  image-slot#hero-person {
    height: 390px;
  }
}
.fchip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  box-shadow: var(--card-sh);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.25;
}
.fchip .fic {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
}
.fchip .fic svg {
  width: 15px;
  height: 15px;
}
.fchip small {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted-2);
}
.f1 {
  top: 54px;
  left: 2%;
  animation: drift1 5.6s ease-in-out infinite;
}
.f2 {
  top: 160px;
  right: 0;
  animation: drift2 6.4s ease-in-out infinite;
}
.f3 {
  bottom: 64px;
  left: 0;
  animation: drift3 6s ease-in-out infinite;
}
@keyframes drift1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes drift2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes drift3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.cube {
  position: absolute;
  border-radius: 6px;
  background: linear-gradient(150deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 22px -8px rgba(242, 157, 0, 0.5);
  z-index: 1;
}
.c1 {
  width: 22px;
  height: 22px;
  top: 26px;
  right: 14%;
  animation: drift2 5s ease-in-out infinite;
}
.c2 {
  width: 14px;
  height: 14px;
  top: 54%;
  right: 4%;
  background: linear-gradient(150deg, var(--cyan), #1d7eaf);
  box-shadow: 0 10px 22px -8px rgba(43, 168, 222, 0.5);
  animation: drift1 6s ease-in-out infinite;
}
.c3 {
  width: 18px;
  height: 18px;
  bottom: 30px;
  left: 12%;
  background: linear-gradient(150deg, var(--green), #2a8f44);
  box-shadow: 0 10px 22px -8px rgba(62, 185, 92, 0.5);
  animation: drift3 5.4s ease-in-out infinite;
  z-index: 4;
}
@media (prefers-reduced-motion: reduce) {
  .fchip,
  .cube,
  .deco-ring,
  .ring2,
  .dot {
    animation: none !important;
  }
}

/* ---------- apps ---------- */
.apps {
  padding: 46px 0 26px;
}
.sec-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 34px;
}
.sec-head .lab {
  font-family: "JetBrains Mono";
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.sec-head h2 {
  font-family: "Sora";
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.sec-head p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15.5px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) {
  .grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--card-sh);
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
    border-color 0.25s,
    box-shadow 0.25s;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--ac),
    color-mix(in oklab, var(--ac) 55%, #fff)
  );
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--ac);
  box-shadow: var(--card-sh-hover);
}
.viz {
  position: relative;
  height: 150px;
  background: radial-gradient(
    130% 150% at 50% -20%,
    color-mix(in oklab, var(--ac) 16%, #fff),
    #fff 70%
  );
}
.viz .mesh {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(120% 100% at 50% 0, #000, transparent 80%);
}
.viz .ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.emblem {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    150deg,
    var(--ac),
    color-mix(in oklab, var(--ac) 62%, #000 12%)
  );
  box-shadow: 0 16px 30px -10px color-mix(in oklab, var(--ac) 60%, transparent);
  transition: transform 0.3s ease;
}
.card:hover .emblem {
  transform: translateY(-3px) rotate(-2deg) scale(1.05);
}
.emblem svg {
  width: 44px;
  height: 44px;
  color: #fff;
}
.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px -4px rgba(28, 32, 48, 0.12);
}
.tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(62, 185, 92, 0.6);
  animation: pulse 2.4s infinite;
}
.body {
  padding: 6px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.body h3 {
  font-family: "Sora";
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.body .sub {
  font-family: "JetBrains Mono";
  font-size: 11px;
  color: color-mix(in oklab, var(--ac) 80%, #000 12%);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.body p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 12px;
  flex: 1;
}
.meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.chip {
  font-size: 12px;
  font-weight: 700;
  color: color-mix(in oklab, var(--ac) 70%, #000 22%);
  background: color-mix(in oklab, var(--ac) 10%, #fff);
  border: 1px solid color-mix(in oklab, var(--ac) 28%, transparent);
  border-radius: 999px;
  padding: 4px 11px;
}
.open {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 8px 0 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14.5px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--ac),
    color-mix(in oklab, var(--ac) 66%, #000 14%)
  );
  box-shadow: 0 12px 24px -10px color-mix(in oklab, var(--ac) 70%, transparent);
  transition: 0.2s ease;
}
.open .arr {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transition: 0.2s ease;
}
.card:hover .open {
  filter: brightness(1.06);
}
.card:hover .open .arr {
  transform: translateX(4px);
}
.open svg {
  width: 17px;
  height: 17px;
}

/* ---------- sectors band ---------- */
.band {
  margin-top: 44px;
  background: var(--navy);
  color: #fff;
  padding: 30px 0;
}
.band-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
  flex-wrap: wrap;
}
.band-in .s {
  font-family: "Sora";
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 14px;
}
.band-in .s::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  display: inline-block;
}
@media (max-width: 680px) {
  .band-in .s {
    font-size: 14px;
  }
}

/* ---------- about / consulting ---------- */
.about {
  padding: 54px 0 8px;
}
.about-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.about .lab {
  font-family: "JetBrains Mono";
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.about h2 {
  font-family: "Sora";
  font-weight: 800;
  font-size: clamp(25px, 3.4vw, 35px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-top: 12px;
  text-wrap: balance;
}
.about p {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 16px;
  max-width: 560px;
}
.about .feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
  margin-top: 24px;
}
@media (max-width: 520px) {
  .about .feats {
    grid-template-columns: 1fr;
  }
}
.feat {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 700;
}
.feat .ck {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 28, 0.18);
  color: var(--gold-deep);
}
.feat .ck svg {
  width: 13px;
  height: 13px;
}
.about .cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat {
  border-radius: 24px;
  padding: 36px 30px;
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, #2a3357, var(--navy));
  box-shadow: var(--card-sh-hover);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 184, 28, 0.35),
    transparent 70%
  );
}
.stat .big {
  font-family: "Sora";
  font-weight: 800;
  font-size: clamp(54px, 8vw, 78px);
  line-height: 1;
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.stat .cap {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}
.stat .div {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin: 22px 0;
}
.stat .mini {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  position: relative;
}
.stat .mini b {
  font-family: "Sora";
  font-size: 20px;
  display: block;
}
.stat .mini span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- support strip ---------- */
.support {
  padding: 46px 0 8px;
}
.sgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 920px) {
  .sgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .sgrid {
    grid-template-columns: 1fr;
  }
}
.scard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  transition: 0.18s ease;
  box-shadow: var(--card-sh);
}
.scard:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: var(--card-sh-hover);
}
.sic {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 28, 0.16);
  color: var(--gold-deep);
}
.sic svg {
  width: 20px;
  height: 20px;
}
.scard .k {
  font-family: "JetBrains Mono";
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.scard .v {
  font-weight: 800;
  font-size: 15px;
  margin-top: 2px;
  letter-spacing: -0.01em;
}
.scard.wa .sic {
  color: #1fab57;
  background: rgba(37, 180, 95, 0.12);
}

/* ---------- footer ---------- */
footer {
  margin-top: 56px;
  background: var(--navy);
  color: #fff;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0;
  flex-wrap: wrap;
}
.foot .brand .nm {
  font-size: 17px;
  color: #fff;
}
.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.foot-links a:hover {
  color: var(--gold);
}
.copy {
  padding: 18px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
