:root {
  --ink: #27245c;
  --ink-deep: #17163e;
  --muted: #696889;
  --line: rgba(49, 45, 112, 0.12);
  --surface: #ffffff;
  --page: #f8f9ff;
  --cyan: #28cde2;
  --blue: #364eea;
  --purple: #7351ef;
  --orange: #ff7b2e;
  --shadow: 0 24px 80px rgba(53, 44, 129, 0.16);
  --radius-lg: 30px;
  --radius-md: 20px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.page-width { 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; }
.ambient { position: absolute; z-index: -1; border-radius: 999px; filter: blur(4px); pointer-events: none; }
.ambient-one { width: 360px; height: 360px; top: -160px; right: 8%; background: rgba(49, 221, 234, 0.2); }
.ambient-two { width: 460px; height: 460px; top: 320px; left: -260px; background: rgba(129, 91, 255, 0.1); }

.topbar { display: flex; align-items: center; justify-content: space-between; min-height: 92px; position: relative; z-index: 10; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 152px; height: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #5e5b7c; font-size: 0.9rem; }
.main-nav > a { transition: color .2s ease; }
.main-nav > a:hover { color: var(--ink-deep); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 10px; }
.language-switch { border: 0; color: var(--ink); background: transparent; padding: 8px 4px; font-size: .86rem; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 14px 22px; border: 1px solid transparent; font-weight: 750; font-size: .93rem; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(105deg, #3f4feb 0%, #7052f0 100%); box-shadow: 0 12px 28px rgba(78, 75, 221, .24); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(78, 75, 221, .32); }
.button-dark { color: white; background: var(--ink-deep); padding: 11px 18px; }
.button-small { font-size: .82rem; }
.mobile-menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-line { width: 23px; height: 2px; margin: 5px 0; display: block; background: var(--ink); border-radius: 4px; }

.hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 60px; padding: 72px 0 66px; min-height: 640px; }
.hero-copy { padding: 12px 0 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: #635ed2; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow-dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(40, 205, 226, .14); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 660px; margin: 22px 0 22px; color: var(--ink-deep); font-size: clamp(3.1rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.065em; font-weight: 800; }
.hero-lead { max-width: 530px; color: var(--muted); font-size: 1.15rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin: 30px 0 26px; }
.text-link { color: var(--ink); font-weight: 750; border-bottom: 1px solid rgba(39, 36, 92, .35); padding-bottom: 2px; }
.text-link span { color: var(--purple); margin-left: 4px; }
.hero-note { display: flex; align-items: center; gap: 9px; color: #7b7a97; font-size: .82rem; }
.status-dot, .tiny-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #1ecb91; box-shadow: 0 0 0 4px rgba(30, 203, 145, .12); }
.hero-visual { min-width: 0; position: relative; padding: 24px 0 12px 24px; }
.visual-glow { position: absolute; inset: 10% 3% 6% 13%; border-radius: 50%; background: radial-gradient(circle, rgba(91, 80, 244, .32), rgba(40, 205, 226, .12) 40%, transparent 70%); filter: blur(18px); }
.preview-window { position: relative; z-index: 1; width: 100%; max-width: 660px; margin-left: auto; overflow: hidden; border: 1px solid rgba(95, 83, 222, .18); border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.preview-topbar { display: flex; align-items: center; justify-content: space-between; padding: 17px 19px; border-bottom: 1px solid rgba(54, 48, 117, .08); background: rgba(255,255,255,.78); }
.preview-brand { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 800; }
.preview-brand img { width: 24px; height: 24px; border-radius: 8px; }
.preview-top-actions { display: flex; gap: 5px; }
.preview-top-actions span { display: block; width: 7px; height: 7px; border-radius: 50%; background: #d8d6e5; }
.preview-body { display: grid; grid-template-columns: 41% 59%; min-height: 390px; }
.preview-sidebar { padding: 18px 12px; background: #fafaff; border-right: 1px solid rgba(54,48,117,.07); }
.preview-search { height: 31px; border-radius: 10px; background: #eeedf7; margin: 0 5px 16px; }
.preview-contact { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 10px 7px; border-radius: 12px; font-size: .72rem; }
.preview-contact.active { background: #eeedff; }
.preview-contact strong, .preview-contact small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.preview-contact strong { color: var(--ink); font-size: .76rem; }
.preview-contact small { margin-top: 2px; color: #8d8ba5; font-size: .64rem; }
.preview-contact b { color: white; background: var(--purple); border-radius: 999px; padding: 1px 5px; font-size: .59rem; }
.avatar { display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: white; font-weight: 800; }
.preview-contact .avatar, .preview-chat-head .avatar { width: 34px; height: 34px; font-size: .74rem; }
.avatar-lilac { background: linear-gradient(135deg, #9d8cf5, #6853db); }
.avatar-cyan { background: linear-gradient(135deg, #3ad8e6, #2a9fd1); }
.avatar-orange { background: linear-gradient(135deg, #ffac6e, #ee693e); }
.preview-chat { display: flex; flex-direction: column; min-width: 0; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,248,255,.88)); }
.preview-chat-head { display: flex; align-items: center; gap: 10px; padding: 14px 17px; border-bottom: 1px solid rgba(54,48,117,.07); }
.preview-chat-head strong, .preview-chat-head small { display: block; }
.preview-chat-head strong { font-size: .82rem; }
.preview-chat-head small { color: #8987a1; font-size: .66rem; }
.tiny-dot { width: 6px; height: 6px; margin-right: 4px; box-shadow: none; }
.preview-messages { display: flex; flex-direction: column; gap: 9px; padding: 20px 16px; flex: 1; }
.preview-day { align-self: center; color: #aaa8b9; font-size: .57rem; font-weight: 800; letter-spacing: .13em; }
.mini-message { max-width: 73%; padding: 9px 11px; border-radius: 13px; color: var(--ink); font-size: .73rem; line-height: 1.35; }
.mini-message span { display: block; margin-top: 3px; color: #9997ab; font-size: .56rem; text-align: right; }
.mini-message.received { align-self: flex-start; border-bottom-left-radius: 4px; background: #efeff7; }
.mini-message.sent { align-self: flex-end; border-bottom-right-radius: 4px; color: white; background: linear-gradient(135deg, #6251e8, #8873ef); }
.mini-message.sent span { color: rgba(255,255,255,.75); }
.preview-composer { display: flex; align-items: center; justify-content: space-between; margin: 0 13px 13px; padding: 9px 11px; border: 1px solid #eceaf4; border-radius: 999px; color: #b0aec0; font-size: .66rem; }
.preview-composer b { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: white; background: var(--purple); border-radius: 50%; font-size: .7rem; }
.floating-bubble { position: absolute; z-index: 2; padding: 11px 14px; border-radius: 14px; color: white; font-size: .73rem; font-weight: 650; box-shadow: 0 15px 30px rgba(44, 33, 123, .14); }
.bubble-one { top: 1%; right: 9%; background: var(--ink-deep); transform: rotate(4deg); }
.bubble-two { bottom: 2%; left: 2%; background: linear-gradient(135deg, #30c9da, #3588df); transform: rotate(-5deg); }

.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 19px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #5e5c7d; font-size: .88rem; }
.trust-row div { display: flex; align-items: center; justify-content: center; gap: 10px; }
.trust-icon { display: inline-flex; align-items: center; justify-content: center; width: 27px; height: 27px; color: var(--purple); border: 1px solid rgba(112, 81, 239, .25); border-radius: 50%; font-weight: 850; }
.section { padding: 130px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; margin-bottom: 42px; }
h2 { color: var(--ink-deep); font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.04; letter-spacing: -.05em; margin: 17px 0 0; }
.section-heading > p { max-width: 390px; justify-self: end; margin: 0; color: var(--muted); font-size: 1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 320px; padding: 28px 26px 25px; overflow: hidden; border-radius: var(--radius-lg); color: var(--ink-deep); }
.feature-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -65px; bottom: -65px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.09), 0 0 0 56px rgba(255,255,255,.07); }
.feature-card-blue { background: linear-gradient(145deg, #d8f8fa, #bde4ff); }
.feature-card-purple { color: white; background: linear-gradient(145deg, #6550e5, #8971ee); }
.feature-card-orange { background: linear-gradient(145deg, #ffe0bf, #ffc7b4); }
.feature-number { position: absolute; top: 26px; right: 26px; color: rgba(39,36,92,.48); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.feature-card-purple .feature-number { color: rgba(255,255,255,.6); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 32px; border: 1px solid rgba(39,36,92,.18); border-radius: 14px; color: var(--ink); font-size: 1.2rem; }
.feature-card-purple .feature-icon { color: white; border-color: rgba(255,255,255,.3); }
.feature-card h3 { max-width: 230px; margin-bottom: 10px; font-size: 1.3rem; line-height: 1.15; letter-spacing: -.035em; }
.feature-card p { max-width: 285px; color: rgba(39,36,92,.72); font-size: .9rem; line-height: 1.55; }
.feature-card-purple p { color: rgba(255,255,255,.79); }
.card-link { position: absolute; z-index: 1; left: 26px; bottom: 24px; font-size: .82rem; font-weight: 800; }
.card-link span { margin-left: 6px; }

.privacy-panel { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; padding: 64px 74px; overflow: hidden; position: relative; border-radius: var(--radius-lg); color: white; background: linear-gradient(115deg, #1f235b 0%, #3438a5 70%, #3f53d6 100%); box-shadow: 0 22px 60px rgba(40, 42, 124, .25); }
.privacy-panel::before { content: ""; position: absolute; width: 450px; height: 450px; right: -140px; top: -190px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 44px rgba(255,255,255,.035), 0 0 0 88px rgba(255,255,255,.03); }
.privacy-art { min-height: 250px; display: grid; place-items: center; position: relative; }
.privacy-art img { position: relative; z-index: 1; width: min(215px, 60%); border-radius: 26%; box-shadow: 0 20px 50px rgba(0,0,0,.23); }
.privacy-orbit { position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.orbit-one { width: 260px; height: 260px; }
.orbit-two { width: 340px; height: 170px; transform: rotate(-29deg); }
.privacy-copy { position: relative; z-index: 1; }
.eyebrow-light { color: #b8f7ff; }
.privacy-copy h2 { max-width: 580px; color: white; }
.privacy-copy > p { max-width: 570px; margin: 23px 0 26px; color: rgba(255,255,255,.76); }
.privacy-points { display: grid; gap: 10px; color: rgba(255,255,255,.9); font-size: .88rem; }
.privacy-points div { display: flex; align-items: center; gap: 10px; }
.privacy-points div > span:first-child { display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; border: 1px solid rgba(184,247,255,.55); border-radius: 50%; color: #b8f7ff; font-size: .7rem; }
.web-cta { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 130px 0 126px; }
.web-cta-copy { max-width: 670px; }
.web-cta h2 { max-width: 640px; }
.web-cta p { max-width: 560px; margin: 23px 0 27px; color: var(--muted); font-size: 1rem; }
.web-cta-mark { width: min(300px, 32%); padding: 30px; border-radius: 35px; background: rgba(255,255,255,.76); box-shadow: 0 18px 50px rgba(58, 49, 125, .08); transform: rotate(5deg); }
.web-cta-mark img { width: 100%; display: block; }
.footer { padding: 27px 0 32px; border-top: 1px solid var(--line); color: #777591; font-size: .77rem; }
.footer-brand, .footer-links, .footer-bottom { display: flex; align-items: center; }
.footer-brand { gap: 14px; }
.footer-brand img { width: 105px; }
.footer-links { justify-content: flex-end; gap: 22px; margin-top: -18px; color: #5d5b78; }
.footer-links a:hover { color: var(--purple); }
.footer-bottom { justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .page-width { width: min(100% - 34px, 700px); }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 79px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 18px 40px rgba(39,36,92,.12); }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 12px; }
  .nav-actions { justify-content: space-between; margin: 4px 0 0; padding: 10px 12px 6px; border-top: 1px solid var(--line); }
  .mobile-menu-button { display: block; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 55px; }
  h1 { max-width: 620px; font-size: clamp(3.2rem, 13vw, 5.1rem); }
  .hero-visual { padding-left: 8px; }
  .preview-window { transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { justify-self: start; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 275px; }
  .privacy-panel { grid-template-columns: 1fr; gap: 18px; padding: 45px 32px; }
  .privacy-art { min-height: 210px; }
  .web-cta { padding: 95px 0; }
}

@media (max-width: 560px) {
  .page-width { width: calc(100% - 28px); }
  .topbar { min-height: 76px; }
  .brand img { width: 132px; }
  .hero { padding-top: 40px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .preview-body { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .preview-chat { min-height: 390px; }
  .floating-bubble { font-size: .65rem; }
  .bubble-one { right: 1%; }
  .bubble-two { left: -4%; }
  .trust-row { grid-template-columns: 1fr; gap: 13px; justify-items: start; padding-left: 4px; }
  .trust-row div { justify-content: flex-start; }
  .section { padding: 94px 0 86px; }
  h2 { font-size: 2.45rem; }
  .privacy-panel { padding: 38px 24px; }
  .privacy-art img { width: 150px; }
  .orbit-one { width: 210px; height: 210px; }
  .orbit-two { width: 270px; height: 135px; }
  .web-cta { flex-direction: column; align-items: flex-start; gap: 44px; padding: 92px 0; }
  .web-cta-mark { width: 70%; align-self: center; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 7px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; margin-top: 21px; gap: 12px 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

.development-note{padding:12px 0;font-size:13px;color:#655d7a}.preview-label{position:relative;z-index:3;text-align:center;font-size:12px;color:#655d7a}

.legal-document{max-width:900px;line-height:1.75}.legal-document h1{font-size:2.5rem}.legal-document h2{font-size:1.4rem;margin:2rem 0 .7rem}.legal-document p{margin:.8rem 0}.legal-document address{font-style:normal}.legal-document hr{margin:4rem 0}.legal-document nav{margin-bottom:2rem}
