
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #ffffff;

    overflow-x: hidden;
}


.brand.scrolled {
    z-index: -1;
}

.navlogo.scrolled {
    transform: translateX(5rem);
}








.mainnav.scrolled {
    opacity: 0.7;

}








.fade {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}


.fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}








.firstbutton {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    color: #111;
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    border-radius: 0.625px;
    border: 0.0625rem solid rgba(0, 0, 0, 0.08);

    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 6px 18px rgba(0, 0, 0, 0.06);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

/* Interaction states */
.firstbutton:hover {
    transform: translateY(-0.3125rem);
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.08),
        0 14px 30px rgba(0, 0, 0, 0.12);
}

.firstbutton:active {
    transform: translateY(0);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.08);
}

.firstbutton:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.08),
        0 6px 1.125rem rgba(0, 0, 0, 0.08);
}

/* Kill underline everywhere */
.firstbutton,
.firstbutton:hover,
.firstbutton:focus,
.firstbutton:active {
    text-decoration: none;
}



.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero {
    height: 35rem;
}




.herobox {
    margin-left: 26.5625rem;
}


.herobox.active {
    transition: transform 0.6s ease;
    transform: translateX(-16.875rem);
    
}




.section {
    padding: 5rem 0;
}

.section-muted {
    background-color: #f6f6f6;
}

.section-dark {
    background-color: #111;
    color: #fff;
}

.sectiontitle {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
    
}

.section-subtitle {
    color: #666;
}

.section-dark .section-subtitle,
.section-dark a {
    color: #ccc;
}



.site-header {
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.brand a {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: #111;
}




.mainnav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.mainnav a {
    text-decoration: none;
    color: #111;
    font-size: 0.95rem;
}

.nav-cta {
    font-weight: 600;
}


.hero {
    padding: 7rem 0;
    background-color:rgb(14, 128, 194);
}

.hero-inner {
    max-width: 43.75rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}


.card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eaeaea;
}

.card h3 {
    margin-bottom: 0.75rem;
}

.content-text {
    max-width: 43.75rem;
    color: #444;
}


.herobox {
    color: white;
    max-width: 35rem;

}




.hl1 {
    color: rgb(14, 128, 194);
}
.hl2 {
    color: rgb(14, 128, 194);
}



.navlogo {
    height: 3rem;
    width: auto;
    position: absolute;
    left: 7rem;
    top: 1rem;
}


.chatcontainer {
    max-width: 26.25rem;
    height: 32.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    position: absolute;
    left: 56.25rem;
    top: 6.25rem;

    overflow-y: auto;
    padding-right: 4rem;
    box-sizing: content-box;
    
}

.chatcontainer {
    
    scrollbar-width: none;
    

  
    -ms-overflow-style: none;
}

.chatcontainer::-webkit-scrollbar {
    display: none; 
}



.message {
    opacity: 0;
    transform: translateY(10px);
    animation: appear 0.5s ease forwards;
    max-width: 75%;

    position: relative;
    
}



.left {
    margin-right: 10rem;
}

.right {
    margin-left: 10rem;
}

.message img {
    width: 20rem;
    height: auto;
    display: block;
}


@keyframes appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.delay1 { animation-delay: 1.7s; }
.delay2 { animation-delay: 2.6s; }
.delay3 { animation-delay: 3.7s; }
.delay4 { animation-delay: 4.8s; }
.delay5 { animation-delay: 5.9s; }
.delay6 { animation-delay: 7s; }
.delay7 { animation-delay: 8.1s; }
.delay8 { animation-delay: 9.2s; }







.grid3 {
    display: flex;
    flex-direction:row;
    padding: 4rem;
    height: 40rem;
    width: 100%;
    gap: 2rem;


    background-color: rgb(14, 128, 194);
    color: white;
    

}


.moneyanalyticsimg {
    width: 50%;
    height: auto;
    align-self: flex-start;

}

.whatwedo {
    align-self: flex-end;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 7rem;
    
}

.whatwedoheader {
    font-size: 1.7rem;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.whatwedodescription {
    font-size: 1rem;
    margin-top: 2rem;
}

.worksection {
    margin-bottom: 1rem;
}


.worktitleparent {
    
    
    font-size: 1.15rem;
    display: flex;
    justify-content: center;  
    color: rgb(0, 0, 0);  
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif

}
.worktitle {
    position: absolute;
    bottom: -45.3125rem;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    margin-top: 7rem;

}

.worktitle.visible {
    opacity: 1;
}


#strandcanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.worksection {
    padding: 6rem 8%;
}

.casestudies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    
}

.case-card {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.case-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

.case-card h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0 0;
}

.case-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.case-card strong {
    opacity: 1;
}

.placeholder {
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgb(14, 128, 194),
        rgba(180, 120, 255, 0.05)
    );
}


































.pricing {
    background-color: rgb(14, 128, 194);
    height: 65rem;
}



.pricingparentheader {
    display: flex;
    flex-direction: row;
    justify-content: center;

    padding: 4rem;
    
}

.pricingheader {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    
}





.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 90%;
  max-width: 1100px;
  
  /* The Magic Lines */
  margin: 0 auto;           /* Centers the container horizontally */
  justify-content: center;  /* Centers the cards if they don't fill the width */

  margin-top: 1rem;
}

.pricing-card {
  background-color:white;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

/* Hover Animation */
.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Featured Card Styling */
.pricing-card.featured {
  border-color: var(--primary);
  background: #fdfdff;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: translateY(-15px) scale(1.05);
}

.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin: 1.5rem 0;
}

.price span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.sub {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 1.5rem 0;
}

.sub span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.features li {
  padding: 0.75rem 0;
  color: #22262c;
  border-bottom: 1px solid #f1f5f9;
}

.features li.disabled {
  color: #414447;
  text-decoration: line-through;
}

.btn {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--primary);
  background: transparent;
  color: white;
  background-color: rgb(14, 128, 194);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background-color: rgb(14, 128, 194);
  color: white;
}

.btn:hover {
  background-color: rgb(67, 164, 219);
  color: white;
  filter: brightness(1.1);
  
}

.btn1 {
    position: relative;
    top: 3.2rem;
}

.features2 {
    position: relative;
    bottom: 1.75rem;
}





@media (max-width: 1280px) {
    .worksection {
        margin-bottom: 5rem;
    }
}   


























































.site-footer {
    padding: 2rem 0;
    border-top: 1px solid #eaeaea;
}

.footer-inner {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}









































