@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
  --primary:#0474e8; 
  --secondary:#c05318;
  /* --secondary:#e04502; */
  --heading:#0f172a;
  --text:#64748b;
  --border:#ece7e3;
  --bg:#faf9f7;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html {
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  overflow-x: hidden;
}
.text-primary{
  color: var(--primary);
}
.text-secondary{
  color: var(--secondary);
}
.bg-primary{
  background-color: var(--primary);
}
.bg-secondary{
  background-color: var(--secondary);
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
.btn-secondary-border{
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.site-header.is-scrolled {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.site-header > div {
  transition: padding 0.3s ease;
}

.site-header.is-scrolled > div {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.silver-bg{
    background: linear-gradient(125deg, rgb(219, 221, 222) 0%, rgb(108 111 113) 8%, rgb(116 121 131) 32%, rgb(191 199 203) 71%, rgb(17 18 20) 100%);
}
.container-custom{
  max-width:1280px;
  margin:auto;
  padding:0 20px;
}

.header{
  background:#fff;
  border-bottom:1px solid #eee;
}

.header .container-custom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:80px;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:#333;
}

.btn-primary{
 background-color: var(--secondary);
  color:white;
  border:none;
  padding:14px 24px;
  border-radius:12px;
  cursor:pointer;
}
.hero-bg{
  background-image: url(../images/banner-bg-5_new.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero{
  padding:100px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:80px;
}

.hero h1{
  font-size:72px;
  line-height:1.05;
}

.hero h1 span{
  color:#d67e4b;
}

.hero p{
  margin-top:20px;
  color:var(--text);
  max-width:600px;
}

.badge{
  display:inline-block;
  margin-bottom:20px;
  padding:10px 16px;
  border-radius:50px;
  background:#fff;
}

.search-box{
  margin-top:40px;
  display:flex;
}

.search-box input{
  flex:1;
  height:60px;
  border:none;
  padding:0 20px;
  border-radius:16px 0 0 16px;
}

.search-box button{
  width:140px;
  border:none;
  color:#fff;
  background:linear-gradient(
  135deg,
  #0863d7,
  #d67e4b);
}

.stats{
  padding-bottom:80px;
}

.stats-grid{
  background:#fff;
  border-radius:28px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  padding:40px;
  box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.services{
  padding:100px 0;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
  margin-top:40px;
}

.card{
  background:#fff;
  padding:30px;
  border-radius:24px;
  border:1px solid var(--border);
  transition:.4s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:#d67e4b;
}

.market-section{
  padding:100px 0;
}

.market-wrapper{
  background:#07111f;
  color:white;
  border-radius:32px;
  padding:60px;
  display:grid;
  grid-template-columns:250px 1fr 250px;
  gap:40px;
}

.market-right button{
  width:100%;
  margin-bottom:10px;
  height:50px;
  background:transparent;
  color:white;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
}

.market-right .active{
  border-color:#d67e4b;
}

.graph{
  padding:100px 0;
}

.graph-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

footer{
  background:#fff;
  padding:60px 0;
  border-top:1px solid #eee;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: Inter, sans-serif;
}

.network-wrapper {
   position: relative;
  width: 100%;
  max-width: 700px;
  height: 325px;
  margin: 0 auto;
}

/* SVG Lines */
.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.connections line {
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 5;
  opacity: 0.7;
}

/* Center Circle */
.center-node {
   position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%)!important;
  border-radius: 50%;
  border: linear-gradient(
    135deg,
    #d77b45,
    #b85a23
  );
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 50px;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(45, 126, 201, 0.3);
}

/* Node */
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #a1a1a1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0863d7;
  font-size: 20px;
}

.info-block {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content h4 {
  color: #0863d7;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

.content p {
  color: #2f3640;
  font-size: 10px;
  line-height: 1.6;
}

.text-right {
  text-align: right;
}

/* Positions */

.property {
   top: 0;
  left: 40%;
  transform: translateX(-40%);
}
.animate-gradient-text {
  background: linear-gradient(
    90deg,
    #0863d7,
    #d67e4b,
    #ffd6b8,
    #d67e4b,
    #0863d7
  );

  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: gradientText 4s linear infinite;
}

@keyframes gradientText {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}
.mortgage {
    top: 70px;
  right: 0;
}

.risk {
  bottom: 80px;
  right: 20px;
}

.portfolio {
  bottom: 0;
  left: 40%;
  transform: translateX(-40%);
}

.market {
 bottom: 80px;
  left: 0;
}

.owner {
 top: 70px;
  left: 0;
}


/* new UI start */
.mesh-bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(214,126,75,0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(134,61,34,0.14), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(214,126,75,0.12), transparent 35%),
    radial-gradient(circle at 30% 70%, rgba(134,61,34,0.12), transparent 35%);
  filter: blur(80px);
  animation: meshMove 18s ease-in-out infinite alternate;
}

.footer ul li{
    font-size: 12px;
}

.search-pill {
    font-size: 12px !important;
    font-weight: 500;
    padding: 5px 14px;
    background: transparent;
    border-radius: 99px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    color: #4b5563;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    border: 0.5px  solid #64748b59;
}

.search-pill:hover{
  background: #fff;
  border-color: #b85a23;
  color: var(--secondary);
}

.typing-placeholder.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.typing-placeholder::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    margin-left: 2px;
    background: #7f8794;
    animation: typingCursor 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes typingCursor {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes meshMove {
  0% {
    transform: translate(-5%, -5%) scale(1);
  }
  100% {
    transform: translate(5%, 5%) scale(1.15);
  }
}


@keyframes arrowSlide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}

/* button animation */
@keyframes borderFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}
/* button animation end */


/* map animation */
@keyframes borderFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

.group:hover .arrow-icon {
  animation: arrowSlide 0.8s ease-in-out infinite;
}


.card-hover:hover {
  transform: translateY(-6px);
}

.screenshot .group div{
    height: 75px;
}

.workspace-section {
  max-width: 1320px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.workspace-shell {
  background:
    radial-gradient(circle at top, rgba(12, 35, 70, 0.22), transparent 42%),
    linear-gradient(180deg, #0d1830 0%, #0a1326 100%);
  border-radius: 5px;
  padding: 56px 28px;
  color: #f8fafc;
  box-shadow: 0 28px 70px rgba(9, 18, 36, 0.22);
}

.workspace-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.workspace-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.workspace-title {
  margin-top: 12px;
  font-size: clamp(2.3rem, 4vw, 1.5rem);
  line-height: 1.02;
  font-weight: 800;
  color: #ffffff;
}

.workspace-subtitle {
  margin: 16px auto 0;
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #8ca6d4;
}

.workspace-demo {
  max-width: 1040px;
  margin: 0 auto;
}

.workspace-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  padding: 8px;
  background: rgba(20, 33, 62, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.workspace-tab {
  border: 1px solid transparent;
  background: transparent;
  color: #88a5d4;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.workspace-tab:hover,
.workspace-tab:focus-visible {
  color: #ffffff;
  outline: none;
}

.workspace-tab.is-active {
  background: linear-gradient(180deg, #1c3565 0%, #132748 100%);
  border-color: rgba(211, 163, 84, 0.9);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.workspace-browser {
  border-radius: 22px;
  border: 1px solid rgba(112, 140, 191, 0.18);
  overflow: hidden;
  background: #0f1b34;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.workspace-browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #12203c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.workspace-dots {
  display: flex;
  gap: 8px;
}

.workspace-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.workspace-dots span:nth-child(1) { background: #ff6b57; }
.workspace-dots span:nth-child(2) { background: #ffbd2e; }
.workspace-dots span:nth-child(3) { background: #28c840; }

.workspace-address {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: #0d1730;
  color: #6ea6ea;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.workspace-panel {
  min-height: 520px;
}

.workspace-panel[hidden] {
  display: none;
}

.workspace-panel.is-active {
  display: grid;
  grid-template-columns: 195px minmax(0, 1fr);
}

.workspace-sidebar {
  background: #172746;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}

.workspace-logo {
  padding: 0 18px 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.workspace-nav {
  display: grid;
  gap: 6px;
}

.workspace-nav a {
  padding: 10px 18px;
  color: #7f9ac6;
  font-size: 0.95rem;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.workspace-nav a.is-active,
.workspace-nav a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border-left-color: #d3a354;
}

.workspace-main {
  padding: 22px;
}

.workspace-main-full {
  grid-column: 1 / -1;
}

.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.workspace-heading h3 {
  font-size: 1.9rem;
  line-height: 1.15;
  color: #ffffff;
}

.workspace-heading p {
  margin-top: 8px;
  color: #86a0ca;
  font-size: 0.95rem;
}

.workspace-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(32, 185, 111, 0.14);
  color: #5ee4aa;
  font-weight: 700;
  font-size: 0.86rem;
  border: 1px solid rgba(94, 228, 170, 0.25);
}

.workspace-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
}

.workspace-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.workspace-stat,
.workspace-card {
  background: #182848;
  border: 1px solid rgba(110, 145, 197, 0.16);
  border-radius: 14px;
}

.workspace-stat {
  padding: 14px 16px;
}

.workspace-stat span {
  display: block;
  color: #7f9ac6;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.workspace-stat strong {
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
}

.workspace-stat:first-child strong {
  color: #f6b83b;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workspace-card {
  padding: 18px 16px;
}

.workspace-card h4 {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: #8dacd9;
}

.workspace-list {
  list-style: none;
}

.workspace-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.workspace-list li:last-child {
  border-bottom: 0;
}

.workspace-list span {
  color: #7f9ac6;
}

.workspace-list strong {
  color: #ffffff;
  text-align: right;
}

.workspace-bars {
  display: grid;
  gap: 14px;
}

.workspace-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 7px;
  font-size: 0.87rem;
}

.workspace-bar-label span {
  color: #90aad1;
}

.workspace-bar-label strong {
  color: #4ee4b4;
}

.workspace-bar {
  height: 8px;
  border-radius: 999px;
  background: #0b152c;
  overflow: hidden;
}

.workspace-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3ed1b4 0%, #7bf0cf 100%);
}

.workspace-bar.warning span {
  background: linear-gradient(90deg, #d5dc51 0%, #f4b53e 100%);
}

.workspace-bar.gradient span {
  background: linear-gradient(90deg, #43d4d5 0%, #d5dc51 100%);
}

.workspace-donut {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.workspace-donut-ring {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: conic-gradient(#4169e1 0 42%, #d3a354 42% 68%, #39c6b8 68% 87%, #557296 87% 100%);
  position: relative;
}

.workspace-donut-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #0f1b34;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.workspace-donut-legend {
  display: grid;
  gap: 8px;
  width: 100%;
}

.workspace-donut-legend span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8e5f8;
}

.workspace-donut-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.legend-primary { background: #4169e1; }
.legend-gold { background: #d3a354; }
.legend-teal { background: #39c6b8; }
.legend-slate { background: #557296; }

.workspace-graph-card {
  position: relative;
  min-height: 390px;
  border-radius: 18px;
  border: 1px solid rgba(110, 145, 197, 0.16);
  background:
    radial-gradient(circle at center, rgba(33, 64, 116, 0.45), transparent 52%),
    #182848;
  overflow: hidden;
}

.graph-node {
  position: absolute;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 180, 229, 0.18);
  background: rgba(17, 31, 58, 0.95);
  box-shadow: 0 12px 32px rgba(7, 14, 29, 0.28);
  text-align: center;
}

.graph-node span {
  display: block;
  color: #7f9ac6;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.graph-node strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.graph-node-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(211, 163, 84, 0.45);
}

.graph-node-top-left { top: 48px; left: 70px; }
.graph-node-top-right { top: 52px; right: 70px; }
.graph-node-bottom-left { bottom: 52px; left: 120px; }
.graph-node-bottom-right { bottom: 48px; right: 120px; }

.graph-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(211,163,84,0.65), rgba(98,138,210,0.22));
  transform-origin: left center;
}

.graph-line-1 {
  width: 205px;
  transform: translate(0, -1px) rotate(-145deg);
}

.graph-line-2 {
  width: 220px;
  transform: translate(0, -1px) rotate(-32deg);
}

.graph-line-3 {
  width: 170px;
  transform: translate(-2px, 1px) rotate(145deg);
}

.graph-line-4 {
  width: 185px;
  transform: translate(-2px, 1px) rotate(30deg);
}

@media (max-width: 1024px) {
  .workspace-title {
    font-size: 2rem;
  }

  .workspace-panel.is-active {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    display: none;
  }

  .workspace-metrics,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .workspace-shell {
    padding: 40px 18px;
    border-radius: 24px;
  }

  .workspace-title {
    font-size: 2rem;
  }

  .workspace-subtitle {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .workspace-tabs {
    width: 100%;
    justify-content: stretch;
  }

  .workspace-tab {
    flex: 1 1 100%;
  }

  .workspace-panel {
    min-height: auto;
  }

  .workspace-main {
    padding: 18px;
  }

  .workspace-heading,
  .workspace-list li,
  .workspace-bar-label {
    flex-direction: column;
  }

  .workspace-metrics,
  .workspace-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .workspace-stat strong {
    font-size: 1.55rem;
  }

  .workspace-address {
    font-size: 0.72rem;
  }

  .workspace-graph-card {
    min-height: 560px;
  }

  .graph-node {
    min-width: 132px;
    padding: 12px;
  }

  .graph-node-top-left { top: 32px; left: 18px; }
  .graph-node-top-right { top: 32px; right: 18px; }
  .graph-node-bottom-left { bottom: 28px; left: 18px; }
  .graph-node-bottom-right { bottom: 28px; right: 18px; }

  .graph-line-1 { width: 145px; transform: translate(0, -1px) rotate(-145deg); }
  .graph-line-2 { width: 150px; transform: translate(0, -1px) rotate(-34deg); }
  .graph-line-3 { width: 125px; transform: translate(-2px, 1px) rotate(146deg); }
  .graph-line-4 { width: 132px; transform: translate(-2px, 1px) rotate(32deg); }
}

.text-slider {
  display: inline-flex;
  position: relative;
  height: 1.2em;
  margin-left: 0.18em;
  overflow: hidden;
  vertical-align: top;
}

.text-slider-track {
  display: flex;
  flex-direction: column;
  animation: textSliderRotate 10s ease-in-out infinite;
}

/* .text-slider-word {
  display: block;
  height: 1.2em;
  line-height: 1.2;
  white-space: nowrap;
} */

@keyframes textSliderRotate {
  0%, 18% {
    transform: translateY(0);
  }
  25%, 43% {
    transform: translateY(-1.2em);
  }
  50%, 68% {
    transform: translateY(-2.4em);
  }
  75%, 93% {
    transform: translateY(-3.6em);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .text-slider {
    height: auto;
    overflow: visible;
  }

  .text-slider-track {
    animation: none !important;
  }

  .text-slider-word:not(:first-child) {
    display: none;
  }
}

/* page scroll animaiton start */
.reveal-up{
    opacity:0;
    transform:translateY(60px);
    transition:opacity .8s cubic-bezier(.2,.65,.2,1), transform .8s cubic-bezier(.2,.65,.2,1);
    transition-delay:var(--reveal-delay, 0s);
    will-change:transform, opacity;
}

.reveal-down{
    opacity:0;
    transform:translateY(-60px);
    transition:opacity .8s cubic-bezier(.2,.65,.2,1), transform .8s cubic-bezier(.2,.65,.2,1);
    transition-delay:var(--reveal-delay, 0s);
    will-change:transform, opacity;
}

.reveal-left{
    opacity:0;
    transform:translate3d(0, 32px, 0);
    transition:opacity .85s cubic-bezier(.2,.65,.2,1), transform .85s cubic-bezier(.2,.65,.2,1);
    transition-delay:var(--reveal-delay, 0s);
    will-change:transform, opacity;
}

.reveal-right{
    opacity:0;
    transform:translate3d(0, 32px, 0);
    transition:opacity .85s cubic-bezier(.2,.65,.2,1), transform .85s cubic-bezier(.2,.65,.2,1);
    transition-delay:var(--reveal-delay, 0s);
    will-change:transform, opacity;
}

.reveal-scale{
    opacity:0;
    transform:scale(.85);
    transition:opacity .8s ease, transform .8s ease;
    transition-delay:var(--reveal-delay, 0s);
    will-change:transform, opacity;
}

.reveal-up.show,
.reveal-down.show,
.reveal-left.show,
.reveal-right.show,
.reveal-scale.show{
    opacity:1;
    transform:none;
}
.reveal-delay-1{
    --reveal-delay:.12s;
}

.reveal-delay-2{
    --reveal-delay:.24s;
}
.center-node,
.info-block{
    opacity:0;
    transform:scale(.5);
}

.connections line{
    stroke-dasharray:600;
    stroke-dashoffset:600;
}
.show-graph .center-node{
    animation:centerPop .6s forwards;
}

.show-graph .connections line{
    animation:drawLine .9s forwards;
}

.show-graph .property{
    animation:fadeScale .5s .8s forwards;
}

.show-graph .mortgage{
    animation:fadeScale .5s 1s forwards;
}

.show-graph .risk{
    animation:fadeScale .5s 1.2s forwards;
}

.show-graph .portfolio{
    animation:fadeScale .5s 1.4s forwards;
}

.show-graph .market{
    animation:fadeScale .5s 1.6s forwards;
}

.show-graph .owner{
    animation:fadeScale .5s 1.8s forwards;
}
@keyframes centerPop{
    from{
        opacity:0;
        transform:scale(.2) rotate(-180deg);
    }
    to{
        opacity:1;
        transform:scale(1) rotate(0);
    }
}

@keyframes drawLine{
    to{
        stroke-dashoffset:0;
    }
}

@keyframes fadeScale{
    from{
        opacity:0;
        transform:scale(.5);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* @media (prefers-reduced-motion: reduce){
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .center-node,
  .info-block,
  .connections line,
  .animate-gradient-text {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
} */

@media (prefers-reduced-motion: reduce) {
  .typing-placeholder::after {
    animation: none;
  }
}
