:root {
  --ink: #080b11;
  --ink-2: #10151f;
  --paper: #f4f4ef;
  --white: #ffffff;
  --muted: #aab1bd;
  --line: rgba(255,255,255,.14);
  --blue: #4b74ff;
  --blue-2: #79a2ff;
  --amber: #ffbc5b;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--ink); line-height: 1.5; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; padding: 12px 18px; background: white; color: black; z-index: 1000; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.announcement { min-height: 34px; display: flex; gap: 12px; align-items: center; justify-content: center; padding: 7px 20px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #d9deeb; background: #161b25; }
.announcement-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--amber); }
.site-header { position: absolute; z-index: 30; top: 34px; left: 0; right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-header.is-sticky { position: fixed; top: 0; background: rgba(8,11,17,.9); backdrop-filter: blur(18px); animation: headerDrop .35s ease; }
@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; font-size: 15px; letter-spacing: .08em; font-weight: 500; }
.brand b { font-weight: 800; }
.brand-mark { width: 32px; height: 28px; position: relative; display: inline-flex; gap: 3px; align-items: end; transform: skew(-10deg); }
.brand-mark i { width: 8px; border-radius: 2px; background: var(--blue); display: block; }
.brand-mark i:nth-child(1) { height: 16px; }
.brand-mark i:nth-child(2) { height: 27px; }
.brand-mark i:nth-child(3) { height: 21px; background: var(--amber); }
.nav-links { display: flex; gap: 30px; align-items: center; color: #d6dbe4; font-size: 13px; font-weight: 600; }
.nav-links > a:not(.button) { transition: color .2s; }
.nav-links > a:not(.button):hover { color: white; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; background: white; margin: 5px; }

.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 800; cursor: pointer; transition: transform .25s, background .25s, border-color .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 12px 34px rgba(75,116,255,.28); }
.button-primary:hover { background: #6387ff; }
.button-small { min-height: 42px; padding: 0 19px; }
.button-ghost { border-color: rgba(255,255,255,.2); color: white; background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.button-full { width: 100%; }
.play-icon { font-size: 9px; width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: inline-grid; place-items: center; }

.hero { min-height: 850px; position: relative; overflow: hidden; background: #080b11; color: white; padding: 178px 0 105px; }
.hero::before { content: ""; position: absolute; z-index: 3; inset: 0; opacity: .045; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: #090c11; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(var(--hero-video-scale, 1.015)); filter: saturate(.82) contrast(1.05); }
.hero-video-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(5,8,14,.98) 0%, rgba(5,8,14,.9) 34%, rgba(5,8,14,.43) 64%, rgba(5,8,14,.16) 100%), linear-gradient(0deg, rgba(5,8,14,.76) 0%, transparent 34%, rgba(5,8,14,.32) 100%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .18; }
.hero-glow-one { width: 420px; height: 420px; background: var(--blue); right: 6%; top: 25%; }
.hero-glow-two { width: 260px; height: 260px; background: var(--amber); right: 34%; bottom: -20%; opacity: .08; }
.hero-grid { position: relative; z-index: 4; display: block; }
.hero-copy { max-width: 660px; animation: heroReveal .9s cubic-bezier(.22,.8,.22,1) both; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--blue-2); font-size: 10px; letter-spacing: .2em; font-weight: 800; text-transform: uppercase; }
.eyebrow > span { width: 27px; height: 1px; background: currentColor; }
.hero h1 { max-width: 640px; margin: 24px 0; font-size: clamp(50px, 5.9vw, 82px); line-height: .98; letter-spacing: -.055em; font-weight: 690; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-lede { max-width: 580px; color: #ced3dc; font-size: 17px; line-height: 1.75; text-shadow: 0 2px 20px rgba(0,0,0,.45); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 35px 0 40px; }
.hero-proof { display: flex; gap: 28px; padding-top: 27px; border-top: 1px solid var(--line); }
.hero-proof > div { display: flex; flex-direction: column; gap: 3px; }
.hero-proof strong { font-size: 23px; }
.hero-proof span { color: #7f8795; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.scroll-cue { position: absolute; z-index: 5; left: calc((100% - min(1180px, calc(100% - 48px))) / 2); bottom: 22px; display: flex; align-items: center; gap: 10px; color: #8f98a8; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.scroll-cue span { width: 28px; height: 1px; background: #667080; }
.video-control { position: absolute; z-index: 6; right: 30px; bottom: 24px; min-width: 122px; height: 40px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; color: white; background: rgba(8,11,17,.56); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; backdrop-filter: blur(12px); cursor: pointer; }
.video-control-icon { width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 8px; }
.video-control-text { font-size: 8px; letter-spacing: .13em; font-weight: 800; }

.motion-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.22,.8,.22,1), transform .75s cubic-bezier(.22,.8,.22,1); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

.trust-strip { background: #eef0ee; border-bottom: 1px solid #d9dbd8; }
.trust-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #4c535d; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.trust-inner > span { color: #959ba3; }
.trust-inner i { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; }

.section { position: relative; padding: 120px 0; }
.section-light { background: var(--paper); }
.section-dark { background: #0a0d13; color: white; }
.section-heading { margin-bottom: 66px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.split-heading > p { color: #656b74; font-size: 16px; line-height: 1.75; max-width: 460px; margin: 0 0 8px; }
.section-kicker { display: block; margin-bottom: 18px; color: var(--blue); font-size: 10px; letter-spacing: .2em; font-weight: 800; }
.section h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.045em; font-weight: 650; }
.section h2 em { color: var(--blue-2); font-style: normal; }
.centered-heading { text-align: center; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.comparison-card { min-height: 390px; padding: 42px; border-radius: var(--radius); }
.comparison-old { color: #676d76; background: #e7e7e2; border: 1px solid #d9dad6; }
.comparison-new { color: white; background: linear-gradient(140deg, #171c27, #0d1119); box-shadow: var(--shadow); }
.comparison-label { display: inline-block; padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; opacity: .7; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.comparison-card h3 { margin: 42px 0 30px; font-size: 30px; letter-spacing: -.03em; }
.comparison-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.comparison-card li { display: flex; gap: 14px; align-items: center; font-size: 14px; }
.comparison-card li span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: rgba(0,0,0,.06); font-weight: 800; }
.comparison-new li span { color: white; background: var(--blue); }

.steps { margin-top: 75px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps article { min-height: 325px; padding: 27px 26px 35px; border-right: 1px solid var(--line); position: relative; }
.steps article:first-child { border-left: 1px solid var(--line); }
.step-number { color: #565e6d; font-size: 10px; letter-spacing: .12em; }
.step-icon { width: 56px; height: 56px; margin: 55px 0 30px; display: grid; place-items: center; border-radius: 18px; background: #151a24; color: var(--blue-2); font-size: 22px; }
.steps h3 { font-size: 19px; margin: 0 0 12px; }
.steps p { margin: 0; color: #828a97; font-size: 13px; line-height: 1.7; }
.workflow-feature { margin-top: 90px; padding: 22px; border-radius: 28px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; background: #121721; border: 1px solid var(--line); }
.workflow-copy { padding: 48px 34px; }
.feature-tag { color: var(--amber); font-size: 9px; letter-spacing: .18em; font-weight: 800; }
.workflow-copy h3 { margin: 18px 0; font-size: 34px; line-height: 1.1; letter-spacing: -.035em; }
.workflow-copy > p { color: #939ba8; font-size: 14px; line-height: 1.75; }
.tick-list { margin: 28px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; color: #d9dde5; font-size: 13px; }
.tick-list li::before { content: "✓"; margin-right: 10px; color: var(--blue-2); }
.workflow-image { border-radius: 20px; overflow: hidden; background: white; min-height: 460px; }
.workflow-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.section-products { background: #f8f8f5; }
.product-showcase { display: grid; grid-template-columns: 1.18fr .82fr; gap: 22px; }
.product-collage { min-height: 690px; display: grid; grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(2,1fr); gap: 12px; }
.product-photo { position: relative; margin: 0; overflow: hidden; border-radius: 18px; background: #ddd; }
.product-photo-large { grid-row: 1 / 3; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-photo:hover img { transform: scale(1.04); }
.product-photo figcaption { position: absolute; left: 15px; bottom: 15px; padding: 8px 11px; border-radius: 99px; color: white; background: rgba(8,11,17,.75); backdrop-filter: blur(8px); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-menu { border-radius: 20px; background: var(--ink); color: white; overflow: hidden; }
.product-menu-head { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 26px; border-bottom: 1px solid var(--line); font-size: 9px; letter-spacing: .13em; font-weight: 800; }
.product-menu-head small { color: var(--amber); }
.product-row { min-height: 123px; display: grid; grid-template-columns: 35px 1fr 24px; align-items: center; gap: 10px; padding: 0 26px; border-bottom: 1px solid var(--line); transition: background .25s; }
.product-row:hover, .product-row.active { background: #151b27; }
.product-row > span { color: #5d6573; font-size: 10px; }
.product-row b, .product-row small { display: block; }
.product-row b { font-size: 16px; }
.product-row small { margin-top: 6px; color: #7c8491; font-size: 10px; }
.product-row i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); color: var(--blue-2); font-style: normal; }
.ecosystem-panel { position: relative; margin-top: 24px; padding: 22px; border-radius: 24px; background: #e9e9e5; overflow: hidden; }
.ecosystem-panel img { width: 100%; max-height: 560px; object-fit: contain; mix-blend-mode: multiply; }
.ecosystem-note { position: absolute; right: 38px; bottom: 34px; max-width: 350px; padding: 15px 18px; display: flex; flex-direction: column; background: rgba(8,11,17,.88); color: white; backdrop-filter: blur(12px); border-radius: 13px; }
.ecosystem-note b { font-size: 13px; }
.ecosystem-note span { margin-top: 3px; color: #afb5c0; font-size: 10px; }

.business-section { color: white; background: linear-gradient(135deg,#192555,#101421 55%,#0b0e14); overflow: hidden; }
.business-section::after { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; top: -180px; border-radius: 50%; border: 80px solid rgba(255,255,255,.025); }
.business-intro { max-width: 720px; margin: 0 auto 65px; text-align: center; position: relative; z-index: 2; }
.business-intro p { color: #a4adbd; font-size: 15px; line-height: 1.75; }
.calculator-card { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; max-width: 1000px; margin: 0 auto; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; overflow: hidden; background: rgba(8,11,17,.5); box-shadow: var(--shadow); }
.calculator-controls { padding: 52px; display: grid; gap: 38px; }
.control-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.control-label label { color: #c7ccd6; font-size: 12px; }
.control-label output { color: white; font-size: 21px; font-weight: 800; }
input[type="range"] { width: 100%; height: 4px; appearance: none; background: linear-gradient(90deg, var(--blue) 0 var(--range-progress, 50%), #313846 var(--range-progress, 50%) 100%); border-radius: 99px; outline: none; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: white; border: 5px solid var(--blue); box-shadow: 0 0 0 3px rgba(75,116,255,.2); cursor: grab; }
.calculator-result { padding: 52px; display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,.06); border-left: 1px solid rgba(255,255,255,.12); }
.calculator-result > span { color: var(--blue-2); font-size: 9px; letter-spacing: .16em; font-weight: 800; }
.calculator-result > strong { margin: 13px 0 30px; font-size: clamp(52px, 6vw, 74px); letter-spacing: -.055em; line-height: 1; }
.result-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.result-breakdown > div { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.16); }
.result-breakdown small, .result-breakdown b { display: block; }
.result-breakdown small { color: #818a98; font-size: 9px; }
.result-breakdown b { margin-top: 5px; font-size: 17px; }
.calculator-result > p { color: #697282; font-size: 8px; line-height: 1.6; margin: 16px 0 0; }

.use-cases { padding-bottom: 140px; }
.case-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 250px; gap: 18px; }
.case-card { position: relative; padding: 28px; overflow: hidden; border-radius: 22px; }
.case-featured { grid-column: span 7; grid-row: span 2; padding: 0; }
.case-gradient { grid-column: span 5; background: linear-gradient(145deg,#4b74ff,#253ea6); color: white; }
.case-photo { grid-column: span 5; padding: 0; }
.case-outline { grid-column: span 5; color: white; background: #11151d; }
.case-card > img { width: 100%; height: 100%; object-fit: cover; }
.case-featured > img { object-position: center; }
.case-overlay { position: absolute; inset: 0; padding: 34px; display: flex; flex-direction: column; justify-content: end; color: white; background: linear-gradient(transparent 30%,rgba(4,6,10,.9)); }
.case-card > span, .case-overlay > span { font-size: 9px; font-weight: 800; letter-spacing: .14em; color: rgba(255,255,255,.7); }
.case-card h3 { margin: 14px 0 8px; font-size: 28px; letter-spacing: -.03em; }
.case-card p { margin: 0; max-width: 360px; color: rgba(255,255,255,.75); font-size: 13px; }
.case-link { display: inline-block; margin-top: 17px; color: white; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.case-arrow { position: absolute; right: 28px; bottom: 25px; font-size: 28px; }
.orb { position: absolute; width: 180px; height: 180px; border: 38px solid rgba(75,116,255,.28); border-radius: 50%; right: -45px; bottom: -70px; }

.section-support { background: white; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.support-visual { position: relative; align-self: center; padding: 26px; border-radius: 24px; background: #eef0f4; }
.support-visual img { width: 100%; height: auto; aspect-ratio: 1200 / 644; object-fit: contain; border-radius: 12px; box-shadow: 0 20px 60px rgba(18,28,50,.18); }
.support-badge { position: absolute; left: 8px; bottom: 55px; padding: 12px 15px; border-radius: 10px; color: white; background: var(--ink); font-size: 8px; letter-spacing: .13em; font-weight: 800; box-shadow: var(--shadow); }
.support-badge span { color: #35c77b; margin-right: 6px; }
.support-copy > p { color: #656d78; font-size: 15px; line-height: 1.75; }
.support-list { margin-top: 34px; border-top: 1px solid #dfe1e3; }
.support-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 19px 0; border-bottom: 1px solid #dfe1e3; }
.support-list > div > span { color: var(--blue); font-size: 10px; font-weight: 800; }
.support-list p, .support-list b { display: block; margin: 0; }
.support-list p { color: #7a818b; font-size: 11px; }
.support-list b { color: #171b22; margin-bottom: 4px; font-size: 14px; }

.faq-section { background: #f1f2ee; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro > p { max-width: 430px; color: #69707a; font-size: 15px; line-height: 1.75; }
.text-link { display: inline-flex; gap: 10px; margin-top: 18px; padding-bottom: 6px; border-bottom: 1px solid #20252c; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.faq-list { border-top: 1px solid #cfd2cf; }
.faq-list details { border-bottom: 1px solid #cfd2cf; }
.faq-list summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 17px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border: 1px solid #bbc0c1; border-radius: 50%; color: var(--blue); transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -2px 55px 28px 0; color: #69707a; font-size: 13px; line-height: 1.8; }

/* Search landing pages */
.seo-page { background: #f4f4ef; color: var(--ink); }
.seo-page .site-header { position: relative; top: 0; background: #090c12; }
.seo-page .announcement { background: #161b25; }
.seo-page .nav-links a { display: inline-flex; }
.seo-hero { position: relative; padding: 120px 0 105px; color: white; background: radial-gradient(circle at 82% 25%, rgba(75,116,255,.24), transparent 34%), #090c12; overflow: hidden; }
.seo-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.seo-hero h1 { margin: 20px 0 25px; max-width: 720px; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.052em; }
.seo-hero p { max-width: 620px; color: #b5bdca; font-size: 17px; line-height: 1.75; }
.seo-hero-image { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.seo-hero-image img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.seo-hero-note { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 14px 16px; color: white; background: rgba(8,11,17,.78); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; backdrop-filter: blur(10px); font-size: 11px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 22px; color: #7e8795; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb a:hover { color: white; }
.seo-content { padding: 100px 0; background: #f4f4ef; }
.seo-content-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.seo-sidebar { align-self: start; position: sticky; top: 110px; padding: 26px; border: 1px solid #d5d7d3; border-radius: 18px; }
.seo-sidebar b { display: block; margin-bottom: 14px; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.seo-sidebar a { display: block; padding: 11px 0; border-top: 1px solid #dfe1dd; color: #69707a; font-size: 11px; }
.seo-article { max-width: 760px; }
.seo-article h2 { margin: 0 0 24px; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.04; letter-spacing: -.04em; }
.seo-article h3 { margin: 54px 0 16px; font-size: 26px; letter-spacing: -.025em; }
.seo-article p, .seo-article li { color: #606872; font-size: 15px; line-height: 1.85; }
.seo-article ul { padding-left: 20px; }
.seo-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 42px 0; }
.seo-facts div { min-height: 145px; padding: 22px; border-radius: 16px; color: white; background: #111620; }
.seo-facts strong, .seo-facts span { display: block; }
.seo-facts strong { font-size: 27px; }
.seo-facts span { margin-top: 26px; color: #8e97a5; font-size: 10px; line-height: 1.5; }
.related-section { padding: 85px 0; color: white; background: #10141c; }
.related-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 35px; }
.related-head h2 { margin: 0; font-size: 40px; letter-spacing: -.04em; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.related-card { min-height: 220px; padding: 25px; display: flex; flex-direction: column; justify-content: end; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: linear-gradient(145deg,#171d29,#0b0e14); transition: transform .25s, border-color .25s; }
.related-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.related-card span { color: var(--blue-2); font-size: 9px; letter-spacing: .12em; }
.related-card h3 { margin: 13px 0 8px; font-size: 21px; }
.related-card p { margin: 0; color: #818a98; font-size: 11px; line-height: 1.65; }

/* Company, policy and support pages */
.trust-hero { padding: 115px 0 85px; background: linear-gradient(145deg,#eef2f8 0%,#fff 58%,#eef4ff 100%); border-bottom: 1px solid var(--line); }
.trust-hero .breadcrumb { margin-bottom: 34px; }
.trust-hero-inner { max-width: 900px; }
.trust-hero h1 { max-width: 850px; margin: 14px 0 24px; font-size: clamp(48px,7vw,82px); line-height: .95; letter-spacing: -.055em; }
.trust-hero p { max-width: 760px; color: #5e6876; font-size: 18px; line-height: 1.75; }
.trust-content { padding: 90px 0 110px; background: #fff; }
.trust-layout { display: grid; grid-template-columns: 250px minmax(0,780px); justify-content: space-between; gap: 70px; }
.trust-nav { position: sticky; top: 120px; align-self: start; display: grid; gap: 8px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #f8f9fb; }
.trust-nav b { margin-bottom: 8px; font-size: 10px; letter-spacing: .12em; }
.trust-nav a { padding: 7px 0; color: #69717c; font-size: 12px; }
.trust-nav a:hover { color: var(--blue); }
.trust-article { color: #404a58; font-size: 15px; line-height: 1.85; }
.trust-article h2 { margin: 0 0 20px; color: #090c12; font-size: 38px; line-height: 1.08; letter-spacing: -.035em; }
.trust-article h2:not(:first-child) { margin-top: 58px; }
.trust-article h3 { margin: 34px 0 12px; color: #111722; font-size: 20px; }
.trust-article p + p { margin-top: 15px; }
.trust-article ul { margin: 16px 0 0; padding-left: 20px; }
.trust-article li + li { margin-top: 8px; }
.trust-callout { margin: 36px 0; padding: 26px 28px; border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; background: #f2f5ff; }
.trust-callout strong { display: block; margin-bottom: 6px; color: #111722; }
.trust-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 26px; }
.trust-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: #fafbfc; }
.trust-card h3 { margin: 0 0 8px; font-size: 17px; }
.trust-card p { color: #687382; font-size: 13px; }
.trust-meta { margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); color: #7a8491; font-size: 11px; }
.trust-cta { padding: 72px 0; color: white; background: #0b0f17; }
.trust-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.trust-cta h2 { max-width: 650px; font-size: 42px; line-height: 1.05; }
.trust-cta p { margin-top: 12px; color: #8e98a7; }
.legal-note { font-size: 12px; color: #737d8a; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.footer-legal a { color: #737b88; font-size: 9px; }
.analytics-consent { position: fixed; z-index: 80; left: 22px; right: 22px; bottom: 22px; max-width: 760px; margin: auto; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: #d7dce5; background: rgba(10,14,22,.97); border: 1px solid rgba(255,255,255,.16); border-radius: 15px; box-shadow: 0 18px 55px rgba(0,0,0,.35); }
.analytics-consent p { margin: 0; font-size: 12px; line-height: 1.55; }
.analytics-consent a { color: white; text-decoration: underline; }
.analytics-consent > div { display: flex; gap: 8px; flex: 0 0 auto; }
.analytics-consent button { padding: 9px 13px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; cursor: pointer; font-size: 10px; }
.analytics-consent button[data-consent="granted"] { background: var(--blue); border-color: var(--blue); }

.specs-section { background: #e8e9e5; padding: 70px 0 85px; }
.specs-head { display: flex; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid #c9ccc9; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.specs-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.specs-grid > div { min-height: 170px; padding: 28px 25px; border-right: 1px solid #c9ccc9; }
.specs-grid > div:first-child { border-left: 1px solid #c9ccc9; }
.specs-grid small, .specs-grid strong, .specs-grid span { display: block; }
.specs-grid small { color: #777e86; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.specs-grid strong { margin: 28px 0 9px; font-size: 18px; }
.specs-grid span { color: #7b8189; font-size: 10px; }

.contact-section { color: white; background: #090c12; overflow: hidden; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.contact-copy > p { color: #a0a8b5; font-size: 16px; line-height: 1.75; }
.contact-points { margin-top: 35px; display: grid; gap: 12px; color: #cdd2da; font-size: 12px; }
.contact-points span::first-letter { color: var(--blue-2); }
.inquiry-form { padding: 36px; border-radius: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(18px); }
.form-demo-note { margin: -10px 0 24px; padding: 8px 10px; color: #aeb8c8; background: rgba(75,116,255,.1); border: 1px solid rgba(75,116,255,.22); border-radius: 8px; font-size: 9px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.inquiry-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #b9c0ca; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 13px 14px; background: rgba(4,6,10,.5); color: white; outline: none; text-transform: none; letter-spacing: normal; resize: vertical; transition: border-color .2s; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--blue); }
.inquiry-form select option { color: black; }
.inquiry-form .form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-security { display: flex; justify-content: center; margin: 2px 0 16px; min-height: 65px; }
.form-security .cf-turnstile { width: 100%; max-width: 300px; }
.inquiry-form button[disabled] { cursor: wait; opacity: .68; }
.inquiry-form button.is-loading span { display: none; }
.inquiry-form button.is-loading::after { content: ""; width: 14px; height: 14px; margin-left: 10px; border: 2px solid rgba(255,255,255,.4); border-top-color: white; border-radius: 50%; animation: form-spin .8s linear infinite; }
.inquiry-form > small { display: block; margin-top: 14px; color: #626a77; text-align: center; font-size: 8px; }
.form-status { min-height: 18px; margin: 10px 0 0; color: var(--amber); font-size: 11px; text-align: center; }
.form-status.is-success { color: #62d99f; }
.form-status.is-error { color: #ff8a8a; }
@keyframes form-spin { to { transform: rotate(360deg); } }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.contact-orb-one { width: 500px; height: 500px; right: 8%; top: 10%; background: rgba(75,116,255,.14); }
.contact-orb-two { width: 330px; height: 330px; left: 10%; bottom: -15%; background: rgba(255,188,91,.08); }

.footer { padding: 70px 0 25px; color: white; background: #05070b; border-top: 1px solid rgba(255,255,255,.09); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; color: #6f7784; font-size: 11px; }
.footer-grid > div:first-child p { max-width: 280px; line-height: 1.7; }
.footer-grid b { color: white; margin-bottom: 8px; font-size: 11px; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 65px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #555d6a; font-size: 8px; }
.floating-enquire { position: fixed; z-index: 20; right: 24px; bottom: 24px; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: var(--amber); color: #17120b; box-shadow: 0 14px 40px rgba(0,0,0,.32); transition: transform .25s; }
.floating-enquire:hover { transform: scale(1.06); }
.floating-enquire span { font-size: 17px; line-height: 1; }
.floating-enquire b { font-size: 7px; letter-spacing: .12em; line-height: 1; margin-top: -12px; }

@media (max-width: 980px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.button) { display: none; }
  .hero-copy { max-width: 750px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps article:nth-child(2) { border-right: 1px solid var(--line); }
  .workflow-feature, .support-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-collage { min-height: 600px; }
  .calculator-card { grid-template-columns: 1fr; }
  .calculator-result { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .case-grid { grid-auto-rows: 260px; }
  .case-featured { grid-column: span 12; }
  .case-gradient, .case-photo, .case-outline { grid-column: span 6; }
  .case-outline { grid-column: span 12; }
  .support-visual { max-width: 700px; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-intro { position: static; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
  .seo-hero-grid, .seo-content-grid { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
  .trust-layout { grid-template-columns: 1fr; }
  .trust-nav { position: static; grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, 1180px); }
  .announcement { justify-content: flex-start; overflow: hidden; white-space: nowrap; font-size: 8px; }
  .site-header { top: 34px; }
  .nav { height: 66px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 15px; right: 15px; top: 72px; padding: 22px; display: none; flex-direction: column; align-items: stretch; background: #111722; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a:not(.button) { display: block; padding: 8px 0; }
  .hero { padding-top: 150px; min-height: 880px; }
  .hero-video-overlay { background: linear-gradient(180deg, rgba(5,8,14,.94) 0%, rgba(5,8,14,.82) 58%, rgba(5,8,14,.58) 100%); }
  .hero-media video { object-position: 62% center; filter: saturate(.75) contrast(1.05) brightness(.78); }
  .hero h1 { font-size: 50px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 12px; justify-content: space-between; }
  .hero-proof strong { font-size: 20px; }
  .hero-proof span { font-size: 8px; }
  .scroll-cue { display: none; }
  .video-control { right: 14px; bottom: 18px; min-width: 44px; width: 44px; padding: 0; }
  .video-control-text { display: none; }
  .trust-inner { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .trust-inner > * { flex: 0 0 auto; }
  .section { padding: 85px 0; }
  .section h2 { font-size: 42px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-card { min-height: 0; padding: 30px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 260px; border-left: 1px solid var(--line); }
  .step-icon { margin: 34px 0 24px; }
  .workflow-feature { padding: 12px; }
  .workflow-copy { padding: 28px 18px; }
  .workflow-image { min-height: 280px; }
  .product-collage { min-height: 720px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr 1fr; }
  .product-photo-large { grid-column: 1 / 3; grid-row: auto; }
  .product-photo:nth-child(4) { display: none; }
  .product-row { min-height: 105px; }
  .ecosystem-panel { padding: 8px; }
  .ecosystem-note { position: static; margin: 10px; }
  .calculator-controls, .calculator-result { padding: 32px 24px; }
  .case-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .case-featured, .case-gradient, .case-photo, .case-outline { grid-column: auto; grid-row: auto; }
  .case-featured { min-height: 430px; }
  .support-grid { gap: 50px; }
  .faq-list summary { min-height: 72px; font-size: 15px; }
  .faq-list details p { margin-right: 0; }
  .specs-head { gap: 20px; }
  .specs-grid { grid-template-columns: 1fr; }
  .specs-grid > div, .specs-grid > div:first-child { min-height: 140px; border-left: 1px solid #c9ccc9; border-bottom: 1px solid #c9ccc9; }
  .contact-grid { gap: 45px; }
  .inquiry-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-enquire { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  .seo-page .nav-links { position: absolute; }
  .seo-hero { padding: 80px 0 75px; }
  .seo-hero h1 { font-size: 48px; }
  .seo-facts { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .trust-hero { padding: 80px 0 65px; }
  .trust-hero h1 { font-size: 48px; }
  .trust-content { padding: 65px 0 85px; }
  .trust-nav { grid-template-columns: 1fr 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .trust-cta-inner { align-items: flex-start; flex-direction: column; }
  .trust-cta h2 { font-size: 36px; }
  .analytics-consent { align-items: stretch; flex-direction: column; }
  .analytics-consent > div { justify-content: flex-end; }
}

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