/* Bento Guide marketing website styles — cleaned v43 */

/* Animations */
@keyframes tickerMove{from{transform:translateX(0)}to{transform:translateX(-50%)}}

@keyframes themeAccent{0%,100%{--theme-accent:#7AA7FF}33%{--theme-accent:#9DD7C2}66%{--theme-accent:#F7C56B}}

/* Base, components, and page sections */
:root{
  --blue: #2563EB;
  --blue-2: #1E4FE1;
  --navy: #0B132B;
  --ink: #121A31;
  --muted: #64748B;
  --line: #D9E1EE;
  --soft: #F4F6F8;
  --soft-blue: #EAF0FF;
  --white: #FFFFFF;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 80px rgba(11,19,43,.12);
  --shadow-soft: 0 14px 50px rgba(11,19,43,.08);
  --container: 1180px;
  --headline-font: "Fraunces", Georgia, "Times New Roman", serif;
  --body-font: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body{
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: linear-gradient(180deg,#fff 0%,#f8fbff 58%,#fff 100%);
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.container{
  width: min(var(--container),calc(100% - 44px));
  margin-inline: auto;
}

h1,h2,h3,p{
  margin-top: 0;
}

h1,h2{
  font-family: var(--headline-font);
  font-weight: 820;
  color: var(--navy);
  letter-spacing: -.055em;
}

h1{
  font-size: clamp(48px,6.6vw,86px);
  line-height: .98;
  margin: 22px 0 24px;
}

h2{
  font-size: clamp(34px,4.4vw,58px);
  line-height: 1.04;
  margin: 0;
}

h3{
  font-family: var(--headline-font);
  font-weight: 760;
  color: var(--navy);
  letter-spacing: -.035em;
  line-height: 1.12;
  margin: 0 0 10px;
}

p{
  color: #4B5E78;
}

.lead{
  font-size: clamp(18px,2vw,22px);
  line-height: 1.65;
  color: #41506A;
  max-width: 760px;
  margin-bottom: 28px;
}

.text-blue{
  color: var(--blue);
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(217,225,238,.72);
}

.nav-wrap{
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link{
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand-link img{
  width: 218px;
  height: auto;
}

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

.nav a{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #53617A;
  padding: 10px 12px;
  border-radius: 999px;
  transition: .2s ease;
  font-weight: 800;
}

.nav a:hover,.nav a.active{
  color: var(--navy);
  background: #EEF3FF;
}

.nav-cta{
  background: var(--navy) !important;
  color: white !important;
  border: 1px solid var(--navy);
}

.mobile-toggle{
  display: none;
  border: 0;
  background: #EEF3FF;
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span{
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  border-radius: 2px;
}

.mobile-toggle span:before,.mobile-toggle span:after{
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: .2s ease;
}

.mobile-toggle span:before{
  top: -7px;
}

.mobile-toggle span:after{
  top: 7px;
}

body.nav-open .mobile-toggle span{
  background: transparent;
}

body.nav-open .mobile-toggle span:before{
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .mobile-toggle span:after{
  top: 0;
  transform: rotate(-45deg);
}

.kicker,.eyebrow{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #52617B;
  font-weight: 800;
}

.kicker:before,.eyebrow:before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37,99,235,.12);
}

.hero{
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
}

.hero:before{
  content: "";
  position: absolute;
  inset: -22% -12% auto auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(37,99,235,.14),rgba(37,99,235,0) 68%);
  pointer-events: none;
}

.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px 56px;
  align-items: center;
}

.hero-copy{
  grid-column: 1;
  grid-row: 1;
}

.hero-grid>.metrics{
  grid-column: 1;
  grid-row: 2;
}

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

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: .22s ease;
  cursor: pointer;
}

.btn-primary{
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 40px rgba(37,99,235,.26);
}

.btn-primary:hover{
  transform: translateY(-2px);
  background: var(--blue-2);
}

.btn-secondary{
  background: white;
  border-color: var(--line);
  color: var(--navy);
}

.btn-secondary:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-dark{
  background: var(--navy);
  color: white;
}

.metrics{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 30px;
}

.metric{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 17px;
  box-shadow: var(--shadow-soft);
}

.metric strong{
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 5px;
}

.metric span{
  display: block;
  color: #65738B;
  font-size: 13px;
  line-height: 1.45;
}

.hero-art{
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
}

.product-window{
  border: 1px solid rgba(217,225,238,.95);
  background: linear-gradient(180deg,#fff,#f7f9fd);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.smart-window{
  transform: none;
  box-shadow: 0 26px 82px rgba(11,19,43,.13);
}

.window-top{
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
}

.dots{
  display: flex;
  gap: 7px;
}

.dots i{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #D8E1F0;
}

.mini-brand{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-brand img{
  width: 24px;
  flex: 0 0 auto;
}

.window-status{
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #2461E8;
  background: #EAF0FF;
  border: 1px solid #D8E4FF;
  border-radius: 999px;
  padding: 6px 9px;
  white-space: nowrap;
}

.studio-shell{
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 455px;
  background: linear-gradient(180deg,#FBFCFF 0%,#F6F8FC 100%);
}

.studio-rail{
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #fff;
}

.studio-rail span{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #EEF3FF;
  display: block;
}

.studio-rail .rail-active{
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(37,99,235,.25);
}

.studio-main{
  padding: 18px;
  min-width: 0;
}

.studio-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.studio-head small{
  display: block;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #738198;
  font-size: 10px;
  font-weight: 850;
}

.studio-head strong{
  display: block;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.status-chip{
  white-space: nowrap;
  background: #EEF8F2;
  color: #16864B;
  border: 1px solid #CFEEDD;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 850;
}

.studio-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  min-width: 0;
}

.ui-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(11,19,43,.06);
  min-width: 0;
  overflow: hidden;
}

.ui-card-head,.ui-row,.doc-line{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ui-card-head span,.ui-row span,.doc-line span{
  font-size: 12px;
  color: #65738B;
  font-weight: 750;
}

.ui-card-head b,.ui-row b{
  font-size: 12px;
  color: var(--navy);
}

.mini-products{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin: 13px 0;
}

.mini-products i{
  height: 72px;
  border-radius: 15px;
  background: linear-gradient(145deg,#EDF3FF,#fff);
  border: 1px solid #DDE6F4;
  position: relative;
  overflow: hidden;
}

.mini-products i:after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 18px;
  border-radius: 8px;
  background: #2563EB22;
}

.ui-row{
  border-top: 1px solid #EEF2F8;
  padding-top: 9px;
  margin-top: 9px;
}

.ui-total{
  background: linear-gradient(145deg,var(--navy),#14204A);
  color: #fff;
}

.ui-total span{
  font-size: 11px;
  color: #C8D5EE;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
}

.ui-total strong{
  display: block;
  font-family: var(--headline-font);
  font-size: 36px;
  letter-spacing: -.06em;
  margin: 4px 0;
  color: #fff;
  line-height: 1;
}

.ui-total em{
  font-style: normal;
  color: #AFC7FF;
  font-size: 12px;
}

.doc-line{
  padding: 9px 0;
  border-top: 1px solid #EEF2F8;
}

.doc-line i{
  font-style: normal;
  background: #EEF3FF;
  color: #2857C7;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.share-url{
  height: 34px;
  border: 1px dashed #BFD0F0;
  border-radius: 12px;
  background: #F7FAFF;
  color: #64748B;
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin: 12px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-line{
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr .65fr;
  gap: 6px;
}

.activity-line span{
  height: 8px;
  border-radius: 999px;
  background: #DDE8FF;
}

.activity-line span:first-child{
  background: var(--blue);
}

.floating-badge{
  position: absolute;
  right: 18px;
  bottom: -42px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 15px 18px;
  box-shadow: var(--shadow-soft);
}

.floating-badge img{
  width: 42px;
}

.floating-badge strong{
  display: block;
  color: var(--navy);
}

.floating-badge span{
  display: block;
  color: #64748B;
  font-size: 13px;
}

.strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  overflow: hidden;
}

.ticker-strip{
  position: relative;
}

.ticker-strip:before,.ticker-strip:after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-strip:before{
  left: 0;
  background: linear-gradient(90deg,#fff,rgba(255,255,255,0));
}

.ticker-strip:after{
  right: 0;
  background: linear-gradient(270deg,#fff,rgba(255,255,255,0));
}

.ticker-track{
  display: flex;
  width: max-content;
  animation: tickerMove 34s linear infinite;
  padding: 14px 0;
  will-change: transform;
}

.ticker-group{
  display: flex;
  gap: 14px;
  padding-right: 14px;
  flex: 0 0 auto;
  min-width: 100vw;
  justify-content: space-around;
}

.ticker-group span{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #52617B;
  font-weight: 850;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  box-shadow: 0 8px 24px rgba(11,19,43,.045);
}

.ticker-group span:nth-child(2n){
  background: #F8FAFF;
}

.ticker-group span:nth-child(4n){
  color: var(--blue);
  border-color: #BFD0F0;
  background: #EEF4FF;
}

.ticker-group .ticker-night{
  color: #EAF1FF;
  border-color: rgba(11,19,43,.18);
  background: linear-gradient(135deg,#101B3D,#172554);
  box-shadow: none;
}

.section{
  padding: 92px 0;
}

.section-head{
  display: block;
  max-width: 960px;
  margin: 0 0 42px;
}

.section-head .eyebrow{
  margin-bottom: 14px;
}

.section-head h2{
  max-width: 880px;
}

.section-head p{
  max-width: 760px;
  margin: 18px 0 0;
  color: #5A6880;
  font-size: 18px;
  line-height: 1.66;
}

.section-intro{
  color: #5A6880;
  font-size: 18px;
  line-height: 1.66;
  margin: 16px 0 0;
  max-width: 760px;
}

.split{
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: start;
}

.sticky-note{
  position: sticky;
  top: 112px;
}

.line-list{
  display: grid;
  gap: 14px;
}

.line-item{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.num,.feature-num{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #EEF3FF;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.line-item h3{
  font-size: 22px;
}

.line-item p{
  margin: 0;
  color: #5A6880;
}

.compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-col,.card,.visual-card,.price-card,.pricing-note,.guide-panel,.feature-figure,.founder-panel,.software-map article,.trade-grid article,.contact-method,.form-card,.soft-card,.status-banner,.access-flow article,.access-card,.access-list,.access-final,.purpose-list article{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.compare-col:before{
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: #CBD5E1;
}

.compare-bento{
  border-color: #BFD0F0;
  box-shadow: 0 20px 64px rgba(37,99,235,.13);
}

.compare-bento:before{
  background: linear-gradient(90deg,var(--blue),#75A2FF);
}

.compare-col header small{
  display: block;
  color: #64748B;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.compare-col header b{
  display: block;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.compare-col ul,.check-list{
  list-style: none;
  padding: 8px 24px 18px;
  margin: 0;
  display: grid;
  gap: 0;
}

.compare-col li,.check-list li{
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  padding: 14px 0;
  color: #4F6078;
  border-bottom: 1px solid #EEF2F8;
}

.compare-col li:last-child,.check-list li:last-child{
  border-bottom: 0;
}

.compare-col li:before,.check-list li:before{
  content: "";
  position: static;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #AAB7CA;
  margin-top: .52em;
}

.compare-col li.good:before,.check-list.good li:before{
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(37,99,235,.11);
}

.compare-col li.bad:before,.check-list.bad li:before{
  background: #94A3B8;
}

.bento-grid{
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 18px;
}

.card{
  padding: 26px;
  min-height: 220px;
}

.span-4{
  grid-column: span 4;
}

.span-5{
  grid-column: span 5;
}

.span-6{
  grid-column: span 6;
}

.span-7{
  grid-column: span 7;
}

.span-8{
  grid-column: span 8;
}

.span-12{
  grid-column: span 12;
}

.card p{
  color: #5A6880;
  margin: 0;
}

.icon-dot{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #EEF3FF;
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.icon-dot svg{
  width: 24px;
  height: 24px;
}

.offer-theme-demo{
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  padding: 12px;
}

.offer-theme-demo .theme-swatches{
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}

.offer-theme-demo .theme-swatches span{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.38);
}

.offer-theme-demo .theme-swatches span:nth-child(1){
  background: #7AA7FF;
}

.offer-theme-demo .theme-swatches span:nth-child(2){
  background: #9DD7C2;
}

.offer-theme-demo .theme-swatches span:nth-child(3){
  background: #F7C56B;
}

.offer-theme-demo .theme-swatches span:nth-child(4){
  background: #D6C7FF;
}

.theme-page{
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 8px;
  animation: themeAccent 7s ease-in-out infinite;
}

.theme-page b{
  height: 10px;
  width: 42%;
  border-radius: 999px;
  background: var(--theme-accent,#7AA7FF);
  display: block;
}

.theme-page i{
  height: 8px;
  border-radius: 999px;
  background: #E8EEF7;
  display: block;
}

.theme-page i:nth-of-type(2){
  width: 68%;
}

.theme-page div{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
  margin-top: 2px;
}

.theme-page div span{
  height: 28px;
  border-radius: 10px;
  background: #F2F6FD;
  border: 1px solid #E3EAF5;
}

.spec-card-preview{
  margin-top: 22px;
  border: 1px solid #DDE6F4;
  border-radius: 18px;
  background: #fff;
  padding: 11px;
  display: grid;
  gap: 9px;
}

.spec-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E9EEF6;
  padding-bottom: 7px;
}

.spec-top span{
  font-size: 8px;
  letter-spacing: .18em;
  color: var(--blue);
  font-weight: 900;
}

.spec-top b{
  font-size: 9px;
  letter-spacing: .13em;
  color: #64748B;
}

.spec-body{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 9px;
}

.spec-image{
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(145deg,#EAF0FF,#fff);
  border: 1px solid #DDE6F4;
}

.spec-details{
  display: grid;
  gap: 5px;
  align-content: start;
}

.spec-details b{
  font-size: 10px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.spec-details span{
  height: 8px;
  border-radius: 999px;
  background: #E6ECF5;
}

.spec-details span:nth-child(3){
  width: 78%;
}

.spec-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.spec-grid span{
  height: 30px;
  border-radius: 10px;
  background: #F8FAFF;
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.dark-card{
  background: linear-gradient(145deg,#0B132B 0%,#14204A 100%);
  color: #fff;
}

.dark-card h3,.dark-card p{
  color: #fff;
}

.blue-card{
  background: linear-gradient(145deg,#2563EB 0%,#174CC8 48%,#0B132B 100%);
  color: #fff;
}

.blue-card h3,.blue-card p{
  color: #fff;
}

.visual-grid,.software-map,.trade-grid{
  display: grid;
  gap: 18px;
}

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

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

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

.visual-card{
  padding: 18px;
}

.visual-card h3{
  font-size: 24px;
  margin: 18px 0 8px;
}

.visual-card p{
  margin: 0;
  color: #64748B;
}

.visual-window{
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg,#fff,#F8FAFE);
  padding: 14px;
  overflow: hidden;
}

.visual-top,.figure-top{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #64748B;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.visual-top span{
  width: 26px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  display: block;
}

.workspace-schema{
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.schema-side{
  display: grid;
  gap: 8px;
}

.schema-side span,.record-data-grid span,.flow-outputs span{
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid #DDE6F4;
  border-radius: 14px;
  background: #fff;
  color: #52617B;
  font-size: 10.5px;
  font-weight: 850;
  text-align: center;
}

.schema-core{
  min-height: 126px;
  border-radius: 20px;
  border: 1px solid #BFD0F0;
  background: linear-gradient(180deg,#EFF5FF,#fff);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px 10px;
}

.schema-core b,.flow-source b,.record-note b{
  display: block;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: 18px;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.schema-core small,.flow-source small,.record-note small{
  display: block;
  margin-top: 6px;
  color: #64748B;
  font-size: 10.5px;
  font-weight: 750;
  line-height: 1.35;
}

.record-schema{
  display: grid;
  gap: 10px;
}

.record-media{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid #DDE6F4;
  border-radius: 18px;
  background: #fff;
  padding: 9px;
}

.record-media i{
  display: block;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg,#DDEBFF,#fff);
  border: 1px solid #CFE0FF;
}

.record-media span{
  color: var(--navy);
  font-weight: 900;
  font-size: 12px;
}

.record-data-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.record-note{
  border-radius: 16px;
  border: 1px solid #DDE6F4;
  background: linear-gradient(90deg,#F8FAFF,#fff);
  padding: 12px 14px;
}

.output-flow{
  display: grid;
  grid-template-columns: 1fr 18px 1.25fr;
  gap: 10px;
  align-items: center;
  min-height: 128px;
}

.flow-source{
  border-radius: 20px;
  border: 1px solid #BFD0F0;
  background: linear-gradient(180deg,#EFF5FF,#fff);
  padding: 18px 12px;
  text-align: center;
}

.output-flow > i{
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #BFD0F0;
}

.flow-outputs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.flow-outputs .output-wide{
  grid-column: 1/-1;
  min-height: 40px;
}

.software-map article,.trade-grid article{
  padding: 22px;
  background: linear-gradient(180deg,#fff 0%,#F8FAFF 100%);
}

.software-map span{
  display: inline-flex;
  color: var(--blue);
  background: #EEF4FF;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 14px;
}

.software-map h3{
  font-size: 22px;
  margin-bottom: 10px;
}

.software-map p{
  margin: 0 0 14px;
  color: #5A6880;
  font-size: 14.5px;
}

.software-map b{
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.trade-grid b{
  display: block;
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 8px;
}

.trade-grid span{
  display: block;
  color: #5A6880;
  font-size: 14.5px;
  line-height: 1.5;
}

.workline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.workflow-rail{
  position: absolute;
  left: 0;
  right: 0;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg,var(--blue),#BED0F3);
  z-index: 0;
}

.workstep{
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.workstep small{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #EEF3FF;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}

.workstep h3{
  font-size: 24px;
}

.workstep p{
  margin: 0;
  color: #5A6880;
}

.origin-section{
  padding: 70px 0;
  background: radial-gradient(circle at 12% 30%,rgba(37,99,235,.18),transparent 34%), linear-gradient(135deg,#FFFFFF 0%,#EEF4FF 52%,#FFFFFF 100%);
}

.origin-story{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: start;
  padding: 0;
}

.origin-side span{
  display: inline-flex;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.origin-copy h2{
  font-size: clamp(34px,4vw,54px);
  max-width: 740px;
}

.origin-copy p{
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 18px;
  color: #52617B;
}

.pricing-note{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
  background: linear-gradient(135deg,#fff,#F8FAFF);
}

.pricing-note h2{
  font-size: clamp(30px,4vw,48px);
}

.pricing-note p{
  margin: 0;
  color: #5A6880;
}

.soft-note{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  color: #52617B;
  font-weight: 800;
  white-space: nowrap;
}

.soft-note a{
  color: var(--blue);
}

.home-access-note{
  background: linear-gradient(135deg,var(--blue),#174CC8 48%,var(--navy));
  border: 0;
  color: #fff;
  box-shadow: 0 24px 80px rgba(37,99,235,.22);
}

.home-access-note h2,.home-access-note p{
  color: #fff;
}

.home-access-note .soft-note{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}

.home-access-note .soft-note a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero{
  padding: 92px 0 70px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg,#fff,#F8FBFF);
}

.feature-nav{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.feature-nav a{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: #52617B;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.feature-section{
  border-bottom: 1px solid rgba(217,225,238,.55);
}

.feature-figure{
  padding: 18px;
  margin-top: 18px;
}

.figure-grid,.detail-grid,.api-nodes,.share-metrics{
  display: grid;
  gap: 8px;
}

.figure-grid{
  grid-template-columns: repeat(4,1fr);
  margin: 12px 0;
}

.figure-grid i{
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(145deg,#EEF3FF,#fff);
  border: 1px solid #DDE6F4;
}

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

.api-nodes{
  grid-template-columns: repeat(5,1fr);
}

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

.detail-grid span,.share-metrics span,.api-nodes span{
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  background: #F8FAFE;
  padding: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #52617B;
  text-align: center;
}

.figure-total,.link-line{
  border: 1px solid #DDE6F4;
  background: #F8FAFE;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
}

.figure-total strong{
  color: var(--navy);
}

.link-line{
  height: 42px;
  border-style: dashed;
  margin-bottom: 12px;
}

.doc-flow{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}

.doc-flow span{
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #F8FAFE;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 850;
  color: #52617B;
  text-align: center;
}

.doc-flow i{
  display: none;
}

.founder-section{
  padding-top: 70px;
}

.founder-panel{
  display: grid;
  grid-template-columns: 112px 1fr minmax(220px,.42fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg,#fff 0%,#F8FAFF 100%);
  padding: 24px;
}

.founder-photo img{
  width: 112px;
  height: 112px;
  border-radius: 28px;
  object-fit: cover;
  margin: 0;
}

.founder-copy h2{
  font-size: clamp(30px,3.5vw,46px);
  line-height: 1.04;
  margin: 10px 0;
}

.founder-copy p,.founder-note p{
  margin: 0;
  color: #5A6880;
}

.founder-note{
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.founder-note span{
  display: inline-flex;
  background: #EEF3FF;
  color: #2857C7;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.brand-kit-layout{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}

.guide-sidebar{
  position: sticky;
  top: 112px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
}

.guide-sidebar a{
  padding: 10px 12px;
  border-radius: 14px;
  color: #52617B;
  font-weight: 800;
  font-size: 13px;
}

.guide-sidebar a:hover{
  background: #EEF3FF;
  color: var(--blue);
}

.brand-kit-content{
  min-width: 0;
}

.guide-panel{
  padding: 28px;
}

.brand-kit-hero-panel{
  display: grid;
  grid-template-columns: 1fr minmax(260px,.48fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg,#fff,#F8FAFF);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.kit-preview{
  border: 1px solid #DDE6F4;
  background: #fff;
  border-radius: 26px;
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.kit-preview img{
  max-width: 250px;
  position: relative;
}

.kit-icons{
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 18px;
  left: 18px;
}

.kit-icons span{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--blue);
}

.kit-icons span:nth-child(2),.kit-icons span:nth-child(3){
  background: var(--navy);
}

.kit-icons span:nth-child(4){
  background: #F4F6F8;
  border: 1px solid #DDE6F4;
}

.kit-quick-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 16px;
}

.kit-quick-grid div{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(11,19,43,.045);
}

.kit-quick-grid b{
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.kit-quick-grid span{
  display: block;
  color: #64748B;
  font-size: 13px;
  margin-top: 4px;
}

.logo-showcase{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.logo-showcase .wide{
  grid-column: span 2;
}

.logo-box{
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #F8FAFF;
  padding: 18px;
  min-height: 170px;
  display: grid;
  place-items: center;
}

.logo-box small{
  align-self: start;
  justify-self: start;
  color: #64748B;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.logo-box img{
  max-width: 70%;
  max-height: 98px;
}

.logo-box.icon-only img{
  width: 92px;
}

.logo-box.dark{
  background: var(--navy);
}

.swatches{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: 22px;
}

.swatch{
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.color-block{
  height: 100px;
  border-radius: 16px;
  border: 1px solid rgba(11,19,43,.08);
  margin-bottom: 12px;
}

.swatch b,.swatch code{
  display: block;
}

.swatch code{
  color: #64748B;
}

.swatch button{
  margin-top: 10px;
  border: 0;
  background: #EEF3FF;
  color: #2857C7;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 850;
  cursor: pointer;
}

.type-kit{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: center;
}

.type-kit h3{
  font-size: 70px;
  line-height: 1;
  letter-spacing: -.07em;
  margin: 0 0 12px;
}

.type-sample{
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #FBFCFF;
  padding: 18px;
}

.type-sample strong{
  font-size: 76px;
  letter-spacing: -.08em;
  color: var(--blue);
}

.type-sample span{
  font-size: 14px;
  line-height: 1.9;
  color: #52617B;
}

.dos-grid,.social-kit-grid,.asset-downloads{
  display: grid;
  gap: 12px;
}

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

.usage-card{
  border: 1px solid var(--line);
  background: #FBFCFF;
  border-radius: 20px;
  padding: 18px;
}

.usage-card .mark{
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #EEF3FF;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 12px;
}

.usage-card.bad .mark{
  background: #FFF1F2;
  color: #E11D48;
}

.social-kit-grid{
  grid-template-columns: repeat(5,1fr);
}

.social-kit-grid div{
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #FBFCFF;
  padding: 16px;
  text-align: center;
}

.social-inline{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #E2E8F0;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.social-kit-grid svg{
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.social-kit-grid b{
  display: block;
}

.social-kit-grid span{
  display: block;
  color: #64748B;
  font-size: 12px;
  margin-top: 3px;
}

.asset-downloads{
  grid-template-columns: repeat(5,1fr);
}

.asset-downloads a{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  color: #52617B;
  font-weight: 800;
  font-size: 13px;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.price-card{
  padding: 26px;
}

.price-card.featured{
  border-color: #BFD0F0;
  box-shadow: 0 20px 64px rgba(37,99,235,.13);
}

.price-label{
  display: inline-flex;
  background: #EEF3FF;
  color: var(--blue);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 850;
  font-size: 12px;
  margin-bottom: 14px;
}

.price{
  font-size: 34px;
  color: var(--navy);
  font-weight: 900;
  margin: 16px 0;
}

.price-card ul{
  padding-left: 20px;
  color: #5A6880;
}

.contact-method,.form-card,.soft-card{
  padding: 26px;
}

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

.field{
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--navy);
}

.field input,.field select,.field textarea{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  background: #F8FAFF;
}

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

.status-banner{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(135deg,#fff,#F8FAFF);
}

.status-banner img{
  width: 54px;
}

.timeline{
  display: grid;
  gap: 18px;
}

.timeline article{
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
}

.timeline time{
  font-weight: 900;
  color: var(--blue);
}

.access-hero .lead{
  max-width: 820px;
}

.access-flow{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.access-flow article{
  padding: 24px;
}

.access-flow article span{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #EEF3FF;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
}

.access-flow article h3{
  font-size: 24px;
}

.access-flow article p{
  margin: 0;
  color: #5A6880;
}

.access-detail-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.access-card{
  padding: 30px;
  background: linear-gradient(135deg,#fff,#F8FAFF);
}

.access-card h2{
  margin-top: 14px;
}

.access-card p{
  font-size: 18px;
  color: #5A6880;
}

.access-list{
  padding: 18px;
  display: grid;
  gap: 12px;
}

.access-list div{
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  background: #F8FAFF;
  padding: 16px;
}

.access-list b{
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 5px;
}

.access-list span{
  display: block;
  color: #5A6880;
  font-size: 14px;
}

.access-final{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg,#fff,#F8FAFF);
}

.access-final p{
  margin: 12px 0 0;
  color: #5A6880;
}

.purpose-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.purpose-list article{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 20px;
  align-items: start;
}

.purpose-list span{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #EEF3FF;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.purpose-list h3{
  font-size: 24px;
  margin-bottom: 6px;
}

.purpose-list p{
  margin: 0;
  color: #5A6880;
}

.guide-section{
  margin-bottom: 24px;
  scroll-margin-top: 78px;
}

.type-system-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.type-card{
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #F8FAFF;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.type-card small{
  display: block;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 12px;
}

.type-card h3{
  font-size: 38px;
  margin-bottom: 10px;
}

.type-card p{
  color: #5A6880;
  margin: 0 0 24px;
}

.type-card strong{
  display: block;
  font-size: 84px;
  line-height: .9;
  color: rgba(37,99,235,.18);
  font-family: var(--headline-font);
}

.sans-sample h3,.sans-sample strong{
  font-family: var(--body-font);
}

.press-kit-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.press-kit-grid article{
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #F8FAFF;
  padding: 20px;
}

.press-kit-grid small{
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.press-kit-grid h3{
  font-size: 24px;
}

.press-kit-grid p{
  margin: 0;
  color: #5A6880;
}

.footer{
  background: linear-gradient(180deg,#0B132B 0%,#071024 100%);
  color: #fff;
  padding: 58px 0 28px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 28px;
}

.footer img{
  width: 210px;
  margin-bottom: 16px;
}

.footer p{
  color: #B9C7DD;
  margin: 0 0 18px;
}

.footer h3{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #fff;
  margin: 0 0 14px;
}

.footer a{
  display: block;
  color: #B9C7DD;
  margin: 8px 0;
}

.footer a:hover{
  color: #fff;
}

.email-link{
  display: inline-flex !important;
  align-items: baseline;
  gap: 0;
  color: #DCE8FF !important;
  font-weight: 800;
}

.email-link b{
  color: var(--blue);
  font-weight: 900;
  margin: 0 2px;
  font-size: 1.08em;
}

.made-line{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #EAF0FF;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 650;
  margin: 0 0 14px;
}

.made-line span{
  color: var(--blue);
  font-size: 13px;
}

.footer-contact{
  display: grid;
  align-content: start;
}

.footer-contact .social-set{
  margin-top: 14px;
}

.social-set{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.social-set a{
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  display: grid !important;
  place-items: center;
  color: #DCE8FF !important;
  margin: 0 !important;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.social-set a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
}

.social-set svg,.social-set path{
  width: 18px;
  height: 18px;
  color: #DCE8FF;
  fill: currentColor;
}

.subfooter{
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #8FA4C2;
  font-size: 13px;
}

.reveal{
  opacity: 1;
  transform: none;
  transition: .6s ease;
}

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

.compare-col{
  position: relative;
  overflow: hidden !important;
  padding: 0 !important;
}

.compare-col header{
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg,#fff,#F8FAFF);
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  background-clip: border-box !important;
}

.compare-traditional header{
  background: linear-gradient(180deg,#FAFBFD 0%,#F1F5FA 100%) !important;
}

.compare-bento header{
  background: linear-gradient(135deg,#F8FBFF 0%,#EAF1FF 100%) !important;
}

.compare-col ul{
  padding: 8px 24px 18px !important;
}

.compare-col li{
  display: grid !important;
  grid-template-columns: 12px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
}

.compare-col li:before{
  position: static !important;
  margin-top: .52em !important;
}

.access-note-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.14);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.access-note-link:hover{
  background: rgba(255,255,255,.2);
  transform: translateY(-1px);
}

.offer-theme-demo-large{
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  padding: 14px;
}

.offer-theme-demo-large .theme-swatches{
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 12px;
}

.offer-theme-demo-large .theme-swatches button{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.45);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11,19,43,.14);
}

.offer-theme-demo-large .theme-swatches button:nth-child(1){
  background: #7AA7FF;
}

.offer-theme-demo-large .theme-swatches button:nth-child(2){
  background: #9DD7C2;
}

.offer-theme-demo-large .theme-swatches button:nth-child(3){
  background: #F7C56B;
}

.offer-theme-demo-large .theme-swatches button:nth-child(4){
  background: #D6C7FF;
}

.offer-theme-demo-large .theme-swatches button:nth-child(5){
  background: #F6A6B8;
}

.offer-theme-demo-large .theme-swatches button:nth-child(6){
  background: #91A4B7;
}

.offer-theme-demo-large[data-theme="blue"]{
  --accent: #7AA7FF;
  --accent-soft: #EAF1FF;
  --accent-line: #BED0FF;
}

.offer-theme-demo-large[data-theme="mint"]{
  --accent: #75C9AE;
  --accent-soft: #ECF9F4;
  --accent-line: #BFE9DA;
}

.offer-theme-demo-large[data-theme="sand"]{
  --accent: #E8B65D;
  --accent-soft: #FFF5DF;
  --accent-line: #F3D597;
}

.offer-theme-demo-large[data-theme="violet"]{
  --accent: #B7A2F5;
  --accent-soft: #F3EFFF;
  --accent-line: #D8CCFF;
}

.offer-theme-demo-large[data-theme="rose"]{
  --accent: #F6A6B8;
  --accent-soft: #FFF0F4;
  --accent-line: #F7C8D4;
}

.offer-theme-demo-large[data-theme="slate"]{
  --accent: #91A4B7;
  --accent-soft: #F2F6FA;
  --accent-line: #C9D4DE;
}

.offer-theme-demo-large .theme-page{
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 12px 30px rgba(11,19,43,.14);
}

.offer-theme-demo-large .theme-page header{
  min-height: 88px;
  background: linear-gradient(90deg,var(--accent),var(--accent-soft));
  position: relative;
  padding: 18px 18px 16px;
}

.offer-theme-demo-large .theme-page header:before, .offer-theme-demo-large .theme-page header:after{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
}

.offer-theme-demo-large .theme-page header:before{
  top: 22px;
  right: 34%;
}

.offer-theme-demo-large .theme-page header:after{
  top: 48px;
  left: 18px;
  right: 52%;
  opacity: .54;
}

.offer-theme-demo-large .theme-page main{
  padding: 14px;
  display: grid;
  gap: 12px;
}

.theme-hero-line{
  display: none;
}

.theme-cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.theme-cards i{
  height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}

.theme-summary{
  display: grid;
  grid-template-columns: 1fr .64fr;
  gap: 8px;
}

.theme-summary span{
  height: 12px;
  border-radius: 999px;
  background: #E9EEF7;
}

.spec-card-preview-large{
  margin-top: 24px;
  border: 1px solid #DDE6F4;
  border-radius: 22px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 11px;
  box-shadow: 0 16px 38px rgba(11,19,43,.08);
}

.spec-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #E9EEF6;
  padding-bottom: 9px;
}

.spec-card-head span{
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--blue);
  font-weight: 900;
}

.spec-card-head b{
  font-size: 9px;
  letter-spacing: .12em;
  color: #64748B;
}

.spec-title-block{
  display: grid;
  gap: 3px;
}

.spec-title-block strong{
  font-family: var(--headline-font);
  font-size: 22px;
  line-height: 1;
  color: #0B132B;
  letter-spacing: -.04em;
}

.spec-title-block span{
  display: block;
  color: #8A98AE;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.spec-layout{
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 11px;
}

.spec-photo{
  height: 82px;
  border-radius: 18px;
  background: linear-gradient(145deg,#EAF0FF,#fff);
  border: 1px solid #DDE6F4;
}

.spec-info{
  display: grid;
  gap: 6px;
  align-content: start;
}

.spec-info b{
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
}

.spec-info i{
  height: 9px;
  border-radius: 999px;
  background: #E6ECF5;
}

.spec-info i:nth-child(3){
  width: 82%;
}

.spec-info i:nth-child(4){
  width: 70%;
}

.spec-info i:nth-child(5){
  width: 56%;
}

.spec-panels{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
}

.spec-panels span{
  height: 42px;
  border-radius: 13px;
  background: #F8FAFF;
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 8px;
  display: grid;
  place-items: center;
  font-weight: 850;
}

.spec-logistics-title{
  height: 22px;
  width: 68%;
  margin: 0 auto;
  border-radius: 999px;
  background: #2563EB;
  color: #fff;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.spec-logistics{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 7px;
}

.spec-logistics span{
  height: 24px;
  border-radius: 10px;
  background: #F2F6FD;
  border: 1px solid #E2E8F0;
}

.origin-story .origin-side span{
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.72);
}

.back-to-top{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217,225,238,.72);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(15,23,42,.075);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}

.back-to-top svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.back-to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover{
  background: #F8FAFF;
  border-color: #C7D8FF;
}

.protected-line{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #F4F7FC;
  border: 1px solid #E2E8F0;
  color: #52617B;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .03em;
}

.protected-line svg{
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.doc-status{
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

.doc-status-sent{
  background: #EEF4FF !important;
  color: #2857C7 !important;
  border-color: #C7D8FF !important;
}

.doc-status-paid{
  background: #ECFDF5 !important;
  color: #047857 !important;
  border-color: #BFEBD8 !important;
}

.doc-status-confirmed{
  background: #FFF7ED !important;
  color: #C76A13 !important;
  border-color: #FED7AA !important;
}

.asset-downloads a.asset-zip{
  background: #174CC8;
  color: #fff;
  border-color: #174CC8;
  box-shadow: 0 10px 24px rgba(37,99,235,.16);
}

.asset-downloads a.asset-zip:hover{
  transform: translateY(-1px);
  background: #1E4FE1;
  border-color: #1E4FE1;
}

.updates-section .section-head,.upcoming-section .section-head{
  max-width: 980px;
}

.update-timeline{
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.update-timeline:before{
  content: "";
  position: absolute;
  left: 132px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg,#C9D8F6,#EEF3FF);
}

.timeline-item{
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 44px;
  align-items: start;
}

.timeline-card{
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.timeline-card:before{
  content: "";
  position: absolute;
  left: -31px;
  top: 25px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 8px #EEF4FF;
}

.timeline-card h3{
  font-size: 27px;
  margin: 12px 0 9px;
}

.update-pill{
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.update-pill-new{
  background: #EEF4FF;
  color: #2857C7;
  border-color: #C7D8FF;
}

.update-pill-fix{
  background: #ECFDF5;
  color: #047857;
  border-color: #BFEBD8;
}

.update-pill-update{
  background: #FFF7ED;
  color: #C76A13;
  border-color: #FED7AA;
}

.update-pill-planned{
  background: #F5F3FF;
  color: #6D4EC2;
  border-color: #DDD6FE;
}

.upcoming-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.upcoming-grid article{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.upcoming-grid h3{
  font-size: 25px;
  margin: 14px 0 8px;
}

.upcoming-grid p{
  margin: 0;
  color: #5A6880;
}

.update-pill-origin{
  background: #F0F9FF;
  color: #0369A1;
  border-color: #BAE6FD;
}

.update-pill-ai{
  background: #EEF2FF;
  color: #4F46E5;
  border-color: #C7D2FE;
}

.update-pill-more{
  background: rgba(255,255,255,.16);
  color: #FFFFFF;
  border-color: rgba(255,255,255,.22);
}

.roadmap-more-card{
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  background: linear-gradient(145deg,#2563EB 0%,#174CC8 52%,#172554 100%) !important;
  border: 0 !important;
  box-shadow: 0 18px 42px rgba(37,99,235,.18) !important;
}

.roadmap-more-card h3,.roadmap-more-card p{
  color: #FFFFFF;
}

.roadmap-more-card p{
  opacity: .86;
}

.update-pill-progress{
  background: #EEF4FF;
  color: #1D4ED8;
  border-color: #BFD0F0;
}

.timeline-item time{
  font-weight: 900;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-top: 22px;
  line-height: 1.35;
}

.timeline-card p{
  margin: 0;
  color: #5A6880;
  max-width: 860px;
}

.upcoming-grid article:nth-child(1), .upcoming-grid article:nth-child(2){
  background: linear-gradient(180deg,#FFFFFF 0%,#F8FAFF 100%);
  border-color: #C7D2FE;
}

.bento-story-section .line-item p{
  max-width: 760px;
}

.founder-quote-section{
  padding-top: 58px;
  padding-bottom: 58px;
  background: radial-gradient(circle at 12% 22%,rgba(37,99,235,.14),transparent 34%), linear-gradient(135deg,#FFFFFF 0%,#EEF4FF 52%,#FFFFFF 100%);
}

.founder-quote blockquote{
  margin: 0;
}

.founder-quote footer strong{
  color: var(--navy);
  font-size: 15px;
  letter-spacing: .02em;
}

.founder-signature{
  display: grid !important;
  grid-template-columns: 74px 1fr;
  gap: 16px !important;
  align-items: center;
}

.founder-signature img{
  width: 74px;
  height: 74px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid #DDE6F4;
  background: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,.08);
}

.founder-signature div{
  display: grid;
  gap: 5px;
}

.features-hero .feature-nav{
  max-width: 980px;
}

.feature-kpi-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.feature-kpi-grid article, .workspace-map-grid article, .concept-grid article, .control-grid article, .use-grid article{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-kpi-grid article span{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #EEF4FF;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
}

.feature-kpi-grid h3, .control-grid h3{
  font-size: 25px;
}

.feature-kpi-grid p, .workspace-map-grid p, .concept-grid p, .control-grid p, .use-grid p{
  margin: 0;
  color: #5A6880;
}

.flow-board{
  display: grid;
  gap: 18px;
}

.flow-strip{
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg,#fff,#F8FAFF);
  box-shadow: var(--shadow-soft);
}

.flow-strip span{
  border: 1px solid #C7D8FF;
  background: #EEF4FF;
  color: #2857C7;
  border-radius: 999px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
}

.flow-strip i{
  height: 2px;
  background: #BFD0F0;
  border-radius: 999px;
}

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

.flow-meta article{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 16px;
}

.flow-meta b{
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 5px;
}

.flow-meta span{
  display: block;
  color: #64748B;
  font-size: 13px;
  line-height: 1.45;
}

.workspace-map-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.workspace-map-grid b, .use-grid b{
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.concept-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.concept-grid span{
  display: inline-flex;
  color: var(--blue);
  background: #EEF4FF;
  border: 1px solid #C7D8FF;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.control-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.control-grid article:nth-child(1), .control-grid article:nth-child(3), .control-grid article:nth-child(4){
  background: linear-gradient(180deg,#fff,#F8FAFF);
}

.use-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

#products .card, #documents .card{
  min-height: 0;
  align-self: start;
}

#products .bento-grid, #documents .bento-grid{
  align-items: start;
}

#products .card h3, #documents .card h3{
  margin-bottom: 8px;
}

#products .card p, #documents .card p{
  line-height: 1.58;
}

.product-data-figure, .share-figure, .pallet-figure{
  overflow: hidden;
}

.system-flow{
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr;
  align-items: center;
  gap: 8px;
  margin: 12px 0 10px;
}

.system-flow span{
  border: 1px solid #C7D8FF;
  background: #EEF4FF;
  color: #2857C7;
  border-radius: 999px;
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.system-flow i{
  height: 2px;
  border-radius: 999px;
  background: #BFD0F0;
}

.figure-note{
  margin: 0 0 12px;
  color: #5A6880;
  font-size: 13px;
  line-height: 1.55;
}

.compact-detail-grid span{
  padding: 10px;
}


.pallet-visual{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: stretch;
  margin: 12px 0;
}

.pallet-stack{
  position: relative;
  min-height: 186px;
  border: 1px solid #DDE6F4;
  border-radius: 20px;
  background: linear-gradient(145deg,#F8FAFF,#FFFFFF);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 7px;
  padding: 18px 18px 34px;
  overflow: hidden;
}

.pallet-stack:before{
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  height: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg,#D9E5F7,#C8D6EA);
  border: 1px solid #BFD0F0;
}

.pallet-stack:after{
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 21px;
  height: 3px;
  border-radius: 999px;
  background: rgba(37,99,235,.18);
}

.pallet-stack span{
  position: relative;
  z-index: 1;
  min-height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg,#FFFFFF,#EAF1FF);
  border: 1px solid #CFE0FF;
  box-shadow: 0 10px 20px rgba(37,99,235,.08);
}

.pallet-stack span:nth-child(2), .pallet-stack span:nth-child(5), .pallet-stack span:nth-child(8){
  background: linear-gradient(145deg,#EEF4FF,#DCEAFF);
}

.pallet-options{
  display: grid;
  gap: 8px;
}

.pallet-options div{
  border: 1px solid #E2E8F0;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
}

.pallet-options .is-best{
  border-color: #BFD0F0;
  background: linear-gradient(135deg,#EEF4FF,#fff);
  box-shadow: 0 12px 28px rgba(37,99,235,.10);
}

.pallet-options b{
  display: block;
  color: var(--navy);
  font-size: 13px;
  margin-bottom: 4px;
}

.pallet-options small{
  color: #64748B;
  font-weight: 800;
}

.loading-plan-figure{
  overflow: hidden;
}

.loading-plan-visual{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: stretch;
  margin: 12px 0;
}

.container-plan{
  position: relative;
  min-height: 178px;
  border: 1px solid #BFD0F0;
  border-radius: 22px;
  background: linear-gradient(145deg,#FFFFFF,#F8FAFF);
  padding: 18px 34px 18px 18px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  grid-auto-rows: 38px;
  gap: 7px;
  overflow: hidden;
}

.container-plan:before{
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed #D6E2F5;
  border-radius: 16px;
  pointer-events: none;
}

.container-door{
  position: absolute;
  right: 12px;
  top: 24px;
  bottom: 24px;
  width: 12px;
  border-radius: 999px;
  background: #D9E5F7;
}

.load-block{
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background: linear-gradient(145deg,#EEF4FF,#DCEAFF);
  border: 1px solid #CFE0FF;
  box-shadow: 0 8px 18px rgba(37,99,235,.07);
}

.load-block.wide{
  grid-column: span 2;
}

.load-block.tall{
  grid-row: span 2;
}

.loading-pdf-card{
  border: 1px solid #DDE6F4;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(37,99,235,.08);
}

.loading-pdf-card span{
  width: max-content;
  border-radius: 999px;
  background: #EEF4FF;
  color: #2857C7;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.loading-pdf-card b{
  color: var(--navy);
  font-size: 18px;
}

.loading-pdf-card i{
  height: 9px;
  border-radius: 999px;
  background: #E2E8F0;
}

.loading-pdf-card i:nth-child(4){
  width: 72%;
}

.share-link-card{
  border: 1px dashed #BFD0F0;
  background: linear-gradient(135deg,#F8FAFE,#FFFFFF);
  border-radius: 18px;
  padding: 13px;
  display: grid;
  gap: 8px;
  margin: 12px 0 10px;
}

.share-link-card span{
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-link-card b{
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid #C7D8FF;
  background: #EEF4FF;
  color: #2857C7;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

#documents .dark-card{
  align-self: stretch;
}

.control-grid article{
  position: relative;
}

.control-grid .control-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #EEF4FF;
  color: var(--blue);
  border: 1px solid #C7D8FF;
  margin-bottom: 16px;
}

.control-grid .control-icon svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-grid .control-dark{
  background: linear-gradient(145deg,#0B132B 0%,#172554 72%,#1E3A8A 100%) !important;
  border-color: rgba(255,255,255,.12) !important;
  box-shadow: 0 22px 54px rgba(11,19,43,.22) !important;
}

.control-grid .control-dark h3{
  color: #fff;
}

.control-grid .control-dark p{
  color: #C9D6EA;
}

.control-grid .control-dark .control-icon{
  background: rgba(255,255,255,.09);
  color: #DCE8FF;
  border-color: rgba(255,255,255,.16);
}

.control-grid .control-dark .control-icon{
  display: grid;
  place-items: center;
}

.control-grid .control-dark .control-icon .moon-icon{
  width: 22px;
  height: 22px;
  fill: #FACC15;
  stroke: #FDE68A;
  stroke-width: 1;
  transform: translateX(1px) translateY(-.5px);
}

.founder-quote footer{
  display: grid;
  gap: 4px;
  margin-top: 28px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(217,225,238,.75);
}

.founder-quote footer span{
  color: #64748B;
  font-size: 14px;
  max-width: 780px;
  line-height: 1.55;
}

.form-title{
  margin-bottom: 22px;
}

.contact-soft-section{
  padding-top: 66px;
}

.contact-soft-grid{
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 24px;
  align-items: stretch;
}

.contact-soft-form{
  padding: 30px;
  background: linear-gradient(180deg,#fff 0%,#FBFCFF 100%);
}

.contact-soft-form .form-title h2{
  font-size: clamp(30px,3.7vw,48px);
  line-height: 1.05;
  margin: 10px 0 10px;
}

.contact-soft-form .form-title p{
  margin: 0;
  color: #5A6880;
  line-height: 1.62;
}

.contact-soft-side{
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.official-channels-card{
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px;
  background: linear-gradient(135deg,#fff 0%,#F8FAFF 100%);
}

.official-card-head{
  display: flex;
  align-items: center;
  gap: 14px;
}

.official-logo{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  padding: 9px;
  background: #fff;
  border: 1px solid #DDE6F4;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  overflow: hidden;
  flex: 0 0 auto;
}

.official-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
}

.official-card-head small{
  display: block;
  color: #64748B;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 900;
  margin-bottom: 5px;
}

.official-card-head h3{
  margin: 0;
  font-size: 22px;
}

.contact-channel-list{
  display: grid;
  gap: 10px;
}

.contact-channel-list a{
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 12px;
  margin: 0;
  border: 1px solid #DDE6F4;
  border-radius: 18px;
  background: #fff;
  padding: 12px;
  color: inherit;
}

.contact-channel-list a:hover{
  border-color: #BFD0F0;
  background: #F8FAFF;
}

.contact-channel-list span{
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: #EEF4FF;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-channel-list b{
  color: var(--navy);
  font-size: 14.5px;
  overflow-wrap: anywhere;
}

.contact-socials{
  margin-top: 0;
}

.contact-socials a{
  background: #fff;
  border-color: #DDE6F4;
  color: var(--navy) !important;
}

.contact-socials a:hover{
  background: #EEF4FF;
  border-color: #BFD0F0;
}

.contact-socials svg,.contact-socials path{
  color: var(--navy);
}

.contact-soft-side .soft-card{
  flex: 1 1 auto;
}

.contact-soft-side .soft-card ul{
  margin: 12px 0 0;
  padding-left: 18px;
  color: #5A6880;
}

.contact-soft-side .soft-card li{
  margin: 8px 0;
  line-height: 1.55;
}

.private-note-card{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  flex: 0 0 auto;
}

.private-note-card h3{
  margin-bottom: 6px;
}

.private-note-card p{
  margin: 0;
  line-height: 1.5;
}

.private-note-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #DCE8FF;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

.private-note-icon svg{
  width: 26px;
  height: 26px;
}

.contact-soft-form .field input, .contact-soft-form .field textarea, .contact-soft-form .field select{
  width: 100%;
  min-height: 48px;
  border: 1px solid #D9E1EE;
  border-radius: 16px;
  background-color: #F8FAFF;
  color: var(--navy);
  padding: 13px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, transform .18s ease;
}

.contact-soft-form .field textarea{
  resize: vertical;
  min-height: 170px;
}

.contact-soft-form .field input:focus, .contact-soft-form .field textarea:focus, .contact-soft-form .field select:focus{
  outline: 0;
  border-color: #7AA7FF;
  background-color: #fff;
  box-shadow: 0 0 0 6px rgba(37,99,235,.14), 0 14px 34px rgba(37,99,235,.10);
}

.contact-soft-form .field input:focus-visible, .contact-soft-form .field textarea:focus-visible, .contact-soft-form .field select:focus-visible{
  outline: 0;
}

.contact-soft-form .select-field{
  position: relative;
}

.contact-soft-form .select-field:after{
  content: "";
  position: absolute;
  right: 18px;
  bottom: 24px;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid #64748B;
  border-bottom: 1.8px solid #64748B;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 2;
  transition: border-color .18s ease;
}

.contact-soft-form .select-field:focus-within:after{
  border-color: var(--blue);
}

.contact-soft-form .select-field select{
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: none;
  position: relative;
  z-index: 1;
}

.contact-soft-form .btn{
  width: max-content;
  margin-top: 2px;
}

.founder-quote blockquote p{
  font-family: var(--body-font);
  font-size: clamp(17px,1.45vw,21px);
  line-height: 1.72;
  letter-spacing: 0;
  color: #41506A;
  margin: 0 0 12px;
  font-weight: 500;
  max-width: 860px;
}

.founder-quote{
  position: relative;
  display: grid;
  align-items: start;
  border-top: 1px solid #D9E1EE;
  border-bottom: 1px solid #D9E1EE;
  padding: 44px 0;
  grid-template-columns: 70px 1fr;
  gap: 22px;
}

.quote-mark{
  font-family: var(--headline-font);
  line-height: .78;
  color: var(--blue);
  font-size: 88px;
  opacity: .18;
}

/* Responsive rules */
@media (prefers-reduced-motion:reduce){
  .ticker-track{
    animation: none;
  }
}

@media (max-width:420px){
  .container{
    width: min(100% - 30px,var(--container));
  }

  h1,.hero h1,.page-hero h1{
    font-size: 39px;
  }

  h2,.section h2,.section-head h2{
    font-size: 31px;
  }

  .brand-link img{
    width: 180px;
  }

  .hero .actions .btn{
    flex-basis: 100%;
  }
}

@media (max-width:980px) and (max-height:560px){
  .nav-wrap{
    height: 66px;
  }

  .brand-link img{
    width: 176px;
  }

  .mobile-toggle{
    display: flex;
  }

  .nav{
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav{
    display: flex;
  }

  .nav a{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 11px;
    letter-spacing: .055em;
    padding: 10px 12px;
  }
}

@media (max-width:390px){
  .share-figure .share-metrics span{
    font-size: 9.5px;
    padding: 8px 4px;
  }
}

@media (min-width:520px) and (max-width:760px){
  .share-figure .share-metrics{
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px){
  .hero-grid,.split,.brand-kit-layout,.brand-kit-hero-panel{
    grid-template-columns: 1fr;
  }

  .hero{
    padding-top: 56px;
  }

  .sticky-note,.guide-sidebar{
    position: relative;
    top: auto;
  }

  .guide-sidebar{
    display: flex;
    gap: 8px;
    overflow: auto;
    white-space: nowrap;
  }

  .span-4,.span-5,.span-6,.span-7,.span-8{
    grid-column: span 12;
  }

  .pricing-grid,.compare{
    grid-template-columns: 1fr;
  }

  .workline{
    grid-template-columns: 1fr 1fr;
  }

  .workflow-rail{
    display: none;
  }

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

  .logo-showcase,.software-map,.trade-grid{
    grid-template-columns: 1fr 1fr;
  }

  .visual-grid{
    grid-template-columns: 1fr;
  }

  .founder-panel{
    grid-template-columns: 92px 1fr;
  }

  .founder-note{
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }

  .kit-quick-grid,.social-kit-grid,.swatches{
    grid-template-columns: repeat(2,1fr);
  }

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

  .upcoming-grid{
    grid-template-columns: 1fr 1fr;
  }

  .update-timeline:before{
    left: 112px;
  }

  .timeline-item{
    grid-template-columns: 92px 1fr;
    gap: 36px;
  }

  .feature-kpi-grid, .workspace-map-grid, .concept-grid, .control-grid, .use-grid{
    grid-template-columns: 1fr 1fr;
  }

  .flow-meta{
    grid-template-columns: 1fr 1fr;
  }


  .contact-soft-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width:760px){
  .container{
    width: min(100% - 34px,var(--container));
  }

  .kicker,.eyebrow{
    font-size: 10px;
    letter-spacing: .09em;
    padding: 6px 9px;
    gap: 8px;
  }

  .kicker:before,.eyebrow:before{
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(37,99,235,.11);
  }

  .ticker-track{
    animation-duration: 30s;
    padding: 11px 0;
  }

  .ticker-group{
    gap: 10px;
    padding-right: 10px;
    justify-content: flex-start;
    min-width: max-content;
  }

  .ticker-group span{
    font-size: 10px;
    letter-spacing: .09em;
    padding: 7px 10px;
  }

  .nav{
    position: fixed;
    inset: 76px 14px auto 14px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .nav{
    display: flex;
  }

  .nav a{
    padding: 13px 14px;
  }

  .mobile-toggle{
    display: flex;
  }

  .nav-wrap{
    height: 76px;
  }

  h1,.hero h1,.page-hero h1{
    font-size: clamp(36px,10.2vw,46px);
    line-height: 1.05;
    letter-spacing: -.04em;
  }

  h2,.section h2,.section-head h2{
    font-size: clamp(28px,8vw,36px);
    line-height: 1.1;
    letter-spacing: -.035em;
  }

  h3,.card h3,.visual-card h3{
    letter-spacing: -.025em;
  }

  .lead,.section-head p,.section-intro{
    font-size: 15.2px;
    line-height: 1.64;
  }

  .actions{
    align-items: stretch;
  }

  .btn{
    width: 100%;
    border-radius: 14px;
    min-height: 46px;
    padding: 12px 15px;
  }

  .metrics{
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .metric{
    padding: 14px;
    border-radius: 18px;
  }

  .product-window{
    border-radius: 24px;
  }

  .window-top{
    min-height: 50px;
    height: auto;
    padding: 11px 12px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .dots{
    gap: 5px;
  }

  .dots i{
    width: 8px;
    height: 8px;
  }

  .mini-brand{
    font-size: 9px;
    letter-spacing: .09em;
  }

  .mini-brand img{
    width: 20px;
  }

  .window-status{
    font-size: 9px;
    padding: 5px 7px;
  }

  .studio-shell{
    display: block;
    min-height: 0;
  }

  .studio-rail{
    display: none;
  }

  .studio-main{
    display: block;
    padding: 13px;
  }

  .studio-head{
    display: block;
    margin-bottom: 12px;
  }

  .studio-head small{
    font-size: 9px;
  }

  .studio-head strong{
    font-size: 24px;
  }

  .status-chip{
    display: inline-flex;
    margin-top: 8px;
    font-size: 10px;
    padding: 6px 8px;
  }

  .studio-grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ui-card{
    padding: 12px;
    border-radius: 17px;
  }

  .mini-products{
    grid-template-columns: repeat(3,1fr);
    gap: 7px;
  }

  .mini-products i{
    height: 48px;
  }

  .ui-total strong{
    font-size: 32px;
  }

  .share-url{
    height: 31px;
    font-size: 10px;
  }

  .floating-badge{
    display: none;
  }

  .section{
    padding: 58px 0;
  }

  .section-head{
    margin-bottom: 26px;
  }

  .section-head p{
    margin-top: 14px;
  }

  .bento-grid,.workline,.pricing-grid,.logo-showcase,.swatches,.kit-quick-grid,.social-kit-grid,.dos-grid,.trade-grid,.software-map,.form-row,.type-kit,.api-nodes,.detail-grid,.share-metrics,.asset-downloads{
    grid-template-columns: 1fr;
  }

  .card,.compare-col,.visual-card,.guide-panel,.feature-figure,.trade-grid article,.software-map article,.pricing-note,.founder-panel,.access-flow article,.access-card,.access-list,.access-final,.purpose-list article{
    border-radius: 22px;
    padding: 20px;
  }


  .workstep{
    padding: 20px;
  }

  .origin-card{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .origin-card p{
    font-size: 15.5px;
  }

  .compare-col header b{
    font-size: 25px;
  }

  .compare-col ul{
    padding: 6px 20px 14px;
    gap: 0;
  }

  .compare-col li{
    font-size: 14.5px;
    line-height: 1.5;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .pricing-note,.access-final{
    grid-template-columns: 1fr;
  }

  .soft-note{
    border-radius: 18px;
    white-space: normal;
    line-height: 1.45;
  }

  .access-flow,.access-detail-grid,.purpose-list,.type-system-grid,.press-kit-grid{
    grid-template-columns: 1fr;
  }

  .purpose-list article{
    grid-template-columns: 40px 1fr;
  }

  .purpose-list h3{
    font-size: 22px;
  }

  .access-flow article h3,.press-kit-grid h3{
    font-size: 22px;
  }

  .origin-copy p{
    font-size: 15.5px;
    line-height: 1.62;
  }

  .offer-theme-demo{
    margin-top: 18px;
  }

  .spec-card-preview{
    margin-top: 18px;
  }

  .spec-body{
    grid-template-columns: 58px 1fr;
  }

  .spec-image{
    height: 56px;
  }

  .guide-section{
    scroll-margin-top: 78px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,.footer-grid>div{
    display: grid;
    justify-items: center;
  }

  .footer img{
    width: 178px;
  }

  .footer a{
    margin-inline: auto;
  }

  .social-set{
    justify-content: center;
  }

  .subfooter{
    display: grid;
    text-align: center;
    justify-content: center;
  }

  .founder-panel{
    grid-template-columns: 1fr;
  }

  .founder-signature{
    grid-template-columns: 58px 1fr !important;
    gap: 12px !important;
    align-items: center;
  }

  .founder-signature img{
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .founder-photo img{
    width: 90px;
    height: 90px;
  }

  .page-hero{
    padding: 64px 0;
  }

  .compare-col{
    padding: 0 !important;
  }

  .compare-col header{
    display: block;
    width: 100%;
    margin: 0;
    background-clip: border-box;
    padding: 20px 20px 17px !important;
  }

  .offer-theme-demo-large, .spec-card-preview-large{
    margin-top: 20px;
  }

  .offer-theme-demo-large .theme-swatches button{
    width: 32px;
    height: 32px;
  }

  .theme-cards i{
    height: 46px;
  }

  .spec-layout{
    grid-template-columns: 72px 1fr;
  }

  .spec-photo{
    height: 70px;
  }

  .spec-panels span{
    height: 34px;
  }

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

  .origin-story{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
  }

  .back-to-top{
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(15,23,42,.065);
  }

  .hero{
    padding: 38px 0 42px;
    padding-top: 28px !important;
    padding-bottom: 38px !important;
  }

  .hero h1{
    font-size: clamp(38px,10.4vw,48px) !important;
    line-height: 1.03 !important;
    margin-bottom: 16px !important;
  }

  .hero .lead{
    font-size: 15.3px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .hero .metric{
    background: #fff;
  }

  .brand-link img{
    width: 202px;
  }

  .hero-grid{
    gap: 22px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-copy{
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .hero-art{
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-top: 0 !important;
  }

  .hero-grid>.metrics{
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .hero .actions{
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    align-items: center !important;
  }

  .hero .actions .btn{
    width: auto;
    flex: 1 1 0;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 12.5px;
    border-radius: 13px;
  }

  .hero .metrics{
    margin-top: 0;
  }

  .offer-theme-demo-large .theme-page header{
    min-height: 78px;
    padding: 16px 14px 14px;
  }

  .offer-theme-demo-large .theme-page header:before, .offer-theme-demo-large .theme-page header:after{
    left: 14px;
    right: 14px;
    height: 10px;
  }

  .offer-theme-demo-large .theme-page header:before{
    top: 18px;
    right: 32%;
  }

  .offer-theme-demo-large .theme-page header:after{
    top: 40px;
    right: 48%;
  }

  .protected-line{
    font-size: 10.5px;
    padding: 6px 9px;
    margin-top: 9px;
  }

  .update-timeline{
    gap: 14px;
  }

  .update-timeline:before{
    display: none;
  }

  .timeline-item{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-item time{
    padding-top: 0;
    font-size: 12px;
  }

  .timeline-card{
    border-radius: 22px;
    padding: 20px;
  }

  .timeline-card:before{
    display: none;
  }

  .timeline-card h3{
    font-size: 23px;
  }

  .upcoming-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .upcoming-grid article{
    border-radius: 22px;
    padding: 20px;
  }

  .asset-downloads{
    grid-template-columns: 1fr 1fr;
  }

  .asset-downloads a.asset-zip{
    grid-column: 1/-1;
  }

  .timeline-card p, .upcoming-grid p{
    font-size: 14.5px;
    line-height: 1.55;
  }

  .feature-kpi-grid, .workspace-map-grid, .concept-grid, .control-grid, .use-grid, .flow-meta{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-kpi-grid article, .workspace-map-grid article, .concept-grid article, .control-grid article, .use-grid article{
    border-radius: 22px;
    padding: 20px;
  }

  .flow-strip{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .flow-strip i{
    width: 2px;
    height: 14px;
    justify-self: center;
  }

  #products .card, #documents .card{
    min-height: 0;
    padding: 20px;
  }

  #products .card h3, #documents .card h3{
    font-size: 22px;
    line-height: 1.12;
  }

  #products .card p, #documents .card p{
    font-size: 14.5px;
    line-height: 1.55;
  }

  .system-flow{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .system-flow i{
    width: 2px;
    height: 14px;
    justify-self: center;
  }

  .pallet-visual{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pallet-stack{
    min-height: 196px;
    padding: 18px 16px 36px;
    gap: 7px;
  }

  .pallet-stack span{
    min-height: 40px;
  }

  .pallet-options{
    grid-template-columns: 1fr;
  }

  .pallet-options div{
    padding: 11px 12px;
  }

  .loading-plan-visual{
    grid-template-columns: 1fr;
  }

  .container-plan{
    min-height: 190px;
    grid-auto-rows: 34px;
    padding: 16px 30px 16px 16px;
  }

  .loading-pdf-card{
    min-height: 126px;
  }

  .detail-grid.compact-detail-grid, .share-metrics{
    grid-template-columns: 1fr 1fr;
  }

  .share-link-card span{
    font-size: 12px;
  }

  .control-grid .control-icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .product-data-figure .figure-top{
    grid-template-columns: 1fr;
    justify-items: start;
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    text-align: left;
  }

  .product-data-figure .figure-top span, .product-data-figure .figure-top b{
    max-width: none;
    white-space: nowrap;
    line-height: 1.2;
    font-size: 10px;
    letter-spacing: .055em;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .product-data-figure .figure-top span{
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
  }

  .product-data-figure .figure-top b{
    border: 1px solid #C7D8FF;
    background: #EEF4FF;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 10px;
    letter-spacing: .07em;
    color: #64748B;
    flex: 0 0 auto;
    text-align: right;
  }

  .share-figure .share-metrics{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .share-figure .share-metrics span{
    text-align: center;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.25;
    display: grid;
    place-items: center;
    min-height: 42px;
    justify-content: center;
    letter-spacing: .01em;
  }


  .contact-soft-section{
    padding-top: 46px;
  }

  .contact-soft-form, .official-channels-card, .contact-soft-side .card{
    border-radius: 24px;
  }

  .contact-soft-form{
    padding: 22px;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .contact-soft-form .btn{
    width: 100%;
  }


  .founder-quote{
    gap: 8px;
    padding: 34px 0;
    grid-template-columns: 1fr;
  }

  .quote-mark{
    font-size: 62px;
  }

  .founder-quote blockquote p{
    font-size: 16.5px;
    line-height: 1.68;
  }
}
