/* Ouno Remote – public site.
   Every colour comes from brand/tokens.css (dark default, [data-theme="light"]).
   Red is an accent only: buttons, active states, icons, focus rings. */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 var(--font-site);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Full-bleed backgrounds inside main reach past the viewport; clip (not
   hidden) keeps them from ever creating a horizontal scroll. */
main, .site-footer { overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
code { font-family: var(--font-mono); font-size: .92em; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 14px; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 600;
}
.skip-link:focus { top: 16px; text-decoration: none; }

.faint { color: var(--text-faint); }
.muted { color: var(--text-muted); }
.small { font-size: 13.5px; }
.mono { font-family: var(--font-mono); }

/* Icons drawn with strokes, everywhere in the site. */
.i { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 38px; padding: 0 16px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg-card); color: var(--text);
  font-weight: 600; font-size: 14px; line-height: 1; white-space: nowrap; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; border-color: var(--text-faint); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-contrast); box-shadow: 0 6px 18px var(--accent-soft); }
.btn.primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn.primary:active { background: var(--ouno-red-deep); border-color: var(--ouno-red-deep); }
.btn.ghost { background: transparent; }
.btn.large { height: 46px; padding: 0 22px; font-size: 15px; border-radius: 12px; }
.btn.full { width: 100%; }
.btn.disabled, .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.btn .i { width: 17px; height: 17px; }
.btn .dl-icon { width: 17px; height: 17px; fill: currentColor; }

.icon-btn {
  display: grid; place-items: center; width: 38px; height: 38px; padding: 0;
  border: 1px solid var(--border); border-radius: 10px; background: transparent; color: var(--text-muted); cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.icon-btn:hover { color: var(--text); border-color: var(--text-faint); background: var(--bg-raised); }

/* Site bar ----------------------------------------------------------------- */

.bar-wrap { position: sticky; top: 12px; z-index: 60; padding: 12px 24px 0; }

.site-bar {
  display: flex; align-items: center; gap: 12px;
  max-width: 1180px; margin: 0 auto; padding: 8px 10px 8px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--bg-soft) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  transition: box-shadow .25s ease, background .25s ease;
}
.bar-wrap.scrolled .site-bar { box-shadow: var(--shadow); background: color-mix(in srgb, var(--bg-soft) 92%, transparent); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand img.mark { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 4px 14px var(--accent-soft); }
.brand img.word { height: 15px; width: auto; }
.brand span { font-size: 17px; font-weight: 600; margin-left: -4px; }

.site-nav { display: flex; align-items: center; gap: 2px; margin-inline-start: 8px; }
.site-nav a {
  display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 12px; white-space: nowrap;
  border-radius: 9px; color: var(--text-muted); font-size: 14px; font-weight: 500;
  transition: color .15s, background .15s;
}
.site-nav a .i { width: 15px; height: 15px; opacity: .8; }
.site-nav a:hover { color: var(--text); background: var(--bg-raised); text-decoration: none; }
.site-nav a.current { color: var(--accent); background: var(--accent-soft); }

.site-actions { display: flex; align-items: center; gap: 8px; margin-inline-start: auto; }
.theme-btn .sun, .theme-btn .moon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
:root[data-theme="dark"] .theme-btn .sun { display: none; }
:root[data-theme="light"] .theme-btn .moon { display: none; }
.menu-btn { display: none; }
.menu-btn .i { width: 20px; height: 20px; }

@media (max-width: 960px) {
  .site-nav a span { display: none; }
  .site-nav a { padding: 0 10px; }
  .site-nav a .i { width: 17px; height: 17px; }
}
@media (max-width: 720px) {
  .bar-wrap { padding: 12px 16px 0; top: 10px; }
  .site-bar { flex-wrap: wrap; padding: 8px 10px; }
  .site-nav {
    display: none; order: 10; width: 100%; margin: 6px 0 2px; padding-top: 8px;
    border-top: 1px solid var(--border); flex-direction: column; align-items: stretch; gap: 2px;
  }
  .site-nav a { height: 40px; }
  .site-nav a span { display: inline; }
  .site-bar.open .site-nav { display: flex; }
  .menu-btn { display: grid; }
  .bar-login span { display: none; }
  .bar-login { width: 38px; padding: 0; }
}

/* Sections ------------------------------------------------------------------ */

.section { max-width: 1180px; margin: 0 auto; padding: 88px 24px 24px; }
.section.alt { position: relative; }
.section.alt::before {
  content: ""; position: absolute; inset: 40px -100vw 0; z-index: -1;
  background: var(--bg-soft); border-block: 1px solid var(--border);
}
.section h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 24ch; }
.section-lead { margin: 14px 0 0; max-width: 62ch; color: var(--text-muted); font-size: 17px; line-height: 1.65; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  color: var(--accent); font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--accent); }

/* Hero ------------------------------------------------------------------------ */

.hero {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 48px;
  max-width: 1180px; margin: 0 auto; padding: 72px 24px 40px;
}
.hero::before {
  content: ""; position: absolute; z-index: -1; inset: -120px -40vw 0;
  background:
    radial-gradient(60% 55% at 18% 10%, var(--accent-soft), transparent 70%),
    radial-gradient(45% 45% at 88% 60%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; z-index: -1; inset: 0 -40vw 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .28;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; height: 34px; padding: 0 14px 0 6px;
  border: 1px solid var(--border); border-radius: 999px; background: var(--bg-card);
  color: var(--text-muted); font-size: 13px; font-weight: 500; transition: border-color .15s, transform .15s;
}
.hero-badge:hover { text-decoration: none; border-color: var(--accent); transform: translateY(-1px); }
.hero-badge .tag { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 10px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; }
.hero-badge .i { width: 14px; height: 14px; transition: transform .2s; }
.hero-badge:hover .i { transform: translateX(3px); }

.hero h1 { font-size: clamp(36px, 5.2vw, 62px); line-height: 1.05; letter-spacing: -.03em; margin-top: 22px; }
.hero-accent {
  color: var(--accent);
  background: linear-gradient(90deg, var(--ouno-red-strong), var(--ouno-red), var(--ouno-red-deep), var(--ouno-red-strong));
  background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: accent-drift 8s linear infinite;
}
@keyframes accent-drift { to { background-position: 250% 0; } }

.hero .lead { margin-top: 20px; max-width: 54ch; color: var(--text-muted); font-size: 18px; line-height: 1.65; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--text-muted); }
.hero-trust .i { color: var(--accent); }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
#hero-version { margin-top: 14px; min-height: 20px; }

.hero-text > * { animation: rise .7s cubic-bezier(.2, .7, .2, 1) both; }
.hero-text > :nth-child(2) { animation-delay: .07s; }
.hero-text > :nth-child(3) { animation-delay: .14s; }
.hero-text > :nth-child(4) { animation-delay: .21s; }
.hero-text > :nth-child(5) { animation-delay: .28s; }
.hero-text > :nth-child(6) { animation-delay: .35s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }

.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: live 1.8s ease-in-out infinite; }
@keyframes live { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); } 50% { box-shadow: 0 0 0 4px rgba(255,255,255,0); } }

/* The app window, drawn ----------------------------------------------------- */

.hero-art { position: relative; perspective: 1600px; animation: rise .9s .2s cubic-bezier(.2,.7,.2,1) both; }
.hero-art::before {
  content: ""; position: absolute; inset: 10% -6% -8% 8%; z-index: -1;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 28%, transparent), transparent);
  filter: blur(32px);
}

.app {
  --a-bg: #121215; --a-title: #0c0c0e; --a-surface: #1a1a1e; --a-border: #2b2b31;
  --a-text: #f3f3f5; --a-muted: #a0a0a8; --a-toast: rgba(18, 18, 21, .88);
  display: flex; flex-direction: column;
  border: 1px solid var(--a-border); border-radius: 12px; overflow: hidden;
  background: var(--a-bg); color: var(--a-text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .03);
  font-size: 12px; line-height: 1.3;
}
.hero-art .app { transform: rotateY(-8deg) rotateX(3deg); }
.shot-stage[data-theme="light"] .app, :root[data-theme="light"] .hero-art .app {
  --a-bg: #f7f7f8; --a-title: #ffffff; --a-surface: #ffffff; --a-border: #e5e6e5;
  --a-text: #171717; --a-muted: #5a5a60; --a-toast: rgba(255, 255, 255, .94);
  box-shadow: 0 30px 80px rgba(23, 23, 23, .18), 0 0 0 1px rgba(23, 23, 23, .04);
}

.app-titlebar { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--a-title); }
.app-titlebar img { width: 16px; height: 16px; border-radius: 4px; }
.app-name { font-weight: 600; }
.app-name b { color: var(--accent); font-weight: 700; }
.app-controls { margin-inline-start: auto; display: flex; gap: 16px; color: var(--a-muted); font-size: 11px; }

.app-tabs { display: flex; gap: 6px; padding: 8px 12px 0; }
.app-tab, .app-newtab { padding: 5px 11px; border: 1px solid var(--a-border); border-bottom: 0; border-radius: 8px 8px 0 0; color: var(--a-muted); }
.app-tab { background: var(--a-surface); color: var(--a-text); }
.app-tab b { margin-inline-start: 8px; font-weight: 400; color: var(--a-muted); font-size: 10px; }

.app-toolbar {
  display: flex; align-items: center; gap: 5px; padding: 8px 12px; overflow: hidden;
  background: var(--a-surface); border-block: 1px solid var(--a-border);
}
.tb { display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border: 1px solid var(--a-border); border-radius: 999px; white-space: nowrap; font-size: 11px; }
.tb .i { width: 12px; height: 12px; }
.tb em { font-style: normal; color: var(--a-muted); font-size: 10px; }
.tb.danger { color: var(--danger); border-color: color-mix(in srgb, var(--danger) 40%, transparent); }
.tb.icon { width: 26px; height: 26px; padding: 0; justify-content: center; border-radius: 7px; color: var(--a-muted); }
.tb.icon.on { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 45%, transparent); color: var(--accent); }
.tb-group { display: inline-flex; gap: 4px; padding: 0 4px; border-inline: 1px solid var(--a-border); }
.tb.rec span { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); animation: live 1.8s ease-in-out infinite; }

.app-screen {
  position: relative; flex: 1; min-height: 240px; margin: 10px 12px; border-radius: 6px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, #4b1f2a 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 100%, #2a2f5a 0%, transparent 60%),
    linear-gradient(160deg, #23232b, #131316);
}
.rd-window { position: absolute; border-radius: 7px; background: rgba(247, 247, 248, .97); box-shadow: 0 12px 30px rgba(0, 0, 0, .35); overflow: hidden; }
.rd-bar { display: flex; gap: 4px; padding: 6px 8px; background: #e8e8ea; }
.rd-bar span { width: 6px; height: 6px; border-radius: 50%; background: #c5c5ca; }
.rd-editor { left: 7%; top: 10%; width: 50%; height: 62%; }
.rd-lines { display: grid; gap: 8px; padding: 10px 12px; }
.rd-lines i { display: block; height: 6px; border-radius: 3px; background: #dcdce0; }
.rd-lines i:nth-child(3) { background: #f5a3a3; }
.rd-chart { right: 7%; top: 26%; width: 36%; height: 52%; }
.rd-bars { display: flex; align-items: flex-end; gap: 7%; height: calc(100% - 30px); padding: 8px 12px 0; }
.rd-bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(var(--ouno-red-strong), var(--ouno-red-deep)); }
.rd-taskbar { position: absolute; inset: auto 0 0; display: flex; justify-content: center; align-items: center; gap: 6px; height: 22px; background: rgba(12, 12, 14, .78); backdrop-filter: blur(6px); }
.rd-taskbar i { width: 12px; height: 12px; border-radius: 3px; background: rgba(255,255,255,.28); }
.rd-taskbar i.on { background: var(--ouno-red-strong); }
.rd-taskbar span { position: absolute; right: 10px; font-size: 9px; color: rgba(255,255,255,.7); }
.rd-cursor { position: absolute; left: 62%; top: 58%; width: 13px; filter: drop-shadow(0 2px 3px rgba(0,0,0,.4)); animation: cursor-move 6s ease-in-out infinite; }
@keyframes cursor-move { 0%, 100% { transform: translate(0, 0); } 35% { transform: translate(-70px, -40px); } 65% { transform: translate(-30px, 22px); } }
.rd-toast {
  position: absolute; left: 50%; top: 10px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 999px;
  background: var(--a-toast); border: 1px solid color-mix(in srgb, var(--a-text) 12%, transparent);
  color: var(--a-text); font-size: 10.5px; white-space: nowrap;
}
.dot-ok { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 22%, transparent); }
.app-status { display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 7px 12px 10px; color: var(--a-muted); font-size: 11px; }
.app-status span { display: inline-flex; align-items: center; gap: 6px; }
.app-status .lock { margin-inline-start: auto; color: var(--success); }
.app-status .lock .i { width: 12px; height: 12px; }

/* Highlights ------------------------------------------------------------------ */

.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1180px; margin: 0 auto; padding: 24px 24px 12px; }
.highlight {
  position: relative; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.highlight:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); box-shadow: var(--shadow); }
.highlight h3 { margin: 0 0 6px; font-size: 16.5px; }
.highlight p { color: var(--text-muted); font-size: 13.5px; line-height: 1.55; }

.icon-tile {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; border-radius: 12px;
  background: linear-gradient(135deg, var(--ouno-red-strong), var(--ouno-red-deep)); color: #fff;
  box-shadow: 0 8px 20px var(--accent-soft);
}
.icon-tile .i { width: 21px; height: 21px; stroke-width: 1.9; }

/* Features -------------------------------------------------------------------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.feature {
  position: relative; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ouno-red-strong), var(--ouno-red-deep)); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }
.feature:hover::before { transform: scaleX(1); }
.feature h3 { font-size: 18px; }
.feature p { margin-top: 9px; color: var(--text-muted); font-size: 14.5px; }
.feature .icon-tile { transition: transform .25s; }
.feature:hover .icon-tile { transform: scale(1.06) rotate(-4deg); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; list-style: none; }
.tags li { padding: 3px 9px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-raised); color: var(--text-muted); font-size: 11.5px; font-weight: 600; }

/* Spec grid ------------------------------------------------------------------- */

.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.spec { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); transition: border-color .2s, transform .2s; }
.spec:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); transform: translateY(-2px); }
.spec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.spec-head .icon-tile { width: 36px; height: 36px; margin: 0; border-radius: 10px; }
.spec-head .icon-tile .i { width: 18px; height: 18px; }
.spec h3 { flex: 1; font-size: 16.5px; }
.spec-count { display: grid; place-items: center; min-width: 30px; height: 26px; padding: 0 8px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 12.5px; font-weight: 700; }
.spec ul { list-style: none; }
.spec li { position: relative; padding: 7px 0 7px 26px; color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.spec li + li { border-top: 1px dashed color-mix(in srgb, var(--border) 80%, transparent); }
.spec li::before {
  content: ""; position: absolute; left: 4px; top: 12px; width: 9px; height: 5px;
  border: 2px solid var(--success); border-top: 0; border-right: 0; transform: rotate(-45deg);
}
.spec li.new { color: var(--text); }
.spec li.new::after { content: "yeni"; margin-inline-start: 8px; padding: 1px 6px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 10.5px; font-weight: 700; vertical-align: 1px; }

/* Comparison ------------------------------------------------------------------ */

.compare-wrap { margin-top: 36px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); overflow: hidden; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14.5px; }
.compare th, .compare td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); }
.compare th:first-child, .compare td:first-child { text-align: left; }
.compare thead th { font-size: 13px; font-weight: 700; color: var(--text-muted); background: var(--bg-raised); letter-spacing: .02em; }
.compare thead th.ours { color: var(--text); background: var(--accent-soft); }
.compare thead .ours .brand { display: inline-flex; gap: 8px; justify-content: center; }
.compare thead .ours img { width: 22px; height: 22px; border-radius: 6px; }
.compare tbody th { font-weight: 500; color: var(--text); }
.compare tbody th small { display: block; margin-top: 2px; color: var(--text-faint); font-size: 12px; font-weight: 400; }
.compare tbody td.ours { background: color-mix(in srgb, var(--accent) 5%, transparent); font-weight: 600; }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: 0; }
.compare tbody tr:hover td, .compare tbody tr:hover th { background: color-mix(in srgb, var(--text) 3%, transparent); }
.compare tbody tr:hover td.ours { background: color-mix(in srgb, var(--accent) 9%, transparent); }
.yes, .no, .part { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 26px; height: 26px; padding: 0 9px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.yes { background: color-mix(in srgb, var(--success) 15%, transparent); color: var(--success); }
.no { background: color-mix(in srgb, var(--text-faint) 15%, transparent); color: var(--text-faint); }
.part { background: color-mix(in srgb, var(--warning) 16%, transparent); color: var(--warning); }
.yes::before { content: ""; width: 9px; height: 5px; border: 2px solid currentColor; border-top: 0; border-right: 0; transform: rotate(-45deg) translate(1px, -1px); }
.no::before { content: ""; width: 10px; height: 2px; background: currentColor; border-radius: 2px; }
.compare-note { padding: 12px 18px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 12.5px; line-height: 1.5; }

/* Screens --------------------------------------------------------------------- */

.shots-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.seg { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-card); }
.seg button {
  height: 32px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent; color: var(--text-muted);
  font-size: 13.5px; font-weight: 600; cursor: pointer; transition: background .15s, color .15s;
}
.seg button:hover { color: var(--text); }
.seg button[aria-pressed="true"] { background: var(--accent); color: #fff; }

.shot-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.shot-tab {
  display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px;
  border: 1px solid var(--border); border-radius: 10px; background: var(--bg-card); color: var(--text-muted);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.shot-tab .i { width: 16px; height: 16px; }
.shot-tab:hover { color: var(--text); border-color: var(--accent); transform: translateY(-1px); }
.shot-tab[aria-selected="true"] { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

.shot-stage { position: relative; margin-top: 18px; padding: 18px; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: radial-gradient(80% 100% at 50% 0%, var(--accent-soft), transparent 70%), var(--bg-soft); }
.shot-panel { display: none; }
.shot-panel.current { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } }
.shot-frame {
  --m-bg: #121215; --m-side: #0e0e10; --m-card: #1a1a1e; --m-border: #2b2b31; --m-text: #f3f3f5; --m-muted: #a0a0a8; --m-faint: #6e6e76; --m-raised: #222227;
  position: relative; aspect-ratio: 16 / 9.6; margin: 0; overflow: hidden;
  border: 1px solid var(--m-border); border-radius: 12px; background: var(--m-bg); color: var(--m-text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35); font-size: 12px; line-height: 1.35;
}
.shot-stage[data-theme="light"] .shot-frame {
  --m-bg: #f7f7f8; --m-side: #ffffff; --m-card: #ffffff; --m-border: #e5e6e5; --m-text: #171717; --m-muted: #5a5a60; --m-faint: #8c8c93; --m-raised: #f0f0f2;
  box-shadow: 0 24px 60px rgba(23, 23, 23, .14);
}
.shot-frame img.real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; background: var(--m-bg); }
.shot-caption { margin-top: 16px; color: var(--text-muted); font-size: 14.5px; text-align: center; }

/* Mocks inside the frame. */
.mk { display: grid; grid-template-columns: 168px 1fr; grid-template-rows: 34px 1fr; height: 100%; }
.mk-title { grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; padding: 0 12px; border-bottom: 1px solid var(--m-border); background: var(--m-side); font-weight: 600; }
.mk-title img { width: 16px; height: 16px; border-radius: 4px; }
.mk-title b { color: var(--accent); }
.mk-title .win { margin-inline-start: auto; display: flex; gap: 14px; color: var(--m-muted); font-size: 11px; }
.mk-side { display: flex; flex-direction: column; gap: 4px; padding: 12px 10px; border-right: 1px solid var(--m-border); background: var(--m-side); }
.mk-side span { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px; color: var(--m-muted); font-weight: 500; }
.mk-side span .i { width: 15px; height: 15px; }
.mk-side span.on { background: var(--accent-soft); color: var(--accent); }
.mk-side .grow { flex: 1; }
.mk-side .user { border-top: 1px solid var(--m-border); padding-top: 12px; font-size: 11px; }
.mk-side .user i { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--ouno-red-strong), var(--ouno-red-deep)); }
.mk-main { padding: 16px; overflow: hidden; }
.mk-main h4 { margin: 0 0 10px; font-size: 14px; letter-spacing: -.01em; }
.mk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mk-card { padding: 12px 14px; border: 1px solid var(--m-border); border-radius: 10px; background: var(--m-card); }
.mk-card .lbl { color: var(--m-muted); font-size: 11px; }
.mk-id { margin: 4px 0 2px; font: 700 26px/1.2 var(--font-mono); letter-spacing: .08em; }
.mk-fp { color: var(--m-faint); font: 11px var(--font-mono); letter-spacing: .04em; }
.mk-status { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--m-muted); font-size: 11px; }
.mk-input { display: flex; align-items: center; height: 34px; margin-top: 6px; padding: 0 10px; border: 1px solid var(--m-border); border-radius: 8px; background: var(--m-bg); color: var(--m-faint); font: 15px var(--font-mono); letter-spacing: .08em; }
.mk-input.filled { color: var(--m-text); border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.mk-btn { display: inline-flex; align-items: center; justify-content: center; height: 30px; padding: 0 14px; border-radius: 8px; background: var(--accent); color: #fff; font-weight: 700; font-size: 12px; }
.mk-btn.ghost { background: transparent; border: 1px solid var(--m-border); color: var(--m-text); font-weight: 600; }
.mk-btn.sm { height: 24px; padding: 0 9px; font-size: 11px; }
.mk-row { display: flex; align-items: center; gap: 8px; }
.mk-list { display: grid; gap: 6px; }
.mk-list li { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid var(--m-border); border-radius: 8px; background: var(--m-card); list-style: none; }
.mk-list li .n { flex: 1; min-width: 0; }
.mk-list li .n b { display: block; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mk-list li .n small { color: var(--m-faint); font-size: 10.5px; }
.mk-list .os { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; background: var(--m-raised); color: var(--m-muted); }
.mk-list .os .i { width: 14px; height: 14px; }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.dot.off { background: var(--m-faint); }
.dot.warn { background: var(--warning); }
.mk-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.mk-tabs span { padding: 5px 10px; border-radius: 7px; color: var(--m-muted); font-weight: 600; font-size: 11.5px; }
.mk-tabs span.on { background: var(--m-raised); color: var(--m-text); }
.mk-pane { border: 1px solid var(--m-border); border-radius: 10px; background: var(--m-card); overflow: hidden; }
.mk-pane .ph { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-bottom: 1px solid var(--m-border); background: var(--m-raised); font-weight: 600; }
.mk-pane .ph small { margin-inline-start: auto; color: var(--m-faint); font-weight: 400; font-size: 10.5px; }
.mk-file { display: flex; align-items: center; gap: 8px; padding: 6px 10px; border-top: 1px solid color-mix(in srgb, var(--m-border) 60%, transparent); }
.mk-file:first-of-type { border-top: 0; }
.mk-file .i { width: 14px; height: 14px; color: var(--m-muted); }
.mk-file .i.folder { color: var(--warning); }
.mk-file span { flex: 1; }
.mk-file small { color: var(--m-faint); font-size: 10.5px; }
.mk-file.sel { background: var(--accent-soft); }
.mk-prog { height: 5px; margin-top: 6px; border-radius: 3px; background: var(--m-raised); overflow: hidden; }
.mk-prog i { display: block; height: 100%; width: var(--p, 50%); border-radius: 3px; background: linear-gradient(90deg, var(--ouno-red-strong), var(--ouno-red-deep)); }
.mk-thumb { display: grid; place-items: center; width: 54px; height: 34px; border-radius: 6px; background: linear-gradient(160deg, #3a2030, #1c1c2c); color: #fff; }
.mk-thumb .i { width: 14px; height: 14px; }
.mk-toggle { display: inline-block; width: 30px; height: 17px; border-radius: 999px; background: var(--m-raised); border: 1px solid var(--m-border); position: relative; flex-shrink: 0; }
.mk-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 11px; height: 11px; border-radius: 50%; background: var(--m-faint); }
.mk-toggle.on { background: var(--accent); border-color: var(--accent); }
.mk-toggle.on::after { left: auto; right: 2px; background: #fff; }
.mk-setting { display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-top: 1px solid var(--m-border); }
.mk-setting:first-child { border-top: 0; }
.mk-setting .n { flex: 1; }
.mk-setting .n b { display: block; font-weight: 600; }
.mk-setting .n small { color: var(--m-faint); font-size: 10.5px; }
.mk-select { padding: 4px 8px; border: 1px solid var(--m-border); border-radius: 6px; background: var(--m-bg); color: var(--m-text); font-size: 11px; }
.mk .app { flex: 1; border: 0; border-radius: 0; box-shadow: none; }
.mk.session { grid-template-columns: 1fr; grid-template-rows: 1fr; }

/* Steps ---------------------------------------------------------------------- */

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; list-style: none; counter-reset: step; }
.steps::before {
  content: ""; position: absolute; top: 19px; left: 12%; right: 12%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent) 60%, transparent) 0 0 / 220% 100% no-repeat, var(--border);
  animation: step-flow 4s linear infinite paused;
}
.steps.in-view::before { animation-play-state: running; }
@keyframes step-flow { to { background-position: 140% 0, 0 0; } }
.steps li { position: relative; display: flex; flex-direction: column; }
.step-no {
  position: relative; z-index: 1; display: grid; place-items: center; width: 40px; height: 40px; margin: 0 auto;
  border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; box-shadow: 0 0 0 6px var(--bg), 0 8px 18px var(--accent-soft);
}
.section.alt .step-no { box-shadow: 0 0 0 6px var(--bg-soft), 0 8px 18px var(--accent-soft); }
.step-card { flex: 1; margin-top: 18px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); transition: transform .2s, box-shadow .2s; }
.steps li:hover .step-card { transform: translateY(-3px); box-shadow: var(--shadow); }
.steps h3 { margin-top: 18px; font-size: 17px; }
.steps p { margin-top: 8px; color: var(--text-muted); font-size: 14.5px; }

.step-scene {
  position: relative; display: grid; place-items: center; height: 132px; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--border);
  background: radial-gradient(90% 120% at 50% 0%, var(--accent-soft), transparent 70%), var(--bg-soft);
}
.step-scene *, .step-scene *::before, .step-scene *::after { animation-play-state: paused !important; }
.steps.in-view .step-scene *, .steps.in-view .step-scene *::before, .steps.in-view .step-scene *::after { animation-play-state: running !important; }

.mini-window, .mini-dialog, .mini-input { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 10px 26px rgba(0, 0, 0, .18); }
.mini-window { width: 200px; padding: 8px 14px 12px; }
.mini-bar { display: flex; gap: 4px; margin: 0 -6px 8px; }
.mini-bar b { width: 7px; height: 7px; border-radius: 50%; background: color-mix(in srgb, var(--text) 15%, transparent); }
.mini-label { font-size: 10.5px; color: var(--text-muted); }
.mini-id { font: 700 21px/1.3 var(--font-mono); letter-spacing: .06em; white-space: pre; }
.mini-id i { display: inline-block; font-style: normal; animation: digit-in 4.5s calc(var(--i) * .12s) ease-out infinite both; }
@keyframes digit-in {
  0%, 4% { opacity: 0; transform: translateY(6px); }
  12%, 88% { opacity: 1; transform: none; color: var(--text); }
  14% { color: var(--accent); }
  96%, 100% { opacity: 0; transform: none; }
}
.mini-status { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 11px; color: var(--text-muted); }
.mini-status .dot { animation: pulse-ok 1.6s ease-in-out infinite; }
@keyframes pulse-ok { 0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--success) 50%, transparent); } 50% { box-shadow: 0 0 0 5px transparent; } }

.scene-type { grid-auto-flow: column; gap: 8px; }
.mini-input { display: flex; align-items: center; width: 156px; height: 38px; padding: 0 12px; }
.typed { display: inline-block; overflow: hidden; white-space: pre; width: 0; font: 600 15px var(--font-mono); letter-spacing: .04em; animation: type 4.5s steps(11, end) infinite; }
@keyframes type { 0%, 8% { width: 0; } 50%, 92% { width: 11.6ch; } 100% { width: 0; } }
.caret { width: 2px; height: 18px; margin-left: 1px; background: var(--accent); animation: blink .8s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.mini-connect { padding: 10px 14px; border-radius: 9px; font-size: 13px; font-weight: 700; color: #fff; background: var(--accent); animation: connect 4.5s ease infinite; }
@keyframes connect {
  0%, 50% { opacity: .4; transform: none; box-shadow: none; }
  56% { opacity: 1; transform: scale(1.06); box-shadow: 0 0 0 6px var(--accent-soft); }
  62% { transform: scale(.94); }
  68%, 92% { opacity: 1; transform: none; box-shadow: 0 8px 18px var(--accent-soft); }
  100% { opacity: .4; }
}

.mini-dialog { width: 214px; padding: 12px; animation: dialog 4.5s ease infinite; }
@keyframes dialog { 0% { opacity: 0; transform: translateY(14px) scale(.96); } 10%, 58% { opacity: 1; transform: none; } 66%, 100% { opacity: 0; transform: scale(.94); } }
.mini-who { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.mini-who b { color: var(--text); }
.avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--ouno-red-strong), var(--ouno-red-deep)); flex-shrink: 0; }
.mini-actions { display: flex; gap: 6px; margin-top: 10px; }
.mini-actions span { flex: 1; padding: 6px 0; border-radius: 7px; text-align: center; font-size: 11.5px; font-weight: 700; }
.mini-actions .no-btn { border: 1px solid var(--border); color: var(--text-muted); }
.mini-actions .yes-btn { color: #fff; background: var(--accent); animation: press 4.5s ease infinite; }
@keyframes press { 0%, 38% { transform: none; } 44% { transform: scale(.9); filter: brightness(1.15); } 50%, 100% { transform: none; } }
.mini-done { position: absolute; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--success); box-shadow: 0 12px 26px color-mix(in srgb, var(--success) 40%, transparent); animation: done 4.5s ease infinite; }
.mini-done .i { width: 30px; height: 30px; stroke: #fff; stroke-width: 3; stroke-dasharray: 24; animation: tick 4.5s ease infinite; }
@keyframes done { 0%, 62% { opacity: 0; transform: scale(.4); } 70% { opacity: 1; transform: scale(1.1); } 76%, 92% { opacity: 1; transform: none; } 100% { opacity: 0; transform: scale(.9); } }
@keyframes tick { 0%, 68% { stroke-dashoffset: 24; } 80%, 100% { stroke-dashoffset: 0; } }

/* FAQ --------------------------------------------------------------------------- */

.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); transition: border-color .2s; }
.faq details[open], .faq details:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.faq summary { display: flex; align-items: center; gap: 12px; padding: 16px 18px; cursor: pointer; list-style: none; font-weight: 600; font-size: 15.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; margin-inline-start: auto; width: 8px; height: 8px; border: 2px solid var(--text-faint); border-top: 0; border-left: 0; transform: rotate(45deg); transition: transform .2s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(-135deg); border-color: var(--accent); }
.faq details p { padding: 0 18px 18px; color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

/* Download ------------------------------------------------------------------------ */

.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.download-card { display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); transition: border-color .2s, transform .2s; }
.download-card:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); transform: translateY(-2px); }
.download-card.muted { opacity: .7; }
.download-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.os-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-raised); border: 1px solid var(--border); color: var(--text); }
.os-icon svg { width: 24px; height: 24px; fill: currentColor; }
.download-card h3 { font-size: 18px; }
.download-card .btn { margin-bottom: 10px; }
.download-card .note { margin-top: 6px; }
.download-card code { padding: 1px 5px; border-radius: 5px; background: var(--bg-raised); font-size: 12px; }
.hash { margin-top: 12px; padding: 10px 12px; border: 1px dashed var(--border); border-radius: 10px; background: var(--bg-soft); }
.hash .hash-label { display: block; margin-bottom: 4px; color: var(--text-faint); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.hash code { display: block; word-break: break-all; color: var(--text-muted); font-size: 11.5px; line-height: 1.45; }
.download-card .spacer { flex: 1; }

/* CTA ------------------------------------------------------------------------------ */

.cta { max-width: 1180px; margin: 0 auto; padding: 88px 24px 32px; }
.cta-panel {
  position: relative; overflow: hidden; padding: 72px 32px; text-align: center;
  border: 1px solid var(--border); border-radius: 24px;
  background: radial-gradient(60% 90% at 50% 0%, var(--accent-soft), transparent 70%), var(--bg-card);
}
.cta-orb { position: absolute; width: 360px; height: 360px; border-radius: 50%; filter: blur(70px); opacity: .28; pointer-events: none; background: var(--accent); animation: orb 16s ease-in-out infinite; }
.cta-orb.one { top: -180px; left: -100px; }
.cta-orb.two { bottom: -200px; right: -80px; animation-delay: -8s; opacity: .18; }
@keyframes orb { 50% { transform: translate(40px, 30px) scale(1.1); } }
.cta-body { position: relative; max-width: 620px; margin: 0 auto; }
.cta h2 { font-size: clamp(28px, 3.6vw, 42px); }
.cta p { margin: 14px auto 28px; max-width: 52ch; color: var(--text-muted); font-size: 17px; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cta-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 26px; list-style: none; color: var(--text-muted); font-size: 14px; }
.cta-points li { display: inline-flex; align-items: center; gap: 7px; }
.cta-points li::before { content: ""; width: 8px; height: 5px; border: 2px solid var(--success); border-top: 0; border-right: 0; transform: rotate(-45deg); }
.cta-float {
  position: absolute; display: flex; flex-direction: column; gap: 2px; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg-soft); box-shadow: var(--shadow); text-align: left; animation: float 7s ease-in-out infinite;
}
.cta-float.left { top: 54px; left: 44px; transform: rotate(-6deg); }
.cta-float.right { bottom: 54px; right: 44px; flex-direction: row; align-items: center; gap: 10px; transform: rotate(5deg); animation-delay: -3s; }
@keyframes float { 50% { translate: 0 -8px; } }
.cf-label { color: var(--text-faint); font-size: 11px; }
.cf-id { font: 700 20px/1.2 var(--font-mono); letter-spacing: .08em; }
.cf-status { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 11.5px; }
.cf-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: color-mix(in srgb, var(--success) 15%, transparent); color: var(--success); }
.cta-float b { display: block; font-size: 14px; }
.cta-float small { display: block; color: var(--text-muted); font-size: 11.5px; }

/* Footer --------------------------------------------------------------------------- */

.site-footer { margin-top: 64px; border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; max-width: 1180px; margin: 0 auto; padding: 56px 24px 40px; }
.footer-brand p { margin-top: 14px; max-width: 38ch; color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.footer-brand .ouno { margin-top: 20px; height: 22px; width: auto; opacity: .9; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { margin-bottom: 4px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); }
.footer-col a { color: var(--text-muted); font-size: 14.5px; transition: color .15s, transform .15s; }
.footer-col a:hover { color: var(--accent); text-decoration: none; transform: translateX(3px); }
.footer-bottom { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; max-width: 1180px; margin: 0 auto; padding: 20px 24px 28px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 13px; }
.footer-bottom .grow { flex: 1; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px 0 10px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-card); color: var(--text-muted); font-size: 12.5px; font-weight: 600; }
.footer-status .dot { animation: pulse-ok 2s ease-in-out infinite; }
.footer-status.down .dot { background: var(--text-faint); animation: none; }

/* Sub pages -------------------------------------------------------------------------- */

.page { max-width: 820px; margin: 0 auto; padding: 72px 24px 24px; }
.page.wide { max-width: 1180px; }
.page-head { margin-bottom: 36px; }
.page-head h1 { font-size: clamp(32px, 4.4vw, 48px); letter-spacing: -.03em; }
.page-head .lead { margin-top: 14px; max-width: 60ch; color: var(--text-muted); font-size: 17.5px; }
.prose { font-size: 16px; line-height: 1.7; color: var(--text-muted); }
.prose h2 { margin: 40px 0 12px; font-size: 22px; color: var(--text); }
.prose h3 { margin: 26px 0 8px; font-size: 17px; color: var(--text); }
.prose p + p { margin-top: 12px; }
.prose ul, .prose ol { margin: 12px 0 12px 22px; }
.prose li + li { margin-top: 6px; }
.prose strong { color: var(--text); }
.prose .updated { display: inline-block; margin-bottom: 8px; padding: 4px 10px; border-radius: 999px; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-faint); font-size: 12.5px; }
.callout { margin: 20px 0; padding: 16px 18px; border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--border)); border-left: 3px solid var(--accent); border-radius: var(--radius); background: var(--bg-card); color: var(--text); font-size: 15px; }

.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.about-grid article { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); transition: transform .2s, border-color .2s; }
.about-grid article:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }
.about-grid article.current { border-color: var(--accent); }
.about-grid h3 { font-size: 16.5px; }
.about-grid p { margin-top: 6px; color: var(--text-muted); font-size: 14px; }
.about-grid .kicker { display: inline-block; margin-bottom: 10px; color: var(--accent); font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.values article { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); }
.values h3 { font-size: 17px; }
.values p { margin-top: 8px; color: var(--text-muted); font-size: 14.5px; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; margin-top: 36px; }
.form { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 40px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg); color: var(--text); font: inherit; font-size: 15px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field .hint { color: var(--text-faint); font-size: 12.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-msg { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.form-msg.ok { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.form-msg.err { background: color-mix(in srgb, var(--warning) 14%, transparent); color: var(--warning); }
.form-msg a { color: inherit; font-weight: 600; text-decoration: underline; }
.contact-side { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.contact-card .icon-tile { width: 38px; height: 38px; margin: 0; border-radius: 10px; flex-shrink: 0; }
.contact-card .icon-tile .i { width: 18px; height: 18px; }
.contact-card h3 { font-size: 15.5px; }
.contact-card p { margin-top: 4px; color: var(--text-muted); font-size: 14px; }

/* 404 */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.notfound .code { font: 700 96px/1 var(--font-mono); letter-spacing: .08em; color: var(--accent); }
.notfound h1 { margin-top: 12px; font-size: 30px; }
.notfound p { margin: 12px auto 0; max-width: 46ch; color: var(--text-muted); }
.notfound .btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Reveal ------------------------------------------------------------------------------ */

.js [data-reveal] > * { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); }
.js [data-reveal].revealed > * { opacity: 1; transform: none; }
.js [data-reveal].revealed > :nth-child(2) { transition-delay: .08s; }
.js [data-reveal].revealed > :nth-child(3) { transition-delay: .16s; }
.js [data-reveal].revealed > :nth-child(4) { transition-delay: .24s; }
.js [data-reveal].revealed > :nth-child(5) { transition-delay: .32s; }
.js [data-reveal].revealed > :nth-child(6) { transition-delay: .40s; }

/* Responsive --------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1000px) {
  .hero { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-top: 56px; }
  .hero-text, .hero-art { min-width: 0; }
  .hero-art .app { transform: none; }
  .hero .lead { max-width: 60ch; }
  .highlights, .cards, .spec-grid, .download-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .values { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .steps::before { display: none; }
  .steps li { flex-direction: row; gap: 16px; align-items: flex-start; }
  .step-no { margin: 0; flex-shrink: 0; }
  .step-card { margin-top: 0; }
  .faq { grid-template-columns: 1fr; }
  .cta-float { display: none; }
  .mk { grid-template-columns: 1fr; }
  .mk-side { display: none; }
  .shot-frame { aspect-ratio: 4 / 3.2; }
}
@media (max-width: 640px) {
  .section, .hero, .cta, .page { padding-left: 16px; padding-right: 16px; }
  .section { padding-top: 64px; }
  .highlights { padding-left: 16px; padding-right: 16px; }
  .highlights, .cards, .spec-grid, .download-grid, .about-grid, .values { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(32px, 9.5vw, 42px); }
  .hero-buttons .btn { flex: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 40px 16px 28px; }
  .footer-bottom { padding: 18px 16px 24px; }
  .cta-panel { padding: 48px 20px; }
  .form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .mk-grid { grid-template-columns: 1fr; }
  .mk-main { padding: 12px; }
  .shot-frame { aspect-ratio: auto; height: 380px; }
  .app-screen { min-height: 200px; }
  .compare th, .compare td { padding: 12px 12px; }
}
@media (max-width: 400px) {
  .site-nav a { padding: 0 8px; }
  .notfound .code { font-size: 72px; }
}

/* Reduced motion ------------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .js [data-reveal] > * { opacity: 1; transform: none; }
  .typed { width: 11.6ch; }
  .mini-connect { opacity: 1; }
  .mini-done { display: none; }
  .mini-id i { opacity: 1; }
  .mini-dialog { opacity: 1; }
  .hero-accent { color: var(--accent); background: none; -webkit-background-clip: initial; background-clip: initial; }
}

@media print {
  .bar-wrap, .site-footer, .cta, .hero-art { display: none; }
  body { background: #fff; color: #000; }
}
