@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #f2790c;
  --orange-deep: #e96000;
  --ink: #090909;
  --cream: #fff1de;
  --paper: #fffaf4;
  --line: rgba(9, 9, 9, .11);
  --muted: #64615d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Manrope", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }

.announcement { min-height: 36px; padding: 8px 24px; display: flex; align-items: center; justify-content: center; gap: 28px; background: var(--ink); color: #fff; font-size: 11px; letter-spacing: .04em; }
.announcement span, .announcement a { display: inline-flex; align-items: center; gap: 7px; }
.announcement a { color: #ffb05d; font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,250,244,.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(9,9,9,.07); }
.header-inner { height: 82px; display: flex; align-items: center; gap: 34px; }
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img { width: 174px; height: auto; display: block; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: 12px; font-weight: 700; }
.desktop-nav > a, .nav-dropdown-trigger { transition: color .2s ease; }
.desktop-nav > a:hover, .nav-dropdown-trigger:hover { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; padding: 28px 0; }
.dropdown-panel { position: absolute; top: 66px; left: -20px; width: 268px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 24px 60px rgba(9,9,9,.15); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-label { display: block; padding: 2px 8px 10px; color: #99928a; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.dropdown-panel a { display: flex; align-items: center; justify-content: space-between; padding: 9px 8px; border-radius: 8px; }
.dropdown-panel a:hover { background: var(--cream); color: var(--orange-deep); }
.header-actions { display: flex; align-items: center; gap: 16px; margin-left: 4px; }
.login-link { font-size: 12px; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border: 0; border-radius: 8px; background: var(--orange); color: #fff; font-weight: 700; font-size: 13px; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { background: var(--orange-deep); transform: translateY(-2px); }
.button-sm { min-height: 42px; padding: 0 18px; }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; right: 0; top: 50px; width: 260px; padding: 12px; background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(9,9,9,.18); border: 1px solid var(--line); }
.mobile-menu nav a { display: block; padding: 12px; font-size: 13px; font-weight: 700; border-radius: 7px; }
.mobile-menu nav a:hover { background: var(--cream); }
.mobile-menu nav .mobile-join { background: var(--orange); color: #fff; margin-top: 6px; }

.section-shell { background: var(--cream); overflow: hidden; }
.hero { position: relative; min-height: 760px; border-bottom: 1px solid rgba(9,9,9,.12); }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; top: -350px; left: -320px; border-radius: 50%; border: 1px solid rgba(242,121,12,.2); box-shadow: 0 0 0 110px rgba(242,121,12,.035), 0 0 0 220px rgba(242,121,12,.025); }
.hero-grid { min-height: 635px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 50px; padding-top: 42px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 10px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 23px; color: #7a746e; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--orange); }
.hero h1 { margin: 0; font-size: clamp(54px, 5.6vw, 82px); line-height: .96; letter-spacing: -.065em; font-weight: 500; }
.hero h1 em { font-style: normal; color: var(--orange); font-weight: 700; }
.hero-copy > p { max-width: 560px; margin: 28px 0 30px; color: #5d5852; font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; border-bottom: 1px solid var(--ink); padding: 11px 0; }
.hero-trust { margin-top: 42px; display: flex; align-items: center; gap: 15px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 38px; height: 38px; margin-left: -7px; display: grid; place-items: center; border: 3px solid var(--cream); border-radius: 50%; background: #fff; color: var(--ink); font-size: 9px; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: var(--orange); color: #fff; }
.avatar-stack span:nth-child(2) { background: var(--ink); color: #fff; }
.hero-trust p { margin: 0; color: #77716b; font-size: 10px; line-height: 1.55; }
.hero-trust strong { color: var(--ink); font-size: 11px; }

.hero-visual { position: relative; height: 590px; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 440px; height: 440px; background: var(--orange); box-shadow: inset -40px -50px 90px rgba(151,40,0,.18), 0 40px 100px rgba(229,92,0,.2); }
.orb-two { width: 230px; height: 230px; right: 1%; bottom: 4%; background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.65); backdrop-filter: blur(18px); }
.phone-frame { position: relative; z-index: 2; width: 254px; height: 510px; padding: 10px; border-radius: 42px; background: #111; box-shadow: 0 38px 80px rgba(28,10,0,.33), inset 0 0 0 2px #373737; transform: rotate(5deg); }
.phone-frame::before { content: ""; position: absolute; inset: 4px; border-radius: 38px; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.phone-top { height: 32px; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 8px; }
.phone-island { position: absolute; width: 74px; height: 20px; top: 8px; left: 50%; transform: translateX(-50%); background: #000; border-radius: 20px; }
.phone-content { height: calc(100% - 32px); padding: 23px 19px; background: #fff8ee; border-radius: 29px; overflow: hidden; }
.mini-brand { display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 800; }
.mini-brand img { width: 24px; height: 24px; object-fit: contain; }
.message-label { margin-top: 66px; color: #9c8b7b; font-size: 7px; letter-spacing: .18em; font-weight: 800; }
.phone-content h3 { margin: 8px 0 25px; font-size: 32px; line-height: 1; letter-spacing: -.06em; }
.delivery-track { height: 7px; background: #eadbcb; border-radius: 10px; overflow: hidden; }
.delivery-track span { display: block; width: 89%; height: 100%; background: var(--orange); border-radius: inherit; }
.delivery-meta { margin-top: 9px; display: flex; justify-content: space-between; color: #7e746b; font-size: 7px; letter-spacing: .1em; }
.delivery-meta strong { color: var(--ink); font-size: 10px; }
.phone-chart { height: 110px; margin-top: 43px; display: flex; align-items: end; gap: 7px; border-bottom: 1px solid #dfd0c1; }
.phone-chart i { flex: 1; height: 32%; background: #efdac3; border-radius: 5px 5px 0 0; }
.phone-chart i:nth-child(2) { height: 48%; }.phone-chart i:nth-child(3) { height: 40%; }.phone-chart i:nth-child(4) { height: 72%; background: #ffb970; }.phone-chart i:nth-child(5) { height: 63%; }.phone-chart i:nth-child(6) { height: 85%; background: var(--orange); }.phone-chart i:nth-child(7) { height: 73%; }
.floating-card { position: absolute; z-index: 5; padding: 15px 17px; border-radius: 12px; background: rgba(255,255,255,.87); backdrop-filter: blur(14px); box-shadow: 0 20px 50px rgba(83,34,0,.14); border: 1px solid rgba(255,255,255,.8); font-size: 9px; }
.floating-card span { display: block; color: #8a8179; }.floating-card strong { display: block; margin-top: 3px; font-size: 13px; }
.floating-left { left: 1%; top: 25%; display: grid; grid-template-columns: 30px auto; column-gap: 8px; }
.floating-left .floating-icon { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 50%; }
.floating-right { right: -1%; top: 15%; min-width: 142px; }.floating-right strong { font-size: 24px; letter-spacing: -.05em; }.floating-right small { display: flex; gap: 4px; align-items: center; margin-top: 6px; color: #32a56c; }
.hero-badge { position: absolute; z-index: 6; right: 1%; bottom: 18%; display: flex; align-items: center; gap: 10px; color: #fff; font-size: 8px; line-height: 1.5; }
.hero-badge > svg { width: 42px; height: 42px; padding: 11px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; }
.hero-badge strong { font-size: 10px; }
.hero-bottom { min-height: 125px; display: grid; grid-template-columns: repeat(3, 1fr) 1.6fr; align-items: center; border-top: 1px solid rgba(9,9,9,.1); }
.hero-bottom > div { display: flex; flex-direction: column; gap: 5px; padding-left: 28px; border-left: 1px solid rgba(9,9,9,.12); }
.hero-bottom > div:first-child { padding-left: 0; border: 0; }
.hero-bottom strong { font-size: 22px; letter-spacing: -.04em; }.hero-bottom span { color: #77716b; font-size: 9px; }
.hero-bottom > p { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin: 0; color: #655f59; font-size: 10px; }

.section-heading h2, .solutions-copy h2, .api-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(42px, 4.8vw, 67px); line-height: 1.04; letter-spacing: -.055em; font-weight: 500; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.product-card { min-height: 330px; padding: 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(55,28,0,.09); }
.product-card::after { content: ""; position: absolute; width: 145px; height: 145px; right: -80px; top: -80px; border-radius: 50%; background: var(--orange); opacity: .08; }
.product-card.featured { background: var(--orange); color: #fff; border-color: var(--orange); }
.product-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-card.cream { background: var(--cream); }
.product-index { color: #9d958e; font-size: 9px; letter-spacing: .14em; }
.featured .product-index, .dark .product-index { color: rgba(255,255,255,.54); }
.product-icon { width: 52px; height: 52px; margin-top: 34px; display: grid; place-items: center; border-radius: 13px; background: var(--cream); color: var(--orange); }
.featured .product-icon { background: #fff; }.dark .product-icon { color: #fff; background: rgba(255,255,255,.11); }
.product-card h3 { margin: 27px 0 9px; font-size: 20px; letter-spacing: -.035em; }
.product-card p { margin: 0; color: #716b65; font-size: 11px; line-height: 1.7; }
.featured p, .dark p { color: rgba(255,255,255,.68); }
.product-card a { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 800; }

.solutions { background: #fff; }
.solutions-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.solutions-copy > p { max-width: 450px; margin: 28px 0 35px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.button-dark { background: var(--ink); }.button-dark:hover { background: #2d2926; }
.solution-list { border-top: 1px solid var(--line); }
.solution-list article { min-height: 150px; display: grid; grid-template-columns: 64px 1fr 40px; align-items: center; gap: 22px; border-bottom: 1px solid var(--line); transition: padding .2s ease; }
.solution-list article:hover { padding-left: 10px; }
.solution-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--orange); }
.solution-icon svg { width: 24px; }
.solution-list article div:nth-child(2) span { color: #9b948d; font-size: 8px; letter-spacing: .16em; }
.solution-list h3 { margin: 5px 0; font-size: 19px; }.solution-list p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.solution-arrow { width: 36px; height: 36px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; }

.api-section { background: var(--orange); color: #fff; overflow: hidden; }
.api-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 100px; }
.code-window { background: #11100f; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 40px 80px rgba(99,32,0,.28); overflow: hidden; transform: rotate(-1.6deg); }
.code-top { height: 50px; padding: 0 18px; display: flex; align-items: center; gap: 7px; background: #1b1917; border-bottom: 1px solid #2c2925; }
.code-top > span { width: 8px; height: 8px; border-radius: 50%; background: #524e49; }.code-top > span:first-child { background: #f47360; }.code-top > span:nth-child(2) { background: #efbb54; }.code-top > span:nth-child(3) { background: #55b786; }
.code-top em { margin-left: 10px; color: #8e8983; font-style: normal; font-size: 9px; }
.code-window pre { margin: 0; padding: 35px; min-height: 310px; color: #f2eee9; font: 12px/2 "SFMono-Regular", Consolas, monospace; white-space: pre-wrap; }
.code-purple { color: #cb9eff; }.code-orange { color: #ff9c56; }.code-green { color: #a8d27b; }.code-comment { color: #6e6a65; }
.code-status { padding: 15px 20px; display: flex; align-items: center; gap: 8px; background: #171513; border-top: 1px solid #2c2925; color: #a8d27b; font-size: 9px; }
.code-status span { margin-left: auto; color: #716c67; }
.eyebrow.light { color: rgba(255,255,255,.65); }.eyebrow.light span { background: #fff; }
.api-copy > p { margin: 27px 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.8; }
.api-copy ul { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 12px; }
.api-copy li { display: flex; align-items: center; gap: 10px; font-size: 11px; }.api-copy li svg { padding: 3px; background: rgba(255,255,255,.16); border-radius: 50%; }
.button-light { background: #fff; color: var(--ink); }.button-light:hover { background: var(--cream); }

.tariffs { background: var(--paper); }
.section-heading.centered { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p { color: var(--muted); font-size: 12px; }
.tariff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.tariff-card { position: relative; min-height: 455px; padding: 30px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.tariff-card.popular { background: var(--ink); color: #fff; transform: translateY(-8px); }
.popular-tag { position: absolute; top: 0; right: 25px; padding: 8px 13px; background: var(--orange); color: #fff; border-radius: 0 0 8px 8px; font-size: 8px; font-weight: 800; letter-spacing: .06em; }
.tariff-top { display: flex; align-items: center; justify-content: space-between; color: #8f8880; font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.tariff-card h3 { margin: 45px 0 10px; font-size: 44px; letter-spacing: -.055em; }.tariff-card h3 small { color: #847d76; font-size: 12px; letter-spacing: 0; }
.tariff-price { font-size: 17px; font-weight: 800; }.tariff-card > p { margin: 5px 0 25px; color: #8b847d; font-size: 9px; }
.tariff-card ul { margin: 0; padding: 24px 0 0; display: grid; gap: 13px; border-top: 1px solid var(--line); list-style: none; }
.popular ul { border-color: rgba(255,255,255,.13); }.tariff-card li { display: flex; align-items: center; gap: 9px; color: #716b65; font-size: 10px; }.popular li { color: rgba(255,255,255,.7); }.tariff-card li svg { color: var(--orange); }
.tariff-button { height: 48px; margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border: 1px solid var(--line); border-radius: 8px; font-size: 10px; font-weight: 800; }
.popular .tariff-button { border-color: var(--orange); background: var(--orange); color: #fff; }
.tariff-note { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #8a837c; font-size: 9px; }

.references { padding-top: 20px; }
.reference-panel { padding: 70px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; position: relative; overflow: hidden; border-radius: 22px; background: var(--ink); color: #fff; }
.reference-panel::before { content: ""; position: absolute; width: 430px; height: 430px; left: -170px; bottom: -270px; border: 1px solid rgba(242,121,12,.6); border-radius: 50%; box-shadow: 0 0 0 75px rgba(242,121,12,.05), 0 0 0 150px rgba(242,121,12,.03); }
.reference-copy, .sector-grid, .reference-quote { position: relative; z-index: 1; }
.reference-copy h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.05; letter-spacing: -.055em; font-weight: 500; }
.reference-copy p { max-width: 480px; margin: 25px 0 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.8; }
.sector-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.sector-grid div { min-height: 76px; padding: 19px; display: flex; flex-direction: column; gap: 10px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); font-size: 12px; font-weight: 700; }
.sector-grid span { color: var(--orange); font-size: 7px; letter-spacing: .14em; }
.reference-quote { grid-column: 1 / -1; padding-top: 35px; display: flex; align-items: center; gap: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.reference-quote svg { color: var(--orange); flex: 0 0 auto; }.reference-quote p { margin: 0; font-size: 18px; letter-spacing: -.02em; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy > p { max-width: 400px; margin: 25px 0 32px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.contact-cards { display: grid; gap: 10px; }
.contact-cards a { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.contact-cards a > svg { width: 40px; height: 40px; padding: 10px; color: var(--orange); background: var(--cream); border-radius: 50%; }
.contact-cards span { color: #8a837c; font-size: 8px; }.contact-cards strong { display: block; margin-top: 3px; color: var(--ink); font-size: 11px; }
.contact-form { padding: 35px; display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 25px 70px rgba(49,26,0,.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: #615b56; font-size: 9px; font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 8px; outline: none; background: #fdfbf8; color: var(--ink); font-size: 11px; resize: vertical; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,121,12,.1); }
.contact-form .button { justify-self: start; }

footer { padding: 70px 0 24px; background: var(--cream); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 70px; padding-bottom: 55px; }
.footer-brand .logo img { width: 185px; }.footer-brand > p { max-width: 250px; margin: 18px 0 22px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.status-pill { width: fit-content; display: flex; align-items: center; gap: 8px; padding: 8px 11px; background: #fff; border: 1px solid var(--line); border-radius: 30px; color: #6f6963; font-size: 8px; }
.status-pill span { width: 7px; height: 7px; border-radius: 50%; background: #35b36f; box-shadow: 0 0 0 4px rgba(53,179,111,.12); }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }.footer-col h3 { margin: 0 0 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }.footer-col a { color: #706a64; font-size: 9px; }.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: #918a83; font-size: 8px; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 17px; }.header-inner { gap: 20px; }.logo img { width: 150px; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 15px; }
  .floating-left { left: -5%; }.floating-right { right: -4%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }.product-card { min-height: 300px; }
  .api-grid, .solutions-grid { gap: 55px; }.reference-panel { padding: 55px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-actions { display: none; }.mobile-menu { display: block; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 85px; }.hero-copy { text-align: center; }.hero-copy .eyebrow, .hero-actions, .hero-trust { justify-content: center; }.hero-copy > p { margin-inline: auto; }
  .hero-visual { height: 560px; max-width: 580px; width: 100%; margin: 0 auto; }
  .hero-bottom { margin-top: 50px; grid-template-columns: repeat(3, 1fr); }.hero-bottom > p { grid-column: 1 / -1; justify-content: center; padding: 24px 0; }
  .split-heading, .solutions-grid, .api-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .split-heading { margin-bottom: 40px; }.split-heading > p { max-width: 580px; }
  .api-grid { max-width: 720px; }.api-copy { grid-row: 1; }.code-window { transform: none; }
  .tariff-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }.tariff-card.popular { transform: none; }
  .reference-panel { grid-template-columns: 1fr; }.reference-quote { grid-column: auto; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }.footer-col:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 30px, 1180px); }.section { padding: 84px 0; }
  .announcement { justify-content: space-between; padding-inline: 15px; }.announcement > span svg { display: none; }.announcement > span { font-size: 9px; }.announcement a { font-size: 9px; }
  .header-inner { height: 70px; }.logo img { width: 145px; }
  .hero-grid { padding-top: 62px; }.hero h1 { font-size: 52px; }.hero-copy > p { font-size: 13px; }.hero-actions { flex-direction: column; gap: 10px; }.hero-actions .button, .hero-actions .text-link { width: 100%; }
  .hero-visual { height: 505px; }.orb-one { width: 330px; height: 330px; }.orb-two { width: 150px; height: 150px; }.phone-frame { width: 215px; height: 440px; }.phone-content h3 { font-size: 28px; }.floating-left { left: 0; top: 22%; }.floating-right { right: 0; top: 12%; }.hero-badge { bottom: 12%; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }.hero-bottom > div { padding: 20px 12px; border-left: 0; border-bottom: 1px solid var(--line); }.hero-bottom > div:nth-child(3) { grid-column: 1 / -1; text-align: center; }.hero-bottom > p { margin: 0; }
  .section-heading h2, .solutions-copy h2, .api-copy h2, .contact-copy h2 { font-size: 42px; }.product-grid { grid-template-columns: 1fr; }.product-card { min-height: 285px; }
  .solution-list article { grid-template-columns: 48px 1fr 32px; gap: 14px; }.solution-icon { width: 46px; height: 46px; }.solution-list p { padding-right: 6px; }
  .code-window pre { padding: 22px; font-size: 10px; }.api-section { padding-bottom: 70px; }
  .tariff-note { text-align: center; align-items: flex-start; }
  .reference-panel { padding: 36px 24px; gap: 42px; }.sector-grid { grid-template-columns: 1fr 1fr; }.reference-quote { flex-direction: column; align-items: flex-start; }.reference-quote p { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; }.contact-form { padding: 24px; }.contact-form .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 28px; }.footer-brand { grid-column: 1 / -1; }.footer-col:last-child { grid-column: auto; }.footer-bottom { flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Expanded navigation and Streamline duotone icons */
.rich-dropdown { width: 540px; left: -60px; padding: 18px; }
.nav-dropdown:nth-child(2) .rich-dropdown { left: -180px; width: 480px; }
.nav-dropdown:nth-child(3) .rich-dropdown { left: -250px; width: 440px; }
.dropdown-head { display: flex; justify-content: space-between; align-items: center; padding: 3px 5px 13px; border-bottom: 1px solid var(--line); }
.dropdown-head > span { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: #9b938a; }
.dropdown-head > a { display: inline-flex; align-items: center; gap: 5px; color: var(--orange); font-size: 9px; }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding-top: 10px; }
.dropdown-grid > a { min-height: 58px; display: grid; grid-template-columns: 46px 1fr 18px; align-items: center; gap: 8px; padding: 7px; }
.dropdown-grid > a > span:nth-child(2) { color: var(--ink); font-size: 10px; }
.dropdown-grid small { display: block; margin-top: 3px; color: #9a938c; font-size: 7px; font-weight: 500; }
.streamline-credit { padding: 10px 6px 0; color: #aaa39c; font-size: 7px; border-top: 1px solid var(--line); }
.duotone-icon { position: relative; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: var(--cream); overflow: hidden; }
.duotone-icon::before { content: ""; position: absolute; width: 28px; height: 28px; border-radius: 50%; background: rgba(242,121,12,.14); }
.duotone-icon img { position: relative; z-index: 1; object-fit: contain; filter: sepia(.2) saturate(1.35) hue-rotate(340deg); }
.mobile-menu nav details { border-bottom: 1px solid var(--line); }
.mobile-menu nav details summary { padding: 12px; font-size: 13px; font-weight: 800; list-style: none; }
.mobile-menu nav details a { padding-left: 22px; color: #716b65; font-size: 11px; }

/* Slider */
.hero-slider { transition: background .45s ease, color .45s ease; }
.hero-slider .hero-copy, .hero-slider .slide-visual { animation: slideFade .55s ease both; }
@keyframes slideFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.slide-dark { background: #0a0908; color: #fff; }
.slide-dark::before { border-color: rgba(242,121,12,.28); box-shadow: 0 0 0 110px rgba(242,121,12,.035), 0 0 0 220px rgba(242,121,12,.02); }
.slide-dark .hero-copy > p, .slide-dark .hero-trust p, .slide-dark .hero-trust strong, .slide-dark .hero-bottom span { color: rgba(255,255,255,.62); }
.slide-dark .hero-trust strong { color: #fff; }
.slide-dark .eyebrow { color: rgba(255,255,255,.55); }
.slide-dark .text-link { border-color: rgba(255,255,255,.6); }
.slide-dark .hero-bottom { border-color: rgba(255,255,255,.13); }
.slide-dark .hero-bottom > div { border-color: rgba(255,255,255,.14); }
.slide-dark .avatar-stack span { border-color: #0a0908; }
.slide-orange { background: var(--orange); color: #fff; }
.slide-orange::before { border-color: rgba(255,255,255,.23); box-shadow: 0 0 0 110px rgba(255,255,255,.035), 0 0 0 220px rgba(255,255,255,.025); }
.slide-orange .hero h1 em, .slide-orange h1 em { color: var(--ink); }
.slide-orange .hero-copy > p, .slide-orange .hero-trust p, .slide-orange .hero-bottom span { color: rgba(255,255,255,.7); }
.slide-orange .hero-trust strong { color: #fff; }
.slide-orange .eyebrow { color: rgba(255,255,255,.67); }
.slide-orange .eyebrow span { background: #fff; }
.slide-orange .button { background: var(--ink); }
.slide-orange .text-link { border-color: rgba(255,255,255,.7); }
.slide-orange .hero-bottom, .slide-orange .hero-bottom > div { border-color: rgba(255,255,255,.22); }
.slide-orange .avatar-stack span { border-color: var(--orange); }
.slide-visual { min-width: 0; }
.slider-controls { display: flex !important; flex-direction: row !important; align-items: center; justify-content: flex-end; gap: 12px; padding-left: 0 !important; border: 0 !important; }
.slider-controls > button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; cursor: pointer; opacity: .7; }
.slider-controls > button:hover { opacity: 1; background: rgba(255,255,255,.12); }
.slider-dots { display: flex !important; flex-direction: row !important; align-items: center; gap: 5px; padding: 0 !important; border: 0 !important; }
.slider-dots button { width: 22px; height: 18px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.slider-dots button span { width: 5px; height: 5px; border-radius: 5px; background: currentColor; opacity: .3; transition: width .2s ease, opacity .2s ease; }
.slider-dots button[aria-current="true"] span { width: 18px; opacity: 1; }
.slider-api-visual, .conversation-visual { position: relative; height: 590px; display: grid; place-items: center; }
.code-orbit { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: var(--orange); filter: blur(.2px); box-shadow: inset -40px -50px 90px rgba(93,28,0,.2), 0 0 0 55px rgba(242,121,12,.05); }
.slider-code-card { position: relative; z-index: 2; width: 450px; overflow: hidden; background: #151311; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; box-shadow: 0 35px 90px rgba(0,0,0,.48); transform: rotate(2.5deg); }
.slider-code-top { height: 48px; padding: 0 18px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid #2b2723; background: #1d1a17; }
.slider-code-top i { width: 8px; height: 8px; border-radius: 50%; background: #f47060; }.slider-code-top i:nth-child(2) { background: #f1b64e; }.slider-code-top i:nth-child(3) { background: #56ba80; }.slider-code-top span { margin-left: 9px; color: #8c847d; font-size: 8px; }
.slider-code-card pre { margin: 0; min-height: 260px; padding: 32px; color: #f3ede6; font: 12px/2 "SFMono-Regular", Consolas, monospace; white-space: pre-wrap; }.slider-code-card pre span, .slider-code-card pre b { color: #c997ff; }.slider-code-card pre em { color: #a9d77f; font-style: normal; }
.slider-code-status { height: 48px; padding: 0 19px; display: flex; align-items: center; gap: 8px; border-top: 1px solid #2b2723; color: #9cd174; font-size: 9px; }.slider-code-status strong { margin-left: auto; color: #776f68; }
.api-float { position: absolute; z-index: 4; min-width: 145px; padding: 14px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.93); color: var(--ink); border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.25); font-size: 8px; }.api-float svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--cream); color: var(--orange); }.api-float span, .api-float strong { display: block; }.api-float strong { margin-top: 3px; font-size: 11px; }.api-float-one { top: 13%; right: -2%; }.api-float-two { bottom: 16%; left: -3%; }
.conversation-orb { position: absolute; width: 445px; height: 445px; border-radius: 50%; background: #fff0db; box-shadow: inset -25px -35px 80px rgba(115,48,0,.14), 0 40px 90px rgba(99,34,0,.25); }
.chat-board { position: relative; z-index: 2; width: 410px; min-height: 450px; padding: 22px; border-radius: 24px; background: #fffaf4; color: var(--ink); transform: rotate(-2.5deg); box-shadow: 0 34px 85px rgba(80,25,0,.3); }
.chat-board-head { padding-bottom: 17px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); }.chat-board-head > svg { width: 38px; height: 38px; padding: 9px; border-radius: 50%; background: var(--orange); color: #fff; }.chat-board-head span, .chat-board-head strong { display: block; font-size: 9px; }.chat-board-head strong { color: #9b938c; font-size: 7px; }.chat-board-head i { width: 8px; height: 8px; margin-left: auto; border-radius: 50%; background: #3bb477; box-shadow: 0 0 0 4px rgba(59,180,119,.13); }
.chat-line { width: 78%; margin-top: 17px; padding: 14px; border-radius: 15px 15px 15px 4px; background: var(--cream); }.chat-line.outgoing { margin-left: auto; border-radius: 15px 15px 4px 15px; background: var(--orange); color: #fff; }.chat-line.short { width: 48%; }.chat-line b, .chat-line small { display: block; }.chat-line b { font-size: 9px; line-height: 1.6; }.chat-line small { margin-top: 5px; color: #958d85; font-size: 6px; }.chat-line.outgoing small { color: rgba(255,255,255,.7); }
.response-metric { margin-top: 23px; padding: 14px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 12px; }.response-metric svg { color: var(--orange); }.response-metric span, .response-metric strong { display: block; font-size: 7px; }.response-metric strong { margin-top: 3px; font-size: 13px; }.response-metric em { margin-left: auto; color: #2aa66b; font-size: 9px; font-style: normal; }
.conversation-badge { position: absolute; z-index: 3; right: -2%; bottom: 13%; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-radius: 30px; background: var(--ink); color: #fff; font-size: 8px; box-shadow: 0 16px 45px rgba(56,18,0,.28); }

/* 3D reference sectors */
.sector-grid-3d div { position: relative; min-height: 138px; padding: 14px; display: grid; grid-template-columns: 82px 1fr; grid-template-rows: auto 1fr; align-items: center; column-gap: 8px; overflow: hidden; }
.sector-grid-3d img { grid-row: 1 / 3; width: 92px; height: 92px; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.22)); transition: transform .25s ease; }
.sector-grid-3d div:hover img { transform: translateY(-4px) rotate(-3deg) scale(1.06); }
.sector-grid-3d div span { align-self: end; }.sector-grid-3d div strong { align-self: start; font-size: 11px; }

/* Inner pages */
.inner-page { background: var(--paper); }
.breadcrumb { padding-top: 30px; display: flex; align-items: center; gap: 8px; color: #958e87; font-size: 8px; }.breadcrumb strong { color: var(--orange); }.breadcrumb a:hover { color: var(--ink); }
.inner-hero { min-height: 690px; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); }
.inner-hero-grid { min-height: 525px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 70px; }
.inner-hero-copy h1 { margin: 0; font-size: clamp(52px, 5vw, 74px); line-height: .98; letter-spacing: -.06em; font-weight: 500; }.inner-hero-copy h1 em { color: var(--orange); font-style: normal; font-weight: 700; }.inner-hero-copy > p { max-width: 570px; margin: 28px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.inner-hero-visual { position: relative; height: 500px; display: grid; place-items: center; }
.inner-orbit { position: absolute; border-radius: 50%; }.orbit-a { width: 390px; height: 390px; background: var(--orange); box-shadow: inset -35px -45px 80px rgba(117,38,0,.2), 0 35px 80px rgba(116,43,0,.2); }.orbit-b { width: 485px; height: 485px; border: 1px solid rgba(242,121,12,.18); box-shadow: 0 0 0 42px rgba(242,121,12,.035); }
.inner-device { position: relative; z-index: 2; width: 310px; min-height: 390px; padding: 18px 24px 24px; border-radius: 28px; background: rgba(255,255,255,.94); box-shadow: 0 30px 75px rgba(89,34,0,.26); transform: rotate(3deg); }
.inner-device-top { display: flex; gap: 5px; }.inner-device-top span { width: 7px; height: 7px; border-radius: 50%; background: #d8d1ca; }.inner-device-top span:first-child { background: var(--orange); }
.inner-device-brand { margin-top: 24px; display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 800; }.inner-device-brand img { width: 28px; }
.inner-icon-stage { position: relative; height: 190px; margin-top: 22px; display: grid; place-items: center; border-radius: 18px; background: var(--cream); overflow: hidden; }.inner-icon-stage .duotone-icon { width: 108px !important; height: 108px !important; border-radius: 25px; background: #fff; box-shadow: 0 18px 40px rgba(114,50,0,.13); }.inner-icon-stage .duotone-icon img { width: 58px; height: 58px; }.inner-icon-stage i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }.inner-icon-stage i:nth-of-type(1) { top: 26px; right: 36px; }.inner-icon-stage i:nth-of-type(2) { bottom: 28px; left: 40px; opacity: .5; }.inner-icon-stage i:nth-of-type(3) { width: 28px; height: 4px; right: 28px; bottom: 42px; border-radius: 5px; opacity: .3; }
.inner-device > strong { display: block; margin-top: 20px; font-size: 17px; letter-spacing: -.03em; }.inner-device > small { color: #968e86; font-size: 8px; }
.inner-float { position: absolute; z-index: 4; min-width: 145px; padding: 13px; display: flex; align-items: center; gap: 9px; border-radius: 12px; background: rgba(255,255,255,.92); box-shadow: 0 18px 45px rgba(78,29,0,.16); }.inner-float > svg { color: var(--orange); }.inner-float span, .inner-float strong { display: block; font-size: 7px; }.inner-float strong { margin-top: 3px; color: var(--ink); font-size: 10px; }.float-success { left: -1%; top: 26%; }.float-secure { right: -5%; bottom: 19%; }
.inner-stats { min-height: 115px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }.inner-stats div { padding-left: 30px; display: flex; flex-direction: column; justify-content: center; gap: 4px; border-left: 1px solid var(--line); }.inner-stats div:first-child { border: 0; padding-left: 0; }.inner-stats strong { font-size: 22px; letter-spacing: -.04em; }.inner-stats span { color: #8d867f; font-size: 8px; }
.inner-intro { background: #fff; }.inner-intro-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 100px; }.inner-intro h2, .use-case-grid h2, .api-doc-copy h2 { margin: 0; font-size: clamp(42px,4.5vw,62px); line-height: 1.05; letter-spacing: -.055em; font-weight: 500; }.inner-intro-grid > div:nth-child(2) > p { margin: 48px 0 30px; color: var(--muted); font-size: 13px; line-height: 1.9; }.intro-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.intro-checks span { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; }.intro-checks svg { width: 19px; height: 19px; padding: 4px; border-radius: 50%; background: var(--cream); color: var(--orange); }
.inner-features { background: var(--paper); }.inner-feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; }.inner-feature-grid article { min-height: 290px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: #fff; }.feature-number { color: #a59d96; font-size: 8px; letter-spacing: .15em; }.inner-feature-grid .duotone-icon { margin: 34px 0 26px; }.inner-feature-grid h3 { margin: 0 0 8px; font-size: 17px; }.inner-feature-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.inner-steps { background: #fff; }.steps-line { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 70px; margin-top: 65px; }.steps-line::before { content: ""; position: absolute; left: 15%; right: 15%; top: 52px; height: 1px; background: var(--line); }.steps-line article { position: relative; text-align: center; }.steps-line article > span { color: #a19890; font-size: 8px; letter-spacing: .15em; }.step-dot { position: relative; z-index: 2; width: 58px; height: 58px; margin: 20px auto 25px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; box-shadow: 0 0 0 10px #fff; }.step-dot svg { width: 20px; }.steps-line h3 { margin: 0 0 10px; font-size: 17px; }.steps-line p { max-width: 280px; margin: 0 auto; color: var(--muted); font-size: 10px; line-height: 1.7; }
.use-cases { background: var(--ink); color: #fff; }.use-case-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 95px; }.use-case-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }.use-case-list div { min-height: 90px; padding: 18px; display: grid; grid-template-columns: 32px 1fr 22px; align-items: center; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }.use-case-list span { color: var(--orange); font-size: 7px; }.use-case-list strong { font-size: 11px; }.use-case-list svg { width: 16px; color: rgba(255,255,255,.4); }
.inner-api-demo { background: var(--orange); color: #fff; }.inner-api-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 85px; }.api-doc-copy p { max-width: 430px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.8; }.doc-code { overflow: hidden; border-radius: 16px; background: #11100f; box-shadow: 0 30px 80px rgba(92,30,0,.28); }.doc-code .code-top { height: 48px; padding: 0 17px; display: flex; align-items: center; gap: 7px; background: #1b1917; border-bottom: 1px solid #2c2925; }.doc-code .code-top i { width: 8px; height: 8px; border-radius: 50%; background: #f06d60; }.doc-code .code-top i:nth-child(2) { background: #edb34d; }.doc-code .code-top i:nth-child(3) { background: #57b582; }.doc-code .code-top span { margin-left: 8px; color: #8c857f; font-size: 8px; }.doc-code pre { margin: 0; padding: 30px; min-height: 230px; color: #f2ece5; font: 10px/2 "SFMono-Regular",Consolas,monospace; white-space: pre-wrap; }.doc-code pre b { color: #cb99ff; }.doc-code pre em { color: #9fd273; font-style: normal; }.code-result { padding: 14px 18px; display: flex; align-items: center; gap: 8px; border-top: 1px solid #2c2925; color: #9fd273; font-size: 8px; }.code-result svg { width: 15px; }.code-result span { margin-left: auto; color: #77716b; }
.contact-locations { background: #fff; }.location-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }.location-grid article { min-height: 220px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }.location-grid svg { width: 45px; height: 45px; padding: 12px; border-radius: 50%; background: var(--cream); color: var(--orange); }.location-grid span { display: block; margin-top: 32px; color: var(--orange); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }.location-grid h3 { margin: 8px 0; font-size: 18px; }.location-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
  .inner-cta { background: var(--orange); color: #fff; }.cta-panel { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; }.cta-panel h2 { margin: 0; font-size: clamp(38px,4.4vw,60px); line-height: 1.05; letter-spacing: -.055em; font-weight: 500; }

@media (max-width: 1100px) {
  .rich-dropdown { left: -80px; }.slider-code-card { width: 390px; }.chat-board { width: 370px; }
  .inner-hero-grid { gap: 30px; }.inner-feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-slider .hero-grid { min-height: 1080px; }.slider-api-visual, .conversation-visual { height: 530px; max-width: 580px; margin: 0 auto; }.slider-controls { grid-column: 1 / -1; padding: 22px 0 !important; justify-content: center; }
  .inner-hero-grid, .inner-intro-grid, .use-case-grid, .inner-api-grid { grid-template-columns: 1fr; }.inner-hero-copy { padding-top: 70px; text-align: center; }.inner-hero-copy .eyebrow, .inner-hero-copy .hero-actions { justify-content: center; }.inner-hero-copy > p { margin-inline: auto; }.inner-hero-visual { max-width: 580px; width: 100%; margin: 0 auto; }.inner-stats { margin-top: 40px; }.inner-intro-grid, .use-case-grid, .inner-api-grid { gap: 45px; }.inner-intro-grid > div:nth-child(2) > p { margin-top: 0; }.steps-line { gap: 30px; }.cta-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .slider-code-card { width: 92%; }.chat-board { width: 86%; min-height: 425px; }.api-float-one { right: 0; }.api-float-two { left: 0; }.conversation-badge { right: 0; }.slider-api-visual, .conversation-visual { height: 490px; }.code-orbit, .conversation-orb { width: 330px; height: 330px; }
  .hero-slider .hero-grid { min-height: 1000px; }.slider-controls > button { width: 34px; height: 34px; }
  .sector-grid-3d { grid-template-columns: 1fr; }.sector-grid-3d div { min-height: 125px; }
  .breadcrumb { overflow-x: auto; white-space: nowrap; }.inner-hero-copy h1 { font-size: 47px; }.inner-hero-grid { min-height: 950px; }.inner-hero-visual { height: 470px; }.orbit-a { width: 320px; height: 320px; }.orbit-b { width: 380px; height: 380px; }.inner-device { width: 250px; min-height: 345px; }.inner-icon-stage { height: 150px; }.float-success { left: 0; }.float-secure { right: 0; }.inner-stats { grid-template-columns: 1fr 1fr; }.inner-stats div { padding: 20px 12px; }.inner-stats div:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); text-align: center; }.inner-intro h2, .use-case-grid h2, .api-doc-copy h2 { font-size: 40px; }.intro-checks, .inner-feature-grid, .use-case-list, .location-grid { grid-template-columns: 1fr; }.inner-feature-grid article { min-height: 250px; }.steps-line { grid-template-columns: 1fr; gap: 45px; }.steps-line::before { display: none; }.cta-panel .button { width: 100%; }
}

/* Brand-colored inline SVG menu icons */
.duotone-svg { position: relative; z-index: 1; display: block; color: var(--orange); }
.duotone-svg .duo-fill { fill: rgba(242, 121, 12, .22); stroke: var(--orange); }
.nav-dropdown-trigger { gap: 7px; }
.nav-dropdown-trigger .duotone-icon,
.nav-inline-icon .duotone-icon { width: 22px !important; height: 22px !important; border-radius: 7px; }
.nav-dropdown-trigger .duotone-icon::before,
.nav-inline-icon .duotone-icon::before { width: 15px; height: 15px; }
.nav-inline-icon { display: inline-flex; align-items: center; gap: 6px; }
.nav-inline-icon .duotone-svg,
.nav-dropdown-trigger .duotone-svg { width: 14px; height: 14px; }
.mobile-menu nav > a,
.mobile-menu nav details a { display: flex; align-items: center; gap: 9px; }
.mobile-menu nav .duotone-icon { width: 27px !important; height: 27px !important; border-radius: 8px; }
.mobile-menu nav .duotone-svg { width: 16px; height: 16px; }
.inner-icon-stage .duotone-svg { width: 58px; height: 58px; }

/* Creative footer */
.creative-footer { position: relative; isolation: isolate; overflow: hidden; padding: 0 0 24px; background: #090909; color: #fff; border-top: 0; }
.creative-footer > .container { position: relative; z-index: 2; }
.footer-watermark { position: absolute; z-index: 0; inset: 260px -80px 0; background-image: url('/images/ekomesaj-symbol.png'); background-repeat: no-repeat; background-position: 8% 88%; background-size: 680px auto; opacity: .05; filter: grayscale(1) brightness(2); pointer-events: none; }
.creative-footer::after { content: ""; position: absolute; z-index: 0; width: 520px; height: 520px; right: -270px; bottom: -270px; border-radius: 50%; border: 1px solid rgba(242,121,12,.32); box-shadow: 0 0 0 90px rgba(242,121,12,.025), 0 0 0 180px rgba(242,121,12,.015); }
.footer-cta { min-height: 245px; padding: 52px 58px; display: flex; align-items: center; justify-content: space-between; gap: 45px; overflow: hidden; background: var(--orange); border-radius: 0 0 24px 24px; }
.footer-cta > div:first-child, .footer-cta-button { position: relative; z-index: 2; }
.footer-kicker { display: block; margin-bottom: 15px; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-cta h2 { margin: 0; font-size: clamp(35px,4vw,54px); line-height: 1.04; letter-spacing: -.055em; font-weight: 500; }
.footer-cta-button { min-width: 225px; height: 54px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #090909; border-radius: 9px; color: #fff; font-size: 10px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.footer-cta-button:hover { transform: translateY(-3px); background: #24201d; }
.footer-cta-button svg { width: 18px; }
.footer-cta-orbit { position: absolute !important; z-index: 1 !important; width: 350px; height: 350px; right: 220px; top: -80px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.footer-cta-orbit::before, .footer-cta-orbit::after { content: ""; position: absolute; inset: 55px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }.footer-cta-orbit::after { inset: 110px; background: rgba(255,255,255,.08); }
.footer-cta-orbit span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff; }.footer-cta-orbit span:first-child { left: 27px; top: 90px; }.footer-cta-orbit span:nth-child(2) { right: 55px; bottom: 38px; width: 13px; height: 13px; }.footer-cta-orbit span:nth-child(3) { left: 48%; bottom: 13px; opacity: .4; }

.creative-footer .footer-top { grid-template-columns: 1.35fr repeat(3, 1fr); gap: 0; padding: 78px 0 62px; }
.creative-footer .footer-brand { padding-right: 55px; }
.footer-logo { width: fit-content; padding: 11px 15px; display: inline-flex; background: var(--cream); border-radius: 10px; }
.creative-footer .footer-brand .footer-logo img { width: 180px; display: block; }
.creative-footer .footer-brand > p { max-width: 300px; margin: 23px 0; color: rgba(255,255,255,.47); font-size: 10px; line-height: 1.8; }
.creative-footer .status-pill { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.11); color: rgba(255,255,255,.6); }
.creative-footer .footer-col { min-width: 0; padding: 0 34px; gap: 0; border-left: 1px solid rgba(255,255,255,.12); }
.creative-footer .footer-col h3 { width: 100%; min-height: 49px; margin: 0; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; }
.creative-footer .footer-col h3 .duotone-icon { width: 31px !important; height: 31px !important; border-radius: 9px; background: rgba(242,121,12,.12); }
.creative-footer .footer-col h3 .duotone-svg { width: 18px; height: 18px; }
.creative-footer .footer-col > a { width: 100%; min-height: 39px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255,255,255,.075); color: rgba(255,255,255,.5); font-size: 9px; transition: color .2s ease, padding .2s ease; }
.creative-footer .footer-col > a:hover { padding-left: 5px; color: #fff; }
.footer-link-arrow { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--orange); }
.footer-link-arrow svg { width: 9px; height: 9px; }
.creative-footer .footer-col > a:hover .footer-link-arrow { border-color: var(--orange); background: var(--orange); color: #fff; }
.footer-contact-strip { min-height: 92px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-contact-strip > * { padding: 20px 28px; display: flex; align-items: center; gap: 13px; border-left: 1px solid rgba(255,255,255,.13); }
.footer-contact-strip > *:first-child { border-left: 0; }
.footer-contact-strip svg { width: 37px; height: 37px; padding: 10px; flex: 0 0 auto; border-radius: 50%; background: rgba(242,121,12,.14); color: var(--orange); }
.footer-contact-strip span, .footer-contact-strip strong { display: block; }.footer-contact-strip span { color: rgba(255,255,255,.38); font-size: 7px; }.footer-contact-strip strong { margin-top: 4px; color: #fff; font-size: 10px; }
.creative-footer .footer-bottom { padding-top: 24px; color: rgba(255,255,255,.3); border-top: 0; }
.creative-footer .footer-bottom > div { display: flex; align-items: center; gap: 10px; }
.creative-footer .footer-bottom a { transition: color .2s ease; }.creative-footer .footer-bottom a:hover { color: var(--orange); }.creative-footer .footer-bottom i { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 13px; }
  .creative-footer .footer-top { grid-template-columns: 1.2fr repeat(3,1fr); }
  .creative-footer .footer-col { padding-inline: 22px; }
}

@media (max-width: 900px) {
  .footer-cta { padding: 45px; }.footer-cta-orbit { right: 120px; }
  .creative-footer .footer-top { grid-template-columns: 1fr 1fr 1fr; row-gap: 50px; }
  .creative-footer .footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .creative-footer .footer-col { padding-inline: 26px; }.creative-footer .footer-col:nth-of-type(2) { border-left: 0; padding-left: 0; }
}

@media (max-width: 620px) {
  .footer-watermark { inset: 240px -120px 0; background-position: center 80%; background-size: 520px auto; }
  .footer-cta { min-height: 330px; padding: 38px 25px; flex-direction: column; align-items: flex-start; justify-content: center; }.footer-cta-button { width: 100%; }.footer-cta-orbit { width: 270px; height: 270px; right: -90px; top: -80px; }
  .creative-footer .footer-top { grid-template-columns: 1fr; padding: 62px 0 45px; row-gap: 34px; }
  .creative-footer .footer-brand { grid-column: auto; }
  .creative-footer .footer-col, .creative-footer .footer-col:nth-of-type(2) { padding: 0; border-left: 0; }
  .footer-contact-strip { grid-template-columns: 1fr; }.footer-contact-strip > * { padding-inline: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }.footer-contact-strip > *:first-child { border-top: 0; }
  .creative-footer .footer-bottom > div { flex-wrap: wrap; }
}
