/* Theme tokens, typography, layouts and original components. */

:root {
  --bg: #fdfdfd;
  --surface: #f7f6f4;
  --surface2: #eeece8;
  --orange: #ff6b01;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e5e2dd;
  --nav: #ffffffe3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

html[data-theme=dark] {
  --bg: #0d0d0d;
  --surface: #171717;
  --surface2: #212121;
  --text: #f2f1ee;
  --muted: #9a9a9e;
  --border: #2a2a2a;
  --nav: #171717e3;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.7 'General Sans',Arial,sans-serif;
  transition: background .35s,color .35s;
}

a {
  color: inherit;
  text-decoration: none;
}

button,input,select,textarea {
  font: inherit;
}

button,a,input,select,textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:focus-visible,a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

.container {
  width: min(1180px,calc(100% - 80px));
  margin: auto;
}

h1,h2,h3 {
  font-family: 'Clash Display',Arial,sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(48px,5.2vw,76px);
  margin: 22px 0;
}

h2 {
  font-size: clamp(36px,3.4vw,50px);
  margin: 14px 0 22px;
}

h3 {
  font-size: 23px;
  letter-spacing: -.02em;
}

p {
  color: var(--muted);
}

em {
  font-style: normal;
  color: var(--orange);
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--orange);
}

.nav {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px,calc(100% - 32px));
  height: 74px;
  padding: 10px 14px 10px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--nav);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 30px #00000006;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #0d0f14;
  color: white;
  padding: 9px 15px;
  border-radius: 28px;
  font-weight: 800;
  letter-spacing: -.8px;
  font-size: 19px;
  white-space: nowrap;
}

.logo b {
  color: var(--orange);
}

.logomark {
  font-size: 30px;
  line-height: 1;
  position: relative;
  color: white;
  display: inline-block;
  width: 26px;
}

.logomark i {
  position: absolute;
  left: 10px;
  top: 4px;
  font-style: normal;
  font-size: 21px;
  color: var(--orange);
}

nav {
  display: flex;
  gap: 23px;
  margin-left: auto;
}

nav a {
  font-size: 12px;
  font-weight: 600;
  position: relative;
  padding: 13px 0;
}

nav a.active {
  color: var(--orange);
}

nav a.active:after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav button {
  border: 0;
  background: none;
  color: var(--text);
  font-size: 21px;
  width: 30px;
  height: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: white;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  transition: .25s;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px #ff6b0118,0 9px 25px #ff6b0140;
}

.button span {
  font-size: 19px;
  line-height: 1;
}

.button.small {
  padding: 10px 17px;
  border-radius: 28px;
  gap: 12px;
  font-size: 11px;
}

.button.outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

#menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding-top: 157px;
  padding-bottom: 62px;
  align-items: center;
}

.pill {
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin: 0;
}

.pill span,.green-dot {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--orange);
}

.hero h1 {
  font-size: clamp(46px,5.25vw,74px);
  line-height: 1.03;
  margin: 22px 0;
  background: linear-gradient(120deg,var(--text),#777);
  background-clip: text;
  color: transparent;
}

.hero em {
  background: linear-gradient(120deg,#ff8a3d,#ff6b01);
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 15px;
  line-height: 1.8;
  max-width: 510px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 27px;
}

.stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
}

.stats>div+div {
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

.stats strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.stats strong span {
  color: var(--orange);
}

.stats small {
  font-size: 10px;
  color: var(--muted);
}

.orbit-panel {
  position: relative;
  text-align: center;
}

.orbit-kicker {
  font-size: 9px;
  letter-spacing: 2.4px;
  color: var(--muted);
}

.orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 10px auto 0;
  background: radial-gradient(circle,#ff6b0112,transparent 65%);
}

.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.r1 {
  width: 58%;
  height: 58%;
}

.r2 {
  width: 91%;
  height: 91%;
  border-style: dashed;
}

.hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 32%;
  height: 32%;
  border: 7px solid var(--bg);
  border-radius: 50%;
  background: #e5c9b8;
  overflow: hidden;
  animation: hub 3s ease-in-out infinite;
  box-shadow: 0 0 0 1px #ff6b0140;
}

.hub svg {
  width: 100%;
  height: 100%;
  color: #9b6952;
  opacity: .65;
}

.hub>span {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
  font-size: 7px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 1px;
}

.satellite {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  animation: spin 34s linear infinite;
}

.avatar {
  position: absolute;
  width: 60px;
  height: 60px;
  left: -30px;
  top: -30px;
  border: 5px solid var(--bg);
  border-radius: 50%;
  background: #d8ddd3;
  box-shadow: 0 4px 15px #0001;
  overflow: hidden;
  animation: counter 34s linear infinite;
}

.avatar svg {
  color: #899484;
  width: 100%;
  height: 100%;
}

.s0 {
  transform-origin: 0 0;
  --angle: 0deg;
  --radius: 145px;
}

.s1 {
  --angle: 120deg;
  --radius: 145px;
}

.s2 {
  --angle: 240deg;
  --radius: 145px;
}

.s3 {
  --angle: 55deg;
  --radius: 228px;
  animation-duration: 48s;
  animation-direction: reverse;
}

.s4 {
  --angle: 175deg;
  --radius: 228px;
  animation-duration: 48s;
  animation-direction: reverse;
}

.s5 {
  --angle: 295deg;
  --radius: 228px;
  animation-duration: 48s;
  animation-direction: reverse;
}

.s3 .avatar,.s4 .avatar,.s5 .avatar {
  animation-duration: 48s;
  animation-direction: reverse;
  background: #e2d5d0;
}

.s3 svg,.s4 svg,.s5 svg {
  color: #a99184;
}

.orbit-tag {
  position: absolute;
  z-index: 2;
  background: var(--bg);
  box-shadow: 0 8px 30px #00000009;
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tag-one {
  left: 0;
  top: 65%;
  padding: 13px 17px;
  font-size: 9px;
  text-align: left;
}

.tag-one i {
  font-style: normal;
  background: #ff6b0115;
  color: var(--orange);
  font-size: 24px;
  padding: 0 10px;
  border-radius: 7px;
}

.tag-one strong {
  display: block;
  font-size: 10px;
}

.tag-two {
  right: -5px;
  top: 24%;
  padding: 10px 12px;
  font-size: 8px;
}

.green-dot {
  display: inline-block;
  background: #40a16e;
}

.orbit-note {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

@keyframes spin {
  from {
    transform: rotate(var(--angle)) translateX(var(--radius));
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--radius));
  }
}

@keyframes counter {
  from {
    transform: rotate(calc(0deg - var(--angle)));
  }
  to {
    transform: rotate(calc(-360deg - var(--angle)));
  }
}

@keyframes hub {
  50% {
    box-shadow: 0 0 40px #ff6b0135;
  }
}

.trust {
  border-block: 1px solid var(--border);
  padding: 25px 0;
}

.trust-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.trust-inner>span {
  font-size: 8px;
  letter-spacing: 1px;
  min-width: 145px;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg,transparent,black 4%,black 96%,transparent);
}

.marquee>div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 55px;
  animation: marquee 26s linear infinite;
}

.marquee:hover>div {
  animation-play-state: paused;
}

.marquee b {
  font-family: Arial,sans-serif;
  font-size: 25px;
  filter: grayscale(1);
  opacity: .55;
}

.marquee b:hover {
  filter: none;
  opacity: 1;
}

.amazon {
  color: #ff9900;
}

.shopify {
  color: #95bf47;
  font-style: italic;
}

.ebay {
  color: #e53238;
  font-weight: 400!important;
}

.ebay span {
  color: #0064d2;
}

.ebay i {
  color: #f5af02;
  font-style: normal;
}

.etsy {
  color: #f1641e;
  font-family: Georgia,serif!important;
}

.walmart {
  color: #0071ce;
}

.alibaba {
  color: #ff6a00;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding-block: 90px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
  gap: 30px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  font-size: 13px;
}

.text-link {
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  gap: 25px;
  align-items: center;
}

.text-link:hover {
  color: var(--orange);
}

.grid {
  display: grid;
  gap: 20px;
}

.services {
  grid-template-columns: repeat(4,1fr);
}

.card {
  position: relative;
  isolation: isolate;
  border-radius: 14px;
  padding: 25px 22px;
  background: var(--surface);
  overflow: hidden;
  transition: transform .25s;
}

.card:before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: -100%;
  background: conic-gradient(from 0deg,transparent 65%,#ff6b0155 85%,transparent 95%);
  animation: border-spin 7s linear infinite;
}

.card:after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: 13px;
  background: var(--surface);
}

@keyframes border-spin {
  to {
    transform: rotate(360deg);
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px #ff6b0112;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #ff6b0110;
  color: var(--orange);
  font-size: 23px;
}

.number {
  font-size: 10px;
  color: var(--muted);
}

.card h3 {
  font-size: 19px;
  margin: 23px 0 12px;
}

.card p {
  font-size: 11px;
  min-height: 75px;
}

.card .text-link {
  font-size: 9px;
  gap: 12px;
}

.leadership {
  background: var(--surface);
}

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

.portrait {
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(140deg,#e7d9ca,#b7b8a4);
  display: flex;
  align-items: end;
  justify-content: center;
}

.portrait svg {
  height: 90%;
  width: 90%;
  color: #8c8c78;
}

.portrait span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: #ffffffdc;
  color: #333;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 10px;
}

.split p {
  font-size: 13px;
}

.split .button {
  margin-top: 15px;
}

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

.home-cases {
  grid-template-columns: repeat(3,1fr);
}

.case {
  min-width: 0;
}

.dashboard {
  background: white;
  color: #333;
  border: 1px solid #e2e5e4;
  border-top: 4px solid #167c80;
  border-radius: 10px;
  overflow: hidden;
  padding: 16px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.dash-header b {
  font-weight: 400;
}

.dash-header>span+span {
  font-size: 7px;
  color: #777;
}

.demo-label {
  font-size: 6px;
  letter-spacing: .6px;
  color: #777;
}

.metrics {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}

.metrics div {
  flex: 1;
  font-size: 8px;
  color: #777;
}

.metrics strong {
  display: block;
  font-size: 20px;
  color: #187d80;
}

.chart-placeholder {
  height: 100px;
  margin-top: 16px;
  background: repeating-linear-gradient(0deg,#fff 0,#fff 24px,#edf3f3 25px);
  display: grid;
  place-items: center;
  text-align: center;
}

.chart-placeholder span {
  font-size: 9px;
  color: #789496;
}

.case-caption {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
}

.case-caption h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 8px 0;
}

.case-caption .eyebrow {
  font-size: 7px;
}

.case-caption>span {
  font-size: 24px;
}

.course-banner {
  background: #171717;
  color: #fff;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 45px;
}

.course-banner h2 {
  font-size: 32px;
}

.course-banner p:not(.eyebrow) {
  font-size: 12px;
  color: #aaa;
}

.closing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  background: radial-gradient(ellipse at 90% 80%,#ff6b0115,transparent 70%);
  border: 1px solid #ff6b0150;
  border-radius: 18px;
  padding: 48px;
  margin-top: 90px;
  margin-bottom: 90px;
  animation: hub 5s ease-in-out infinite;
}

.closing h2 {
  font-size: 45px;
}

.closing p:not(.eyebrow) {
  font-size: 12px;
}

footer {
  background: #141414;
  color: #f5f5f5;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
}

.footer-grid .logo {
  width: max-content;
  padding-left: 0;
  background: none;
}

.footer-grid p {
  color: #999;
  font-size: 12px;
}

.footer-grid h4 {
  font-size: 12px;
  margin: 8px 0 20px;
}

.footer-grid>div>a:not(.logo) {
  display: block;
  font-size: 11px;
  color: #999;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--orange)!important;
}

.footer-grid .eyebrow {
  font-size: 7px;
}

.footer-bottom {
  margin-top: 50px;
  padding-block: 22px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #777;
}

.footer-bottom b {
  color: #bbb;
  font-weight: 400;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 15;
  background: #25d366;
  color: white;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 6px 18px #25d36640;
}

.whatsapp:before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid #25d366;
  border-radius: 50%;
  animation: ping 2.5s infinite;
}

.whatsapp svg {
  width: 32px;
  height: 32px;
}

@keyframes ping {
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

.page-head {
  padding-top: 145px;
  padding-bottom: 60px;
}

.page-head h1 {
  max-width: 900px;
}

.breadcrumb {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 38px;
}

.breadcrumb a {
  color: var(--orange);
}

.top-tight {
  padding-top: 0;
}

.notice {
  background: var(--surface);
  padding: 18px 22px;
  font-size: 12px;
  border-left: 3px solid var(--orange);
  margin: 0 0 30px;
}

.testimonial {
  text-align: center;
  margin-top: 90px;
  padding: 50px;
  background: var(--surface);
  border-radius: 14px;
}

.testimonial p {
  font-size: 12px;
}

.cfo {
  margin: 90px 0;
}

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

.team-avatar {
  width: 84px;
  height: 84px;
  background: var(--surface2);
  border-radius: 50%;
  overflow: hidden;
  color: #a8a397;
  margin-bottom: 20px;
}

.team .card p {
  min-height: auto;
}

.team h3 {
  margin-top: 12px;
}

.contact-section {
  align-items: start;
  padding-bottom: 90px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-line>span {
  font-size: 24px;
  color: var(--orange);
}

.contact-line small {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}

.contact-line p {
  margin: 4px 0;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 35px;
  border-radius: 16px;
}

.form-card h3 {
  margin: 0;
}

.form-card label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-top: 18px;
}

input,select,textarea {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px;
  color: var(--text);
  margin-top: 6px;
  outline: none;
  font-size: 12px;
}

input:focus,select:focus,textarea:focus {
  border-color: var(--orange);
}

textarea {
  resize: vertical;
}

.form-card .button {
  width: 100%;
  margin-top: 20px;
}

.form-card .form-note {
  font-size: 10px;
}

#form-result {
  padding: 15px;
  border: 1px solid var(--orange);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s,transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}
