:root {
  --text: #11151f;
  --text2: #5f6977;
  --text3: #7d8795;
  --bg: #f4f6fa;
  --card: #fff;
  --line: rgba(17, 21, 31, 0.1);
  --solid: #3a6df0;
  --ink: #2a54d6;
  --tint: #eaf0ff;
  --grad: linear-gradient(150deg, #5184ff 0%, #2e5be6 58%, #243fc4 100%);
  --shadow: 0 24px 60px -22px rgba(6, 12, 40, 0.34);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "SF Pro Text", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}
body::selection { background: rgba(58, 109, 240, 0.22); color: var(--text); }
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.06; font-weight: 800; text-wrap: balance; }
p { margin: 0; }
a { color: var(--ink); text-decoration: none; text-underline-offset: 0.2em; }
a:hover { color: var(--solid); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(58, 109, 240, 0.36);
  outline-offset: 3px;
}
img { max-width: 100%; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; width: 100%; }

/* Shared navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(244, 246, 250, 0.88);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 36px; min-width: 0; height: 104px; }
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand img { width: 56px; height: 56px; flex-shrink: 0; border-radius: 15px; object-fit: cover; box-shadow: 0 5px 16px -6px rgba(20, 40, 120, 0.55); }
.navlinks { display: flex; gap: 30px; margin-left: auto; font-size: 16px; font-weight: 650; }
.navlinks a { color: var(--text2); }
.navlinks a:hover, .navlinks a[aria-current="page"] { color: var(--text); }
.navlinks a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--solid); text-decoration-thickness: 2px; text-underline-offset: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font: 750 15px/1 -apple-system, "SF Pro Text", system-ui, sans-serif;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:active { transform: scale(0.975); }
.btn-p { background: var(--solid); color: #fff; box-shadow: 0 7px 18px -8px rgba(30, 72, 194, 0.8); }
.btn-p:hover { background: var(--ink); color: #fff; }
.nav > .btn { min-height: 48px; padding: 0 22px; font-size: 16px; }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; margin-left: auto; border: 0; background: transparent; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; border-radius: 1px; background: var(--text); transition: transform 200ms ease, opacity 200ms ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobilemenu { display: none; flex-direction: column; gap: 2px; padding: 8px 28px 20px; border-top: 1px solid var(--line); background: var(--card); }
.mobilemenu.open { display: flex; }
.mobilemenu a:not(.btn) { padding: 13px 4px; border-bottom: 1px solid var(--line); color: var(--text); font-size: 16px; font-weight: 650; }
.mobilemenu .btn { margin-top: 12px; }

/* Home */
.hero { position: relative; display: flex; align-items: center; overflow: hidden; min-height: 0; padding: 66px 0 0; background: #0a0e16; color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tint { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(81,132,255,.62), rgba(46,91,230,.68) 58%, rgba(36,63,196,.76)); pointer-events: none; }
.scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,34,.34), transparent 26%, rgba(8,12,34,.52)); pointer-events: none; }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1fr minmax(260px, 460px); gap: 48px; align-items: center; padding-top: 51px; padding-bottom: 76px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 14px; border-radius: 20px; background: rgba(255,255,255,.16); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); backdrop-filter: blur(10px); font-size: 12.5px; font-weight: 750; letter-spacing: .02em; }
.hero h1 { max-width: 13ch; margin-top: 20px; font-size: clamp(44px, 6vw, 72px); text-shadow: 0 6px 22px rgba(5, 8, 16, 0.32); }
.lede { max-width: 52ch; margin-top: 20px; color: rgba(255,255,255,.9); font-size: clamp(17px, 1.5vw, 19.5px); font-weight: 550; line-height: 1.5; text-shadow: 0 2px 12px rgba(5,8,16,.26); }
.hero .lede { margin-top: 17px; }
.store-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.app-store-badge, .android-badge { display: inline-block; height: 56px; border-radius: 8px; transition: opacity 180ms ease, transform 180ms ease; }
.app-store-badge:hover, .android-badge:hover { opacity: 0.86; transform: translateY(-1px); }
.app-store-badge img { display: block; width: auto; height: 56px; }
.android-badge { min-width: 188px; overflow: hidden; background: url("https://pub-d93037a4a59442339d043b1de1186513.r2.dev/uploads/simulator/images/1786549237923-a145883d-2d73-4afc-87f7-8852da6069fa.png") center/contain no-repeat; color: transparent; font-size: 0; }
.fine { margin-top: 14px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 650; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; color: #fff; font-size: 15px; font-weight: 750; }
.text-link:hover { color: #fff; text-decoration: underline; }
.heroshot { display: flex; justify-content: flex-end; }
.phone { position: relative; width: 460px; max-width: 100%; flex-shrink: 0; padding: 11px; border-radius: 56px; background: #0b1020; box-shadow: 0 34px 68px -24px rgba(6,12,40,.72); }
.phone .screen { position: relative; overflow: hidden; border-radius: 45px; background: var(--bg); }
.phone img { display: block; width: 100%; height: auto; object-fit: contain; }
.heroshot .phone { width: 100%; max-width: 440px; }
.roles { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--card); }
.roles .label { margin-bottom: 16px; color: var(--text2); text-align: center; font-size: 13.5px; font-weight: 700; }
.role-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 0 15px; border-radius: 12px; background: var(--bg); color: var(--text2); font-size: 14px; font-weight: 700; }
.chip svg { flex-shrink: 0; }

/* Interior pages */
section { position: relative; scroll-margin-top: 120px; }
.page-hero { overflow: hidden; padding: 104px 0 100px; background: var(--grad); color: #fff; }
.page-hero .wrap { position: relative; }
.page-hero h1 { max-width: 16ch; font-size: clamp(46px, 6vw, 76px); }
.page-hero .lede { max-width: 58ch; }
.page-hero .text-link { margin-top: 28px; }
.page-hero::after { content: ""; position: absolute; right: -15vw; bottom: -60%; width: 70vw; height: 110%; border: 2px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 46px rgba(255,255,255,.045), 0 0 0 92px rgba(255,255,255,.035); }
.workflow-proof { padding: 88px 0 72px; background: var(--card); }
.workflow-proof h2 { max-width: 16ch; font-size: clamp(34px, 4.4vw, 54px); }
.workflow-proof .sub { max-width: 58ch; }
.workflow-list { margin-top: 38px; border-top: 1px solid var(--line); }
.workflow-row { display: grid; grid-template-columns: minmax(150px, 0.32fr) 1fr; gap: 28px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.workflow-row h3 { font-size: 17px; letter-spacing: -0.015em; }
.workflow-row p { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--text2); font-size: 15px; font-weight: 650; }
.workflow-row b { color: var(--solid); font-size: 17px; }
.workflow-proof .jumpnav { margin-top: 30px; }
.product-chapters { background: var(--bg); }
.chapter { scroll-margin-top: 104px; border-top: 1px solid var(--line); }
.chapter:nth-child(even) { background: var(--card); }
.chapter-head { max-width: 760px; padding-top: 86px; }
.chapter-head h2 { max-width: 16ch; font-size: clamp(34px, 4.4vw, 52px); }
.chapter-head p { max-width: 62ch; margin-top: 18px; color: var(--text2); font-size: 18px; font-weight: 550; line-height: 1.6; }
.band { padding: 88px 0 34px; }
.band h2 { max-width: 18ch; font-size: clamp(34px, 4.4vw, 54px); }
.band .sub { max-width: 62ch; }
.sub { margin-top: 16px; color: var(--text2); font-size: 17.5px; font-weight: 550; line-height: 1.55; }
.jumpnav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.jumpnav a { padding: 9px 13px; border-radius: 11px; background: var(--card); color: var(--text2); font-size: 14px; font-weight: 700; box-shadow: 0 2px 8px -6px rgba(6,12,40,.45); }
.jumpnav a:hover { background: var(--tint); color: var(--ink); }
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; padding: 78px 0; }
.feat > * { min-width: 0; }
.feat + .feat { border-top: 1px solid var(--line); }
.feat.flip .copy { order: 2; }
.feature-mark { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; color: var(--solid); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.icon-tile { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: var(--tint); }
.feat h2 { max-width: 17ch; font-size: clamp(29px, 3.3vw, 40px); }
.feat .sub { max-width: 58ch; font-size: 17px; }
.points { display: flex; flex-direction: column; gap: 13px; padding: 0; margin: 26px 0 0; list-style: none; }
.points li { display: flex; align-items: flex-start; gap: 11px; color: var(--text); font-size: 15.5px; font-weight: 600; line-height: 1.45; }
.points li::before { content: ""; width: 10px; height: 6px; flex: 0 0 10px; margin-top: 5px; border-bottom: 2px solid var(--solid); border-left: 2px solid var(--solid); transform: rotate(-45deg); }
.art { display: flex; justify-content: center; }
.art .phone { width: 380px; }
.close { overflow: hidden; padding: 96px 0; background: var(--grad); color: #fff; text-align: center; }
.close h2 { max-width: 20ch; margin: 0 auto; font-size: clamp(34px, 4.2vw, 50px); }
.close .lede { margin-right: auto; margin-left: auto; }
.close .store-badges { justify-content: center; }

/* About */
.about-story { padding: 96px 0 108px; }
.about-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 74px; align-items: center; }
.about-photo { display: block; width: 100%; border-radius: 20px; object-fit: cover; box-shadow: var(--shadow); }
.about-figure { margin: 0; }
.about-figure figcaption { margin-top: 12px; color: var(--text3); font-size: 13.5px; font-weight: 650; }
.about-copy h1 { max-width: 13ch; font-size: clamp(42px, 5.2vw, 64px); }
.story { max-width: 66ch; margin-top: 20px; color: var(--text2); font-size: 16.5px; line-height: 1.72; }
.story + .story { margin-top: 14px; }
.about-belief { padding: 82px 0; background: var(--card); border-top: 1px solid var(--line); }
.about-belief blockquote { max-width: 24ch; margin: 0; font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.14; letter-spacing: -0.03em; }
.about-belief p { max-width: 54ch; margin-top: 20px; color: var(--text2); }

/* Contact */
.contact { padding: 94px 0 108px; background: var(--card); }
.home-contact { border-bottom: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact h1, .contact h2 { max-width: 12ch; font-size: clamp(42px, 5vw, 62px); }
.contact-standalone { max-width: 760px; }
.contact-standalone .btn { margin-top: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-info .row { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 15px; font-weight: 650; }
.contact-info svg { flex-shrink: 0; }
.contact form { display: flex; flex-direction: column; gap: 16px; padding: 30px; border-radius: 18px; background: var(--bg); box-shadow: 0 14px 36px -28px rgba(6,12,40,.55); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { color: var(--text2); font-size: 13px; font-weight: 750; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 13px; background: var(--card); color: var(--text); font-family: inherit; font-size: 15px; line-height: 1.5; resize: vertical; transition: border-color 150ms ease, box-shadow 150ms ease; }
.field input:focus, .field textarea:focus { border-color: var(--solid); outline: 0; box-shadow: 0 0 0 3px rgba(58,109,240,.14); }
.field input::placeholder, .field textarea::placeholder { color: #737d8b; }
.form-status { display: none; margin-top: 4px; font-size: 14px; font-weight: 650; }

/* Blog */
.blog-feed { min-height: 480px; padding: 92px 0 112px; background: var(--card); }
.blog-section-head { display: grid; grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr); gap: 56px; align-items: end; margin-bottom: 48px; }
.blog-section-head h2 { max-width: 12ch; font-size: clamp(36px, 4.6vw, 56px); }
.blog-section-head p { max-width: 54ch; color: var(--text2); font-size: 16.5px; line-height: 1.65; }
.blog-status { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 120px; padding: 26px 28px; border-radius: 16px; background: var(--tint); color: var(--text); }
.blog-status[hidden] { display: none; }
.blog-status.is-loading { justify-content: flex-start; min-height: 160px; background: transparent; color: var(--text2); }
.blog-status.is-error { background: #fff0ee; }
.blog-status-copy { min-width: 0; }
.blog-status strong { display: block; font-size: 18px; line-height: 1.3; }
.blog-status p { max-width: 56ch; margin-top: 6px; color: var(--text2); font-size: 15px; line-height: 1.55; }
.blog-loader { width: 24px; height: 24px; flex: 0 0 24px; border: 3px solid rgba(58, 109, 240, .18); border-top-color: var(--solid); border-radius: 50%; animation: blog-spin 800ms linear infinite; }
.text-action { color: var(--ink); font-size: 15px; font-weight: 750; text-decoration: underline; text-decoration-thickness: 1.5px; }
@keyframes blog-spin { to { transform: rotate(360deg); } }
.post-list { border-top: 1px solid var(--line); }
.post-list[hidden] { display: none; }
.post-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 64px; align-items: center; padding: 42px 0; border-bottom: 1px solid var(--line); }
.post-row.has-media { grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); }
.post-row > * { min-width: 0; }
.post-kicker, .article-kicker { color: var(--solid); font-size: 12.5px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.post-row h3 { max-width: 22ch; margin-top: 13px; font-size: clamp(28px, 3vw, 40px); overflow-wrap: anywhere; }
.post-row h3 a { color: var(--text); }
.post-row h3 a:hover { color: var(--ink); }
.post-excerpt { display: -webkit-box; max-width: 60ch; margin-top: 16px; overflow: hidden; color: var(--text2); font-size: 16.5px; line-height: 1.62; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.post-meta, .article-meta { margin-top: 22px; color: var(--text3); font-size: 13.5px; font-weight: 650; font-variant-numeric: tabular-nums; }
.post-media { display: block; overflow: hidden; aspect-ratio: 3 / 2; border-radius: 14px; background: var(--tint); }
.post-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms cubic-bezier(.16, 1, .3, 1); }
.post-media:hover img { transform: scale(1.025); }

/* Ghost article */
.article-page { min-height: 70vh; padding: 88px 0 112px; background: var(--card); }
.article-status { max-width: 760px; margin: 0 auto; }
.article-head { max-width: 820px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 64px; color: var(--text2); font-size: 14px; font-weight: 750; }
.article-back:hover { color: var(--ink); }
.article-head h1 { max-width: 16ch; margin-top: 16px; font-size: clamp(44px, 6.2vw, 76px); overflow-wrap: anywhere; }
.article-dek { max-width: 62ch; margin-top: 22px; color: var(--text2); font-size: clamp(18px, 2vw, 22px); line-height: 1.58; }
.article-feature { max-width: 1120px; margin: 62px auto 0; }
.article-feature img { display: block; width: 100%; max-height: 680px; border-radius: 20px; object-fit: cover; }
.article-feature figcaption { max-width: 760px; margin: 12px auto 0; color: var(--text3); font-size: 13px; line-height: 1.5; }
.article-body { max-width: 760px; margin: 64px auto 0; color: #252b36; font-size: 18px; line-height: 1.78; overflow-wrap: anywhere; }
.article-body > * { margin-top: 0; margin-bottom: 0; }
.article-body > * + * { margin-top: 1.45em; }
.article-body h2, .article-body h3, .article-body h4 { margin-top: 2.2em; color: var(--text); line-height: 1.16; }
.article-body h2 { font-size: clamp(28px, 3.2vw, 38px); }
.article-body h3 { font-size: clamp(23px, 2.6vw, 30px); }
.article-body h4 { font-size: 20px; letter-spacing: -.012em; }
.article-body a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1.5px; }
.article-body ul, .article-body ol { padding-inline-start: 1.35em; }
.article-body li + li { margin-top: .55em; }
.article-body blockquote { margin-inline: 0; padding-inline-start: 24px; border-inline-start: 1px solid var(--solid); color: var(--text); font-size: clamp(22px, 2.7vw, 30px); font-weight: 700; line-height: 1.45; letter-spacing: -.018em; }
.article-body hr { margin: 3em 0; border: 0; border-top: 1px solid var(--line); }
.article-body img, .article-body video { display: block; max-width: 100%; height: auto; border-radius: 14px; }
.article-body iframe { width: 100%; max-width: 100%; border: 0; aspect-ratio: 16 / 9; }
.article-body figcaption { margin-top: 10px; color: var(--text3); text-align: center; font-size: 13px; line-height: 1.5; }
.article-body pre { max-width: 100%; padding: 20px; overflow-x: auto; border-radius: 14px; background: #11151f; color: #f4f6fa; font-size: 14px; line-height: 1.6; }
.article-body code { font-size: .88em; }
.article-body table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; font-size: 15px; }
.article-body th, .article-body td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: start; white-space: nowrap; }
.article-body .kg-card { margin-top: 2.2em; margin-bottom: 2.2em; }
.article-body .kg-width-wide { width: min(980px, calc(100vw - 40px)); max-width: none; margin-inline-start: 50%; transform: translateX(-50%); }
.kg-gallery-container { display: flex; flex-direction: column; gap: 8px; }
.kg-gallery-row { display: flex; gap: 8px; }
.kg-gallery-image { flex: 1 1 0; min-width: 0; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-container { display: grid; grid-template-columns: minmax(0, 1fr) 180px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; color: var(--text); text-decoration: none !important; }
.kg-bookmark-content { min-width: 0; padding: 22px; }
.kg-bookmark-title { font-weight: 800; line-height: 1.35; }
.kg-bookmark-description { display: -webkit-box; margin-top: 7px; overflow: hidden; color: var(--text2); font-size: 14px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--text3); font-size: 12px; }
.kg-bookmark-icon { width: 18px; height: 18px; border-radius: 3px !important; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; border-radius: 0; object-fit: cover; }
.kg-callout-card { display: flex; gap: 14px; padding: 22px; border-radius: 14px; background: var(--tint); }
.kg-callout-emoji { flex: 0 0 auto; }
.article-end { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 760px; margin: 72px auto 0; padding-top: 32px; border-top: 1px solid var(--line); }
.article-end p { color: var(--text2); font-weight: 650; }

/* Privacy */
.legal { padding: 84px 0 108px; }
.legal article { max-width: 760px; }
.legal h1 { font-size: clamp(42px, 5vw, 62px); }
.legal .date { margin-top: 12px; color: var(--text3); font-size: 14px; font-weight: 650; }
.legal .intro { margin-top: 34px; }
.legal h2 { margin: 34px 0 12px; font-size: 22px; letter-spacing: -0.015em; }
.legal p, .legal li { color: var(--text2); font-size: 16px; line-height: 1.7; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 22px; }
.legal li + li { margin-top: 8px; }

/* Login placeholder */
.login-shell { min-height: calc(100vh - 104px); padding: 108px 0 116px; overflow: hidden; background: var(--grad); color: #fff; }
.login-shell .wrap { position: relative; }
.login-shell h1 { max-width: 13ch; font-size: clamp(46px, 6vw, 76px); }
.login-shell .lede { max-width: 58ch; }
.login-notice { max-width: 620px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.24); }
.login-notice strong { display: block; font-size: 17px; }
.login-notice p { margin-top: 7px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.6; }
.login-shell .text-link { margin-top: 24px; }

/* Footer */
.site-footer { padding: 40px 0; border-top: 1px solid var(--line); background: var(--card); }
.footer-row { display: grid; grid-template-columns: auto 1fr; gap: 24px 48px; align-items: center; }
.footer-row .brand { font-size: 22px; }
.footer-row .brand img { width: 46px; height: 46px; border-radius: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; font-size: 14px; font-weight: 650; }
.footer-links a { color: var(--text2); }
.copyright { grid-column: 1 / -1; color: var(--text3); font-size: 13.5px; font-weight: 600; }

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

@media (max-width: 1080px) {
  .navlinks { display: none; }
  .burger { display: flex; }
  .nav { gap: 12px; overflow: hidden; }
  .nav > .btn { display: none; }
}

@media (max-width: 900px) {
  .hero { padding-top: 16px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; padding-top: 20px; padding-bottom: 48px; }
  .heroshot { justify-content: center; }
  .heroshot .phone { max-width: 396px; }
  .page-hero { padding: 78px 0; }
  .workflow-row { grid-template-columns: 1fr; gap: 8px; }
  .feat { grid-template-columns: 1fr; gap: 42px; padding: 64px 0; }
  .feat.flip .copy { order: 0; }
  .art .phone { width: 374px; max-width: 100%; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-story, .contact { padding: 72px 0 84px; }
  .blog-section-head { grid-template-columns: 1fr; gap: 18px; }
  .post-row { gap: 40px; }
}

@media (max-width: 600px) {
  .wrap { padding-right: 20px; padding-left: 20px; }
  .nav { height: 86px; }
  .brand { gap: 11px; font-size: 22px; }
  .brand img { width: 48px; height: 48px; border-radius: 13px; }
  .hero h1 { font-size: clamp(40px, 12vw, 54px); }
  .heroshot .phone { max-width: 330px; }
  .phone { padding: 8px; border-radius: 44px; }
  .phone .screen { border-radius: 37px; }
  .app-store-badge, .android-badge, .app-store-badge img { height: 50px; }
  .android-badge { min-width: 168px; }
  .roles { padding: 28px 0; }
  .chip { padding: 0 12px; }
  .page-hero { padding: 64px 0; }
  .page-hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .workflow-proof { padding: 62px 0 56px; }
  .workflow-row p { gap: 8px; }
  .chapter-head { padding-top: 62px; }
  .band { padding: 64px 0 22px; }
  .feat { padding: 56px 0; }
  .art .phone { width: 308px; }
  .close { padding: 74px 0; }
  .about-story, .contact, .legal { padding: 60px 0 76px; }
  .login-shell { min-height: calc(100vh - 86px); padding: 72px 0 82px; }
  .about-grid { gap: 36px; }
  .contact form { padding: 22px; }
  .blog-feed { padding: 62px 0 80px; }
  .blog-section-head { margin-bottom: 34px; }
  .blog-status { align-items: flex-start; flex-direction: column; min-height: 0; padding: 22px; }
  .blog-status.is-loading { align-items: center; flex-direction: row; min-height: 112px; padding: 0; }
  .post-row, .post-row.has-media { grid-template-columns: 1fr; gap: 26px; padding: 34px 0; }
  .post-row-copy { order: 2; }
  .post-media { order: 1; }
  .post-row h3 { font-size: 30px; }
  .article-page { padding: 56px 0 80px; }
  .article-back { margin-bottom: 44px; }
  .article-feature { margin-top: 42px; }
  .article-feature img { border-radius: 14px; }
  .article-body { margin-top: 46px; font-size: 17px; line-height: 1.74; }
  .article-body .kg-width-wide { width: 100%; margin-inline-start: 0; transform: none; }
  .kg-gallery-row { flex-direction: column; }
  .kg-bookmark-container { grid-template-columns: 1fr; }
  .kg-bookmark-thumbnail { max-height: 190px; }
  .article-end { align-items: flex-start; flex-direction: column; margin-top: 56px; }
  .footer-row { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; gap: 18px; }
  .copyright { grid-column: auto; }
}
