.dive-page {
  --bg: #000000;
  --bg-soft: #08080b;
  --surface: #101013;
  --surface-2: #171717;
  --surface-3: #242424;
  --line: #26262b;
  --line-soft: #1a1a1f;
  --text: #ffffff;
  --body: #c7ccd4;
  --muted: rgba(255, 255, 255, .48);
  --blue: #18a7f6;
  --cyan: #01f3fb;
  --violet: #9968ff;
  --pink: #ffceeb;
  --grad: linear-gradient(90deg, #18a7f6 0%, #01f3fb 92%);
  --grad-stat: linear-gradient(90deg, #9968ff 0%, #ffceeb 100%);
  --disp: 'Orbitron', sans-serif;
  --font: 'Poppins', sans-serif;
  --radius: 16px;
}

.dive-page,
.dive-page * {
  box-sizing: border-box;
}

.dive-page h1,
.dive-page h2,
.dive-page h3,
.dive-page h4,
.dive-page h5,
.dive-page p,
.dive-page ul {
  margin: 0;
  padding: 0;
}

.dive-page {
  background: var(--bg);
  color: var(--body);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.dive-page a {
  color: inherit;
  text-decoration: none;
}

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

.dive-page ::selection {
  background: var(--cyan);
  color: #001014;
}

.dive-page .wrap {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 40px;
}

.dive-page section {
  position: relative;
}

/* ---- glows ---- */
.dive-page .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.dive-page .grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .4;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 70%);
}

/* ---- display type ---- */
.dive-page .eyebrow {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.dive-page .eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(1, 243, 251, .6);
}

.dive-page h2.title {
  font-family: var(--disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  color: var(--text);
  max-width: 24ch;
}

.dive-page p.sub {
  color: var(--body);
  font-size: 18px;
  max-width: 60ch;
  margin-top: 20px;
  font-weight: 300;
}

.dive-page .head {
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.dive-page .head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dive-page .head.center h2.title,
.dive-page .head.center p.sub {
  margin-left: auto;
  margin-right: auto;
}

.dive-page .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- buttons ---- */
.dive-page .dive-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 66px;
  padding: 6px 28px 6px 6px;
  border-radius: 79px;
  background: var(--surface-2);
  border: 1px solid var(--blue);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  transition: color .25s, border-color .25s, transform .2s;
}

.dive-page .dive-btn .g {
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .25s;
  z-index: 0;
}

.dive-page .dive-btn .badge {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .25s, color .25s;
}

.dive-page .dive-btn .badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.dive-page .dive-btn span {
  position: relative;
  z-index: 1;
  transition: color .25s;
}

.dive-page .dive-btn:hover {
  border-color: transparent;
  color: #001014;
  transform: translateY(-2px);
}

.dive-page .dive-btn:hover .g {
  opacity: 1;
}

.dive-page .dive-btn:hover .badge {
  border-color: #001014;
}

.dive-page .dive-btn.ghost {
  background: transparent;
  border-color: var(--line);
}

.dive-page .dive-btn.ghost .badge {
  border-color: rgba(255, 255, 255, .4);
}

.dive-page .dive-btn.ghost:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(24, 167, 246, .06);
}

.dive-page .dive-btn.ghost:hover .g {
  opacity: 0;
}

.dive-page .dive-btn.ghost:hover .badge {
  border-color: var(--blue);
}

/* ---- hero ---- */
.dive-page .hero {
  padding: 160px 0 120px;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.dive-page .hero .glow.a {
  width: 920px;
  height: 720px;
  background: rgba(153, 104, 255, .28);
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
}

.dive-page .hero .glow.b {
  width: 640px;
  height: 520px;
  background: rgba(1, 243, 251, .12);
  left: -8%;
  bottom: -18%;
}

.dive-page .hero-in {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dive-page h1.hero-title {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -.02em;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.12;
  color: #fff;
  max-width: 16ch;
}

.dive-page .hero-brand {
  margin-top: 18px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: .01em;
  background: var(--grad-stat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dive-page .hero-pill {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .08em;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #FFFFFF1F;
  border-radius: 79px;
  padding: 10px 22px;
}

.dive-page .hero-pill span {
  color: var(--cyan);
  font-weight: 500;
  margin-left: .35em;
}

.dive-page .hero-desc {
  color: #EBEDF2;
  font-size: 16px;
  font-weight: 400;
  max-width: 72ch;
  margin: 36px auto 0;
  line-height: 1.75;
}

.dive-page .hero-note {
  margin-top: 18px;
  font-size: 18px;
  color: #EBEDF2;
  font-weight: 500;
  line-height: 1.7;
}

.dive-page .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.dive-page .hero-chips {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}

.dive-page .chip {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 79px;
  padding: 12px 22px 12px 14px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
}

.dive-page .chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.dive-page .chip b {
  color: #fff;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: 2px;
}

/* ---- metric strip ---- */
.dive-page .metrics {
  background: #080808;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.dive-page .metrics .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  max-width: 100%;
}

.dive-page .metric {
  padding: 48px 36px;
  text-align: left;
  border-left: 1px solid #2a2a2a;
}

.dive-page .metric:first-child {
  border-left: none;
}

.dive-page .metric .n {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 20px);
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--cyan);
}

.dive-page .metric .l {
  font-size: 14px;
  color: #EBEDF2;
  margin-top: 14px;
  font-weight: 400;
  line-height: 1.45;
}
/* ---- dashboard + pillars ---- */
.dive-page .showcase {
  padding: 72px 0 40px;
  background: #000;
}


.dive-page .showcase-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.dive-page .pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.dive-page .pillar {
  background: #0c0c0e;
  border: 1px solid #26262b;
  border-radius: 16px;
  padding: 36px 28px 32px;
  transition: border-color .2s, transform .2s;
}



.dive-page .pillar .ico {
  width: 56px;

  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 18px;
  width: 100%;
  border-radius: 12px;

}

.dive-page .pillar .ico svg {
  width: 28px;
  height: 28px;

  stroke: var(--cyan);
  stroke-width: 1.6;
  fill: none;
}

.dive-page .pillar h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;  text-align: center;
}

.dive-page .pillar p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  font-weight: 400;
  line-height: 1.5; text-align: center;
}

/* ---- generic section pad ---- */
.dive-page .sec {
  padding: 44px 0;
}

.dive-page .sec.tight {
  padding: 88px 0;
}

/* ---- problem stats ---- */
.dive-page .prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.dive-page .prob-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color .2s, transform .2s;
}

.dive-page .prob-card .n {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dive-page .prob-card .d {
  color: var(--body);
  font-size: 14px;
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.6;
}

.dive-page .prob-card .q {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
  font-style: italic;
  font-weight: 300;
}

.dive-page .qualifier {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ---- platform arch ---- */
.dive-page .arch {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.dive-page .arch-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 34px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  transition: border-color .2s;
}

.dive-page .arch-block:hover {
  border-color: rgba(24, 167, 246, .5);
}

.dive-page .arch-block .tag {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dive-page .arch-block h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
  margin-top: 12px;
}

.dive-page .arch-block .role {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 300;
}

.dive-page .arch-block .desc {
  color: var(--body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.dive-page .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.dive-page .tag-pill {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  background: var(--surface-3);
  border-radius: 79px;
  padding: 7px 16px 7px 30px;
  position: relative;
}

.dive-page .tag-pill::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}

.dive-page .layer-wrap {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  z-index: 1;
}

.dive-page .layer {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dive-page .layer.top {
  background: linear-gradient(180deg, rgba(24, 167, 246, .10), rgba(1, 243, 251, .03));
  border-color: rgba(24, 167, 246, .4);
}

.dive-page .layer .lt {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
}

.dive-page .layer .ls {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 300;
}

.dive-page .layer-mid {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  padding: 14px 0;
  font-weight: 500;
  justify-content: center;
}

.dive-page .layer-mid .ln {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}

.dive-page .callout {
  margin-top: 30px;
  border: 1px solid rgba(24, 167, 246, .35);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(24, 167, 246, .06), transparent);
  padding: 26px 30px;
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.dive-page .callout b {
  color: #fff;
  font-weight: 500;
}

/* ---- capabilities ---- */
.dive-page .cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dive-page .cap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color .2s, transform .2s;
}

.dive-page .cap:hover,
.dive-page .pillar:hover,
.dive-page .prob-card:hover,
.dive-page .flow-step .box:hover,
.dive-page .cmp-col:hover,
.dive-page .impl-col:hover,
.dive-page .out:hover,
.dive-page .svc:hover,
.dive-page .why:hover {
  border-color: rgba(24, 167, 246, .5);
  transform: translateY(-3px);
}
.dive-page .cap .n {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dive-page .cap h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: -.01em;
  color: #fff;
  margin-top: 14px;
}

.dive-page .cap p {
  color: var(--body);
  font-size: 14px;
  font-weight: 300;
  margin-top: 11px;
  line-height: 1.6;
}

.dive-page .proto-strip {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.dive-page .proto-strip .lbl {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.dive-page .proto-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dive-page .proto {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  background: var(--surface-3);
  border-radius: 79px;
  padding: 8px 18px 8px 28px;
  position: relative;
}

.dive-page .proto::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

/* ---- flow ---- */
.dive-page .flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dive-page .flow-step {
  position: relative;
}

.dive-page .flow-step .box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: border-color .2s, transform .2s;
}

.dive-page .flow-step .n {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dive-page .flow-step h4 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
  margin-top: 14px;
}

.dive-page .flow-step p {
  font-size: 13.5px;
  color: var(--body);
  font-weight: 300;
  margin-top: 10px;
  line-height: 1.55;
}

.dive-page .flow-step .arw {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--blue);
  background: var(--bg);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ---- clean code comparison ---- */
.dive-page .cmp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dive-page .cmp-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
  transition: border-color .2s, transform .2s;
}

.dive-page .cmp-col.bad {
  border-color: #3a2320;
}

.dive-page .cmp-col.good {
  border-color: rgba(24, 167, 246, .4);
  background: linear-gradient(180deg, rgba(24, 167, 246, .05), var(--surface) 45%);
}

.dive-page .cmp-col .ct {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.dive-page .cmp-col .mk {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--disp);
  font-size: 14px;
  flex-shrink: 0;
}

.dive-page .cmp-col.bad .mk {
  background: rgba(255, 107, 107, .14);
  color: #ff6b6b;
}

.dive-page .cmp-col.good .mk {
  background: rgba(1, 243, 251, .14);
  color: var(--cyan);
}

.dive-page .cmp-col .cs {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 12px;
}

.dive-page .pflow {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dive-page .prow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
}

.dive-page .prow .p {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--surface-3);
  border-radius: 6px;
  padding: 7px 12px;
  min-width: 96px;
  text-align: center;
}

.dive-page .prow .arw {
  color: var(--muted);
}

.dive-page .prow .t {
  color: var(--body);
}



.dive-page .cmp-col.good .prow .t {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.dive-page .cmp-res {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dive-page .cmp-col.bad .cmp-res {
  color: #a56;
}

.dive-page .cmp-col.good .cmp-res {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- implementation ---- */
.dive-page .impl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dive-page .impl-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color .2s, transform .2s;
}

.dive-page .impl-col h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: -.01em;
  color: #fff;
}

.dive-page .impl-col .s {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  margin-top: 10px;
}

.dive-page .impl-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dive-page .impl-list li {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 13px 0;
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  border-top: 1px solid var(--line-soft);
}

.dive-page .impl-list li:first-child {
  border-top: none;
}

.dive-page .impl-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---- outcomes ---- */
.dive-page .out-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dive-page .out {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}

.dive-page .out .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 167, 246, .1);
  border: 1px solid rgba(24, 167, 246, .3);
  margin-bottom: 20px;
}

.dive-page .out .ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
  stroke-width: 1.7;
  fill: none;
}

.dive-page .out h4 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: -.01em;
  color: #fff;
  line-height: 1.2;
}

.dive-page .out p {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  margin-top: 12px;
  line-height: 1.6;
}

/* ---- services ---- */
.dive-page .svc-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px 26px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.dive-page .svc-note b {
  color: #fff;
  font-weight: 500;
}

.dive-page .svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.dive-page .svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .2s, transform .2s;
}

.dive-page .svc .abbr {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dive-page .svc p {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  margin-top: 12px;
  line-height: 1.55;
}

/* ---- why ---- */
.dive-page .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dive-page .why {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}

.dive-page .why .ico {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--cyan);
}

.dive-page .why .ico svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.dive-page .why h4 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: -.01em;
  color: #fff;
}

.dive-page .why p {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  margin-top: 12px;
  line-height: 1.6;
}

/* ---- demo / form ---- */
.dive-page .demo {
  padding: 44px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #FFFFFF0F;
}
.dive-page .demo .glow {
  width: 800px;
  height: 600px;
  background: rgba(153, 104, 255, .16);
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
}

.dive-page .demo-in {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.dive-page .form-card {
  position: relative;
  z-index: 2;
  margin: 48px auto 0;
  max-width: 1000px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
}

.dive-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.dive-page .field {
  display: flex;
  flex-direction: column;
}

.dive-page .field.span2 {
  grid-column: span 2;
}

.dive-page .field.full {
  grid-column: 1 / -1;
}

.dive-page .field label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
}

.dive-page .field input,
.dive-page .field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  transition: border-color .2s;
}

.dive-page .field input:focus,
.dive-page .field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.dive-page .field textarea {
  resize: vertical;
  min-height: 110px;
}

.dive-page .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ---- reveal ---- */
.dive-page .rev {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.dive-page .rev.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:1024px) {
  .dive-page .wrap {
    padding: 0 28px;
  }

  .dive-page .cap-grid,
  .dive-page .out-grid,
  .dive-page .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dive-page .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dive-page .flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .dive-page .flow-step .arw {
    display: none;
  }

  .dive-page .arch-block {
    grid-template-columns: 1fr;
  }

  .dive-page .metrics .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .dive-page .metric:nth-child(3) {
    border-left: none;
  }
}

@media (max-width:768px) {
  .dive-page .hero {
    min-height: auto;
    padding: 130px 0 80px;
  }


  .dive-page .hero-pill {
    font-size: 11px;
    letter-spacing: .04em;

    display: inline-block;
  
    max-width: 80%;
    padding-bottom: 8px;
}

.dive-page .flow {
  grid-template-columns: repeat(1, 1fr);
}

  .dive-page .pillar-grid,
  .dive-page .prob-grid,
  .dive-page .cmp,
  .dive-page .impl,
  .dive-page .cap-grid,
  .dive-page .out-grid,
  .dive-page .why-grid,
  .dive-page .form-grid {
    grid-template-columns: 1fr;
  }

  .dive-page .svc-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .dive-page .field.span2,
  .dive-page .field.full {
    grid-column: 1 / -1;
  }

  .dive-page .metrics .wrap {
    grid-template-columns: 1fr;
  }

  .dive-page .metric {
    border-left: none;
    border-top: 1px solid var(--line-soft);
  }

  .dive-page .metric:first-child {
    border-top: none;
  }

  .dive-page .form-card {
    padding: 28px;
  }
}

.dive-page .dive-btn {
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.text-justify {
  text-align: justify !important;
}