 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0
 }

 :root {
     --white: #FFFFFF;
     --beige: #F5F1E8;
     --beige-mid: #EDE8DA;
     --black: #0A0A0A;
     --charcoal: #2B2B2B;
     --muted: #6B6560;
     --muted-light: #9B948C;
     --gold: #D4AF37;
     --gold-light: #C8A97E;
     --gold-pale: #F0E6C8;
     --w: #FFFFFF;
     --b: #F5F1E8;
     --bm: #EDE8DA;
     --blk: #0A0A0A;
     --ch: #2B2B2B;
     --mt: #6B6560;
     --ml: #9B948C;
     --g: #D4AF37;
     --gl: #C8A97E;
     --gp: #F0E6C8;
     --gg: rgba(212, 175, 55, 0.16);
     --br: rgba(43, 35, 20, 0.09);
     --brs: rgba(43, 35, 20, 0.16);
     --ease: cubic-bezier(0.16, 1, 0.3, 1);
     --font: 'Geist', sans-serif;
     --ser: 'Instrument Serif', serif;
     --mono: 'Geist Mono', monospace;
     
 }

 html {
     scroll-behavior: smooth
 }

 body {
     background: var(--w);
     color: var(--blk);
     font-family: var(--font);
     font-weight: 400;
     line-height: 1.6;
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased
 }

 ::-webkit-scrollbar {
     width: 3px
 }

 ::-webkit-scrollbar-thumb {
     background: var(--gl);
     border-radius: 2px
 }

 /* ── PROGRESS ── */
 #pb {
     position: fixed;
     top: 0;
     left: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--gl), var(--g));
     z-index: 300;
     width: 0
 }

 /* ═══════════════════════════════════════
   MEGA HEADER
═══════════════════════════════════════ */
 .site-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 200;
     height: 66px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 48px;
     transition: all .5s var(--ease);
     border-bottom: 1px solid transparent;
 }

 .site-header.scrolled {
     background: rgba(255, 255, 255, .92);
     backdrop-filter: blur(24px);
     -webkit-backdrop-filter: blur(24px);
     border-color: var(--br);
 }

 /* logo */
 .h-logo {
     font-size: 17px;
     font-weight: 600;
     letter-spacing: .2em;
     color: var(--blk);
     text-decoration: none;
     text-transform: uppercase;
     display: flex;
     align-items: center;
     gap: 5px;
     z-index: 2;
     flex-shrink: 0
 }

 .h-logo-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--g);
     animation: pdot 2.5s ease-in-out infinite
 }

 @keyframes pdot {

     0%,
     100% {
         transform: scale(1);
         opacity: 1
     }

     50% {
         transform: scale(1.7);
         opacity: .6
     }
 }

 /* desktop nav */
 .h-nav {
     display: flex;
     align-items: center;
     gap: 4px;
     position: relative
 }

 .h-nav-item {
     position: relative
 }

 .h-nav-btn {
     display: flex;
     align-items: center;
     gap: 5px;
     font-size: 13px;
     font-weight: 400;
     color: var(--ch);
     text-decoration: none;
     letter-spacing: .02em;
     padding: 8px 12px;
     border-radius: 7px;
     background: transparent;
     border: none;
     cursor: pointer;
     font-family: var(--font);
     opacity: .75;
     transition: opacity .2s, background .2s;
     white-space: nowrap;
 }

 .h-nav-btn:hover {
     opacity: 1;
     background: rgba(43, 35, 20, .04)
 }

 .h-nav-btn.has-dropdown .caret {
     width: 14px;
     height: 14px;
     transition: transform .3s var(--ease);
     flex-shrink: 0;
 }

 .h-nav-item.open .h-nav-btn.has-dropdown .caret {
     transform: rotate(180deg)
 }

 /* MEGA DROPDOWN */
 .mega-drop {
     position: absolute;
     top: calc(100% + 12px);
     left: 50%;
     transform: translateX(-50%) translateY(-8px);
     background: var(--w);
     border: 1px solid var(--brs);
     border-radius: 16px;
     box-shadow: 0 24px 80px rgba(20, 15, 5, .13), 0 4px 16px rgba(20, 15, 5, .06);
     opacity: 0;
     pointer-events: none;
     transition: opacity .3s var(--ease), transform .3s var(--ease);
     min-width: 600px;
     overflow: hidden;
 }

 .h-nav-item.open .mega-drop {
     opacity: 1;
     pointer-events: auto;
     transform: translateX(-50%) translateY(0)
 }

 /* simple dropdown */
 .simple-drop {
     position: absolute;
     top: calc(100% + 12px);
     left: 0;
     background: var(--w);
     border: 1px solid var(--brs);
     border-radius: 12px;
     box-shadow: 0 16px 48px rgba(20, 15, 5, .10), 0 2px 8px rgba(20, 15, 5, .05);
     opacity: 0;
     pointer-events: none;
     transition: opacity .3s var(--ease), transform .3s var(--ease);
     min-width: 200px;
     padding: 8px;
     transform: translateY(-6px);
 }

 .h-nav-item.open .simple-drop {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0)
 }

 .drop-link {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 12px;
     border-radius: 8px;
     text-decoration: none;
     color: var(--ch);
     font-size: 13px;
     font-weight: 400;
     transition: background .2s;
     white-space: nowrap;
 }

 .drop-link:hover {
     background: var(--b)
 }

 .drop-link-icon {
     width: 28px;
     height: 28px;
     border-radius: 7px;
     background: var(--gp);
     border: 1px solid rgba(212, 175, 55, .2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 13px;
     flex-shrink: 0
 }

 /* mega layout */
 .mega-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     min-height: 320px
 }

 .mega-left {
     padding: 28px;
     border-right: 1px solid var(--br);
     background: var(--b)
 }

 .mega-left-title {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 16px
 }

 .mega-items {
     display: flex;
     flex-direction: column;
     gap: 4px
 }

 .mega-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 12px;
     border-radius: 10px;
     text-decoration: none;
     transition: background .2s;
     cursor: pointer;
     border: none;
     background: transparent;
     width: 100%;
     text-align: left;
 }

 .mega-item:hover {
     background: rgba(43, 35, 20, .04)
 }

 .mega-item.active {
     background: rgba(212, 175, 55, .1)
 }

 .mi-icon {
     width: 36px;
     height: 36px;
     border-radius: 9px;
     background: var(--w);
     border: 1px solid var(--br);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     flex-shrink: 0;
     transition: border-color .2s
 }

 .mega-item.active .mi-icon,
 .mega-item:hover .mi-icon {
     border-color: rgba(212, 175, 55, .3)
 }

 .mi-text .mi-name {
     font-size: 13px;
     font-weight: 500;
     color: var(--blk);
     display: block;
     margin-bottom: 2px
 }

 .mi-text .mi-desc {
     font-size: 11.5px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.4
 }

 .mega-right {
     padding: 28px
 }

 .mega-right-title {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 16px
 }

 .mega-preview-panel {
     background: var(--b);
     border: 1px solid var(--br);
     border-radius: 10px;
     padding: 16px;
     min-height: 200px;
     transition: opacity .2s;
 }

 .mp-tag {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     background: var(--gp);
     border: 1px solid rgba(212, 175, 55, .25);
     border-radius: 5px;
     padding: 3px 9px;
     font-size: 10px;
     font-weight: 500;
     color: var(--ch);
     margin-bottom: 12px
 }

 .mp-title {
     font-size: 15px;
     font-weight: 600;
     letter-spacing: -.01em;
     color: var(--blk);
     margin-bottom: 6px
 }

 .mp-desc {
     font-size: 12px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.6;
     margin-bottom: 14px
 }

 .mp-code {
     background: var(--w);
     border: 1px solid var(--br);
     border-radius: 7px;
     padding: 10px;
     font-family: var(--mono);
     font-size: 10.5px;
     line-height: 1.85;
     color: var(--ch)
 }

 .mp-code .dim {
     color: var(--ml)
 }

 .mp-code .gold {
     color: var(--g)
 }

 .mp-code .grn {
     color: #5a9e6e
 }

 .mega-footer {
     border-top: 1px solid var(--br);
     padding: 16px 28px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: #fdfaf4
 }

 .mega-footer-link {
     font-size: 12px;
     font-weight: 500;
     color: var(--gl);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 5px;
     transition: gap .2s
 }

 .mega-footer-link:hover {
     gap: 8px
 }

 /* header right */
 .h-right {
     display: flex;
     align-items: center;
     gap: 12px;
     z-index: 2;
     flex-shrink: 0
 }

 .h-signin {
     font-size: 13px;
     color: var(--ch);
     text-decoration: none;
     opacity: .65;
     transition: opacity .2s
 }

 .h-signin:hover {
     opacity: 1
 }

 .h-start {
     font-size: 13px;
     font-weight: 500;
     color: var(--blk);
     background: var(--gp);
     border: 1px solid rgba(212, 175, 55, .38);
     padding: 9px 20px;
     border-radius: 6px;
     text-decoration: none;
     transition: all .2s
 }

 .h-start:hover {
     background: #eed89a;
     border-color: var(--g);
     transform: translateY(-1px)
 }

 /* ── HAMBURGER ── */
 .h-burger {
     display: none;
     flex-direction: column;
     justify-content: center;
     gap: 5px;
     width: 40px;
     height: 40px;

     cursor: pointer;
     padding: 10px;
     z-index: 210;
 }

 .h-burger span {
     display: block;
     height: 1.5px;
     background: var(--blk);
     border-radius: 1px;
     transition: all .3s var(--ease)
 }

 .h-burger.open span:nth-child(1) {
     transform: translateY(6.5px) rotate(45deg)
 }

 .h-burger.open span:nth-child(2) {
     opacity: 0;
     transform: scaleX(0)
 }

 .h-burger.open span:nth-child(3) {
     transform: translateY(-6.5px) rotate(-45deg)
 }

 /* ── MOBILE DRAWER ── */
 .mobile-nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 190;
     background: var(--w);
     transform: translateX(100%);
     transition: transform .45s var(--ease);
     overflow-y: auto;
     padding: 90px 28px 40px;
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .mobile-nav.open {
     transform: translateX(0)
 }

 .mob-section {
     margin-bottom: 28px
 }

 .mob-section-title {
     font-size: 10px;
     font-weight: 600;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 12px;
     padding: 0 4px
 }

 .mob-link {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 13px 14px;
     border-radius: 10px;
     text-decoration: none;
     color: var(--ch);
     font-size: 14px;
     font-weight: 400;
     transition: background .2s;
     border: none;
     background: transparent;
     width: 100%;
     text-align: left;
     cursor: pointer;
     font-family: var(--font)
 }

 .mob-link:hover,
 .mob-link:active {
     background: var(--b)
 }

 .mob-link-ico {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     background: var(--gp);
     border: 1px solid rgba(212, 175, 55, .2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     flex-shrink: 0
 }

 .mob-link-text .t1 {
     font-size: 13.5px;
     font-weight: 500;
     color: var(--blk);
     display: block
 }

 .mob-link-text .t2 {
     font-size: 11.5px;
     color: var(--mt)
 }

 .mob-ctas {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: auto;
     padding-top: 24px;
     border-top: 1px solid var(--br)
 }

 .mob-cta-p {
     display: block;
     text-align: center;
     padding: 14px;
     background: var(--blk);
     color: var(--w);
     border-radius: 8px;
     font-size: 14px;
     font-weight: 500;
     text-decoration: none
 }

 .mob-cta-s {
     display: block;
     text-align: center;
     padding: 13px;
     border: 1px solid var(--brs);
     color: var(--ch);
     border-radius: 8px;
     font-size: 14px;
     font-weight: 400;
     text-decoration: none
 }

 /* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

/* Hero Section */
.hero{
    height:100vh;
    background:linear-gradient(to bottom,#d89a00,#d87500);
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:0 50px;
}

/* Mountains */
.hero::before,
.hero::after{
    content:"";
    position:absolute;
    bottom:0;
    width:100%;
    height:45%;
    background:radial-gradient(circle at 20% 100%, #b84f00 0%, transparent 40%),
               radial-gradient(circle at 50% 100%, #c95f00 0%, transparent 35%),
               radial-gradient(circle at 80% 100%, #a94400 0%, transparent 38%);
    z-index:1;
}

.hero::after{
    height:35%;
    opacity:0.7;
}

/* Content */
.content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.content h1{
    font-size:90px;
    line-height:1.05;
    font-weight:300;
    margin-bottom:30px;
}

.content p{
    font-size:24px;
    line-height:1.4;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    gap:20px;
}

.buttons a{
    text-decoration:none;
    color:white;
    font-size:24px;
    display:flex;
    align-items:center;
    gap:8px;
}

/* Responsive */
@media(max-width:900px){
    .content h1{
        font-size:55px;
    }

    nav{
        display:none;
    }

    header{
        padding:20px;
    }

    .hero{
        padding:0 20px;
    }
}
 /* .hero {
     min-height: 100vh;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     background: linear-gradient(165deg, #FDFBF7 0%, var(--b) 55%, #EAE0CA 100%);
 } */

 #hcanvas {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 0
 }

 .hero-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 72px;
     align-items: center;
     max-width: 1300px;
     margin: 0 auto;
     padding: 140px 56px 100px;
     width: 100%;
     position: relative;
     z-index: 1;
 }

 .h-ey {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .16em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 28px;
     opacity: 0;
     animation: fup .9s .2s var(--ease) forwards
 }

 .h-eyline {
     width: 28px;
     height: 1px;
     background: var(--gl);
     animation: gline .8s .5s ease forwards;
     transform: scaleX(0);
     transform-origin: left
 }

 @keyframes gline {
     to {
         transform: scaleX(1)
     }
 }

 @keyframes fup {
     from {
         opacity: 0;
         transform: translateY(16px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 h1.hh1 {
     font-size: clamp(44px, 5.5vw, 78px);
     font-weight: 600;
     line-height: 1.06;
     letter-spacing: -.035em;
     color: var(--blk);
     margin-bottom: 24px;
     opacity: 0;
     animation: fup 1s .35s var(--ease) forwards
 }

 h1.hh1 em {
     font-style: italic;
     font-family: var(--ser);
     font-weight: 400;
     color: var(--ch)
 }

 .h-sub {
     font-size: 17px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.7;
     max-width: 460px;
     margin-bottom: 44px;
     opacity: 0;
     animation: fup 1s .5s var(--ease) forwards
 }

 .h-ctas {
     display: flex;
     gap: 14px;
     align-items: center;
     opacity: 0;
     animation: fup 1s .64s var(--ease) forwards
 }

 .cta-p {
     font-size: 14px;
     font-weight: 500;
     color: var(--w);
     background: var(--blk);
     padding: 14px 28px;
     border-radius: 7px;
     text-decoration: none;
     transition: all .25s var(--ease)
 }

 .cta-p:hover {
     background: var(--ch);
     transform: translateY(-2px);
     box-shadow: 0 10px 28px rgba(10, 10, 10, .2)
 }

 .cta-o {
     font-size: 14px;
     font-weight: 400;
     color: var(--ch);
     border: 1px solid var(--brs);
     padding: 13px 22px;
     border-radius: 7px;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 7px;
     transition: all .2s
 }

 .cta-o:hover {
     border-color: rgba(212, 175, 55, .5);
     color: var(--blk)
 }

 .cta-o svg {
     transition: transform .2s
 }

 .cta-o:hover svg {
     transform: translateX(3px)
 }

 /* hero preview */
 .hero-right {
     position: relative;
     opacity: 0;
     animation: fup 1.2s .4s var(--ease) forwards
 }

 .hero-glow {
     position: absolute;
     inset: -24px;
     background: radial-gradient(ellipse at 60% 40%, rgba(212, 175, 55, .12) 0%, transparent 65%);
     border-radius: 24px;
     pointer-events: none
 }

 .pw {
     background: var(--w);
     border: 1px solid var(--brs);
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 40px 100px rgba(20, 15, 5, .12), 0 4px 12px rgba(20, 15, 5, .06);
     transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
     transition: transform .6s var(--ease)
 }

 .pw:hover {
     transform: perspective(1200px) rotateY(-1deg) rotateX(0)
 }

 .pwb {
     background: var(--b);
     padding: 12px 16px;
     border-bottom: 1px solid var(--br);
     display: flex;
     align-items: center;
     gap: 7px
 }

 .wd {
     width: 10px;
     height: 10px;
     border-radius: 50%
 }

 .pwimg {
     width: 100%;
     height: 180px;
     object-fit: cover;
     display: block
 }

 .pwbody {
     padding: 16px
 }

 .pwm {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 8px;
     margin-bottom: 12px
 }

 .pwmc {
     background: var(--b);
     border: 1px solid var(--br);
     border-radius: 8px;
     padding: 10px
 }

 .pwmc .ll {
     font-size: 9px;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: var(--ml)
 }

 .pwmc .vv {
     font-size: 18px;
     font-weight: 600;
     letter-spacing: -.02em;
     color: var(--blk)
 }

 .pwmc .dd {
     font-size: 10px;
     color: #5a9e6e;
     font-weight: 500
 }

 .pwchart {
     background: var(--b);
     border: 1px solid var(--br);
     border-radius: 8px;
     padding: 10px;
     margin-bottom: 10px
 }

 .pwcl {
     font-size: 9px;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: var(--ml);
     margin-bottom: 7px
 }

 .bars {
     display: flex;
     align-items: flex-end;
     gap: 3px;
     height: 36px
 }

 .bar {
     flex: 1;
     border-radius: 2px 2px 0 0;
     background: linear-gradient(180deg, #D4AF37 0%, #C8A97E 100%);
     animation: bu 1.4s var(--ease) forwards;
     transform-origin: bottom;
     opacity: .5
 }

 @keyframes bu {
     from {
         transform: scaleY(0);
         opacity: 0
     }

     to {
         transform: scaleY(1);
         opacity: var(--op, .5)
     }
 }

 .bar:nth-child(1) {
     height: 40%;
     animation-delay: .05s
 }

 .bar:nth-child(2) {
     height: 62%;
     animation-delay: .10s
 }

 .bar:nth-child(3) {
     height: 48%;
     animation-delay: .15s
 }

 .bar:nth-child(4) {
     height: 75%;
     animation-delay: .20s
 }

 .bar:nth-child(5) {
     height: 55%;
     animation-delay: .25s
 }

 .bar:nth-child(6) {
     height: 88%;
     animation-delay: .30s;
     --op: .8
 }

 .bar:nth-child(7) {
     height: 70%;
     animation-delay: .35s
 }

 .bar:nth-child(8) {
     height: 82%;
     animation-delay: .40s
 }

 .bar:nth-child(9) {
     height: 65%;
     animation-delay: .45s
 }

 .bar:nth-child(10) {
     height: 95%;
     animation-delay: .50s;
     --op: 1
 }

 .bar:nth-child(11) {
     height: 78%;
     animation-delay: .55s
 }

 .bar:nth-child(12) {
     height: 100%;
     animation-delay: .60s;
     --op: 1
 }

 .pwchat {
     background: var(--b);
     border: 1px solid var(--br);
     border-radius: 8px;
     padding: 10px
 }

 .pm {
     display: flex;
     gap: 8px;
     align-items: flex-start;
     margin-bottom: 7px
 }

 .pm:last-child {
     margin-bottom: 0
 }

 .pa {
     width: 22px;
     height: 22px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 8px;
     font-weight: 600;
     flex-shrink: 0
 }

 .pau {
     background: var(--gp);
     color: var(--g);
     border: 1px solid rgba(212, 175, 55, .25)
 }

 .paa {
     background: var(--blk);
     color: var(--w)
 }

 .pb2 {
     font-size: 11px;
     color: var(--ch);
     line-height: 1.5;
     background: var(--w);
     border: 1px solid var(--br);
     border-radius: 0 7px 7px 7px;
     padding: 6px 9px
 }

 .pb2.ai {
     background: linear-gradient(135deg, #faf8f2, #f5edd8);
     border-color: rgba(212, 175, 55, .18);
     border-radius: 7px 7px 7px 0
 }

 .cur {
     display: inline-block;
     width: 6px;
     height: 11px;
     background: var(--g);
     border-radius: 1px;
     animation: bl 1s step-end infinite;
     vertical-align: -2px;
     margin-left: 2px
 }

 @keyframes bl {

     0%,
     100% {
         opacity: 1
     }

     50% {
         opacity: 0
     }
 }

 .fb {
     position: absolute;
     background: var(--w);
     border: 1px solid var(--brs);
     border-radius: 10px;
     padding: 10px 14px;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 8px 28px rgba(20, 15, 5, .10)
 }

 .fb.f1 {
     top: -14px;
     right: -18px;
     animation: float 4s ease-in-out infinite
 }

 .fb.f2 {
     bottom: 50px;
     left: -24px;
     animation: float 4s 1.5s ease-in-out infinite
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-6px)
     }
 }

 .fbi {
     width: 30px;
     height: 30px;
     background: var(--gp);
     border-radius: 7px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px
 }

 .fbt1 {
     font-size: 12px;
     font-weight: 600;
     color: var(--blk);
     display: block
 }

 .fbt2 {
     font-size: 10px;
     color: var(--mt)
 }

 /* brand strip */
 .bstrip {
     border-top: 1px solid var(--br);
     border-bottom: 1px solid var(--br);
     padding: 26px 0;
     overflow: hidden;
     position: relative
 }

 .bstrip::before,
 .bstrip::after {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     width: 120px;
     z-index: 2;
     pointer-events: none
 }

 .bstrip::before {
     left: 0;
     background: linear-gradient(90deg, var(--w), transparent)
 }

 .bstrip::after {
     right: 0;
     background: linear-gradient(-90deg, var(--w), transparent)
 }

 .btrack {
     display: flex;
     gap: 60px;
     align-items: center;
     animation: tick 26s linear infinite;
     white-space: nowrap;
     width: max-content;
     padding: 0 30px
 }

 @keyframes tick {
     from {
         transform: translateX(0)
     }

     to {
         transform: translateX(-50%)
     }
 }

 .bn {
     font-size: 14px;
     font-weight: 600;
     letter-spacing: .1em;
     text-transform: uppercase;
     color: var(--ml);
     opacity: .4;
     cursor: default;
     transition: opacity .2s
 }

 .bn:hover {
     opacity: .7
 }

 /* ═══════════════════════════════════════
   CAPABILITIES — REDESIGNED
═══════════════════════════════════════ */
 .cap-section {
     padding: 140px 56px;
     max-width: 1300px;
     margin: 0 auto
 }

 .cap-header {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: end;
     margin-bottom: 80px
 }

 .cap-eyebrow {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .16em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 16px
 }

 .cap-title {
     font-size: clamp(32px, 4vw, 54px);
     font-weight: 600;
     letter-spacing: -.035em;
     line-height: 1.08;
     color: var(--blk)
 }

 .cap-title em {
     font-style: italic;
     font-family: var(--ser);
     font-weight: 400
 }

 .cap-subtitle {
     font-size: 15px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.75;
     max-width: 360px
 }

 /* Capability cards — new bento-style grid */
 .cap-bento {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     grid-template-rows: auto auto;
     gap: 14px
 }

 .cap-card {
     border: 1px solid var(--br);
     border-radius: 16px;
     padding: 36px 30px;
     background: var(--w);
     position: relative;
     overflow: hidden;
     cursor: default;
     transition: all .35s var(--ease);
 }

 .cap-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 50% -10%, var(--gg) 0%, transparent 60%);
     opacity: 0;
     transition: opacity .4s
 }

 .cap-card:hover {
     border-color: rgba(212, 175, 55, .28);
     transform: translateY(-5px);
     box-shadow: 0 20px 56px rgba(20, 15, 5, .09)
 }

 .cap-card:hover::before {
     opacity: 1
 }

 .cap-card.wide {
     grid-column: span 2
 }

 .cap-card.dark {
     background: var(--blk);
     border-color: transparent
 }

 .cap-card.dark::before {
     background: radial-gradient(circle at 50% -10%, rgba(212, 175, 55, .15) 0%, transparent 60%);
     opacity: 1
 }

 .cap-card.dark:hover {
     box-shadow: 0 20px 56px rgba(10, 10, 10, .3)
 }

 .cap-card-num {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 18px
 }

 .cap-card.dark .cap-card-num {
     color: rgba(212, 175, 55, .6)
 }

 .cap-card-icon {
     width: 44px;
     height: 44px;
     border-radius: 11px;
     background: var(--gp);
     border: 1px solid rgba(212, 175, 55, .2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 18px
 }

 .cap-card.dark .cap-card-icon {
     background: rgba(212, 175, 55, .12);
     border-color: rgba(212, 175, 55, .2)
 }

 .cap-card-icon svg {
     width: 20px;
     height: 20px;
     color: var(--g)
 }

 .cap-card-title {
     font-size: clamp(20px, 2.2vw, 26px);
     font-weight: 600;
     letter-spacing: -.025em;
     color: var(--blk);
     margin-bottom: 10px;
     line-height: 1.2
 }

 .cap-card.dark .cap-card-title {
     color: var(--w)
 }

 .cap-card-desc {
     font-size: 14px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.65;
     max-width: 340px
 }

 .cap-card.dark .cap-card-desc {
     color: rgba(255, 255, 255, .5)
 }

 .cap-card-demo {
     margin-top: 22px;
     background: var(--b);
     border: 1px solid var(--br);
     border-radius: 10px;
     padding: 14px;
     font-family: var(--mono);
     font-size: 11px;
     line-height: 1.85;
     color: var(--ch)
 }

 .cap-card.dark .cap-card-demo {
     background: rgba(255, 255, 255, .04);
     border-color: rgba(255, 255, 255, .07);
     color: rgba(255, 255, 255, .6)
 }

 .cap-card-demo .dim {
     color: var(--ml)
 }

 .cap-card-demo .gold {
     color: var(--g)
 }

 .cap-card-demo .grn {
     color: #5a9e6e
 }

 .cap-card.dark .cap-card-demo .dim {
     color: rgba(255, 255, 255, .25)
 }

 .cap-tag-row {
     display: flex;
     gap: 6px;
     flex-wrap: wrap;
     margin-top: 20px
 }

 .cap-tag {
     font-size: 10px;
     font-weight: 500;
     letter-spacing: .06em;
     padding: 4px 10px;
     border-radius: 100px;
     background: var(--b);
     border: 1px solid var(--br);
     color: var(--mt)
 }

 .cap-card.dark .cap-tag {
     background: rgba(255, 255, 255, .06);
     border-color: rgba(255, 255, 255, .1);
     color: rgba(255, 255, 255, .5)
 }

 .cap-tag.gold {
     background: var(--gp);
     border-color: rgba(212, 175, 55, .25);
     color: var(--ch)
 }

 /* big capability statement row */
 .cap-statements {
     margin-top: 80px;
     border-top: 1px solid var(--br)
 }

 .cap-stmt {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 36px 0;
     border-bottom: 1px solid var(--br);
     cursor: default;
     position: relative;
     overflow: hidden;
     transition: padding-left .3s;
 }

 .cap-stmt::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 0;
     background: var(--b);
     transition: width .4s var(--ease);
     z-index: -1
 }

 .cap-stmt:hover::before {
     width: 100%
 }

 .cap-stmt:hover {
     padding-left: 20px
 }

 .cap-stmt:last-child {
     border-bottom: none
 }

 .cap-stmt-text {
     font-size: clamp(24px, 3.5vw, 48px);
     font-weight: 600;
     letter-spacing: -.03em;
     color: var(--blk);
     line-height: 1.1
 }

 .cap-stmt-text em {
     font-style: italic;
     font-family: var(--ser);
     font-weight: 400
 }

 .cap-stmt-meta {
     display: flex;
     align-items: center;
     gap: 16px;
     flex-shrink: 0
 }

 .cap-stmt-tag {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .1em;
     text-transform: uppercase;
     color: var(--ml)
 }

 .cap-stmt-arrow {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     border: 1px solid var(--brs);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--ml);
     transition: all .3s var(--ease);
     flex-shrink: 0
 }

 .cap-stmt:hover .cap-stmt-arrow {
     border-color: var(--g);
     color: var(--g);
     transform: rotate(45deg)
 }

 /* ═══════════════════════════════════════
   PRODUCT EXPERIENCE
═══════════════════════════════════════ */
 .exp-section {
     background: var(--b);
     padding: 120px 0
 }

 .exp-section-inner {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 56px
 }

 .exp-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1px;
     background: var(--brs);
     border: 1px solid var(--brs);
     border-radius: 16px;
     overflow: hidden;
     margin-top: 64px
 }

 .exp-item {
     background: var(--w);
     padding: 52px 44px;
     position: relative;
     overflow: hidden;
     transition: background .3s
 }

 .exp-item:hover {
     background: #fdfaf4
 }

 .exp-num {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 20px
 }

 .exp-title {
     font-size: 26px;
     font-weight: 600;
     letter-spacing: -.022em;
     line-height: 1.2;
     color: var(--blk);
     margin-bottom: 12px
 }

 .exp-desc {
     font-size: 14px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.65;
     max-width: 320px;
     margin-bottom: 26px
 }

 .exp-demo {
     background: var(--b);
     border: 1px solid var(--br);
     border-radius: 10px;
     padding: 14px;
     font-family: var(--mono);
     font-size: 11px;
     color: var(--ch);
     line-height: 1.85;
     min-height: 110px
 }

 .exp-demo .dim {
     color: var(--ml)
 }

 .exp-demo .gold {
     color: var(--g)
 }

 .exp-demo .grn {
     color: #5a9e6e
 }

 /* ═══════════════════════════════════════
   WORLD DEVICES — NEW SECTION
═══════════════════════════════════════ */
 .world-section {
     position: relative;
     overflow: hidden;
     background: var(--blk);
     padding: 140px 56px;
 }

 .world-bg {
     position: absolute;
     inset: 0;
     z-index: 0;
     pointer-events: none;
 }

 /* SVG globe lines embedded */
 .world-noise {
     position: absolute;
     inset: 0;
     opacity: .02;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
     background-size: 200px;
 }

 .world-glow {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 800px;
     height: 600px;
     background: radial-gradient(ellipse, rgba(212, 175, 55, .08) 0%, transparent 65%);
     pointer-events: none;
 }

 .world-inner {
     max-width: 1300px;
     margin: 0 auto;
     position: relative;
     z-index: 1
 }

 .world-top {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-bottom: 100px
 }

 .world-eyebrow {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .16em;
     text-transform: uppercase;
     color: rgba(212, 175, 55, .7);
     margin-bottom: 18px
 }

 .world-title {
     font-size: clamp(34px, 4.5vw, 64px);
     font-weight: 600;
     letter-spacing: -.035em;
     line-height: 1.06;
     color: var(--w);
     margin-bottom: 20px
 }

 .world-title em {
     font-style: italic;
     font-family: var(--ser);
     font-weight: 400;
     color: rgba(212, 175, 55, .8)
 }

 .world-sub {
     font-size: 16px;
     font-weight: 300;
     color: rgba(255, 255, 255, .45);
     line-height: 1.75;
     max-width: 420px;
     margin-bottom: 36px
 }

 .world-stats {
     display: flex;
     gap: 40px
 }

 .ws {
     border-left: 1px solid rgba(212, 175, 55, .25);
     padding-left: 20px
 }

 .ws-num {
     font-size: 28px;
     font-weight: 700;
     letter-spacing: -.03em;
     color: var(--w);
     line-height: 1
 }

 .ws-num .u {
     font-size: .55em;
     color: var(--g);
     font-weight: 400
 }

 .ws-lbl {
     font-size: 12px;
     font-weight: 300;
     color: rgba(255, 255, 255, .35);
     margin-top: 3px
 }

 /* devices grid */
 .devices-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
     margin-bottom: 80px
 }

 .device-card {
     border: 1px solid rgba(255, 255, 255, .07);
     border-radius: 16px;
     background: rgba(255, 255, 255, .03);
     padding: 28px 24px;
     position: relative;
     overflow: hidden;
     transition: all .35s var(--ease);
     cursor: default;
 }

 .device-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .1) 0%, transparent 60%);
     opacity: 0;
     transition: opacity .4s
 }

 .device-card:hover {
     border-color: rgba(212, 175, 55, .25);
     background: rgba(255, 255, 255, .05);
     transform: translateY(-4px)
 }

 .device-card:hover::before {
     opacity: 1
 }

 .dc-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px
 }

 .dc-icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: rgba(212, 175, 55, .1);
     border: 1px solid rgba(212, 175, 55, .2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px
 }

 .dc-name {
     font-size: 14px;
     font-weight: 600;
     color: var(--w);
     letter-spacing: -.01em
 }

 .dc-type {
     font-size: 11px;
     color: rgba(255, 255, 255, .35);
     font-weight: 300
 }

 .dc-mockup {
     background: rgba(255, 255, 255, .04);
     border: 1px solid rgba(255, 255, 255, .08);
     border-radius: 10px;
     padding: 14px;
     margin-bottom: 16px;
     min-height: 100px;
 }

 .dc-feature-list {
     display: flex;
     flex-direction: column;
     gap: 9px
 }

 .dc-feat {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 12px;
     font-weight: 300;
     color: rgba(255, 255, 255, .5)
 }

 .dc-feat-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--g);
     flex-shrink: 0
 }

 /* globe canvas */
 .world-globe-wrap {
     position: relative;
     height: 300px;
     margin-bottom: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: visible;
 }

 #globeCanvas {
     display: block
 }

 /* connection lines */
 .world-connections {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .06);
     border-radius: 16px;
     overflow: hidden;
     margin-top: 0;
 }

 .wc-item {
     padding: 36px 28px;
     background: var(--blk);
     transition: background .3s;
     cursor: default
 }

 .wc-item:hover {
     background: #111
 }

 .wc-num {
     font-size: clamp(28px, 3vw, 42px);
     font-weight: 700;
     letter-spacing: -.04em;
     color: var(--w);
     margin-bottom: 8px;
     line-height: 1
 }

 .wc-num .u {
     font-size: .5em;
     font-weight: 400;
     color: var(--g)
 }

 .wc-lbl {
     font-size: 12px;
     font-weight: 300;
     color: rgba(255, 255, 255, .35);
     line-height: 1.5
 }

 /* sync bar */
 .sync-bar {
     background: rgba(255, 255, 255, .03);
     border: 1px solid rgba(255, 255, 255, .07);
     border-radius: 14px;
     padding: 24px 28px;
     margin-top: 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
 }

 .sb-left {
     display: flex;
     align-items: center;
     gap: 14px
 }

 .sb-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--g);
     animation: pulse 2s ease-in-out infinite
 }

 @keyframes pulse {

     0%,
     100% {
         box-shadow: 0 0 0 0 rgba(212, 175, 55, .4)
     }

     50% {
         box-shadow: 0 0 0 8px rgba(212, 175, 55, 0)
     }
 }

 .sb-title {
     font-size: 14px;
     font-weight: 500;
     color: var(--w)
 }

 .sb-sub {
     font-size: 12px;
     color: rgba(255, 255, 255, .35);
     margin-top: 2px
 }

 .sb-devices {
     display: flex;
     gap: 6px
 }

 .sb-device {
     display: flex;
     align-items: center;
     gap: 6px;
     background: rgba(255, 255, 255, .05);
     border: 1px solid rgba(255, 255, 255, .08);
     border-radius: 6px;
     padding: 6px 12px;
     font-size: 11px;
     font-weight: 400;
     color: rgba(255, 255, 255, .55);
 }

 .sb-device-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #5a9e6e
 }

 /* ═══════════════════════════════════════
   INTEGRATIONS — REDESIGNED
═══════════════════════════════════════ */
/* ========================= */
/* ADVANCED FLOW UI SECTION  */
/* ========================= */

.int-section {
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.08), transparent 25%),
        radial-gradient(circle at bottom right, rgba(59,130,246,.08), transparent 25%),
        #050505;

    padding: 140px 60px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* animated background grid */

.int-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:80px 80px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
    pointer-events:none;
}

/* FLOW LINES */

.int-flow{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}

.flow-line{
    position:absolute;
    height:2px;
    border-radius:20px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.9),
        rgba(59,130,246,.9),
        transparent
    );

    filter:blur(.3px);
    opacity:.6;
}

.line-1{
    width:40%;
    left:-10%;
    top:40%;
    transform:rotate(12deg);
    animation: flowMove 7s linear infinite;
}

.line-2{
    width:55%;
    left:-20%;
    top:60%;
    transform:rotate(-8deg);
    animation: flowMove 9s linear infinite reverse;
}

.line-3{
    width:35%;
    left:10%;
    top:50%;
    animation: flowMove 6s linear infinite;
}

@keyframes flowMove{
    from{
        transform:translateX(-120px);
    }
    to{
        transform:translateX(130vw);
    }
}

/* floating API particles */

.int-particles span{
    position:absolute;
    color:rgba(255,255,255,.08);
    font-size:13px;
    letter-spacing:.12em;
    text-transform:uppercase;
    animation: floatParticle linear infinite;
}

.int-particles span:nth-child(1){
    top:18%;
    left:8%;
    animation-duration:10s;
}

.int-particles span:nth-child(2){
    top:32%;
    right:14%;
    animation-duration:12s;
}

.int-particles span:nth-child(3){
    bottom:22%;
    left:18%;
    animation-duration:14s;
}

.int-particles span:nth-child(4){
    top:55%;
    right:28%;
    animation-duration:11s;
}

.int-particles span:nth-child(5){
    bottom:18%;
    right:10%;
    animation-duration:9s;
}

.int-particles span:nth-child(6){
    top:14%;
    left:42%;
    animation-duration:13s;
}

@keyframes floatParticle{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0px);
    }
}

.int-inner{
    max-width:1350px;
    margin:auto;
    position:relative;
    z-index:2;
}

.int-header{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:end;
    margin-bottom:70px;
}

.int-eyebrow{
    color:rgba(212,175,55,.8);
    font-size:11px;
    letter-spacing:.22em;
    text-transform:uppercase;
    margin-bottom:18px;
}

.int-title{
    font-size:clamp(38px,5vw,68px);
    line-height:1;
    font-weight:700;
    color:white;
    letter-spacing:-.05em;
}

.int-title em{
    color:#d4af37;
    font-style:normal;
}

.int-sub{
    color:rgba(255,255,255,.45);
    line-height:1.8;
    font-size:15px;
    max-width:420px;
}

/* categories */

.int-cats{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:60px;
}

.int-cat{
    border:none;
    background:rgba(255,255,255,.05);
    color:rgba(255,255,255,.55);
    padding:10px 18px;
    border-radius:100px;
    cursor:pointer;
    transition:.3s;
    backdrop-filter:blur(10px);
}

.int-cat:hover,
.int-cat.active{
    background:linear-gradient(
    135deg,
    rgba(212,175,55,.2),
    rgba(59,130,246,.15)
    );

    color:white;
    box-shadow:0 0 20px rgba(212,175,55,.12);
}

/* MAIN FLOW LAYOUT */

.int-flow-grid{
    display:grid;
    grid-template-columns:1fr 480px 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:80px;
}

.flow-col{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* chips */

.int-chip{
    position:relative;
    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.02)
    );

    backdrop-filter:blur(14px);

    border-radius:22px;

    padding:22px;

    display:flex;
    align-items:center;
    gap:18px;

    transition:.45s cubic-bezier(.2,.8,.2,1);

    min-height:90px;
}

.int-chip::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transform:translateX(-120%);
    transition:1s;
}

.int-chip:hover::before{
    transform:translateX(120%);
}

.int-chip:hover{
    transform:translateY(-8px) scale(1.02);
    border-color:rgba(212,175,55,.25);

    box-shadow:
    0 20px 50px rgba(0,0,0,.45),
    0 0 30px rgba(212,175,55,.08);
}

.int-icon{
    width:58px;
    height:58px;
    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,.18),
        rgba(59,130,246,.12)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    border:1px solid rgba(255,255,255,.08);

    flex-shrink:0;
}

.int-name{
    color:white;
    font-size:15px;
    font-weight:600;
    letter-spacing:.02em;
}

.int-chip.featured{
    border-color:rgba(212,175,55,.18);
}

/* CENTER CORE */

.flow-core{
    position:relative;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.core-ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.08);
}

.ring-1{
    width:360px;
    height:360px;
    animation: spinSlow 18s linear infinite;
}

.ring-2{
    width:460px;
    height:460px;
    border-style:dashed;
    animation: spinSlowReverse 24s linear infinite;
}

@keyframes spinSlow{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

@keyframes spinSlowReverse{
    from{ transform:rotate(360deg); }
    to{ transform:rotate(0deg); }
}

.core-box{
    position:relative;

    width:320px;
    padding:42px 32px;

    border-radius:34px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.core-glow{
    position:absolute;
    inset:auto;
    width:240px;
    height:240px;
    background:radial-gradient(circle, rgba(212,175,55,.25), transparent 70%);
    top:-120px;
    left:50%;
    transform:translateX(-50%);
}

.core-logo{
    width:84px;
    height:84px;
    border-radius:24px;

    margin:auto auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #3b82f6
    );

    font-size:22px;
    font-weight:700;
    color:white;

    box-shadow:
    0 10px 30px rgba(212,175,55,.25);
}

.core-box h3{
    color:white;
    font-size:28px;
    margin-bottom:12px;
}

.core-box p{
    color:rgba(255,255,255,.5);
    line-height:1.7;
    font-size:14px;
}

.core-stats{
    margin-top:28px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.core-stats div{
    background:rgba(255,255,255,.04);
    border-radius:16px;
    padding:14px 10px;
}

.core-stats strong{
    display:block;
    color:white;
    font-size:18px;
}

.core-stats span{
    font-size:11px;
    color:rgba(255,255,255,.45);
}

/* marquee */

.int-marquee-wrap{
    overflow:hidden;
    margin-bottom:50px;
}

.marquee-track{
    display:flex;
    gap:28px;
    white-space:nowrap;

    animation: marquee 18s linear infinite;

    color:rgba(255,255,255,.32);
    font-size:13px;
    letter-spacing:.12em;
    text-transform:uppercase;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* footer */

.int-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;

    border-top:1px solid rgba(255,255,255,.07);

    padding-top:34px;
}

.int-count{
    color:rgba(255,255,255,.3);
    font-size:13px;
    letter-spacing:.06em;
}

.int-api-btns{
    display:flex;
    gap:12px;
}

.int-api-btn{
    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 18px;

    border-radius:14px;

    text-decoration:none;

    font-size:13px;
    font-weight:600;

    transition:.35s;
}

.int-api-btn.outline{
    border:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.72);
    background:rgba(255,255,255,.03);
}

.int-api-btn.gold{
    background:linear-gradient(
    135deg,
    rgba(212,175,55,.22),
    rgba(59,130,246,.18)
    );

    color:white;

    border:1px solid rgba(212,175,55,.2);
}

.int-api-btn:hover{
    transform:translateY(-3px);
}

/* responsive */

@media(max-width:1100px){

    .int-flow-grid{
        grid-template-columns:1fr;
    }

    .flow-core{
        order:-1;
        height:auto;
        padding:40px 0;
    }

    .int-header{
        grid-template-columns:1fr;
        gap:30px;
    }

    .int-footer{
        flex-direction:column;
        gap:24px;
        align-items:flex-start;
    }
}

@media(max-width:768px){

    .int-section{
        padding:100px 24px;
    }

    .core-box{
        width:100%;
    }

    .ring-1,
    .ring-2{
        display:none;
    }
}
 /* ═══════════════════════════════════════
   PLATFORM MODULES
═══════════════════════════════════════ */
 .mods-section {
     padding: 120px 56px;
     max-width: 1300px;
     margin: 0 auto
 }

 .mods-hdr {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     margin-bottom: 48px
 }

 .mods-title {
     font-size: clamp(26px, 3.5vw, 46px);
     font-weight: 600;
     letter-spacing: -.03em;
     line-height: 1.1
 }

 .mods-sub {
     font-size: 13px;
     color: var(--mt);
     max-width: 240px;
     text-align: right;
     line-height: 1.6
 }

 .mods-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 14px
 }

 .mod-card {
     background: var(--w);
     border: 1px solid var(--br);
     border-radius: 14px;
     padding: 28px 22px;
     transition: all .35s var(--ease);
     cursor: default;
     position: relative;
     overflow: hidden
 }

 .mod-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 50% 0%, var(--gg) 0%, transparent 65%);
     opacity: 0;
     transition: opacity .4s
 }

 .mod-card:hover {
     border-color: rgba(212, 175, 55, .3);
     transform: translateY(-6px);
     box-shadow: 0 18px 48px rgba(20, 15, 5, .08)
 }

 .mod-card:hover::before {
     opacity: 1
 }

 .mod-ico {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: var(--gp);
     border: 1px solid rgba(212, 175, 55, .2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 18px
 }

 .mod-ico svg {
     width: 18px;
     height: 18px;
     color: var(--g)
 }

 .mod-name {
     font-size: 14px;
     font-weight: 600;
     letter-spacing: -.01em;
     margin-bottom: 7px
 }

 .mod-desc {
     font-size: 12.5px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.6;
     margin-bottom: 18px
 }

 .mod-prev {
     background: var(--b);
     border-radius: 7px;
     height: 52px;
     padding: 8px 10px;
     display: flex;
     flex-direction: column;
     gap: 5px
 }

 .ml2 {
     height: 5px;
     background: var(--brs);
     border-radius: 2.5px
 }

 .ml2.gold {
     background: rgba(212, 175, 55, .4)
 }

 /* HOW IT WORKS */
 .how-section {
     padding: 140px 56px;
     max-width: 1300px;
     margin: 0 auto
 }

 .how-steps {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 0;
     margin-top: 72px;
     position: relative
 }

 .how-steps::before {
     content: '';
     position: absolute;
     top: 27px;
     left: calc(16.66% + 20px);
     right: calc(16.66% + 20px);
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--gl), var(--gl), transparent);
     opacity: .3
 }

 .how-step {
     padding: 0 36px;
     position: relative;
     text-align: center
 }

 .how-step:not(:last-child)::after {
     content: '';
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     width: 1px;
     background: var(--br)
 }

 .step-num {
     width: 54px;
     height: 54px;
     border-radius: 50%;
     background: var(--gp);
     border: 1px solid rgba(212, 175, 55, .3);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 28px;
     font-size: 13px;
     font-weight: 600;
     color: var(--g);
     position: relative;
     z-index: 1
 }

 .step-title {
     font-size: 19px;
     font-weight: 600;
     letter-spacing: -.02em;
     color: var(--blk);
     margin-bottom: 12px;
     line-height: 1.25
 }

 .step-desc {
     font-size: 13.5px;
     font-weight: 300;
     color: var(--mt);
     line-height: 1.7
 }

 /* TRUST */
 .trust-wrap {
     background: var(--b);
     padding: 100px 56px;
     text-align: center;
     border-top: 1px solid var(--br);
     border-bottom: 1px solid var(--br)
 }

 .trust-hl {
     font-size: 18px;
     font-weight: 300;
     color: var(--mt);
     letter-spacing: .03em;
     margin-bottom: 52px
 }

 .trust-logos {
     display: flex;
     gap: 56px;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 64px
 }

 .tl {
     font-size: 14px;
     font-weight: 600;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: var(--ml);
     opacity: .4;
     cursor: default;
     transition: opacity .2s
 }

 .tl:hover {
     opacity: .7
 }

 .trust-quote {
     max-width: 600px;
     margin: 0 auto;
     padding-top: 60px;
     border-top: 1px solid var(--br)
 }

 .trust-quote blockquote {
     font-size: clamp(17px, 2vw, 22px);
     font-family: var(--ser);
     font-style: italic;
     font-weight: 400;
     color: var(--ch);
     line-height: 1.6;
     margin-bottom: 18px
 }

 .trust-quote cite {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: var(--ml);
     font-style: normal
 }

 /* FINAL CTA */
 .fcta {
     padding: 160px 56px;
     text-align: center;
     position: relative;
     overflow: hidden;
     background: linear-gradient(160deg, var(--b) 0%, #EDE3CC 100%)
 }

 .fcta::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 700px;
     height: 500px;
     background: radial-gradient(ellipse, rgba(212, 175, 55, .14) 0%, transparent 70%);
     pointer-events: none
 }

 .fcta-eye {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: var(--gl);
     margin-bottom: 24px
 }

 .fcta-h2 {
     font-size: clamp(36px, 5vw, 68px);
     font-weight: 600;
     letter-spacing: -.035em;
     line-height: 1.08;
     color: var(--blk);
     margin-bottom: 40px;
     position: relative
 }

 .fcta-h2 em {
     font-style: italic;
     font-family: var(--ser);
     font-weight: 400;
     color: var(--ch)
 }

 .fcta-btns {
     display: flex;
     gap: 14px;
     justify-content: center
 }

 .btn-blk {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     font-weight: 500;
     color: var(--w);
     background: var(--blk);
     padding: 15px 32px;
     border-radius: 8px;
     text-decoration: none;
     transition: all .25s var(--ease)
 }

 .btn-blk:hover {
     background: var(--ch);
     transform: translateY(-2px);
     box-shadow: 0 12px 32px rgba(10, 10, 10, .22)
 }

 .btn-out {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     font-size: 14px;
     font-weight: 400;
     color: var(--ch);
     border: 1px solid var(--brs);
     padding: 14px 24px;
     border-radius: 8px;
     text-decoration: none;
     transition: all .2s
 }

 .btn-out:hover {
     border-color: rgba(212, 175, 55, .45);
     color: var(--blk)
 }

 /* FOOTER */
 footer {
     background: var(--blk);
     padding: 80px 56px 56px
 }

 .ftop {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
     gap: 48px;
     padding-bottom: 72px;
     border-bottom: 1px solid rgba(255, 255, 255, .07)
 }

 .flw {
     font-size: 17px;
     font-weight: 600;
     letter-spacing: .2em;
     text-transform: uppercase;
     color: var(--w);
     display: flex;
     align-items: center;
     gap: 5px;
     margin-bottom: 16px
 }

 .fld {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--g)
 }

 .fab {
     font-size: 13px;
     font-weight: 300;
     color: rgba(255, 255, 255, .38);
     line-height: 1.75;
     max-width: 280px
 }

 .fct {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .3);
     margin-bottom: 20px
 }

 .flinks {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px
 }

 .flinks a {
     font-size: 13px;
     font-weight: 300;
     color: rgba(255, 255, 255, .5);
     text-decoration: none;
     transition: color .2s
 }

 .flinks a:hover {
     color: rgba(255, 255, 255, .85)
 }

 .fbot {
     padding-top: 56px;
     display: flex;
     align-items: flex-end;
     justify-content: space-between
 }

 .fwm {
     font-size: clamp(56px, 10vw, 140px);
     font-weight: 700;
     letter-spacing: -.04em;
     color: rgba(255, 255, 255, .04);
     line-height: 1;
     user-select: none
 }

 .fleg {
     font-size: 12px;
     color: rgba(255, 255, 255, .22);
     text-align: right;
     line-height: 1.9
 }

 /* UTILS */
 .div {
     height: 1px;
     background: var(--br);
     margin: 0 56px
 }

 .fu {
     opacity: 0;
     transform: translateY(26px);
     transition: opacity .8s var(--ease), transform .8s var(--ease)
 }

 .fu.v {
     opacity: 1;
     transform: translateY(0)
 }

 .fu.d1 {
     transition-delay: .1s
 }

 .fu.d2 {
     transition-delay: .2s
 }

 .fu.d3 {
     transition-delay: .3s
 }

 .fu.d4 {
     transition-delay: .4s
 }

 @keyframes spin {
     to {
         transform: rotate(360deg)
     }
 }

 /* APP SECTIONS */

 /* ── APP SECTION ── */
 .app-section {
     background: var(--beige);
     padding: 140px 0;
     overflow: hidden;
 }

 .app-inner {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 48px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 100px;
     align-items: center;
 }

 .app-phones {
     position: relative;
     height: 540px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .phone-frame {
     width: 220px;
     background: var(--black);
     border-radius: 36px;
     border: 8px solid #1a1a1a;
     box-shadow: 0 40px 100px rgba(10, 10, 10, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04);
     overflow: hidden;
     position: absolute;
 }

 .phone-frame.main {
     width: 230px;
     z-index: 2;
     left: 50%;
     transform: translateX(-50%);
     top: 20px;
 }

 .phone-frame.secondary {
     width: 190px;
     z-index: 1;
     left: 50%;
     transform: translateX(30px) rotate(8deg);
     top: 60px;
     opacity: 0.7;
 }

 .phone-notch {
     height: 24px;
     background: var(--black);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .phone-notch::after {
     content: '';
     width: 60px;
     height: 8px;
     background: #333;
     border-radius: 4px;
 }

 .phone-screen {
     background: var(--beige);
     padding: 16px;
     min-height: 420px;
 }

 .phone-screen-dark {
     background: #0f0f0f;
     padding: 16px;
     min-height: 360px;
 }

 .pscreen-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 16px;
 }

 .pscreen-logo {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 0.2em;
     color: var(--black);
     text-transform: uppercase;
 }

 .pscreen-logo-dark {
     color: rgba(255, 255, 255, 0.8);
 }

 .pscreen-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--gold);
 }

 .pscreen-greeting {
     font-size: 15px;
     font-weight: 600;
     color: var(--black);
     letter-spacing: -0.01em;
     margin-bottom: 4px;
 }

 .pscreen-sub {
     font-size: 11px;
     color: var(--muted-light);
     margin-bottom: 20px;
 }

 .pscreen-card {
     background: var(--white);
     border-radius: 12px;
     padding: 14px;
     margin-bottom: 10px;
     border: 1px solid var(--border);
 }

 .pscreen-card-label {
     font-size: 9px;
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--muted-light);
     margin-bottom: 6px;
 }

 .pscreen-card-val {
     font-size: 22px;
     font-weight: 700;
     color: var(--black);
     letter-spacing: -0.03em;
     line-height: 1;
 }

 .pscreen-card-delta {
     font-size: 10px;
     color: #5C9E6E;
     font-weight: 500;
     margin-top: 3px;
 }

 .pscreen-mini-bars {
     display: flex;
     align-items: flex-end;
     gap: 3px;
     height: 28px;
     margin-top: 8px;
 }

 .pscreen-bar {
     flex: 1;
     border-radius: 2px;
     background: rgba(212, 175, 55, 0.4);
 }

 .pscreen-bar.active {
     background: var(--gold);
 }

 .pscreen-alert {
     background: linear-gradient(135deg, #0f0f0f, #1a1505);
     border: 1px solid rgba(212, 175, 55, 0.2);
     border-radius: 12px;
     padding: 14px;
     margin-bottom: 10px;
 }

 .pscreen-alert-tag {
     font-size: 9px;
     font-weight: 600;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 6px;
 }

 .pscreen-alert-msg {
     font-size: 11px;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.5;
 }

 .pscreen-nav {
     display: flex;
     justify-content: space-around;
     padding: 10px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     margin-top: 16px;
 }

 .pscreen-nav-dot {
     width: 4px;
     height: 4px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
 }

 .pscreen-nav-dot.active {
     background: var(--gold);
     width: 16px;
     border-radius: 2px;
 }

 .app-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: var(--black);
     color: var(--white);
     padding: 12px 20px;
     border-radius: 10px;
     font-size: 13px;
     font-weight: 500;
     text-decoration: none;
     margin-right: 12px;
     margin-top: 24px;
     transition: background 0.2s;
     letter-spacing: 0.01em;
 }

 .app-badge:hover {
     background: var(--charcoal);
 }

 .app-badge svg {
     opacity: 0.8;
 }

 /* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
 @media(max-width:1100px) {

     .h-nav,
     .h-right .h-start {
         display: none
     }

     .h-burger {
         display: flex
     }

     .hero-inner,
     .world-top,
     .int-header,
     .cap-header {
         grid-template-columns: 1fr
     }

     .hero-right {
         display: none
     }

     .cap-bento {
         grid-template-columns: 1fr 1fr
     }

     .cap-card.wide {
         grid-column: span 2
     }

     .devices-grid {
         grid-template-columns: 1fr 1fr
     }

     .int-grid {
         grid-template-columns: repeat(3, 1fr)
     }

     .mods-grid {
         grid-template-columns: 1fr 1fr
     }

     .how-steps {
         grid-template-columns: 1fr
     }

     .how-steps::before {
         display: none
     }

     .how-step {
         padding: 32px 0;
         text-align: left
     }

     .how-step:not(:last-child)::after {
         top: auto;
         bottom: 0;
         left: 0;
         right: 0;
         width: 100%;
         height: 1px
     }

     .step-num {
         margin: 0 0 22px
     }

     .world-connections {
         grid-template-columns: 1fr 1fr
     }

     .ftop {
         grid-template-columns: 1fr 1fr
     }

     .exp-grid {
         grid-template-columns: 1fr
     }
 }

 @media(max-width:680px) {

     .site-header,
     .hero-inner,
     .cap-section,
     .exp-section-inner,
     .world-section,
     .int-inner,
     .mods-section,
     .how-section,
     .trust-wrap,
     .fcta,
     footer {
         padding-left: 24px !important;
         padding-right: 24px !important
     }

     .div {
         margin: 0 24px
     }

     .cap-bento {
         grid-template-columns: 1fr
     }

     .cap-card.wide {
         grid-column: span 1
     }

     .devices-grid {
         grid-template-columns: 1fr
     }

     .int-grid {
         grid-template-columns: repeat(2, 1fr)
     }

     .mods-grid {
         grid-template-columns: 1fr
     }

     .world-connections {
         grid-template-columns: 1fr
     }

     .ftop {
         grid-template-columns: 1fr
     }

     .fwm {
         font-size: 48px
     }

     .world-stats {
         flex-wrap: wrap;
         gap: 24px
     }

     .sync-bar {
         flex-direction: column;
         align-items: flex-start;
         gap: 14px
     }

     .fcta-btns {
         flex-direction: column;
         align-items: center
     }

     .mods-hdr {
         flex-direction: column;
         gap: 12px;
         align-items: flex-start
     }

     .mods-sub {
         text-align: left;
         max-width: none
     }

     .sb-devices {
         flex-wrap: wrap
     }
 }



 /* CONTACT  */

 /* ── HERO BAND ── */
.contact-hero {
  padding: 160px 56px 80px;
  background: linear-gradient(165deg, #FDFBF7 0%, var(--b) 55%, #EAE0CA 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--br);
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gl); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.9s 0.2s var(--ease) forwards;
}
.ch-line { width: 28px; height: 1px; background: var(--gl); animation: gl 0.8s 0.5s ease forwards; transform: scaleX(0); transform-origin: left; }
@keyframes gl { to { transform: scaleX(1); } }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

h1.ch-h1 {
  font-size: clamp(46px, 5.5vw, 80px);
  font-weight: 600; line-height: 1.04; letter-spacing: -0.038em;
  color: var(--blk); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.35s var(--ease) forwards;
}
h1.ch-h1 em { font-style: italic; font-family: var(--ser); font-weight: 400; color: var(--ch); }
.ch-sub {
  font-size: 17px; font-weight: 300; color: var(--mt); line-height: 1.7; max-width: 460px;
  opacity: 0; animation: fadeUp 1s 0.5s var(--ease) forwards;
}
.ch-right {
  display: flex; flex-direction: column; gap: 16px; align-items: flex-end;
  opacity: 0; animation: fadeUp 1s 0.45s var(--ease) forwards;
}
.ch-stat {
  background: var(--w); border: 1px solid var(--brs); border-radius: 12px;
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 32px rgba(20,15,5,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.ch-stat:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(20,15,5,0.10); }
.ch-stat-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--gp); border: 1px solid rgba(212,175,55,0.25); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ch-stat-val { font-size: 20px; font-weight: 700; color: var(--blk); letter-spacing: -0.02em; }
.ch-stat-lbl { font-size: 12px; font-weight: 300; color: var(--mt); }

/* ── MAIN CONTACT LAYOUT ── */
.contact-main {
  max-width: 1300px; margin: 0 auto;
  padding: 100px 56px 120px;
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 80px; align-items: start;
}

/* ── FORM ── */
.form-wrap {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.form-wrap.v { opacity: 1; transform: translateY(0); }

.form-section-title {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--blk); margin-bottom: 8px;
}
.form-section-sub {
  font-size: 14px; font-weight: 300; color: var(--mt);
  line-height: 1.6; margin-bottom: 44px;
}

/* Type selector */
.type-tabs {
  display: flex; gap: 8px; margin-bottom: 36px;
  background: var(--b); border: 1px solid var(--br);
  border-radius: 10px; padding: 5px;
}
.type-tab {
  flex: 1; padding: 9px 16px; border-radius: 7px; border: none;
  background: transparent; font-family: var(--font);
  font-size: 13px; font-weight: 400; color: var(--mt);
  cursor: pointer; transition: all 0.25s var(--ease);
  letter-spacing: 0.01em;
}
.type-tab.active {
  background: var(--w); color: var(--blk); font-weight: 500;
  box-shadow: 0 2px 8px rgba(20,15,5,0.08);
}
.type-tab:hover:not(.active) { color: var(--ch); }

/* Field groups */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mt); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%; background: var(--w);
  border: 1px solid var(--brs); border-radius: 8px;
  padding: 13px 16px; font-family: var(--font); font-size: 14px;
  font-weight: 300; color: var(--blk); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ml); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239B948C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.field select option { background: var(--w); color: var(--blk); }

/* Company size pills */
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 7px 16px; border-radius: 100px; border: 1px solid var(--brs);
  background: var(--w); font-size: 12px; font-weight: 400; color: var(--mt);
  cursor: pointer; transition: all 0.2s; user-select: none;
}
.pill:hover { border-color: rgba(212,175,55,0.45); color: var(--ch); }
.pill.active { background: var(--gp); border-color: rgba(212,175,55,0.5); color: var(--blk); font-weight: 500; }

/* Submit */
.submit-row { display: flex; align-items: center; gap: 20px; margin-top: 32px; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--w); background: var(--blk); padding: 15px 32px;
  border-radius: 8px; border: none; cursor: pointer; letter-spacing: 0.01em;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.btn-submit::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%); pointer-events: none; }
.btn-submit:hover { background: var(--ch); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,10,10,0.22); }
.btn-submit svg { transition: transform 0.2s; }
.btn-submit:hover svg { transform: translateX(3px); }
.btn-submit.loading { pointer-events: none; }
.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-loader { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.btn-loader { display: none; }
.btn-submit.loading .btn-loader { display: block; }
.submit-note { font-size: 12px; font-weight: 300; color: var(--ml); line-height: 1.55; }
.submit-note a { color: var(--gl); text-decoration: none; }
.submit-note a:hover { text-decoration: underline; }

/* Success state */
.success-msg {
  display: none; text-align: center; padding: 64px 32px;
  background: var(--b); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
}
.success-msg.show { display: block; }
.success-icon { font-size: 40px; margin-bottom: 20px; }
.success-msg h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.success-msg p { font-size: 15px; font-weight: 300; color: var(--mt); line-height: 1.65; }

/* ── SIDEBAR ── */
.sidebar {
  display: flex; flex-direction: column; gap: 24px;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s 0.15s var(--ease), transform 0.8s 0.15s var(--ease);
}
.sidebar.v { opacity: 1; transform: translateY(0); }

/* Contact cards */
.contact-card {
  border: 1px solid var(--br); border-radius: 14px;
  padding: 28px; background: var(--w); position: relative; overflow: hidden;
  transition: all 0.3s var(--ease); cursor: default;
}
.contact-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, var(--gg) 0%, transparent 65%); opacity: 0; transition: opacity 0.4s; }
.contact-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(20,15,5,0.08); }
.contact-card:hover::before { opacity: 1; }
.cc-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--gp); border: 1px solid rgba(212,175,55,0.22); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.cc-icon svg { width: 18px; height: 18px; color: var(--g); }
.cc-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--blk); margin-bottom: 6px; }
.cc-desc { font-size: 13px; font-weight: 300; color: var(--mt); line-height: 1.6; margin-bottom: 16px; }
.cc-link { font-size: 13px; font-weight: 500; color: var(--blk); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.cc-link:hover { gap: 10px; }
.cc-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(90,158,110,0.1); border: 1px solid rgba(90,158,110,0.25); border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 500; color: #5a9e6e; }
.cc-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #5a9e6e; animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* Office card */
.office-card {
  border: 1px solid var(--br); border-radius: 14px; overflow: hidden;
  background: var(--w); transition: all 0.3s var(--ease);
}
.office-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(20,15,5,0.08); }
.office-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.office-body { padding: 22px; }
.office-city { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.office-addr { font-size: 13px; font-weight: 300; color: var(--mt); line-height: 1.65; }
.office-tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.office-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; background: var(--b); border: 1px solid var(--br); color: var(--ml); }
.office-tag.hq { background: var(--gp); border-color: rgba(212,175,55,0.25); color: var(--ch); }

/* Social row */
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 9px; border: 1px solid var(--brs);
  background: var(--w); display: flex; align-items: center; justify-content: center;
  color: var(--mt); text-decoration: none;
  transition: all 0.2s var(--ease);
}
.social-btn:hover { border-color: rgba(212,175,55,0.4); color: var(--blk); transform: translateY(-2px); background: var(--gp); }
.social-btn svg { width: 16px; height: 16px; }

/* ── BOTTOM BAND ── */
.bottom-band {
  background: var(--b); border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
  padding: 80px 56px;
}
.bb-inner { max-width: 1300px; margin: 0 auto; }
.bb-title { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gl); margin-bottom: 48px; }
.bb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--brs); border: 1px solid var(--brs); border-radius: 14px; overflow: hidden; }
.bb-item { background: var(--w); padding: 36px 32px; transition: background 0.25s; cursor: default; }
.bb-item:hover { background: #fdfaf4; }
.bb-num { font-size: 32px; font-weight: 700; letter-spacing: -0.04em; color: var(--blk); margin-bottom: 8px; }
.bb-num .u { font-size: 0.55em; font-weight: 400; color: var(--g); }
.bb-label { font-size: 13px; font-weight: 300; color: var(--mt); line-height: 1.55; }

/* ── UTILITIES ── */
.fu { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fu.v { opacity: 1; transform: translateY(0); }
.fu.d1{transition-delay:.1s}.fu.d2{transition-delay:.2s}.fu.d3{transition-delay:.3s}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .contact-hero-inner { grid-template-columns:1fr; }
  .ch-right { display:none; }
  .contact-main { grid-template-columns:1fr; gap:56px; }
  .ftop { grid-template-columns:1fr 1fr; }
  nav { display:none; }
  .bb-grid { grid-template-columns:1fr; }
}
@media(max-width:640px){
  .field-row { grid-template-columns:1fr; }
  .ftop { grid-template-columns:1fr; }
  .fwm { font-size:48px; }
  .type-tabs { flex-wrap:wrap; }
  .ch-h1 { font-size:40px; }
}