:root {
  --red: #f10f4a;
  --red-dark: #c80a3b;
  --paper: #f6f2ec;
  --paper-2: #efe9e0;
  --ink: #16121b;
  --ink-2: #463f4d;
  --muted: #736b7a;
  --line: #e2dad0;
  --white: #fffdfa;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --gutter: clamp(18px, 4vw, 72px);
  --display: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; min-height: 100dvh; background: var(--paper); color: var(--ink); font: 17px/1.6 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; }
h1, h2, h3, p, ol, ul { margin: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
code { font: 600 .88em ui-monospace, "Cascadia Mono", Consolas, monospace; padding: 2px 7px; border-radius: 6px; background: var(--paper-2); overflow-wrap: anywhere; }
.muted { color: var(--muted); }
.skip { position: absolute; left: 12px; top: -80px; z-index: 50; padding: 10px 16px; border-radius: 10px; background: var(--ink); color: var(--paper); font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }

.top { position: sticky; top: 0; z-index: 20; padding: 16px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 18px; background: rgba(246, 242, 236, .94); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.top.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(22, 18, 27, .5); }
.brand, .brand * { text-decoration: none; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: block; width: auto; height: 40px; transition: transform .5s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-word { font: 800 22px/1 var(--display); letter-spacing: -.03em; }
.brand-word b { color: var(--red); font-weight: 800; }
.top-nav { display: flex; align-items: center; gap: 22px; }
.top-nav > a:not(.btn) { text-decoration: none; font-weight: 500; font-size: 15px; color: var(--ink-2); background: linear-gradient(var(--red), var(--red)) 0 100% / 0 2px no-repeat; transition: background-size .3s var(--ease), color .2s; }
.top-nav > a:not(.btn):hover { color: var(--ink); background-size: 100% 2px; }
.lang { display: inline-flex; border: 1.5px solid var(--ink); border-radius: 999px; overflow: hidden; }
.lang a { padding: 5px 11px; font: 700 12.5px/1 var(--body); letter-spacing: .06em; text-decoration: none; transition: background .2s; }
.lang a:hover { background: var(--paper-2); }
.lang a[aria-current] { background: var(--ink); color: var(--paper); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 24px;
  border: 2px solid var(--ink); border-radius: 12px; background: transparent; color: var(--ink);
  font: 700 16px var(--body); text-decoration: none; cursor: pointer; touch-action: manipulation;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s, color .2s;
}
.btn.sm { min-height: 40px; padding: 0 16px; font-size: 14.5px; border-radius: 10px; }
.btn.block { width: 100%; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.red { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.btn.red:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn.red:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.spin { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, .4); border-top-color: #fff; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.in { animation: up .9s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes up { from { opacity: 0; transform: translateY(22px); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
@media (scripting: none) { .reveal { opacity: 1; transform: none; } }

main { padding: 0 var(--gutter); }
.hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 96px); align-items: center; padding: 34px 0 56px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font: 700 13px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.kicker span { width: 28px; height: 3px; border-radius: 3px; background: var(--red); }
.kicker.light { color: #d8cfe0; }
h1 { margin-top: 18px; font: 800 clamp(44px, 6.4vw, 86px)/.98 var(--display); letter-spacing: -.045em; }
.rotator { position: relative; display: inline-block; color: var(--red); white-space: nowrap; }
.word { display: inline-block; }
.word.out { animation: word-out .32s var(--ease) forwards; }
.word.enter { animation: word-in .45s var(--ease) both; }
@keyframes word-out { to { opacity: 0; transform: translateY(-40%); } }
@keyframes word-in { from { opacity: 0; transform: translateY(40%); } }
.scribble { position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: .22em; overflow: visible; }
.scribble path { fill: none; stroke: var(--ink); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw 1.1s .7s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.lead { margin-top: 24px; max-width: 36em; font-size: 18.5px; color: var(--ink-2); }

.platforms { margin-top: 34px; scroll-margin-top: 90px; display: grid; gap: 14px; }
.label { font: 700 12.5px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.plat {
  display: flex; align-items: center; gap: 16px; min-height: 84px; padding: 16px 20px; border: 2px solid var(--ink); border-radius: 16px;
  background: var(--white); text-decoration: none; color: var(--ink); transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.plat > span { display: grid; min-width: 0; line-height: 1.3; }
.plat b { font: 800 21px var(--display); letter-spacing: -.01em; }
.plat small { color: var(--muted); font-size: 14px; }
.plat i { margin-left: auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; transition: transform .25s var(--ease); }
.plat:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--red); }
.plat:hover i { transform: translateY(3px); }
.plat:active { transform: none; box-shadow: none; }
.soon-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.soon-label { font: 700 12.5px var(--body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border: 1.5px dashed #b9aea2; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-2); transition: border-color .2s, color .2s, transform .2s var(--ease); }
.chip:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

.devices { position: relative; }
.lineup { width: 100%; height: auto; display: block; }
.float-a { animation: bob 7s ease-in-out infinite; }
.float-b { animation: bob 6s ease-in-out -2s infinite; }
@keyframes bob { 50% { transform: translateY(-8px); } }
.progress { transform-box: fill-box; transform-origin: left; animation: prog 6s linear infinite; }
@keyframes prog { from { transform: scaleX(.15); } to { transform: scaleX(1.66); } }

.ticker { margin: 0 calc(var(--gutter) * -1); overflow: hidden; background: var(--ink); color: var(--paper); border-block: 2px solid var(--ink); transform: rotate(-1.2deg); }
.ticker-track { display: flex; align-items: center; gap: 26px; width: max-content; padding: 16px 0; animation: marquee 32s linear infinite; font: 700 20px var(--display); letter-spacing: -.01em; white-space: nowrap; }
.ticker-track i { color: var(--red); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.features, .security, .faq-sec { padding: 96px 0 24px; scroll-margin-top: 90px; }
.sec-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin-bottom: 34px; }
.sec-head h2 { font: 800 clamp(32px, 4vw, 52px)/1.05 var(--display); letter-spacing: -.035em; }
.sec-head p:not(.kicker) { font: 700 clamp(20px, 2.4vw, 30px) var(--display); color: var(--red); letter-spacing: -.02em; }
.security .sec-head { display: grid; gap: 14px; }
.feat-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.feat-grid li { padding: 28px 26px 30px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--paper); transition: background .25s, opacity .8s var(--ease), transform .8s var(--ease); }
.feat-grid li:hover { background: var(--white); }
.num { display: inline-block; font: 800 14px var(--display); color: var(--red); letter-spacing: .04em; }
.feat-grid h3 { margin: 10px 0 6px; font: 700 22px/1.2 var(--display); letter-spacing: -.02em; }
.feat-grid p { color: var(--ink-2); font-size: 15.5px; }

.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sec-card { padding: 26px; border-radius: 20px; background: var(--white); border: 2px solid var(--ink); transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .8s var(--ease); }
.sec-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.sec-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--red); color: #fff; }
.sec-card h3 { margin: 16px 0 6px; font: 700 20px var(--display); letter-spacing: -.01em; }
.sec-card p { color: var(--ink-2); font-size: 15px; }

.connect {
  display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: center; margin: 96px 0 0; padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 88px);
  border-radius: 28px; background: var(--ink); color: var(--paper); scroll-margin-top: 90px;
}
.connect h1, .connect h2 { margin-top: 16px; font: 800 clamp(32px, 4vw, 54px)/1.02 var(--display); letter-spacing: -.035em; }
.connect .lead { color: #cfc6d6; }
.steps { list-style: none; padding: 0; margin-top: 30px; display: grid; gap: 14px; }
.steps li { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.steps b { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--red); color: var(--red); font: 800 15px var(--display); }
.connect-form { display: grid; gap: 16px; padding: 28px; border-radius: 20px; background: var(--white); color: var(--ink); scroll-margin-top: 110px; box-shadow: 8px 8px 0 var(--red); }
.connect-form h3 { font: 800 26px var(--display); letter-spacing: -.02em; }
.connect-form .hint svg { vertical-align: -2px; }
.page-pad { padding-bottom: 20px; }
.page-pad .connect { margin-top: 24px; }

.field { display: grid; gap: 7px; }
.field label, .field legend { font-size: 14.5px; font-weight: 700; color: var(--ink-2); }
.hint { color: var(--muted); font-size: 13.5px; }
input, select {
  width: 100%; min-height: 54px; padding: 12px 16px; border-radius: 12px; border: 2px solid var(--line); background: #fff;
  color: var(--ink); font: 500 17px var(--body); transition: border-color .2s, box-shadow .2s;
}
input::placeholder { color: #b5aca2; }
input:hover { border-color: #cfc5b9; }
input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(241, 15, 74, .18); }
input[data-mac] { font: 600 17px ui-monospace, "Cascadia Mono", Consolas, monospace; letter-spacing: .05em; }
.code-input { font: 800 28px var(--display); letter-spacing: .45em; text-align: center; padding-left: calc(16px + .45em); }
.alert { padding: 12px 14px; border-radius: 12px; background: #ffe9ee; border: 2px solid #f6b7c7; color: var(--red-dark); font-size: 14.5px; font-weight: 600; animation: shake .5s var(--ease); }
.alert.ok { background: #e8f7ee; border-color: #b7e3c7; color: #146c38; animation: up .6s var(--ease); }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }

.faq { display: grid; gap: 12px; }
.faq-sec.narrow { padding-top: 24px; max-width: 900px; margin: 0 auto; }
.faq-item { border: 2px solid var(--ink); border-radius: 16px; background: var(--white); overflow: hidden; transition: box-shadow .25s var(--ease), opacity .8s var(--ease), transform .8s var(--ease); }
.faq-item[open] { box-shadow: 5px 5px 0 var(--red); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; list-style: none; font: 700 19px/1.3 var(--display); letter-spacing: -.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--paper-2); transition: transform .35s var(--ease), background .2s, color .2s; }
.faq-item[open] summary i { transform: rotate(180deg); background: var(--red); color: #fff; }
.faq-a { padding: 0 22px 22px; color: var(--ink-2); animation: up .45s var(--ease); }
.faq-more { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.doc-hero { max-width: 900px; margin: 0 auto; padding: 40px 0 28px; }
.doc-hero h1 { font-size: clamp(38px, 5.5vw, 68px); }
.doc-hero .muted { margin-top: 12px; font-size: 14.5px; }
.prose { max-width: 900px; margin: 0 auto; padding: 34px clamp(20px, 4vw, 48px) 40px; border: 2px solid var(--ink); border-radius: 22px; background: var(--white); font-size: 16.5px; }
.prose h2 { margin: 30px 0 10px; font: 800 24px/1.2 var(--display); letter-spacing: -.02em; }
.prose h2:first-of-type { margin-top: 20px; }
.prose p, .prose ul, .prose ol { margin: 0 0 14px; color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red-dark); font-weight: 600; }

.contact-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-bottom: 20px; }
.contact-card { padding: 26px; border: 2px solid var(--ink); border-radius: 20px; background: var(--white); display: grid; gap: 10px; align-content: start; transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .8s var(--ease); }
.contact-card.big { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; text-decoration: none; }
.contact-card.big:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--red); }
.contact-card.big span:not(.sec-ico) { display: grid; }
.contact-card.big small { color: var(--muted); font-weight: 600; }
.contact-card.big b { font: 800 clamp(22px, 3vw, 32px) var(--display); letter-spacing: -.02em; overflow-wrap: anywhere; }
.contact-card.big i { margin-left: auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; transform: rotate(-90deg); }
.contact-card h3 { font: 700 20px var(--display); }
.contact-card ul { padding-left: 20px; color: var(--ink-2); }
.contact-card p { color: var(--ink-2); font-size: 15px; }
.contact-card a { color: var(--red-dark); font-weight: 600; }

.footer { margin-top: 110px; background: var(--ink); color: #d8cfe0; padding: 64px var(--gutter) 28px; border-radius: 32px 32px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer .brand-word { color: #fff; }
.ft-brand p { margin: 16px 0 18px; max-width: 30em; color: #b7adc1; }
.ft-mail { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1.5px solid #3b3342; border-radius: 12px; color: #fff; text-decoration: none; font-weight: 600; transition: border-color .2s, background .2s; }
.ft-mail:hover { border-color: var(--red); background: rgba(241, 15, 74, .12); }
.ft-col { display: grid; gap: 10px; align-content: start; }
.ft-col h3 { margin-bottom: 6px; font: 700 13px var(--body); letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.ft-col a { width: fit-content; color: #b7adc1; text-decoration: none; background: linear-gradient(var(--red), var(--red)) 0 100% / 0 1.5px no-repeat; transition: color .2s, background-size .3s var(--ease); }
.ft-col a:hover { color: #fff; background-size: 100% 1.5px; }
.ft-platforms { margin-top: 48px; padding-top: 28px; border-top: 1px solid #2e2735; display: grid; gap: 14px; }
.ft-platforms .label { color: #8f859a; }
.ft-platforms ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ft-platforms li { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 14px; background: #221c28; color: #fff; font-weight: 600; font-size: 15px; transition: transform .25s var(--ease), background .2s; }
.ft-platforms li:hover { transform: translateY(-3px); background: #2c2433; }
.ft-platforms li svg { color: var(--red); }
.ft-platforms li.soon { background: transparent; border: 1.5px dashed #3b3342; color: #a399ad; }
.ft-platforms li.soon svg { color: #a399ad; }
.ft-bottom { margin-top: 28px; padding-top: 22px; border-top: 1px solid #2e2735; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 30px; color: #8f859a; font-size: 13.5px; }
.ft-disc { max-width: 640px; }

.page { padding: 8px 0 20px; display: grid; gap: 24px; }
.page-head h1 { margin: 0; font-size: clamp(36px, 5vw, 56px); }
.head-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 14px; }
.device-chip { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border: 2px solid var(--ink); border-radius: 999px; font-size: 14.5px; background: var(--white); }
.device-chip b { font-family: ui-monospace, Consolas, monospace; letter-spacing: .05em; }
.device-chip .live { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; }
.grid2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.panel { display: grid; gap: 16px; padding: 26px; border: 2px solid var(--ink); border-radius: 20px; background: var(--white); }
.panel.bare { padding: 0; border: 0; background: none; }
.panel h2 { font: 800 24px var(--display); letter-spacing: -.02em; }
.plist { list-style: none; padding: 0; display: grid; gap: 10px; }
.pitem { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border: 2px solid var(--line); border-radius: 14px; background: #fff; animation: up .6s var(--ease) both; animation-delay: calc(var(--i, 0) * 60ms); transition: border-color .2s; }
.pitem:hover { border-color: var(--ink); }
.pitem .ico { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--red); color: #fff; }
.pitem .meta { min-width: 0; flex: 1; display: grid; }
.pitem .meta b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 16.5px; }
.pitem .meta small { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13.5px; }
.tag { display: inline-block; margin-left: 8px; padding: 1px 8px; border: 1.5px solid var(--ink); border-radius: 999px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; vertical-align: 2px; }
.acts { display: flex; gap: 6px; flex: none; }
.acts form { margin: 0; }
.icon-btn { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; border: 2px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.icon-btn:hover { border-color: var(--ink); color: var(--ink); }
.icon-btn.del:hover { border-color: var(--red); color: var(--red); background: #fff1f4; }
.empty { padding: 30px 16px; text-align: center; color: var(--muted); border: 2px dashed var(--line); border-radius: 14px; }
.note { font-size: 13.5px; color: var(--muted); }
.seg { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; }
.seg input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg span { display: grid; place-items: center; min-height: 46px; font-weight: 700; font-size: 14.5px; cursor: pointer; transition: background .2s, color .2s; }
.seg label + label span { border-left: 2px solid var(--ink); }
.seg input:checked + span { background: var(--ink); color: var(--paper); }
.seg input:focus-visible + span { outline: 3px solid var(--red); outline-offset: -5px; }


.ai { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 64px); align-items: center; margin-top: 96px; scroll-margin-top: 90px; }
.ai-art::before { content: ""; position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(241, 15, 74, .16), rgba(241, 15, 74, 0) 68%); pointer-events: none; }
.ai-art { position: relative; display: grid; place-items: center; }
.ai-art img { position: relative; width: 100%; max-width: 520px; height: auto; animation: ai-float 6s ease-in-out infinite; }
.ai-copy { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 56px); border-radius: 32px; background: var(--ink); color: var(--paper); }
.ai-copy::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; right: -30%; top: -30%; background: radial-gradient(circle, rgba(241, 15, 74, .28), rgba(241, 15, 74, 0) 65%); pointer-events: none; }
.ai-copy > * { position: relative; }
.ai h2 { margin: 14px 0 12px; font: 800 clamp(34px, 4.4vw, 58px)/1.02 var(--display); letter-spacing: -.035em; color: #fff; }
.ai-lead { color: #cfc6d8; font-size: 18px; max-width: 560px; }
.chat { margin: 26px 0 8px; padding: 20px; border-radius: 22px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); display: grid; gap: 10px; max-width: 560px; }
.msg { display: flex; align-items: flex-end; gap: 10px; }
.msg span { padding: 10px 15px; border-radius: 16px 16px 16px 4px; background: rgba(255, 255, 255, .1); font-size: 15px; line-height: 1.4; }
.msg img { flex: none; }
.msg.me { justify-content: flex-end; }
.msg.me span { background: var(--red); color: #fff; font-weight: 700; border-radius: 16px 16px 4px 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 40px; }
.chips i { font-style: normal; font-size: 13.5px; font-weight: 600; padding: 7px 13px; border-radius: 999px; border: 1px solid rgba(241, 15, 74, .5); background: rgba(255, 255, 255, .06); }
.chips i.on { background: var(--red); border-color: var(--red); color: #fff; }
.chat.is-in .m1 { animation: ai-m1 12s var(--ease) infinite; }
.chat.is-in .m2 { animation: ai-m2 12s var(--ease) infinite; }
.chat.is-in .m3 { animation: ai-m3 12s var(--ease) infinite; }
.chat.is-in .m4 { animation: ai-m4 12s var(--ease) infinite; }
.chat.is-in .m5 { animation: ai-m5 12s var(--ease) infinite; }
.chat.is-in .chips i.on { animation: ai-pick 12s var(--ease) infinite; }
@keyframes ai-m1 { 0% { opacity: 0; transform: translateY(10px); } 4%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes ai-m2 { 0%, 12% { opacity: 0; transform: translateY(10px); } 16%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes ai-m3 { 0%, 24% { opacity: 0; transform: translateY(10px); } 28%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes ai-m4 { 0%, 32% { opacity: 0; transform: translateY(10px); } 36%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes ai-m5 { 0%, 56% { opacity: 0; transform: translateY(10px); } 60%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes ai-pick { 0%, 46% { background: rgba(255, 255, 255, .06); border-color: rgba(241, 15, 74, .5); transform: none; } 49% { transform: scale(1.12); } 52%, 100% { background: var(--red); border-color: var(--red); transform: none; } }
@keyframes ai-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.ai-points { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ai-points li { padding: 16px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 4px; transition: border-color .25s, opacity .8s var(--ease), transform .8s var(--ease); }
.ai-points li:hover { border-color: var(--red); }
.ai-points b { font: 700 16px var(--display); color: #fff; }
.ai-points span { font-size: 14px; color: #bdb3c7; line-height: 1.45; }
.ai-menu { margin-top: 18px; font-size: 14.5px; color: #bdb3c7; }

@media (max-width: 1100px) {
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
  .hide-md { display: none; }
}
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 16px; }
  .devices { order: -1; max-width: 520px; width: 100%; margin: 0 auto; }
  .connect { grid-template-columns: 1fr; gap: 34px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid2 { grid-template-columns: 1fr; }
  .ai { grid-template-columns: 1fr; }
  .ai-art img { max-width: 360px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hide-sm { display: none; }
  .top-nav { gap: 10px; }
  .brand-word { font-size: 19px; }
  .feat-grid, .sec-grid, .contact-grid { grid-template-columns: 1fr; }
  .features, .security, .faq-sec { padding-top: 72px; }
  .connect { padding: 34px 20px; border-radius: 22px; margin-top: 72px; }
  .connect-form { padding: 22px; box-shadow: 5px 5px 0 var(--red); }
  .panel { padding: 20px; }
  .lead { font-size: 16.5px; }
  .faq-item summary { font-size: 17px; padding: 16px 18px; }
  .faq-a { padding: 0 18px 18px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer { border-radius: 24px 24px 0 0; margin-top: 80px; }
  .prose { border-radius: 18px; }
  .ai { margin-top: 72px; }
  .ai-copy { border-radius: 24px; padding: 26px 20px; }
  .ai-points { grid-template-columns: 1fr; }
  .chips { padding-left: 0; }
}
@media (max-width: 420px) {
  .top-nav .btn-label { display: none; }
  .top-nav .btn.sm { padding: 0 11px; }
  .brand-mark { height: 34px; }
  .brand-word { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .scribble path { stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; }
}
.lineup .mark-anim { transform-box: fill-box; transform-origin: 50% 55%; animation: mark-nod 3.6s var(--ease) infinite; }
.lineup .mark-anim.sm { animation-delay: 1.8s; }
.lineup .mark-ring { fill: none; stroke: #fff; stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; animation: mark-ring 3.6s ease-out infinite; }
.lineup .mark-ring.r2 { animation-delay: .5s; }
.lineup .mark-ring.sm { animation-delay: 1.8s; }
@keyframes mark-nod { 0%, 100% { transform: none; } 12% { transform: scale(1.14) rotate(-8deg); } 24% { transform: scale(.95) rotate(4deg); } 34% { transform: scale(1.03) rotate(-1deg); } 44% { transform: none; } }
@keyframes mark-ring { 0% { opacity: 0; transform: scale(.75); } 10% { opacity: .55; } 45%, 100% { opacity: 0; transform: scale(1.35); } }
