
:root {
  --navy: #05152f;
  --navy-2: #071f46;
  --blue: #1677ff;
  --cyan: #27c8e7;
  --teal: #26d1bd;
  --white: #f5f9ff;
  --muted: #9fb3cf;
  --line: rgba(119, 180, 255, 0.2);
  --card: rgba(12, 42, 85, 0.65);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--navy); color: var(--white); font-family: "Segoe UI", Inter, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
main { overflow: hidden; background: radial-gradient(circle at 70% 8%, rgba(17, 86, 177, .2), transparent 28%), linear-gradient(180deg, #04142e 0%, #061b39 44%, #f5f8fc 44%, #f5f8fc 75%, #06152e 75%); }

.site-header { height: 92px; padding: 0 max(5vw, 28px); display: flex; align-items: center; justify-content: space-between; gap: 28px; position: absolute; inset: 0 0 auto; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.06); }
.brand { min-width: 245px; height: 58px; display: flex; align-items: center; gap: 10px; }
.brand img { width: 43px; height: 43px; object-fit: contain; }
.brand > span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: #fff; font-size: 24px; letter-spacing: -.035em; }
.brand small { margin-top: 5px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .36em; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.nav a { color: #d7e3f4; font-size: 15px; transition: color .2s ease; white-space: nowrap; }
.nav a:hover { color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.language { display: flex; gap: 6px; border-left: 1px solid var(--line); padding-left: 18px; }
.language button { padding: 7px 8px; border: 0; background: transparent; color: #7187a6; cursor: pointer; border-bottom: 2px solid transparent; }
.language button.active { color: var(--cyan); border-color: var(--cyan); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 26px; background: linear-gradient(135deg, #1680ff, #0765eb); border: 1px solid #2589ff; border-radius: 9px; color: #fff; font-weight: 650; box-shadow: 0 12px 30px rgba(11, 106, 245, .24); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(11, 106, 245, .32); }
.button.compact { min-height: 44px; padding: 0 20px; font-size: 14px; }
.button.ghost { background: rgba(7, 28, 62, .52); border-color: #338bf0; box-shadow: none; }
.menu-button { display: none; }

.hero { min-height: 860px; position: relative; padding: 185px max(5vw, 28px) 150px; display: grid; grid-template-columns: minmax(390px, .84fr) minmax(620px, 1.26fr); gap: 54px; align-items: center; }
.hero::after { content: ""; position: absolute; width: 860px; height: 430px; left: -120px; bottom: 20px; border-radius: 50% 50% 0 0; border: 1px solid rgba(38, 131, 247, .18); background-image: radial-gradient(circle, rgba(30,128,255,.45) 1px, transparent 1.6px); background-size: 13px 13px; opacity: .28; transform: perspective(550px) rotateX(65deg) rotateZ(-8deg); }
.orb { position: absolute; border-radius: 999px; filter: blur(70px); opacity: .2; pointer-events: none; }
.orb-one { width: 300px; height: 300px; background: #0078ff; right: 38%; top: 20%; }
.orb-two { width: 220px; height: 220px; background: #00d8c7; right: 5%; bottom: 22%; }
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.eyebrow { margin: 0 0 20px; color: var(--cyan); font-size: 12px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(54px, 5.35vw, 86px); line-height: 1.02; letter-spacing: -.045em; }
.hero h1 span { color: #fff; text-shadow: 0 0 35px rgba(37, 157, 255, .2); }
.hero h1 span::after { content: ""; display: inline-block; width: 10px; height: 10px; margin-left: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.hero-intro { max-width: 540px; margin: 28px 0 0; color: var(--muted); font-size: clamp(19px, 1.6vw, 25px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.crm-preview { position: relative; z-index: 3; padding: 24px; border: 1px solid rgba(76, 154, 255, .28); border-radius: 26px; background: linear-gradient(145deg, rgba(13, 44, 91, .88), rgba(5, 24, 55, .94)); box-shadow: 0 40px 90px rgba(0,0,0,.3); transform: perspective(1400px) rotateY(-2deg); }
.crm-top { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; }
.connect-mark { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: conic-gradient(from 40deg, var(--cyan), var(--blue), var(--teal)); color: #fff; font-weight: 800; font-size: 20px; }
.live-dot { margin-left: auto; color: var(--teal); font-size: 11px; padding: 6px 9px; background: rgba(38, 209, 189, .1); border-radius: 999px; }
.crm-grid { display: grid; grid-template-columns: 1.05fr 1fr .9fr; gap: 14px; }
.crm-column { min-width: 0; padding: 14px; border: 1px solid rgba(111,174,255,.13); border-radius: 14px; background: rgba(5, 27, 62, .7); }
.crm-label { margin: 0 0 13px; color: #83a7d2; font-size: 10px; letter-spacing: .14em; }
.lead-card, .sequence-card, .pipeline-card { display: flex; align-items: center; gap: 9px; min-height: 66px; margin-bottom: 10px; padding: 10px; border: 1px solid rgba(111,174,255,.15); border-radius: 10px; background: linear-gradient(135deg, rgba(19,62,119,.68), rgba(9,35,75,.62)); }
.lead-card > span { flex: 0 0 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #1f8cff, #12b7ca); font-size: 10px; }
.lead-card div, .sequence-card div { min-width: 0; display: flex; flex-direction: column; }
.lead-card strong, .sequence-card strong { overflow: hidden; font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
.lead-card small, .sequence-card small { margin-top: 4px; color: #7f9bbe; font-size: 9px; }
.lead-card em { margin-left: auto; padding: 4px 5px; border-radius: 5px; background: rgba(24,210,187,.14); color: var(--teal); font-size: 8px; font-style: normal; }
.sequence-card { min-height: 57px; position: relative; }
.sequence-card > span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 6px; background: #0b70f0; font-size: 10px; }
.pipeline-card { min-height: 55px; }
.pipeline-card strong { font-size: 11px; }
.pipeline-card b { margin-left: auto; font-size: 16px; }
.pipeline-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(38, 209, 189, .17); color: var(--teal); font-size: 10px; }
.trust-bar { position: absolute; z-index: 4; left: max(3vw, 24px); right: max(3vw, 24px); bottom: 34px; min-height: 105px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); align-items: center; border: 1px solid var(--line); border-radius: 15px; background: rgba(5, 24, 55, .78); backdrop-filter: blur(18px); }
.trust-main, .trust-item { min-height: 62px; padding: 12px 24px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-main > span, .trust-item > span { color: var(--cyan); font-size: 30px; }
.trust-main strong, .trust-item strong { font-size: 13px; }
.trust-main p, .trust-item p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.35; }
.trust-main small { color: #6f8baa; font-size: 10px; }

.section { padding: 110px max(6vw, 32px); }
.section-heading { max-width: 720px; }
.section h2, .contact h2 { margin: 0; color: #071a38; font-size: clamp(39px, 4vw, 62px); line-height: 1.07; letter-spacing: -.035em; }
.section-heading > p:last-child { color: #56677e; font-size: 18px; line-height: 1.7; }
.services { color: #071a38; background: #f5f8fc; }
.service-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 220px; padding: 30px; border: 1px solid #dce6f1; border-radius: 16px; background: #fff; box-shadow: 0 16px 40px rgba(7, 27, 58, .05); transition: transform .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #65a8f5; }
.service-card > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: #e8f3ff; color: #0873f1; font-size: 24px; }
.service-card h3 { margin: 22px 0 10px; font-size: 19px; }
.service-card p { margin: 0; color: #607089; line-height: 1.6; }

.connect { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 8vw, 120px); align-items: center; background: #eaf0f8; color: #071a38; }
.connect-visual { position: relative; overflow: hidden; padding: 32px; border-radius: 24px; color: #fff; background: linear-gradient(145deg, #0a3067, #061a39); box-shadow: 0 35px 65px rgba(7, 37, 78, .2); }
.connect-visual::after { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(6,26,57,.54) 0%, rgba(6,31,68,.32) 45%, rgba(6,26,57,.5) 100%); }
.code-rain { position: absolute; z-index: 1; inset: -78% 0 -42%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; transform: rotate(-5deg) scale(1.08); opacity: .29; pointer-events: none; }
.code-lane { display: flex; flex-direction: column; gap: 25px; color: #64fff1; font-family: var(--font-geist-mono), Consolas, monospace; font-size: 11.5px; font-weight: 560; letter-spacing: .015em; white-space: nowrap; text-shadow: 0 0 8px rgba(65,235,239,.75), 0 0 20px rgba(39,140,231,.42); }
.code-lane span:nth-child(3n + 2) { color: #5ba4ff; }
.code-lane span:nth-child(3n) { color: #87f1bd; }
.lane-two { margin-top: 90px; }
.visual-header { display: flex; align-items: center; gap: 13px; position: relative; z-index: 2; }
.visual-header div { display: flex; flex-direction: column; }
.visual-header small { margin-top: 4px; color: #8fa9cb; }
.visual-flow { margin: 38px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 2; }
.visual-flow span { flex: 1; padding: 18px 8px; text-align: center; border: 1px solid rgba(71,155,255,.32); border-radius: 10px; background: rgba(18,65,125,.55); font-size: 12px; }
.visual-flow i { color: var(--cyan); font-style: normal; }
.visual-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; z-index: 2; }
.visual-stats div { padding: 18px; border-radius: 12px; background: rgba(5,25,57,.68); }
.visual-stats b { display: block; color: var(--cyan); font-size: 30px; }
.visual-stats small { color: #9db2cf; }
.runtime-status { position: relative; z-index: 2; margin-top: 18px; min-height: 38px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(48,227,197,.2); border-radius: 8px; background: rgba(3,18,42,.72); }
.runtime-status > span { width: 8px; height: 8px; border-radius: 50%; background: #35e0a1; box-shadow: 0 0 12px rgba(53,224,161,.85); }
.runtime-status strong { color: #75edc5; font-size: 9px; letter-spacing: .12em; }
.runtime-status code { margin-left: auto; color: #6f91b8; font-size: 8px; }
.connect-copy > p:not(.eyebrow) { color: #536780; font-size: 18px; line-height: 1.7; }
.connect-copy ul { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.connect-copy li { display: flex; align-items: center; gap: 12px; color: #273d59; }
.connect-copy li span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #d7f7f3; color: #078c7e; font-weight: bold; }

.process-section { background: #f5f8fc; color: #071a38; }
.centered { margin: 0 auto; text-align: center; }
.process-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(6, 1fr); position: relative; }
.process-grid::before { content: ""; position: absolute; left: 7%; right: 7%; top: 23px; height: 1px; background: #cbdbea; }
.process-grid article { position: relative; padding: 0 18px; text-align: center; }
.process-grid article > span { width: 48px; height: 48px; margin: 0 auto 22px; display: grid; place-items: center; position: relative; z-index: 1; border: 1px solid #8abaf0; border-radius: 50%; background: #f5f8fc; color: #0875f4; font-size: 12px; font-weight: 700; }
.process-grid h3 { font-size: 17px; }
.process-grid p { color: #66778e; font-size: 13px; line-height: 1.6; }
.industries { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; background: #eaf0f8; color: #071a38; }
.industry-list { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-list span { padding: 14px 18px; border: 1px solid #cbd9e7; border-radius: 999px; background: rgba(255,255,255,.64); color: #30465f; }

.pilot-section { padding-top: 105px; padding-bottom: 105px; background: #06152e; }
.pilot-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; padding: clamp(38px, 5vw, 70px); border: 1px solid rgba(73, 153, 255, .3); border-radius: 28px; background: radial-gradient(circle at 90% 20%, rgba(16,110,255,.24), transparent 35%), linear-gradient(135deg, #0a2d60, #061831); box-shadow: 0 35px 80px rgba(0,0,0,.22); }
.pilot-card h2 { color: #fff; }
.pilot-card > div > p:not(.eyebrow) { color: #a9bdd6; font-size: 17px; line-height: 1.7; }
.pilot-card small { color: #7d96b4; }
.price-block { align-self: center; padding-left: 50px; border-left: 1px solid var(--line); }
.price-block p { margin: 0 0 28px; }
.price-block strong { display: block; font-size: clamp(46px, 5vw, 72px); letter-spacing: -.04em; }
.price-block span { color: #9bb2ce; font-size: 18px; }

.about { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 8vw, 120px); align-items: center; background: #f5f8fc; color: #071a38; }
.founder-photo { max-width: 430px; padding: 12px; border: 1px solid #ccdbea; border-radius: 24px; background: #fff; box-shadow: 0 24px 55px rgba(7,27,58,.12); }
.founder-photo img { display: block; width: 100%; border-radius: 17px; }
.about-copy > p:not(.eyebrow) { color: #566981; font-size: 19px; line-height: 1.8; }
.signature { margin-top: 30px; display: flex; flex-direction: column; }
.signature strong { font-size: 18px; }
.signature span, .signature small { margin-top: 5px; color: #6a7d95; }

.contact { padding: 90px max(6vw, 32px); display: flex; justify-content: space-between; align-items: center; gap: 50px; background: linear-gradient(135deg, #0a326b, #06152e); }
.contact h2 { max-width: 820px; color: #fff; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
footer { padding: 72px max(6vw, 32px) 30px; background: #031024; }
.footer-main { display: grid; grid-template-columns: 1fr 1.1fr .8fr; gap: 55px; align-items: start; }
.footer-brand { width: 250px; }
.footer-main p { margin: 8px 0; color: #8ea5c2; line-height: 1.5; }
.footer-main small { color: #637b99; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a:hover { color: var(--cyan); }
.legal { margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.legal strong { color: #9eb4ce; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.legal p { max-width: 1200px; color: #647d9b; font-size: 11px; line-height: 1.6; }
.copyright { margin-top: 28px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.06); color: #57708e; font-size: 11px; }
.copyright div { display: flex; gap: 22px; }

@media (max-width: 1180px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
  .hero { grid-template-columns: .8fr 1.2fr; gap: 30px; }
  .crm-preview { padding: 16px; }
  .trust-bar { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .trust-main, .trust-item { padding: 10px 14px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 45px 0; }
  .process-grid::before { display: none; }
}

@media (max-width: 900px) {
  .site-header { position: absolute; height: 78px; }
  .brand { min-width: 195px; }
  .brand strong { font-size: 21px; }
  .menu-button { width: 42px; height: 42px; padding: 10px; display: flex; flex-direction: column; justify-content: center; gap: 5px; order: 3; border: 1px solid var(--line); border-radius: 8px; background: rgba(7,31,70,.8); }
  .menu-button span { height: 2px; background: #fff; }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 70px; padding: 22px; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); border-radius: 14px; background: #071b3b; }
  .nav.open { display: flex; }
  .nav a { font-size: 16px; }
  .header-actions .button { display: none; }
  .hero { min-height: auto; padding-top: 145px; padding-bottom: 40px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .crm-preview { transform: none; }
  .trust-bar { margin-top: 25px; position: relative; inset: auto; grid-template-columns: 1fr 1fr; }
  .trust-main, .trust-item { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .connect, .about, .industries { grid-template-columns: 1fr; }
  .connect-copy { order: -1; }
  .pilot-card { grid-template-columns: 1fr; }
  .price-block { padding: 30px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 18px; }
  .brand { min-width: 168px; }
  .brand img { width: 36px; height: 36px; }
  .brand strong { font-size: 18px; }
  .header-actions { gap: 8px; }
  .language { padding-left: 0; border: 0; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: 47px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .crm-grid { grid-template-columns: 1fr; }
  .crm-column.pipeline { display: none; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-main, .trust-item { border-right: 0; }
  .section { padding: 76px 22px; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .visual-flow { display: grid; grid-template-columns: 1fr; }
  .visual-flow i { transform: rotate(90deg); text-align: center; }
  .visual-stats { grid-template-columns: 1fr; }
  .pilot-card { padding: 32px 24px; }
  .contact { padding: 70px 22px; flex-direction: column; align-items: stretch; }
  .contact-actions { min-width: 0; }
  .footer-main { grid-template-columns: 1fr; }
  footer { padding-left: 22px; padding-right: 22px; }
  .copyright { gap: 14px; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .crm-preview { animation: rise 800ms ease-out both; }
  .hero-copy { animation: rise 620ms ease-out both; }
  .live-dot { animation: pulse 2.4s ease-in-out infinite; }
  .lane-one { animation: codeFlow 12s linear infinite; }
  .lane-two { animation: codeFlow 15s linear infinite reverse; }
  .runtime-status > span { animation: statusPulse 1.7s ease-in-out infinite; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulse { 50% { box-shadow: 0 0 18px rgba(38,209,189,.24); } }
  @keyframes codeFlow { from { transform: translateY(-260px); } to { transform: translateY(390px); } }
  @keyframes statusPulse { 50% { opacity: .42; transform: scale(.75); } }
}

.language a { padding: 7px 8px; color: #7187a6; border-bottom: 2px solid transparent; font-size: 14px; }
.language a.active { color: var(--cyan); border-color: var(--cyan); }
