:root {
  --blue: #1a56ff;
  --blue-2: #3d74ff;
  --blue-soft: #8fb4ff;
  --navy: #0a1c4a;
  --navy-2: #071335;
  --coral: #fd5840;
  --coral-soft: #ff8a72;
  --ink: #0a1c4a;
  --text: #3b4a6b;
  --muted: #71809c;
  --bg: #edf0f6;
  --surface: #ffffff;
  --surface-soft: #f6f8fd;
  --line: rgba(10, 28, 74, 0.1);
  --shadow-sm: 0 16px 42px rgba(10, 28, 74, 0.075);
  --shadow-lg: 0 34px 96px rgba(10, 28, 74, 0.14);
  --shadow-card: 0 20px 52px rgba(10, 28, 74, 0.06);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 38px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(26, 86, 255, 0.18); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input, select { font: inherit; }
button { cursor: pointer; }
:where(a, button, input, select):focus-visible {
  outline: 3px solid rgba(26, 86, 255, .3);
  outline-offset: 3px;
}
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 112px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Sora", "Manrope", sans-serif; letter-spacing: -0.045em; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.65rem);
  line-height: .99;
  font-weight: 700;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  line-height: 1.04;
  font-weight: 700;
}
h3 { line-height: 1.12; }
h1 em, h2 em { color: var(--blue); font-style: normal; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background: var(--coral);
}
.eyebrow.light { color: #b6caff; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s cubic-bezier(.22,.61,.36,1), background .35s cubic-bezier(.22,.61,.36,1), color .35s cubic-bezier(.22,.61,.36,1);
}
.btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 16px 32px rgba(26, 86, 255, .28); }
.btn-primary:hover { background: #0f47e8; box-shadow: 0 20px 40px rgba(26, 86, 255, .36); }
.btn-secondary { color: var(--ink); border-color: rgba(10, 28, 74, .15); background: rgba(255, 255, 255, .85); }
.btn-secondary:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn-light { color: var(--navy); background: #fff; }
.btn-small { min-height: 44px; padding: 0 20px; font-size: .9rem; }
.btn-full { width: 100%; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(20px) saturate(1.15);
  border-bottom: 1px solid rgba(10, 28, 74, .075);
  box-shadow: 0 8px 32px rgba(10, 28, 74, .025);
}
.nav-shell { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark { position: relative; width: 35px; height: 35px; display: grid; grid-template-columns: repeat(3, 8px); grid-template-rows: repeat(3, 8px); place-content: center; gap: 3px; transform: rotate(45deg); }
.brand-mark i { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.brand-mark i:nth-child(1) { grid-column: 2; grid-row: 1; }
.brand-mark i:nth-child(2) { grid-column: 1; grid-row: 2; }
.brand-mark i:nth-child(3) { grid-column: 2; grid-row: 2; background: var(--coral); }
.brand-mark i:nth-child(4) { grid-column: 3; grid-row: 2; }
.brand-mark i:nth-child(5) { grid-column: 2; grid-row: 3; }
.brand-copy { font-family: "Sora", sans-serif; font-size: 1.06rem; letter-spacing: -0.035em; }
.brand-copy strong { color: var(--blue); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 700; }
.main-nav > a:not(.btn) { position: relative; color: #344565; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--blue); transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.main-nav > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-toggle, .nav-toggle-label { display: none; }

.hero {
  min-height: 840px;
  display: flex;
  align-items: center;
  padding-top: 154px;
  padding-bottom: 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(143, 180, 255, .28), transparent 36%),
    radial-gradient(circle at 90% 70%, rgba(253, 88, 64, .12), transparent 30%),
    linear-gradient(180deg, #f7f9fd 0%, var(--bg) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background-image: radial-gradient(rgba(26, 86, 255, .2) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, black, transparent 35%, transparent 70%, black);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: clamp(56px, 7vw, 94px); }
.hero-copy { position: relative; z-index: 4; max-width: 680px; }
.hero-lead { max-width: 630px; margin-bottom: 34px; color: var(--text); font-size: 1.08rem; line-height: 1.76; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 22px; color: #465879; font-size: .82rem; font-weight: 700; }
.proof-item { display: flex; align-items: center; gap: 8px; }
.proof-item > span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: rgba(26, 86, 255, .1); }
.proof-item svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(46px); }
.hero-orb-one { width: 460px; height: 460px; right: -140px; top: 90px; background: linear-gradient(135deg, rgba(143,180,255,.55), rgba(26,86,255,.14)); }
.hero-orb-two { width: 300px; height: 300px; right: 15%; bottom: -100px; background: linear-gradient(135deg, rgba(253,88,64,.5), rgba(255,138,114,.08)); }

.hero-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-media-placeholder {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(26, 86, 255, .13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(239,245,255,.92)),
    linear-gradient(135deg, rgba(143,180,255,.18), rgba(253,88,64,.10));
  box-shadow: 0 34px 90px rgba(7, 19, 53, .14);
}

.hero-media-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px dashed rgba(26, 86, 255, .27);
  border-radius: calc(var(--radius-lg) - 12px);
  pointer-events: none;
}

.hero-media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .42;
  background-image: radial-gradient(rgba(26, 86, 255, .24) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(135deg, black, transparent 48%);
  pointer-events: none;
}

.placeholder-frame {
  position: relative;
  z-index: 3;
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 46px 34px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 26px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(7, 19, 53, .12);
}

.placeholder-kicker {
  margin-bottom: 26px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.placeholder-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #0c6fff);
  box-shadow: 0 18px 42px rgba(26, 86, 255, .28);
}

.placeholder-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.placeholder-frame strong {
  max-width: 300px;
  margin-bottom: 12px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.placeholder-frame small {
  max-width: 330px;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.65;
}

.placeholder-orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.placeholder-orb-blue {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -80px;
  background: linear-gradient(145deg, rgba(26,86,255,.88), rgba(143,180,255,.28));
}

.placeholder-orb-coral {
  width: 190px;
  height: 190px;
  left: -62px;
  bottom: -66px;
  background: linear-gradient(145deg, rgba(253,88,64,.88), rgba(255,138,114,.22));
}

.module-strip { position: relative; z-index: 5; border-top: 1px solid rgba(10,28,74,.08); border-bottom: 1px solid rgba(10,28,74,.08); background: #fff; }
.module-strip-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.module-strip-inner > span { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.module-strip-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px; }
.module-strip-list div { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid #e8edf5; border-radius: 999px; color: #4a5a75; font-size: .78rem; font-weight: 800; background: #fbfcff; }
.module-strip-list svg { width: 16px; height: 16px; fill: none; stroke: var(--blue); stroke-width: 2; }

.platform { overflow: hidden; background: transparent; }
.platform::before { content: ""; position: absolute; width: 370px; height: 370px; left: -190px; top: 150px; border-radius: 50%; background: linear-gradient(135deg, rgba(143,180,255,.2), rgba(255,255,255,0)); }
.section-heading { max-width: 730px; }
.section-heading.centered { margin: 0 auto 64px; text-align: center; }
.section-heading p { margin: 0 auto; color: var(--text); font-size: 1.03rem; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.feature-card { position: relative; min-height: 350px; overflow: hidden; padding: 36px; border: 1px solid rgba(10, 28, 74, .085); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-card); transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1), border-color .45s cubic-bezier(.22,.61,.36,1); }
.feature-card:hover { transform: translateY(-3px); border-color: rgba(26, 86, 255, .16); box-shadow: var(--shadow-sm); }
.feature-card.featured { grid-row: span 2; padding: 40px; background: linear-gradient(160deg, #f8fbff 0%, #eef4ff 100%); }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 70px; border-radius: 18px; color: #fff; background: var(--blue); box-shadow: 0 14px 30px rgba(26,86,255,.24); }
.feature-icon.coral { background: var(--coral); box-shadow: 0 14px 30px rgba(253,88,64,.2); }
.feature-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.feature-number { position: absolute; top: 34px; right: 34px; color: #bec9d9; font-size: .78rem; font-weight: 800; }
.feature-card h3 { max-width: 420px; margin-bottom: 16px; font-size: 1.85rem; }
.feature-card p { color: var(--text); line-height: 1.72; }
.feature-card ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-card li { display: flex; align-items: center; gap: 9px; color: #435574; font-size: .87rem; font-weight: 700; }
.feature-card li svg { width: 17px; height: 17px; fill: none; stroke: var(--blue); stroke-width: 2.5; }
.feature-card > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--blue); font-size: .85rem; font-weight: 800; }
.feature-card > a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.dark-card { grid-column: 1 / -1; min-height: 330px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; color: #fff; border: 0; background: linear-gradient(160deg, #0d2a68 0%, var(--navy-2) 100%); }
.dark-card .dark-card-copy { max-width: 560px; }
.dark-card p { color: rgba(255,255,255,.72); }
.dark-card .feature-number { color: rgba(255,255,255,.35); }
.document-visual { position: relative; height: 250px; }
.paper-sheet { position: absolute; top: 8px; left: 50%; width: 160px; height: 205px; padding: 34px 22px; transform: translateX(-50%) rotate(4deg); border-radius: 18px; background: linear-gradient(145deg,#fff,#dce6fa); box-shadow: 0 26px 50px rgba(0,0,0,.25); }
.paper-sheet span { display: block; width: 42px; height: 42px; margin-bottom: 26px; border-radius: 10px; background: var(--blue); }
.paper-sheet i { display: block; height: 7px; margin-bottom: 12px; border-radius: 99px; background: #b9c6dd; }
.paper-sheet i:nth-of-type(2) { width: 80%; }
.paper-sheet i:nth-of-type(3) { width: 65%; }
.paper-sheet b { position: absolute; right: 16px; bottom: 16px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); }
.send-bubble { position: absolute; right: 0; bottom: 20px; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--coral); box-shadow: 0 14px 34px rgba(253,88,64,.32); }
.send-bubble svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; }

.bento-section { background: transparent; }
.bento-grid { display: grid; grid-template-columns: 1.2fr .85fr .85fr; grid-template-rows: minmax(370px, auto) minmax(310px, auto); gap: 18px; }
.bento-card { position: relative; overflow: hidden; border: 1px solid rgba(10,28,74,.075); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-card); }
.bento-heading-card { grid-column: span 2; padding: 46px; }
.bento-heading-card h2 { max-width: 650px; font-size: clamp(2.55rem, 4.4vw, 4.15rem); }
.bento-heading-card p { max-width: 560px; color: var(--text); line-height: 1.7; }
.bento-heading-card .btn { margin-top: 10px; }
.bento-list-card { padding: 32px; color: #fff; background: linear-gradient(160deg, #0d2a68, var(--navy-2)); }
.soft-orb { position: absolute; border-radius: 50%; filter: blur(0); opacity: .45; }
.soft-orb-a { width: 230px; height: 230px; right: -100px; top: -80px; background: linear-gradient(135deg, var(--blue-soft), var(--coral)); }
.bento-list-item { position: relative; z-index: 2; display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.18); }
.bento-list-item:last-child { border-bottom: 0; }
.bento-list-item > span { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #fff; }
.bento-list-item > span.blue { background: var(--blue); }
.bento-list-item > span.coral { background: var(--coral); }
.bento-list-item svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.bento-list-item b, .bento-list-item small { display: block; }
.bento-list-item b { margin-bottom: 3px; font-size: .88rem; }
.bento-list-item small { color: rgba(255,255,255,.58); font-size: .7rem; }
.bento-network-card { background: linear-gradient(150deg, var(--blue) 0%, #0b3ed4 62%, var(--coral) 145%); }
.network-center, .network-node { position: absolute; z-index: 3; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.network-center { width: 102px; height: 102px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.network-center svg { width: 43px; height: 43px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.network-node { width: 55px; height: 55px; color: #fff; background: rgba(255,255,255,.18); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.24); }
.network-node svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.node-a { left: 16%; top: 13%; }.node-b { right: 14%; top: 15%; }.node-c { left: 9%; bottom: 14%; }.node-d { right: 10%; bottom: 13%; }.node-e { left: 50%; bottom: 4%; transform: translateX(-50%); }
.network-links { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.network-links line { stroke: rgba(255,255,255,.5); stroke-width: 1.4; stroke-dasharray: 2 6; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.bento-copy-card { padding: 40px; }
.micro-line { display: block; width: 36px; height: 4px; margin-bottom: 28px; border-radius: 99px; background: var(--coral); }
.bento-copy-card h3 { margin: 0; font-size: 1.95rem; }
.bento-copy-card h3 em { color: var(--blue); font-style: normal; }
.bento-copy-card h3 strong { color: var(--coral); }
.bento-copy-card p { margin-top: 18px; margin-bottom: 0; color: var(--text); line-height: 1.65; }
.bento-art-card { background: linear-gradient(135deg, #a9c8ff, #fff 42%, #ff7966); }
.art-circle { position: absolute; border-radius: 50%; filter: blur(26px); }
.circle-one { width: 235px; height: 235px; left: -55px; bottom: -65px; background: linear-gradient(135deg, rgba(26,86,255,.85), rgba(143,180,255,.4)); }
.circle-two { width: 185px; height: 185px; right: -35px; top: -35px; background: linear-gradient(135deg, rgba(253,88,64,.85), rgba(255,138,114,.4)); }
.circle-three { width: 130px; height: 130px; right: 55px; bottom: 30px; background: linear-gradient(135deg, rgba(10,28,74,.85), rgba(13,42,104,.5)); }
.art-arc { position: absolute; width: 360px; height: 360px; left: 40px; top: 40px; border: 2px solid rgba(255,255,255,.65); border-radius: 50%; }

.flow-section { overflow: hidden; background: transparent; }
.flow-section::before { content: ""; position: absolute; width: 450px; height: 450px; right: -190px; top: 40px; border-radius: 50%; background: linear-gradient(135deg, rgba(143,180,255,.24), rgba(253,88,64,.16)); }
.flow-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.flow-copy { position: sticky; top: 130px; align-self: start; }
.flow-copy p { max-width: 500px; color: var(--text); line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--blue); font-weight: 800; }
.text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.flow-steps { position: relative; display: grid; gap: 16px; }
.flow-steps::before { content: ""; position: absolute; left: 40px; top: 42px; bottom: 42px; width: 1px; border-left: 1px dashed rgba(26,86,255,.28); }
.flow-steps article { position: relative; z-index: 2; display: grid; grid-template-columns: 34px 64px 1fr; gap: 18px; align-items: center; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 14px 36px rgba(10,28,74,.05); }
.flow-steps article > span { color: #adb8c9; font-size: .72rem; font-weight: 800; }
.flow-step-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(26,86,255,.22); }
.flow-step-icon.coral { background: var(--coral); box-shadow: 0 12px 28px rgba(253,88,64,.22); }
.flow-step-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.flow-steps h3 { margin-bottom: 7px; font-size: 1.15rem; }
.flow-steps p { margin-bottom: 0; color: var(--text); font-size: .88rem; line-height: 1.55; }

.segments { background: transparent; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.split-heading p { margin-bottom: 10px; }
.segment-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 18px; }
.segment-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 16px 36px rgba(10,28,74,.05); transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1); }
.segment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.segment-card-main { grid-column: span 2; grid-row: span 2; min-height: 620px; display: grid; grid-template-rows: 1.18fr .82fr; overflow: hidden; padding: 0; background: linear-gradient(135deg, #8db8ff 0%, #eef4ff 46%, #ff8170 110%); }
.segment-visual { position: relative; min-height: 360px; }
.segment-copy { padding: 38px; background: #fff; }
.segment-card span { display: block; margin-bottom: 14px; color: var(--blue); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.segment-card h3 { margin-bottom: 14px; font-size: 1.45rem; }
.segment-card p { margin-bottom: 0; color: var(--text); line-height: 1.65; }
.segment-card-main h3 { max-width: 680px; font-size: 2.3rem; }
.segment-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 58px; border-radius: 18px; color: #fff; background: var(--blue); }
.segment-icon.coral { background: var(--coral); }
.segment-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.pos-screen { position: absolute; z-index: 4; left: 50%; top: 54%; width: 360px; height: 235px; padding: 20px; transform: translate(-50%, -50%) perspective(900px) rotateX(4deg); border: 10px solid #111b31; border-radius: 18px; background: #f7faff; box-shadow: 0 22px 45px rgba(10,28,74,.28); }
.pos-top { display: flex; justify-content: space-between; margin-bottom: 14px; color: #40506d; font-size: .72rem; }
.pos-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pos-products i { height: 49px; border-radius: 8px; background: linear-gradient(135deg, #eaf0fa, #cbd9ef); }
.pos-products i:nth-child(2), .pos-products i:nth-child(5) { background: linear-gradient(135deg, #ffb4aa, #ff765f); }
.pos-products i:nth-child(3), .pos-products i:nth-child(4) { background: linear-gradient(135deg, #92b9ff, #176cff); }
.pos-screen button { position: absolute; right: 20px; bottom: 15px; padding: 8px 14px; border: 0; border-radius: 99px; color: #fff; background: var(--blue); font-size: .62rem; font-weight: 800; }
.pos-base { position: absolute; z-index: 3; left: 50%; top: 71%; width: 260px; height: 90px; transform: translateX(-50%); border-radius: 0 0 24px 24px; background: linear-gradient(180deg, #1a263d, #0b1324); }
.cash-drawer { position: absolute; z-index: 2; left: 50%; bottom: 0; width: 430px; height: 120px; transform: translateX(-50%); border-radius: 16px 16px 28px 28px; background: linear-gradient(180deg, #26344d, #0b1324); box-shadow: 0 25px 50px rgba(10,28,74,.28); }
.cash-drawer::after { content: ""; position: absolute; left: 50%; top: 40px; width: 180px; height: 10px; transform: translateX(-50%); border-radius: 99px; background: #060d18; }

.outcomes { overflow: hidden; color: #fff; border-radius: var(--radius-lg); background: linear-gradient(160deg, #0d2a68 0%, var(--navy-2) 100%); }
.outcomes::before, .outcomes::after { content: ""; position: absolute; border-radius: 50%; }
.outcomes::before { width: 460px; height: 460px; right: -160px; top: -150px; filter: blur(48px); background: linear-gradient(135deg, rgba(143,180,255,.4), rgba(253,88,64,.5)); }
.outcomes::after { width: 260px; height: 260px; left: 35%; bottom: -160px; filter: blur(40px); background: rgba(26,86,255,.5); }
.outcomes-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.outcomes-copy h2 em { color: #63a1ff; }
.outcomes-copy p { max-width: 530px; color: rgba(255,255,255,.7); line-height: 1.75; }
.outcomes-copy .btn { margin-top: 18px; }
.outcome-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.outcome-cards article { min-height: 190px; padding: 26px; border: 1px solid rgba(255,255,255,.15); border-radius: 22px; background: rgba(255,255,255,.075); backdrop-filter: blur(14px); }
.outcome-cards article > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 36px; border-radius: 15px; color: #fff; background: var(--blue); }
.outcome-cards article > span.coral { background: var(--coral); }
.outcome-cards svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.outcome-cards h3 { margin-bottom: 9px; font-size: 1.15rem; }
.outcome-cards p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.55; }

.support-section { background: transparent; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.support-art { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #a9c7ff, #f7f9ff 48%, #ff9183); }
.support-circle { position: absolute; border-radius: 50%; filter: blur(32px); }
.support-circle.c1 { width: 380px; height: 380px; right: -80px; top: -130px; background: linear-gradient(135deg, rgba(26,86,255,.85), rgba(143,180,255,.45)); }
.support-circle.c2 { width: 310px; height: 310px; left: -80px; bottom: -100px; background: linear-gradient(135deg, rgba(10,28,74,.9), rgba(13,42,104,.55)); }
.support-circle.c3 { width: 235px; height: 235px; right: 15px; bottom: 30px; background: linear-gradient(135deg, rgba(253,88,64,.9), rgba(255,138,114,.5)); }
.support-card { position: absolute; z-index: 3; left: 50%; top: 50%; width: min(80%, 390px); display: flex; align-items: center; gap: 18px; padding: 24px; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.7); border-radius: 24px; background: rgba(255,255,255,.84); backdrop-filter: blur(16px); box-shadow: var(--shadow-lg); }
.support-card > span { flex: 0 0 auto; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: var(--blue); }
.support-card svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.support-card b, .support-card small { display: block; }
.support-card b { margin-bottom: 6px; font-size: 1.05rem; }
.support-card small { color: var(--text); line-height: 1.5; }
.support-copy p { color: var(--text); line-height: 1.75; }
.support-list { display: grid; gap: 18px; margin-top: 34px; }
.support-list > div { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.support-list > div > svg { width: 40px; height: 40px; padding: 10px; border-radius: 12px; fill: none; stroke: var(--blue); stroke-width: 2.3; background: rgba(26,86,255,.09); }
.support-list b, .support-list small { display: block; }
.support-list b { margin-bottom: 5px; }
.support-list small { color: var(--muted); line-height: 1.5; }

.contact-section { padding-top: 80px; background: transparent; }
.contact-shell { position: relative; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; padding: 70px; border-radius: 34px; color: #fff; background: linear-gradient(160deg, #0d2a68, var(--navy-2)); box-shadow: 0 35px 90px rgba(7,19,53,.24); }
.contact-shell::before { content: ""; position: absolute; width: 430px; height: 430px; left: -180px; bottom: -220px; border-radius: 50%; filter: blur(42px); background: rgba(26,86,255,.55); }
.contact-shell::after { content: ""; position: absolute; width: 330px; height: 330px; right: -130px; top: -160px; border-radius: 50%; filter: blur(38px); background: linear-gradient(135deg, rgba(143,180,255,.5), rgba(253,88,64,.8)); }
.contact-copy, .contact-form { position: relative; z-index: 2; }
.contact-copy h2 { font-size: clamp(2.45rem, 4.2vw, 4.2rem); }
.contact-copy p { color: rgba(255,255,255,.68); line-height: 1.72; }
.contact-highlights { display: grid; gap: 12px; margin-top: 30px; color: rgba(255,255,255,.86); font-size: .9rem; font-weight: 700; }
.contact-highlights div { display: flex; align-items: center; gap: 10px; }
.contact-highlights span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(255,255,255,.13); }
.contact-highlights svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.contact-form { display: grid; gap: 16px; padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label:not(.checkbox-label) { display: grid; gap: 8px; color: rgba(255,255,255,.84); font-size: .76rem; font-weight: 800; }
.contact-form input, .contact-form select { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; outline: none; color: #fff; background: rgba(255,255,255,.1); transition: border .2s ease, background .2s ease; }
.contact-form input::placeholder { color: rgba(255,255,255,.42); }
.contact-form select { color: rgba(255,255,255,.8); }
.contact-form select option { color: var(--ink); background: #fff; }
.contact-form input:focus, .contact-form select:focus { border-color: rgba(143,180,255,.9); background: rgba(255,255,255,.15); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.65); font-size: .72rem; line-height: 1.4; }
.checkbox-label input { accent-color: var(--blue); }
.form-note { color: rgba(255,255,255,.45); text-align: center; font-size: .66rem; }

.site-footer { padding: 80px 0 28px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 56px; }
.brand-footer { margin-bottom: 22px; }
.footer-grid > div:first-child > p { max-width: 440px; color: var(--text); line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.footer-links div { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 6px; }
.footer-links a { color: var(--text); font-size: .86rem; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { width: min(100%, 820px); }
  .hero-media-placeholder { min-height: 520px; }
  .hero { padding-bottom: 100px; }
  .module-strip-inner { padding: 24px 0; align-items: flex-start; flex-direction: column; }
  .module-strip-list { justify-content: flex-start; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-heading-card { grid-column: span 2; }
  .bento-list-card, .bento-network-card, .bento-copy-card, .bento-art-card { min-height: 320px; }
  .flow-grid { gap: 60px; }
  .segment-grid { grid-template-columns: repeat(2, 1fr); }
  .segment-card-main { grid-column: span 2; }
  .contact-shell { padding: 52px; gap: 45px; }
}

@media (max-width: 860px) {
  .section { padding: 88px 0; }
  .site-header { padding: 11px 0; }
  .nav-shell { min-height: 52px; }
  .nav-toggle { display: none; }
  .nav-toggle-label { z-index: 3; width: 42px; height: 42px; display: grid; align-content: center; gap: 7px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
  .nav-toggle-label span { height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s ease; }
  .main-nav { position: absolute; top: calc(100% + 8px); left: 20px; right: 20px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); }
  .main-nav > a:not(.btn) { padding: 13px 10px; }
  .main-nav > a:not(.btn)::after { display: none; }
  .nav-toggle:checked ~ .main-nav { display: flex; }
  .nav-toggle:checked + .nav-toggle-label span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav-toggle:checked + .nav-toggle-label span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { gap: 54px; }
  .hero-media-placeholder { min-height: 500px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-row: auto; }
  .dark-card { grid-template-columns: 1fr .8fr; }
  .flow-grid, .support-grid, .outcomes-grid, .contact-shell { grid-template-columns: 1fr; }
  .flow-copy { position: static; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .segment-grid { grid-template-columns: 1fr; }
  .segment-card-main { grid-column: auto; }
  .outcome-cards { grid-template-columns: repeat(2, 1fr); }
  .support-art { min-height: 480px; }
  .contact-shell { padding: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.2rem, 10.5vw, 3.2rem); }
  .brand-copy { font-size: .94rem; }
  .hero { padding-top: 120px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; }
  .hero-media-placeholder { min-height: 390px; padding: 18px; border-radius: 26px; }
  .hero-media-placeholder::before { inset: 12px; border-radius: 19px; }
  .placeholder-frame { width: min(100%, 330px); padding: 34px 24px; border-radius: 21px; }
  .placeholder-icon { width: 64px; height: 64px; border-radius: 19px; }
  .placeholder-orb-blue { width: 190px; height: 190px; }
  .placeholder-orb-coral { width: 145px; height: 145px; }
  .module-strip { margin-top: 20px; }
  .module-strip-list { gap: 8px; }
  .module-strip-list div { padding: 8px 10px; font-size: .7rem; }
  .feature-card, .feature-card.featured { min-height: 0; padding: 28px; }
  .feature-icon { margin-bottom: 48px; }
  .feature-card h3 { font-size: 1.55rem; }
  .dark-card { grid-template-columns: 1fr; }
  .document-visual { height: 220px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-heading-card { grid-column: auto; padding: 30px; }
  .bento-list-card, .bento-network-card, .bento-copy-card, .bento-art-card { min-height: 310px; }
  .bento-copy-card { padding: 30px; }
  .flow-steps article { grid-template-columns: 28px 52px 1fr; padding: 20px; gap: 12px; }
  .flow-step-icon { width: 52px; height: 52px; border-radius: 15px; }
  .flow-step-icon svg { width: 24px; height: 24px; }
  .flow-steps::before { left: 32px; }
  .segment-card-main { min-height: 560px; grid-template-rows: 1fr auto; }
  .segment-visual { min-height: 330px; }
  .segment-copy { padding: 28px; }
  .segment-card-main h3 { font-size: 1.85rem; }
  .pos-screen { width: 280px; height: 195px; }
  .cash-drawer { width: 330px; }
  .outcome-cards { grid-template-columns: 1fr; }
  .support-art { min-height: 410px; }
  .support-card { width: calc(100% - 34px); }
  .contact-shell { padding: 34px 22px; border-radius: 25px; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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

/* ============ Refinos IDV ============ */

/* dot pattern nos cards claros (como nas artes) */
.bento-heading-card::after,
.bento-copy-card::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 120px;
  height: 88px;
  pointer-events: none;
  background-image: radial-gradient(rgba(26, 86, 255, .3) 1.6px, transparent 1.6px);
  background-size: 15px 15px;
  mask-image: linear-gradient(200deg, black, transparent 78%);
}
.contact-form::before {
  content: "";
  position: absolute;
  top: -46px;
  right: 8px;
  width: 110px;
  height: 80px;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .35) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  mask-image: linear-gradient(200deg, black, transparent 80%);
}

/* header com sombra ao rolar */
.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 40px rgba(10, 28, 74, .08);
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* estados do formulário */
.contact-form.is-loading .btn-full { opacity: .65; pointer-events: none; }
.form-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: 13px;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.45;
}
.form-feedback.is-success { display: block; color: #d9ffe9; border: 1px solid rgba(89, 224, 158, .4); background: rgba(48, 190, 120, .18); }
.form-feedback.is-error { display: block; color: #ffe1da; border: 1px solid rgba(255, 138, 114, .45); background: rgba(253, 88, 64, .16); }
.field-error { border-color: var(--coral) !important; }

.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Logo ============ */
.brand-logo { display: block; width: auto; height: 30px; }
.brand-footer .brand-logo { height: 34px; }

/* ============ Inversão de ritmo (alternância L/R) ============ */
.outcomes-copy { order: 2; }
.outcome-cards { order: 1; }
.support-art { order: 2; }
.support-copy { order: 1; }
@media (max-width: 860px) {
  .outcomes-copy, .support-copy { order: 1; }
  .outcome-cards, .support-art { order: 2; }
}

/* ============ Micro-hovers nos ícones ============ */
.feature-icon, .segment-icon, .flow-step-icon,
.bento-list-item > span, .outcome-cards article > span, .support-card > span {
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.feature-card:hover .feature-icon,
.segment-card:hover .segment-icon,
.flow-steps article:hover .flow-step-icon,
.bento-list-item:hover > span,
.outcome-cards article:hover > span { transform: scale(1.08) rotate(-4deg); }

/* ============ Parallax dos orbes (JS aplica --py) ============ */
.hero-orb { will-change: transform; transform: translateY(calc(var(--py, 0) * 1px)); }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-copy { position: sticky; top: 130px; }
.faq-copy p { max-width: 460px; color: var(--text); line-height: 1.75; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(10,28,74,.05);
  transition: border-color .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1);
}
.faq-item[open] { border-color: rgba(26,86,255,.22); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.02rem; font-weight: 600; letter-spacing: -.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(26,86,255,.09);
  transition: background .35s ease, transform .45s cubic-bezier(.22,.61,.36,1);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle { background: var(--blue); transform: rotate(45deg); }
.faq-item[open] .faq-toggle::before, .faq-item[open] .faq-toggle::after { background: #fff; }
.faq-answer { padding: 0 26px; overflow: hidden; }
.faq-answer p { max-width: 640px; margin: 0; padding: 0 0 24px; color: var(--text); font-size: .93rem; line-height: 1.7; }

/* ============ WhatsApp flutuante ============ */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, .4);
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 24px 52px rgba(37, 211, 102, .5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }

/* ============ CTA sticky (mobile) ============ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 36px rgba(10,28,74,.1);
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.sticky-cta.is-active { transform: none; }

@media (max-width: 1100px) {
  .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-copy { position: static; }
}
@media (max-width: 860px) {
  .sticky-cta { display: block; }
  .whatsapp-float { bottom: 86px; }
  .brand-logo { height: 26px; }
}
