:root {
  --primary: #1555ff;
  --secondary: #032277;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family:
    "Satoshi-Regular",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;

  font-size: 1rem;
  font-weight: 400;
}

.labs-home {
  background: #fefeff;
  color: #0b1736;
}

.labs-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
}

.eyebrow {
  color: var(--primary);
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow.on-dark {
  color: #9bb8ff;
}

.product-frame {
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dce4f6;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(3, 34, 119, 0.17);
}

.product-frame img {
  border-radius: 14px;
}

.feature-tile {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-tile span {
  color: #9bb8ff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.feature-tile h3,
.principle-grid h3,
.audience-grid h3 {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 1.25rem;
  margin: 14px 0 8px;
}

.feature-tile p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.tool-convergence {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid #dce4f6;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(21, 85, 255, 0.1), transparent 33%),
    #f7f9ff;
}

.tool-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tool-connections path {
  fill: none;
  stroke: #aebee4;
  stroke-width: 1.5;
  stroke-dasharray: 6 7;
  stroke-dashoffset: 160;
  opacity: 0;
}

.tool-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 156px;
  padding: 12px;
  border: 1px solid #dce4f6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(3, 34, 119, 0.1);
}

.tool-card strong,
.tool-card small {
  display: block;
}

.tool-card strong {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 0.88rem;
}

.tool-card small {
  margin-top: 2px;
  color: #748096;
  font-size: 0.7rem;
}

.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 9px;
  background: #e9efff;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.tool-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-calendar { left: 22px; top: 42px; }
.tool-sheet { left: calc(50% - 78px); top: 20px; }
.tool-payment { right: 22px; top: 48px; }
.tool-message { left: 38px; bottom: 42px; }
.tool-notebook { right: 38px; bottom: 42px; }

.convergence-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: flex;
  width: 280px;
  min-height: 176px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 18px;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 26px 55px rgba(3, 34, 119, 0.25);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.68);
}

.core-mark {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 10px;
  background: var(--primary);
  font-family: "Satoshi-Medium", sans-serif;
}

.convergence-core strong {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 2rem;
  margin: 3px 0;
}

.convergence-core small,
.convergence-core > span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.convergence-status {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  color: #7a88a3;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
}

.tool-convergence.is-animated .tool-connections path {
  animation: draw-tool-line 0.9s ease forwards;
}

.tool-convergence.is-animated .tool-connections {
  animation: fade-tool-lines 0.55s ease 1.35s forwards;
}

.tool-convergence.is-animated .tool-card {
  animation: gather-tool 1s cubic-bezier(0.65, 0, 0.35, 1) 1.05s forwards;
}

.tool-convergence.is-animated .convergence-core {
  animation: reveal-core 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 1.8s forwards;
}

.tool-convergence.is-animated .convergence-status {
  animation: show-status 1.5s ease 0.35s both;
}

.tool-convergence.is-complete .tool-card,
.tool-convergence.is-complete .tool-connections,
.tool-convergence.is-complete .convergence-status {
  display: none;
}

.tool-convergence.is-complete .convergence-core {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes draw-tool-line {
  0% { opacity: 0; stroke-dashoffset: 160; }
  30% { opacity: 1; }
  100% { opacity: 0.8; stroke-dashoffset: 0; }
}

@keyframes fade-tool-lines {
  to { opacity: 0; }
}

@keyframes gather-tool {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  65% { opacity: 0.85; transform: translate(var(--gather-x), var(--gather-y)) scale(0.55); }
  100% { opacity: 0; transform: translate(var(--gather-x), var(--gather-y)) scale(0.25); }
}

.tool-calendar { --gather-x: 205px; --gather-y: 135px; }
.tool-sheet { --gather-x: 0px; --gather-y: 175px; }
.tool-payment { --gather-x: -205px; --gather-y: 130px; }
.tool-message { --gather-x: 190px; --gather-y: -125px; }
.tool-notebook { --gather-x: -190px; --gather-y: -125px; }

@keyframes reveal-core {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.68); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes show-status {
  0%, 100% { opacity: 0; }
  25%, 75% { opacity: 1; }
}

@media screen and (max-width: 576px) {
  .tool-convergence {
    min-height: 520px;
  }

  .tool-connections {
    display: none;
  }

  .tool-card {
    width: 138px;
    padding: 10px;
  }

  .tool-card small {
    display: none;
  }

  .tool-calendar { left: 14px; top: 30px; --gather-x: 92px; --gather-y: 296px; }
  .tool-sheet { left: auto; right: 14px; top: 30px; --gather-x: -92px; --gather-y: 296px; }
  .tool-payment { left: 14px; right: auto; top: 108px; --gather-x: 92px; --gather-y: 218px; }
  .tool-message { left: auto; right: 14px; top: 108px; bottom: auto; --gather-x: -92px; --gather-y: 218px; }
  .tool-notebook { left: 50%; right: auto; top: 186px; bottom: auto; margin-left: -69px; --gather-x: 0px; --gather-y: 140px; }

  .convergence-core {
    top: 68%;
    width: calc(100% - 40px);
  }
}

.soft-section {
  background: #f4f7ff;
}

.principle-grid > div {
  padding: 24px;
  border-top: 1px solid #cad5ef;
}

.principle-grid h3 {
  margin-top: 0;
}

.audience-grid article {
  height: 100%;
  padding: 26px;
  border: 1px solid #e0e6f2;
  border-radius: 16px;
}

.audience-grid h3 {
  margin-top: 0;
}

.audience-grid p,
.principle-grid p {
  color: #66737f;
  margin-bottom: 0;
}

.experience-card {
  overflow: hidden;
  padding: 32px;
  border: 1px solid #dce4f6;
  border-radius: 22px;
  background: #fff;
}

.experience-card h3 {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 1.65rem;
}

.experience-card > p:not(.experience-label) {
  color: #66737f;
}

.experience-label,
.audience-tag {
  color: var(--primary);
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-card-visual {
  padding-bottom: 0;
}

.experience-card-visual img {
  width: 125%;
  max-width: none;
  margin-top: 20px;
  border: 1px solid #e0e6f2;
  border-radius: 14px 0 0 0;
  box-shadow: 0 18px 45px rgba(3, 34, 119, 0.12);
}

.experience-list {
  margin-top: 30px;
}

.experience-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #e5eaf4;
}

.experience-list span {
  color: var(--primary);
  font-size: 0.75rem;
}

.lifecycle-section {
  background: var(--secondary);
  color: #fff;
}

.lifecycle-section .lead {
  color: rgba(255, 255, 255, 0.72);
}

.lifecycle-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.lifecycle-flow li {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.lifecycle-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -19px;
  width: 26px;
  color: #9bb8ff;
  text-align: center;
}

.lifecycle-flow span,
.lifecycle-flow strong,
.lifecycle-flow small {
  display: block;
}

.lifecycle-flow span {
  color: #9bb8ff;
  font-size: 0.72rem;
}

.lifecycle-flow strong {
  margin: 28px 0 6px;
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 1.2rem;
}

.lifecycle-flow small {
  color: rgba(255, 255, 255, 0.65);
}

.audience-tag {
  display: block;
  margin-bottom: 16px;
}

.audience-more {
  margin-top: 28px;
  color: #66737f;
}

.early-access {
  padding: 100px 0;
  background: #eef3ff;
}

.early-access-card {
  padding: 70px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(3, 34, 119, 0.1);
}

.early-access-card .lead {
  max-width: 620px;
  margin-bottom: 28px;
}

.early-access-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin-bottom: 34px;
  text-align: left;
}

.early-access-steps li {
  padding: 16px;
  border-left: 1px solid #dce4f6;
}

.early-access-steps span {
  display: block;
  color: var(--primary);
  font-family: "Satoshi-Medium", sans-serif;
  margin-bottom: 8px;
}

.early-access-modal .modal-content {
  overflow: hidden;
  border: 1px solid #dce4f6;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(3, 34, 119, 0.22);
}

.early-access-modal .modal-header,
.early-access-modal .modal-body,
.early-access-modal .modal-footer {
  padding-right: 32px;
  padding-left: 32px;
}

.early-access-modal .modal-header {
  align-items: flex-start;
  padding-top: 32px;
  padding-bottom: 8px;
}

.early-access-modal .modal-title {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 2rem;
}

.early-access-modal .form-label {
  color: #34415d;
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 0.85rem;
}

.early-access-modal .form-control,
.early-access-modal .form-select {
  min-height: 48px;
  border-color: #d6dfee;
  border-radius: 10px;
}

.early-access-modal .form-control:focus,
.early-access-modal .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(21, 85, 255, 0.12);
}

.early-access-modal .form-note {
  color: #748096;
  font-size: 0.78rem;
}

.early-access-modal .modal-footer {
  padding-bottom: 32px;
}

@media screen and (max-width: 991px) {
  .lifecycle-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .lifecycle-flow li::after {
    display: none;
  }

  .early-access-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .lifecycle-flow,
  .early-access-steps {
    grid-template-columns: 1fr;
  }

  .experience-card {
    padding: 24px;
  }

  .experience-card-visual {
    padding-bottom: 0;
  }

  .early-access-modal .modal-header,
  .early-access-modal .modal-body,
  .early-access-modal .modal-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* NerthOne product page */
.nerthone-page {
  --one-primary: #1555ff;
  --one-dark: #11133d;
  --one-soft: #eff4ff;
  background: #fefeff;
  color: #101733;
}

.nerthone-page .btn-main-primary {
  background: var(--one-primary);
  border-color: var(--one-primary);
}

.nerthone-page .btn-main-primary:hover {
  background: #0b3ec7;
}

.nerthone-page .btn-outline-main-primary {
  border-color: var(--one-primary);
  color: var(--one-primary);
}

.nerthone-page .btn-outline-main-primary:hover {
  background: var(--one-primary);
  color: #fff;
}

.nerthone-page .bg-main-secondary,
.nerthone-page .ledger-tape {
  background: var(--one-dark);
}

.nerthone-nav {
  min-height: 76px;
  border-color: #ebe9f5 !important;
}

.nerthone-nav .navbar-brand {
  color: var(--one-dark);
}

.nerthone-hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  padding: 130px 0 70px;
  background-color: #f4f7ff;
}

.nerthone-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: 80px;
  border-radius: 50%;
  background: rgba(21, 85, 255, 0.12);
  filter: blur(2px);
}

.nerthone-hero .container {
  position: relative;
  z-index: 1;
}

.nerthone-hero .hero-heading {
  color: var(--one-dark);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.nerthone-hero .lead {
  color: #596078;
  max-width: 560px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  padding: 7px 11px;
  color: #5c647b;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dce5ff;
  border-radius: 99px;
  font-size: 0.78rem;
}

.hero-proof span::before {
  content: "✓";
  color: var(--one-primary);
  margin-right: 6px;
}

.nerthone-product-frame {
  position: relative;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d6e1ff;
  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(3, 34, 119, 0.2);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.nerthone-product-frame img {
  border-radius: 16px;
}

.nerthone-overview .overview-grid > div > div,
.nerthone-overview .overview-grid > div {
  height: 100%;
}

.nerthone-overview .overview-grid > div {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  /* border-radius: 18px; */
  background: rgba(255, 255, 255, 0.055);
}

.nerthone-overview .overview-grid p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.nerthone-features {
  background: #fff;
}

.product-feature-row {
  padding: 18px 20px;
  border: 1px solid #e0e7f7;
  border-radius: 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-feature-row:hover {
  transform: translateX(5px);
  border-color: #b9ccff;
  box-shadow: 0 12px 28px rgba(3, 34, 119, 0.07);
}

.product-feature-row .heading-2 {
  font-size: 1.15rem;
}

.product-feature-row p {
  color: #667087;
  margin-bottom: 0 !important;
}

.feature-visual {
  overflow: hidden;
  background: linear-gradient(160deg, #fff7e8, #eaf0ff);
  border-color: #dae4ff;
}

.nerthone-industries,
.nerthone-testimonials,
.nerthone-plans {
  background: #f5f7fc;
}

.nerthone-industries .industry-marquee-item .card {
  border-color: #dce4f5;
  /* box-shadow: 0 10px 28px rgba(3, 34, 119, 0.06); */
}

.nerthone-philosophy .custom-card {
  background: linear-gradient(145deg, #11133d, #032277) !important;
  border: 0;
  box-shadow: 0 32px 70px rgba(17, 19, 61, 0.2);
}

.nerthone-philosophy .custom-card p {
  color: rgba(255, 255, 255, 0.68);
}

.nerthone-platform .custom-card {
  border-color: #dce4f5;
  box-shadow: 0 24px 60px rgba(3, 34, 119, 0.09);
}

.nerthone-testimonials .testimonial-marquee-item .card {
  border-color: #dce4f5;
  box-shadow: 0 12px 32px rgba(3, 34, 119, 0.07);
}

.nerthone-testimonials .testimonial-quote {
  color: var(--one-primary);
}

.nerthone-shift .row.g-0 {
  gap: 16px;
}

.nerthone-shift .row.g-0 > div {
  flex: 1 1 400px;
}

.nerthone-shift .card {
  border-radius: 20px !important;
  padding: 22px;
}

.nerthone-shift .col-lg-5:last-child .card {
  background: var(--one-dark) !important;
  color: #fff;
}

.nerthone-plans .card {
  border-color: #dce4f5;
  box-shadow: 0 14px 40px rgba(3, 34, 119, 0.06);
}

.nerthone-plans .pricing-featured {
  border-color: var(--one-primary);
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(21, 85, 255, 0.2);
}

.nerthone-plans .pricing-popular {
  background: var(--one-primary);
}

.nerthone-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #11133d, #032277) !important;
}

.nerthone-cta .card {
  border-radius: 20px !important;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
}

@media screen and (max-width: 991px) {
  .nerthone-nav .container {
    flex-wrap: nowrap;
  }

  .nerthone-hero {
    height: auto;
    min-height: 0;
    padding: 130px 0 75px;
  }

  .nerthone-product-frame {
    transform: none;
  }

  .nerthone-plans .pricing-featured {
    transform: none;
  }
}

@media screen and (max-width: 991px) {
  .nerthone-page .nerthone-hero {
    height: auto;
    min-height: 0;
  }

  .nerthone-page .nerthone-hero .hero-heading {
    font-size: 3.25rem;
  }
}

@media screen and (max-width: 576px) {
  .nerthone-nav .gap-4 {
    gap: 0.75rem !important;
  }

  .nerthone-nav .btn {
    padding: 0.65rem 0.8rem;
  }

  .nerthone-hero .hero-heading {
    font-size: 2.55rem;
  }

  .nerthone-product-frame {
    padding: 8px;
    border-radius: 18px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Satoshi-Light",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

a {
  text-decoration: none;
  color: var(--primary);
}

.btn {
  border-radius: 8px !important;
  font-size: 14px;
  font-family:
    "Satoshi-Medium",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 500;
}

.btn-main-primary {
  background-color: var(--primary);
  color: #fff;
}

.timer {
  font-size: 13px;
  font-weight: 700 !important;
  color: var(--primary);
}

.count-num {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: #fff;
  flex-shrink: 0;
  font-size: 14px;
}

.text-main-secondary {
  color: var(--secondary) !important;
}

.bg-main-secondary {
  background-color: var(--secondary);
}

.btn-main-primary:hover {
  background-color: rgb(6, 43, 146);
  color: #fff;
}

.hero-heading {
  font-size: 4rem;
  font-family: "Satoshi-Medium";
}

.heading-1 {
  font-family: "Satoshi-Medium";
  font-size: 3.5rem;
}

.heading-2 {
  font-family: "Satoshi-Medium";
  font-size: 1.8rem;
}

.bg-color-1 {
  background-color: #eff1ff;
  border: 1px solid #eaebed;
}

.bg-color-2 {
  background-color: #fdffef;
  border: 1px solid #eaebed;
}

.bg-color-3 {
  background-color: #fffaf0;
  border: 1px solid #eaebed;
}

.bg-color-4 {
  background-color: #f7f5ff;
  border: 1px solid #eaebed;
}

.bg-color-5 {
  background-color: #fff5e6;
  border: 1px solid #eaebed;
}

.font-sm {
  font-size: 0.7rem;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.custom-card {
  border: 0.5px solid #eaebed;
  border-radius: 20px;
}

.testimonial-quote {
  height: 44px;
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-family: "Satoshi-Medium";
  font-size: 0.8rem;
}

.pricing-featured {
  position: relative;
  border: 2px solid var(--primary);
  box-shadow: 0 20px 45px -30px rgba(21, 85, 255, 0.55);
}

.text-main-primary {
  color: var(--primary) !important;
}

.btn-outline-main-primary {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline-main-primary:hover {
  background-color: var(--primary);
  color: #fff;
}

.pricing-popular {
  position: absolute;
  top: -13px;
  /* right: 24px; */
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--primary);
  color: #fff;
  font-family: "Satoshi-Medium";
  font-size: 0.72rem;
}

.testimonial-marquee {
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}

.testimonial-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: testimonial-marquee 65s linear infinite;
}

.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-marquee-item {
  flex: 0 0 360px;
}

@keyframes testimonial-marquee {
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.text-muted {
  color: #66737f;
}

.text-medium {
  font-family:
    "Satoshi-Medium",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

.text-regular {
  font-family:
    "Satoshi-Medium",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

.add-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.box {
  display: inline-block;
  color: #fff;
  padding-right: 5px;
  padding-left: 5px;
}

.form-control-lg {
  height: 50px;
}

.rounded-10 {
  border-radius: 10px !important;
}

.box::before {
  content: "";
  background-color: var(--primary);
  /* height: 90%; */
  width: 100%;
  position: absolute;
  transform: skew(-3deg, -3deg);
  z-index: -1;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
}

.store-icon {
  height: 40px;
}

.box-img-1 {
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.object-fit-cover {
  object-fit: cover;
  object-position: center;
}

/* wallet section — layout handled by Bootstrap 5 */
.wallet-card {
  background: linear-gradient(145deg, #1a1a1d, #111114);
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  color: #fff;
}
.wallet-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.15),
    transparent 70%
  );
  pointer-events: none;
}
.wallet-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.wallet-brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}
.wallet-chip {
  width: 44px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  opacity: 0.9;
  flex-shrink: 0;
}
.wallet-balance-label {
  font-size: 11px;
  color: var(--white-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wallet-balance {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.wallet-balance span {
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
}
.wallet-stat-label {
  font-size: 11px;
  color: var(--white-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wallet-stat-value {
  font-size: 14px;
  color: var(--gold);
  font-family: "DM Mono", monospace;
}
.wallet-info h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.wallet-info h3 em {
  color: var(--gold);
}
.wallet-info p {
  color: var(--white-dim);
  line-height: 1.8;
  font-size: 14px;
}
.cashback-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(11, 34, 244, 0.25);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gold-light);
}
.cashback-highlight strong {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.wallet-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--white-dim);
}
.wallet-feature::before {
  content: "✓";
  color: #fff;
  height: 25px;
  width: 25px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.store-icon-2 {
  height: 30px;
}

@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 1.8rem;
    font-family: "Satoshi-Medium";
  }

  .store-icon-2 {
    height: 25px;
  }

  .box::before {
    content: "";
    background-color: var(--primary);
    height: 100%;
    width: 100%;
    position: absolute;
    transform: skew(-3deg, -3deg);
    z-index: -1;
    top: 2px;
    bottom: 0;
    right: 0;
    left: 0;
  }

  .heading-1 {
    font-family: "Satoshi-Medium";
    font-size: 2rem;
  }

  .heading-2 {
    font-family: "Satoshi-Medium";
    font-size: 1.3rem;
  }

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-right: 25px;
    padding-left: 25px;
  }

  .wallet-info h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
  }
}

@media screen and (min-width: 991px) {
  .text-blockq {
    font-size: 1.5rem;
  }
}

.industry-marquee {
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}

.custom-hero-height {
  height: 90dvh;
}

.ledger-tape {
  overflow: hidden;
  padding: 16px 0;
  background: rgb(2, 2, 57);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ledger-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: ledger-marquee 28s linear infinite;
}

.ledger-tape:hover .ledger-track {
  animation-play-state: paused;
}

.ledger-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  font-size: 13px;
  white-space: nowrap;
}

.ledger-item .name {
  color: #fff;
  font-family: "Satoshi-Medium";
}

.ledger-item .dot {
  color: rgba(255, 255, 255, 0.35);
}

.ledger-item .status {
  padding: 4px 9px;
  border-radius: 99px;
  font-size: 11px;
  font-family: "Satoshi-Medium";
}

.ledger-item .status-paid {
  color: #8ff0ba;
  background: rgba(30, 158, 90, 0.18);
}

.ledger-item .status-due {
  color: #ffd58c;
  background: rgba(226, 166, 59, 0.18);
}

@keyframes ledger-marquee {
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.industry-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: industry-marquee 32s linear infinite;
}

.industry-marquee:hover .industry-marquee-track {
  animation-play-state: paused;
}

.industry-marquee-item {
  flex: 0 0 260px;
}

.industry-marquee-item .card {
  justify-content: center;
  min-height: 94px;
}

@keyframes industry-marquee {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testimonial-marquee-track {
    animation: none;
  }

  .industry-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .industry-marquee-track {
    animation: none;
  }

  .ledger-tape {
    overflow-x: auto;
  }

  .ledger-track {
    animation: none;
  }
}

@media screen and (max-width: 576px) {
  .testimonial-marquee-item {
    flex-basis: 290px;
  }

  .nerthone-page .nerthone-hero .hero-heading {
    font-size: 2.55rem;
  }
}

@media screen and (min-width: 577px) and (max-width: 991px) {
  .nerthone-page .nerthone-hero {
    height: auto;
    min-height: 0;
  }

  .nerthone-page .nerthone-hero .hero-heading {
    font-size: 3.25rem;
  }
}
