/* Ark Platform: the portal (/) and admin (/admin). Dark by default; theme.js
   sets data-theme="light" on <html> when the visitor picks light. Tokens first,
   then the pieces both pages share, then each page. Button and field bases sit
   in :where() so any class beats them without a specificity fight. */
@font-face{font-family:Geist;src:url(/fonts/Geist-Variable.woff2) format("woff2");font-weight:100 900;font-display:swap}
@font-face{font-family:"Geist Mono";src:url(/fonts/GeistMono-Variable.woff2) format("woff2");font-weight:100 900;font-display:swap}

:root{
  color-scheme:dark;
  --bg:#121315;--side:#0F1012;--card:#1B1C1F;--raised:#202125;--field:#232428;--track:#2A2B30;--me:#17181B;
  --line:rgba(255,255,255,.06);--line-2:rgba(255,255,255,.1);--line-3:rgba(255,255,255,.14);
  --text:#F3F4F5;--text-2:#D5D7DA;--soft:#A4A7AD;--muted:#9A9DA3;--faint:#83868C;--head:#8A8D93;
  --accent:#3FA9F5;--accent-text:#8CCBFA;--accent-soft:rgba(63,169,245,.14);--accent-line:rgba(63,169,245,.45);
  --ok:#4ACB8A;--ok-soft:rgba(74,203,138,.12);
  --warn:#F2B84B;--warn-bar:#F2B84B;--warn-soft:rgba(242,184,75,.12);
  --crit:#F28A8A;--crit-bar:#F07070;--crit-soft:rgba(240,112,112,.1);--crit-soft-2:rgba(240,112,112,.18);
  --drain:#9FB0CE;--drain-soft:rgba(159,176,206,.12);--reas:#C3A6F5;--reas-soft:rgba(195,166,245,.13);
  --primary:#F3F4F5;--primary-hover:#DCDDE0;--on-primary:#0E0F10;--quiet:#232428;--nav-hover:#1B1C1F;--nav-on:#1F2024;
  --avatar:#2A3A4A;--hatch:rgba(255,255,255,.045);--hatch-soft:rgba(255,255,255,.035);--wordmark:rgba(255,255,255,.05);
  --app-card:linear-gradient(160deg,#1D2835 0%,#1B1C1F 48%);--app-line:rgba(120,180,240,.14);
  --plan-current:linear-gradient(165deg,#1D2835 0%,#202125 60%);
  --glow:rgba(63,169,245,.13);--glass:rgba(27,28,31,.86);--legend:rgba(255,255,255,.025);
  --card-shadow:none;--form-shadow:0 24px 60px rgba(0,0,0,.35);--pop-shadow:0 30px 80px rgba(0,0,0,.5);--toast-shadow:0 14px 40px rgba(0,0,0,.45);
  --backdrop:rgba(7,8,9,.72);
}
:root[data-theme=light]{
  color-scheme:light;
  --bg:#F6F6F7;--side:#FFFFFF;--card:#FFFFFF;--raised:#F8F8F9;--field:#F1F2F4;--track:#E5E6E9;--me:#F4F4F6;
  --line:rgba(0,0,0,.07);--line-2:rgba(0,0,0,.1);--line-3:rgba(0,0,0,.16);
  --text:#131416;--text-2:#2A2C30;--soft:#55585E;--muted:#5C5F65;--faint:#6F7278;--head:#6F7278;
  --accent:#1D8FE1;--accent-text:#1570C0;--accent-soft:rgba(29,143,225,.1);--accent-line:rgba(29,143,225,.4);
  --ok:#147A49;--ok-soft:rgba(27,154,94,.1);
  --warn:#9A6200;--warn-bar:#E0A030;--warn-soft:rgba(201,134,18,.12);
  --crit:#B42318;--crit-bar:#D92D20;--crit-soft:rgba(217,45,32,.08);--crit-soft-2:rgba(217,45,32,.14);
  --drain:#4A5E82;--drain-soft:rgba(74,94,130,.1);--reas:#7446C2;--reas-soft:rgba(116,70,194,.1);
  --primary:#131416;--primary-hover:#2E3035;--on-primary:#FFFFFF;--quiet:#F1F2F4;--nav-hover:#F1F2F4;--nav-on:#EDEEF0;
  --avatar:#DCEBF8;--hatch:rgba(29,143,225,.07);--hatch-soft:rgba(29,143,225,.06);--wordmark:rgba(0,0,0,.05);
  --app-card:linear-gradient(160deg,#E2EFFA 0%,#FFFFFF 52%);--app-line:rgba(29,143,225,.2);
  --plan-current:linear-gradient(165deg,#E2EFFA 0%,#F8F8F9 60%);
  --glow:rgba(29,143,225,.12);--glass:rgba(255,255,255,.9);--legend:rgba(0,0,0,.02);
  --card-shadow:0 1px 2px rgba(20,22,26,.04),0 8px 24px rgba(20,22,26,.04);--form-shadow:0 24px 60px rgba(20,22,26,.08);
  --pop-shadow:0 24px 64px rgba(20,22,26,.18);--toast-shadow:0 14px 40px rgba(20,22,26,.2);
  --backdrop:rgba(20,22,26,.35);
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;min-height:100vh;background:var(--bg);color:var(--text);font:15px/1.5 Geist,"Helvetica Neue",Arial,sans-serif;-webkit-font-smoothing:antialiased;font-synthesis:none}
h1,h2,h3,p,ul,dl,dd{margin:0}
:where(a){color:inherit;text-decoration:none}
svg{flex-shrink:0}
code,.mono{font-family:"Geist Mono",ui-monospace,monospace;font-size:.9em}
[hidden]{display:none!important}
:focus-visible{outline:2px solid var(--accent-text);outline-offset:2px}
.num{font-variant-numeric:tabular-nums}
.muted{color:var(--muted)}
.faint{color:var(--faint)}
.small{font-size:13px;line-height:1.55;color:var(--muted);text-wrap:pretty}
.center{text-align:center}
.grow{flex:1}
.stack{display:flex;flex-direction:column;gap:10px}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}

/* Buttons: a white (dark theme) or black (light theme) pill, then variants. */
:where(button,a.btn){display:inline-flex;align-items:center;justify-content:center;gap:8px;height:40px;padding:0 18px;border:0;border-radius:99px;background:var(--primary);color:var(--on-primary);font-family:inherit;font-size:14px;font-weight:500;line-height:1;letter-spacing:-.01em;white-space:nowrap;cursor:pointer;transition:background-color .15s,color .15s,box-shadow .15s}
:where(button,a.btn):where(:hover:not(:disabled)){background:var(--primary-hover)}
:where(button):disabled{opacity:.5;cursor:wait}
.lg{height:48px;font-size:15px}
.sm{height:34px;padding:0 14px;font-size:13.5px}
.secondary{background:var(--quiet);color:var(--text)}
.secondary:hover:not(:disabled){background:var(--track)}
.outline{background:transparent;color:var(--text);box-shadow:inset 0 0 0 1px var(--line-3)}
.outline:hover:not(:disabled){background:var(--nav-hover)}
.danger{background:var(--crit-soft);color:var(--crit)}
.danger:hover:not(:disabled){background:var(--crit-soft-2)}
.off:disabled{opacity:1;cursor:default;background:var(--quiet);color:var(--head)}
.off.current:disabled{background:var(--accent-soft);color:var(--accent-text)}
.icon-btn{width:32px;height:32px;padding:0;border-radius:10px;background:transparent;color:var(--muted)}
.icon-btn:hover:not(:disabled){background:var(--nav-hover);color:var(--text)}
.close{width:36px;height:36px;padding:0;border-radius:50%;background:var(--quiet);color:var(--soft)}
.close:hover:not(:disabled){background:var(--track);color:var(--text)}
.linkish{height:auto;padding:0;border-radius:0;background:none;color:var(--accent-text);font-size:inherit}
.linkish:hover:not(:disabled){background:none;text-decoration:underline}
:root:not([data-theme=light]) .theme-toggle .moon,:root[data-theme=light] .theme-toggle .sun{display:none}

/* Fields */
.field{display:flex;flex-direction:column;gap:7px;font-size:13px;font-weight:500;color:var(--soft)}
:where(input,select){width:100%;height:46px;padding:0 14px;border:1px solid var(--line);border-radius:14px;background:var(--field);color:var(--text);font-family:inherit;font-size:15px;font-weight:400}
:where(input,select)::placeholder{color:var(--head)}
:where(input,select):focus{outline:none;border-color:var(--accent-line);box-shadow:0 0 0 4px var(--accent-soft)}
/* The native arrow ignores the theme; two gradient triangles draw a chevron in the theme's label colour. */
:where(select){appearance:none;padding-right:40px;cursor:pointer;background-image:linear-gradient(45deg,transparent 50%,var(--soft) 50%),linear-gradient(135deg,var(--soft) 50%,transparent 50%);background-position:calc(100% - 21px) 50%,calc(100% - 16px) 50%;background-size:5px 5px;background-repeat:no-repeat;text-overflow:ellipsis}
input[type=checkbox]{width:18px;height:18px;margin:0;padding:0;accent-color:var(--accent)}
.check{flex-direction:row;align-items:center;gap:10px;height:46px;font-size:14px;color:var(--text-2)}
.pill-field{display:flex;align-items:center;gap:10px;height:52px;padding:0 6px 0 18px;border:1px solid var(--line);border-radius:99px;background:var(--field)}
.pill-field:focus-within{border-color:var(--accent-line);box-shadow:0 0 0 4px var(--accent-soft)}
.pill-field svg{color:var(--head)}
.pill-field input{flex:1;min-width:0;height:auto;padding:0;border:0;background:none;font-size:14.5px}
.pill-field input:focus{box-shadow:none}

/* Pills: state in shape and colour. .dia adds the diamond marker. */
.pill{display:inline-flex;align-items:center;gap:7px;height:24px;padding:0 10px;border-radius:99px;background:var(--line);color:var(--soft);font-size:12.5px;font-weight:500;white-space:nowrap}
.pill.dia::before{content:"";width:7px;height:7px;border-radius:1.5px;transform:rotate(45deg);background:currentColor}
.pill.hollow::before{background:transparent;box-shadow:inset 0 0 0 1.4px currentColor}
.pill.outline{background:transparent;box-shadow:inset 0 0 0 1px var(--line-2)}
.pill.ok{background:var(--ok-soft);color:var(--ok)}
.pill.warn{background:var(--warn-soft);color:var(--warn)}
.pill.crit{background:var(--crit-soft);color:var(--crit)}
.pill.accent{background:var(--accent-soft);color:var(--accent-text)}
.pill.drain{background:var(--drain-soft);color:var(--drain)}
.pill.reas{background:var(--reas-soft);color:var(--reas)}

/* Surfaces */
.card{position:relative;border:1px solid var(--line);border-radius:24px;background:var(--card);box-shadow:var(--card-shadow)}
.hatched{overflow:hidden}
.hatched::before{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;background:repeating-linear-gradient(135deg,var(--hatch) 0 1px,transparent 1px 13px);-webkit-mask-image:radial-gradient(120% 90% at 100% 0,#000 0,transparent 55%);mask-image:radial-gradient(120% 90% at 100% 0,#000 0,transparent 55%)}
.hatched>*{position:relative}

/* Usage bars, cut into segments */
.bar{position:relative;height:8px;border-radius:99px;background:var(--track);overflow:hidden}
.bar>span{position:absolute;left:0;top:0;bottom:0;width:0;border-radius:99px;background:var(--accent);transition:width .35s ease}
.bar::after{content:"";position:absolute;inset:0;background:repeating-linear-gradient(90deg,transparent 0 calc(5% - 3px),var(--card) calc(5% - 3px) 5%)}

/* Tables */
.table-scroll{overflow-x:auto}
table{width:100%;border-collapse:collapse;font-size:14px}
th{padding:0 16px 12px;border-bottom:1px solid var(--line-2);color:var(--head);font-size:12.5px;font-weight:500;text-align:left;white-space:nowrap}
td{height:52px;padding:8px 16px;border-bottom:1px solid var(--line);color:var(--text-2);white-space:nowrap}
tbody tr:last-child td{border-bottom:0}
tbody tr:hover td{background:var(--raised)}
th.num,td.num{text-align:right;font-variant-numeric:tabular-nums}
th.right{text-align:right}
td.muted{color:var(--muted)}
td.faint{color:var(--faint)}
td.strong{color:var(--text);font-weight:500}
td.mono{font-family:"Geist Mono",ui-monospace,monospace;font-size:13px}
td.empty{height:88px;color:var(--faint);text-align:center;white-space:normal}
tr.clickable{cursor:pointer}

/* App shell: sidebar and content */
.shell{display:flex;min-height:100vh}
.side{position:sticky;top:0;width:256px;height:100vh;flex-shrink:0;display:flex;flex-direction:column;gap:6px;padding:20px 14px;border-right:1px solid var(--line);background:var(--side);overflow-y:auto}
.brand-row{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:14px}
.brand{display:flex;align-items:center;gap:10px;height:44px;padding:0 10px;font-size:16px;font-weight:600;letter-spacing:-.01em}
.brand span{margin-left:-4px;color:var(--muted);font-weight:400}
.nav{display:flex;align-items:center;gap:12px;height:40px;padding:0 12px;border-radius:12px;color:var(--soft);font-size:14.5px;font-weight:500}
.nav:hover{background:var(--nav-hover);color:var(--text)}
.nav.on{background:var(--nav-on);color:var(--text)}
.nav .end{margin-left:auto}
.nav .count{margin-left:auto;color:var(--head);font-size:12.5px;font-variant-numeric:tabular-nums}
.nav .pill{margin-left:auto;height:20px;padding:0 8px;font-size:12px}
.group{padding:18px 12px 6px;color:var(--faint);font-size:12px;font-weight:500}
.me{display:flex;align-items:center;gap:10px;margin-top:6px;padding:10px;border-radius:14px;background:var(--me)}
.avatar{width:34px;height:34px;flex-shrink:0;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--avatar);color:var(--accent-text);font-size:14px;font-weight:600}
.me-text{flex:1;min-width:0;display:flex;flex-direction:column}
.me-text b{overflow:hidden;font-size:13.5px;font-weight:500;text-overflow:ellipsis;white-space:nowrap}
.me-text span{color:var(--faint);font-size:12px}
.side-foot{padding:8px 10px 0;color:var(--faint);font-size:11.5px}
.main{flex:1;min-width:0;padding:48px 56px 96px}
.content{max-width:1180px;margin:0 auto;display:flex;flex-direction:column;gap:28px}
.page-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px}
.page-head h1{font-size:34px;line-height:1.15;font-weight:600;letter-spacing:-.025em;text-wrap:balance}
.page-head p{margin-top:8px;color:var(--muted);font-size:14px}

/* Toast */
#message{position:fixed;left:50%;bottom:28px;z-index:10;transform:translateX(-50%);display:flex;align-items:center;gap:10px;width:max-content;max-width:calc(100% - 32px);min-height:44px;padding:10px 18px 10px 12px;border-radius:22px;background:var(--primary);color:var(--on-primary);box-shadow:var(--toast-shadow);font-size:14px;font-weight:500;line-height:1.4;white-space:pre-wrap;cursor:pointer}
#message:empty{display:none}
#message::before{content:"";width:22px;height:22px;flex-shrink:0;border-radius:50%;background:var(--ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E0F10' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center/13px no-repeat}
#message.error::before{background:var(--crit-bar) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 6v8M12 18.5v.5'/%3E%3C/svg%3E") center/14px no-repeat}
#message.info::before{background:var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 10.5v7M12 6v.5'/%3E%3C/svg%3E") center/14px no-repeat}

/* Dialogs */
dialog{width:min(940px,calc(100% - 32px));max-height:calc(100vh - 48px);padding:30px 32px 28px;border:1px solid var(--line-2);border-radius:28px;background:var(--card);color:var(--text);box-shadow:var(--pop-shadow)}
dialog.narrow{width:min(500px,calc(100% - 32px))}
dialog::backdrop{background:var(--backdrop)}
dialog h2{font-size:22px;font-weight:600;letter-spacing:-.02em}
.dialog-head{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;margin-bottom:24px}
.dialog-head p{margin-top:4px;color:var(--muted);font-size:14px}
.dialog-head b{color:var(--text);font-weight:500}
.dialog-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:24px}
.fine{margin-top:24px;color:var(--head);font-size:12.5px;line-height:1.55;text-wrap:pretty}

/* Sign-in page. Clipped rather than hidden, so the landing page's top bar can stick. */
.auth{position:relative;isolation:isolate;min-height:100vh;display:flex;flex-direction:column;overflow:clip}
.auth::before{content:"";position:absolute;inset:0;z-index:-2;background:radial-gradient(900px 480px at 50% -8%,var(--glow),transparent 70%)}
.auth::after{content:"";position:absolute;inset:0;z-index:-2;background:repeating-linear-gradient(135deg,var(--hatch-soft) 0 1px,transparent 1px 16px);-webkit-mask-image:radial-gradient(60% 70% at 100% 100%,#000,transparent 70%),radial-gradient(45% 55% at 0 0,#000,transparent 70%);mask-image:radial-gradient(60% 70% at 100% 100%,#000,transparent 70%),radial-gradient(45% 55% at 0 0,#000,transparent 70%)}
.wordmark{position:absolute;left:50%;bottom:-.27em;z-index:-1;transform:translateX(-50%);color:transparent;font-size:min(560px,50vw);font-weight:600;line-height:1;letter-spacing:-.06em;white-space:nowrap;-webkit-text-stroke:1px var(--wordmark);pointer-events:none;user-select:none}
.topbar{display:flex;align-items:center;justify-content:space-between;gap:16px;height:72px;padding:0 22px}
.topbar-end{display:flex;align-items:center;gap:14px;color:var(--muted);font-size:14px}
.eyebrow{display:inline-flex;align-items:center;gap:9px;height:30px;padding:0 14px;border-radius:99px;background:var(--legend);box-shadow:inset 0 0 0 1px var(--line-2);color:var(--soft);font-size:13px}
.eyebrow::before{content:"";width:7px;height:7px;border-radius:1.5px;transform:rotate(45deg);background:var(--accent)}
.signin{width:min(420px,100%);display:flex;flex-direction:column;gap:18px;padding:28px;border:1px solid var(--line);border-radius:24px;background:var(--glass);box-shadow:var(--form-shadow);scroll-margin-top:96px}
.signin h2{font-size:19px;font-weight:600;letter-spacing:-.015em}
.signin h2+.small{margin-top:4px;text-align:left}
.signin input{height:50px}
.lp-offer{display:flex;align-items:center;gap:10px;padding:11px 14px;border:1px solid var(--accent-line);border-radius:14px;background:var(--accent-soft);color:var(--text-2);font-size:13.5px;line-height:1.45;text-wrap:pretty}
.lp-offer::before{content:"";width:7px;height:7px;flex-shrink:0;border-radius:1.5px;transform:rotate(45deg);background:var(--accent)}
.lp-offer b,.lp-cta b,.lp-faq b{color:var(--text);font-weight:600;font-variant-numeric:tabular-nums}
.signin .stack{padding-top:4px}
.signin .small{text-align:center;text-wrap:balance}
.auth-foot{padding:56px 20px 28px;color:var(--faint);font-size:12px;text-align:center}

/* Landing page: the signed-out view of /. What Ark Bot does, in plain words,
   around the sign-in form. Sections alternate text and a drawing of the app. */
.lp-top{position:sticky;top:0;z-index:5;border-bottom:1px solid var(--line);background:color-mix(in srgb,var(--bg) 82%,transparent);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}
.lp-nav{display:flex;gap:2px}
.lp-nav a{display:inline-flex;align-items:center;height:36px;padding:0 12px;border-radius:10px;color:var(--soft);font-size:14px;font-weight:500}
.lp-nav a:hover{background:var(--nav-hover);color:var(--text)}
/* Each text comes in both languages (lang.js); only the chosen one shows. */
:root[lang=id] .auth [lang=en],:root[lang=en] .auth [lang=id]{display:none!important}
.lang-toggle{display:inline-flex;padding:3px;border-radius:99px;box-shadow:inset 0 0 0 1px var(--line-2)}
.lang-toggle button{height:26px;padding:0 10px;background:transparent;color:var(--muted);font-size:12px;font-weight:600;letter-spacing:.04em}
.lang-toggle button:hover:not(:disabled){background:var(--nav-hover);color:var(--text)}
.lang-toggle button[aria-pressed=true]{background:var(--quiet);color:var(--text)}
.lp{width:100%;max-width:1180px;margin:0 auto;padding:0 28px;display:flex;flex-direction:column;gap:112px}
.lp section[id]{scroll-margin-top:96px}
.lp-hero{display:grid;grid-template-columns:minmax(0,1fr) 420px;gap:64px;align-items:center;padding-top:72px}
.lp-intro{display:flex;flex-direction:column;align-items:flex-start;gap:22px}
.lp-intro h1{font-size:clamp(40px,5.4vw,64px);line-height:1.03;font-weight:600;letter-spacing:-.045em;text-wrap:balance}
.lp-lede{max-width:58ch;color:var(--soft);font-size:18px;line-height:1.6;text-wrap:pretty}
.lp-try{width:100%;max-width:580px;display:flex;flex-direction:column;gap:10px;padding-top:6px}
.lp-try h2{color:var(--faint);font-size:12.5px;font-weight:500;letter-spacing:.05em;text-transform:uppercase}
.lp-try ul{display:flex;flex-direction:column;gap:8px;padding:0;list-style:none}
.lp-try li{padding:10px 14px 10px 16px;border-left:2px solid var(--accent-line);border-radius:0 12px 12px 0;background:var(--legend);color:var(--text-2);font-size:14.5px;text-wrap:pretty}
.lp-band{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-top:1px solid var(--line-3);border-bottom:1px solid var(--line)}
.lp-band div{display:flex;flex-direction:column;gap:8px;padding:22px 28px 26px 0}
.lp-band div+div{padding-left:28px;border-left:1px solid var(--line)}
.lp-k{color:var(--accent-text);font-family:"Geist Mono",ui-monospace,monospace;font-size:12px;letter-spacing:.06em;text-transform:uppercase}
.lp-band b{font-size:20px;line-height:1.25;font-weight:600;letter-spacing:-.02em}
.lp-band div>span:last-child{color:var(--muted);font-size:14.5px;line-height:1.55;text-wrap:pretty}
.lp-section{display:flex;flex-direction:column;gap:56px}
.lp-head{display:flex;flex-direction:column;gap:12px;max-width:640px}
.lp-head h2{font-size:clamp(30px,3.6vw,40px);line-height:1.1;font-weight:600;letter-spacing:-.03em;text-wrap:balance}
.lp-head p{color:var(--muted);font-size:16px;line-height:1.55;text-wrap:pretty}
.lp-flow{display:flex;flex-direction:column;gap:96px}
.lp-step{display:grid;grid-template-columns:minmax(0,1fr) 468px;gap:64px;align-items:center}
.lp-step:nth-child(even){grid-template-columns:468px minmax(0,1fr)}
.lp-step:nth-child(even) .lp-stage{order:-1}
.lp-text{display:flex;flex-direction:column;gap:16px;max-width:54ch}
.lp-no{display:flex;align-items:center;gap:10px;color:var(--accent-text);font-size:14px;font-weight:500}
.lp-no>span:first-child{width:30px;height:30px;display:grid;place-items:center;border-radius:50%;box-shadow:inset 0 0 0 1.5px var(--accent-line);font-variant-numeric:tabular-nums}
.lp-text h3{font-size:28px;line-height:1.15;font-weight:600;letter-spacing:-.025em;text-wrap:balance}
.lp-text p{color:var(--text-2);font-size:15.5px;line-height:1.65;text-wrap:pretty}
.lp-notes{display:flex;flex-direction:column;gap:10px;padding:4px 0 0;list-style:none;color:var(--muted);font-size:14.5px;line-height:1.55}
.lp-notes li{position:relative;padding-left:20px;text-wrap:pretty}
.lp-notes li::before{content:"";position:absolute;left:1px;top:.58em;width:6px;height:6px;border-radius:1.5px;transform:rotate(45deg);background:var(--accent)}
.lp-notes strong{color:var(--text);font-weight:500}
.lp-stage{position:relative;display:flex;flex-direction:column;gap:12px;padding:22px;border:1px solid var(--line);border-radius:24px;background:var(--card);box-shadow:var(--card-shadow)}
.lp-cap{color:var(--faint);font-size:12px;line-height:1.5}
.lp-uses{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.lp-use{display:flex;flex-direction:column;gap:12px;padding:22px 22px 20px;border-radius:20px}
.lp-use .ic{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:var(--accent-soft);color:var(--accent-text)}
.lp-use h3{font-size:16px;font-weight:600;letter-spacing:-.01em}
.lp-use q{color:var(--text-2);font-size:14px;line-height:1.55;text-wrap:pretty}
.lp-use p{min-height:52px;margin-top:auto;padding-top:12px;border-top:1px solid var(--line);color:var(--muted);font-size:13px;line-height:1.5}
.lp-split{display:grid;grid-template-columns:320px minmax(0,1fr);gap:56px;align-items:start}
.lp-faq{border-top:1px solid var(--line-3)}
.lp-faq details{border-bottom:1px solid var(--line)}
.lp-faq summary{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:20px 4px 20px 0;font-size:17px;font-weight:500;letter-spacing:-.01em;cursor:pointer;list-style:none}
.lp-faq summary::-webkit-details-marker{display:none}
.lp-faq summary::after{content:"";width:9px;height:9px;flex-shrink:0;border-right:1.6px solid var(--muted);border-bottom:1.6px solid var(--muted);transform:translateY(-3px) rotate(45deg);transition:transform .2s}
.lp-faq details[open] summary::after{transform:translateY(2px) rotate(225deg)}
.lp-faq summary:hover{color:var(--accent-text)}
.lp-faq p{max-width:68ch;padding:0 40px 22px 0;color:var(--muted);font-size:15px;line-height:1.65;text-wrap:pretty}
.lp-cta{display:flex;flex-direction:column;align-items:center;gap:16px;padding:64px 28px;border-color:var(--app-line);border-radius:28px;background:var(--app-card);text-align:center}
.lp-cta h2{font-size:clamp(30px,4vw,44px);line-height:1.1;font-weight:600;letter-spacing:-.035em;text-wrap:balance}
.lp-cta p{max-width:52ch;color:var(--muted);font-size:16px;line-height:1.55;text-wrap:pretty}
.lp-cta-row{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;padding-top:8px}

/* The landing page's drawings of the Ark Bot app, in the app's own colours
   (ark-bot packages/web/src/styles/tokens.css); they follow the page's theme. */
.mock{--m-bg:#17181b;--m-chrome:#121315;--m-panel:#1f2125;--m-panel-2:#272a2f;--m-line:rgba(255,255,255,.07);--m-line-2:rgba(255,255,255,.12);--m-text:#eef0f2;--m-text-2:rgba(238,240,242,.72);--m-muted:rgba(238,240,242,.52);--m-accent:#5cc8e4;--m-accent-dim:rgba(92,200,228,.13);--m-on-accent:#06171c;--m-warn:#f1b467;--m-warn-text:#f1b467;--m-warn-soft:rgba(241,180,103,.1);--m-warn-line:rgba(241,180,103,.32);--m-ok:#5cc98f;--m-ok-soft:rgba(92,201,143,.12);--m-user:#223a43;--m-agent:#222428;--m-bubble-line:transparent;--m-shadow:0 16px 40px rgba(0,0,0,.35);
  overflow:hidden;border:1px solid var(--m-line-2);border-radius:14px;background:var(--m-bg);color:var(--m-text);font-size:13.5px;line-height:1.45;box-shadow:var(--m-shadow);user-select:none}
:root[data-theme=light] .mock{--m-bg:#f7f6f3;--m-chrome:#f1f0ec;--m-panel:#fff;--m-panel-2:#eeede8;--m-line:rgba(20,20,22,.08);--m-line-2:rgba(20,20,22,.14);--m-text:#17181a;--m-text-2:rgba(23,24,26,.72);--m-muted:rgba(23,24,26,.56);--m-accent:#1d98b6;--m-accent-dim:rgba(29,152,182,.12);--m-on-accent:#fff;--m-warn:#eba43f;--m-warn-text:#a8650c;--m-warn-soft:rgba(235,164,63,.12);--m-warn-line:rgba(235,164,63,.5);--m-ok:#2f9e62;--m-ok-soft:rgba(47,158,98,.1);--m-user:#d9ebef;--m-agent:#fff;--m-bubble-line:rgba(20,20,22,.08);--m-shadow:0 16px 40px rgba(20,20,22,.1)}
.mock p{margin:0}
.m-head{display:flex;align-items:center;gap:10px;min-height:54px;padding:10px 12px 10px 14px;border-bottom:1px solid var(--m-line);background:var(--m-chrome)}
.m-title{flex:1;min-width:0;display:flex;flex-direction:column;font-size:13.5px;font-weight:600}
.m-title small{color:var(--m-muted);font-size:12px;font-weight:400}
.m-icon{width:30px;height:30px;display:grid;place-items:center;border-radius:8px;color:var(--m-muted);font-size:17px}
.m-body{display:flex;flex-direction:column;gap:12px;padding:12px}
.m-search{display:flex;align-items:center;height:34px;padding:0 12px;border-radius:10px;background:var(--m-panel);color:var(--m-muted);font-size:13px}
.m-face{position:relative;width:40px;height:40px;flex-shrink:0;display:grid;place-items:center;border-radius:50%;color:#101214;font-size:15px;font-weight:700}
.m-face.m-sm{width:30px;height:30px;font-size:12.5px}
.m-face.xs{position:absolute;width:22px;height:22px;font-size:10px;box-shadow:0 0 0 2px var(--m-bg)}
.m-face.sq{border-radius:12px}
.f1{background:#a9bccf}.f2{background:#5cc8e4}.f3{background:#e3b36f}.f4{background:#b9a3ef}.f5{background:#8fd0a6}
.m-dot{position:absolute;right:-1px;bottom:-1px;width:11px;height:11px;border-radius:50%;box-shadow:0 0 0 2.5px var(--m-bg)}
.m-dot.work{background:var(--m-accent)}
.m-dot.wait{background:var(--m-warn)}
.m-roster{display:flex;flex-direction:column;gap:2px;margin:0;padding:0 6px 8px;list-style:none}
.m-roster li{display:flex;align-items:center;gap:12px;padding:9px 10px;border-radius:12px}
.m-roster li.sel{background:var(--m-panel-2)}
.m-group{position:relative;width:40px;height:40px;flex-shrink:0}
.m-group .m-face:nth-child(1){left:-1px;top:0}.m-group .m-face:nth-child(2){right:-1px;top:0}.m-group .m-face:nth-child(3){left:9px;bottom:-1px}
.m-rtext{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}
.m-rtext small{color:var(--m-muted);font-size:12px}
.m-rtop{display:flex;align-items:center;gap:8px}
.m-rtop b{overflow:hidden;font-size:13.5px;font-weight:600;text-overflow:ellipsis;white-space:nowrap}
.m-time{margin-left:auto;color:var(--m-muted);font-size:11.5px;white-space:nowrap}
.m-tag{padding:1px 10px;background:var(--m-accent-dim);color:var(--m-accent);font-size:10.5px;font-weight:600;letter-spacing:.02em;white-space:nowrap;clip-path:polygon(5px 0,100% 0,calc(100% - 5px) 100%,0 100%)}
.m-rline{overflow:hidden;color:var(--m-muted);font-size:12.5px;text-overflow:ellipsis;white-space:nowrap}
.m-rline.wait{color:var(--m-warn-text)}
.m-chat{display:flex;flex-direction:column;gap:5px;padding:16px 14px 18px}
.m-b{align-self:flex-start;max-width:86%;padding:8px 13px;border-radius:18px 18px 18px 6px;background:var(--m-agent);box-shadow:inset 0 0 0 1px var(--m-bubble-line);text-wrap:pretty}
.m-b.m-me{align-self:flex-end;border-radius:18px 18px 6px 18px;background:var(--m-user)}
.m-b:not(.m-me)+.m-b.m-me,.m-b.m-me+.m-b:not(.m-me){margin-top:8px}
.m-stamp{align-self:center;margin:2px 0 6px;color:var(--m-muted);font-size:11.5px}
.m-stamp.m-pill{margin:8px 0;padding:3px 10px;border:1px solid var(--m-line);border-radius:99px;background:var(--m-panel)}
.m-status{display:flex;align-items:center;gap:8px;margin-top:8px;color:var(--m-muted);font-size:12px}
.m-typing{display:inline-flex;gap:3px;padding:10px 12px;border-radius:14px;background:var(--m-agent);box-shadow:inset 0 0 0 1px var(--m-bubble-line)}
.m-typing i{width:5px;height:5px;border-radius:50%;background:var(--m-muted);animation:m-typing 1.2s infinite}
.m-typing i:nth-child(2){animation-delay:.15s}.m-typing i:nth-child(3){animation-delay:.3s}
@keyframes m-typing{0%,60%,100%{opacity:.35;transform:none}30%{opacity:1;transform:translateY(-2px)}}
.m-composer{display:flex;align-items:center;gap:8px;margin:0 12px 12px;padding:6px 6px 6px 14px;border:1px solid var(--m-line-2);border-radius:14px;background:var(--m-panel);color:var(--m-muted);font-size:13px}
.m-send{width:28px;height:28px;margin-left:auto;display:grid;place-items:center;border-radius:50%;background:var(--m-accent);color:var(--m-on-accent)}
.m-attach{display:flex;align-items:center;gap:6px;margin-bottom:6px;padding:6px 9px;border-radius:10px;background:var(--m-chrome);color:var(--m-text-2);font-size:12px}
.m-file{display:flex;align-items:center;gap:10px;padding:9px 13px 9px 9px}
.m-file b{display:block;font-size:13px;font-weight:600}
.m-file small{color:var(--m-muted);font-size:11.5px}
.m-fileicon{width:32px;height:38px;display:grid;place-items:center;border-radius:6px;background:#2f9e62;color:#fff;font-size:9.5px;font-weight:700;letter-spacing:.04em}
.m-card{align-self:stretch;display:flex;flex-direction:column;gap:8px;margin-top:8px;padding:12px 14px;border:1px solid var(--m-warn-line);border-radius:14px;background:var(--m-warn-soft)}
.m-card-top{display:flex;justify-content:space-between;align-items:center;gap:8px}
.m-card-k{color:var(--m-warn-text);font-size:11px;font-weight:700;letter-spacing:.05em;text-transform:uppercase}
.m-card b{font-size:14px;font-weight:600}
.m-quote{padding:8px 10px;border:1px solid var(--m-line);border-radius:10px;background:var(--m-panel);color:var(--m-text-2);font-size:13px}
.m-why{color:var(--m-muted);font-size:12.5px}
.m-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:2px}
.m-btn{display:inline-flex;align-items:center;height:30px;padding:0 12px;border:1px solid var(--m-line-2);border-radius:9px;background:var(--m-panel-2);color:var(--m-text);font-size:12.5px;font-weight:500;white-space:nowrap}
.m-btn.primary{border-color:var(--m-accent);background:var(--m-accent);color:var(--m-on-accent);font-weight:600}
.m-btn.quiet{border-color:transparent;background:none;color:var(--m-muted)}
.m-rules{display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:14px}
.m-rules div{display:flex;flex-direction:column;gap:6px}
.m-rules h4{margin:0 0 2px;color:var(--m-muted);font-size:11.5px;font-weight:600;letter-spacing:.04em;text-transform:uppercase}
.m-rule{padding:7px 10px;border:1px solid var(--m-line);border-radius:10px;background:var(--m-panel);font-size:12.5px}
.m-apps{display:flex;flex-direction:column;margin:0;padding:0;overflow:hidden;border:1px solid var(--m-line);border-radius:12px;background:var(--m-panel);list-style:none}
.m-apps li{display:flex;align-items:center;gap:12px;padding:10px 12px}
.m-apps li+li{border-top:1px solid var(--m-line)}
.m-apps b{font-size:13.5px;font-weight:600}
.m-logo{width:32px;height:32px;flex-shrink:0;display:grid;place-items:center;border-radius:9px;color:#fff;font-size:13px;font-weight:700}
.m-badge{padding:2px 9px;border-radius:99px;background:var(--m-ok-soft);color:var(--m-ok);font-size:11.5px;font-weight:500;white-space:nowrap}

/* Portal: account overview */
.ident{display:flex;flex-wrap:wrap;align-items:center;gap:8px}
.ident .icon-btn{width:28px;height:28px}
.overview{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:20px}
.credits,.app{display:flex;flex-direction:column;gap:24px;padding:26px 28px 28px}
.card-head{display:flex;justify-content:space-between;align-items:center;gap:12px}
.card-head h2{color:var(--soft);font-size:15px;font-weight:500}
.big{display:flex;flex-wrap:wrap;align-items:baseline;gap:10px}
.big .num{font-size:60px;line-height:1;font-weight:300;letter-spacing:-.035em}
.big .unit{color:var(--muted);font-size:16px}
.rate{margin-top:4px;color:var(--faint);font-size:13px}
.meters{display:flex;flex-direction:column;gap:18px}
.meter{display:flex;flex-direction:column;gap:8px}
.meter-head{display:flex;justify-content:space-between;align-items:center;gap:12px;font-size:14px}
.meter-head>span:first-child{display:flex;align-items:center;gap:8px}
.meter-head .pill{height:22px;padding:0 9px;font-size:12px}
.meter .used{color:var(--text)}
.meter.warn .used{color:var(--warn)}
.meter.over .used{color:var(--crit)}
.meter.warn .bar>span{background:var(--warn-bar)}
.meter.over .bar>span{background:var(--crit-bar)}
.meter-sub{color:var(--faint);font-size:12.5px}
.app{gap:22px;background:var(--app-card);border-color:var(--app-line)}
.app-top{display:flex;justify-content:space-between;align-items:flex-start;gap:12px}
.app-id{display:flex;align-items:center;gap:14px}
.app-id b{display:block;font-size:20px;font-weight:600;letter-spacing:-.015em}
.app-id .muted{font-size:14px}
.app-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;border-radius:16px;background:linear-gradient(145deg,#3FA9F5,#2466B8);box-shadow:0 8px 24px rgba(63,169,245,.25)}
.kv{display:grid;grid-template-columns:132px minmax(0,1fr);gap:12px;font-size:14px}
.kv dt{color:var(--muted)}
.usage{padding:24px 12px 12px;scroll-margin-top:24px}
.section-head{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;padding:0 16px 18px}
.section-head h2{font-size:18px;font-weight:600;letter-spacing:-.015em}
.section-head .small{max-width:720px;margin-top:6px}
.more{display:flex;justify-content:center;padding:14px 0 6px}
.more:has(>[hidden]){display:none}

/* Portal: plan picker and purchase confirmation */
.plans{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
.plan{position:relative;display:flex;flex-direction:column;gap:18px;padding:24px;border:1px solid var(--line);border-radius:20px;background:var(--raised)}
.plan.current{border-color:var(--accent-line);background:var(--plan-current);box-shadow:0 0 0 3px var(--accent-soft)}
.plan-top{display:flex;flex-direction:column;gap:14px}
.plan-name{display:flex;justify-content:space-between;align-items:center;gap:8px}
.plan-name h3{font-size:16px;font-weight:600}
.price{display:flex;align-items:baseline;gap:8px}
.price b{font-size:40px;line-height:1;font-weight:300;letter-spacing:-.035em}
.price span,.plan-term{color:var(--muted);font-size:13.5px}
.plan hr{height:1px;margin:0;border:0;background:var(--line)}
.feat{display:flex;flex-direction:column;gap:10px;padding:0;list-style:none;color:var(--text-2);font-size:14px}
.feat li{display:flex;align-items:center;gap:10px}
.feat li::before{content:"";width:16px;height:16px;flex-shrink:0;background:var(--accent);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center/contain no-repeat}
.plan-foot{display:flex;flex-direction:column;gap:8px}
.plan-foot button{width:100%;height:44px}
.plan-foot .linkish{width:auto;height:auto}
.plan-note{color:var(--muted);font-size:12.5px;text-align:center;text-wrap:balance}
#confirm-dialog h2{margin-bottom:14px}
#confirm-body{display:flex;flex-direction:column;gap:8px}
.confirm-total{margin-top:8px;font-size:15px}
.confirm-total b{font-weight:600;font-variant-numeric:tabular-nums}
.confirm-error{margin-top:16px;padding:12px 14px;border-radius:14px;background:var(--crit-soft);color:var(--crit);font-size:13.5px}

/* Admin */
.gate{min-height:100vh;display:flex;flex-direction:column}
.gate-main{flex:1;display:flex;align-items:center;justify-content:center;padding:24px}
.gate-card{width:min(440px,100%);display:flex;flex-direction:column;align-items:flex-start;gap:14px;padding:32px}
.gate-card h1{font-size:28px;font-weight:600;letter-spacing:-.025em}
.panel{display:flex;flex-direction:column;gap:22px}
.stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.stat{display:flex;flex-direction:column;align-items:flex-start;gap:10px;padding:20px 22px;border-radius:20px}
.stat b{font-size:34px;line-height:1;font-weight:400;letter-spacing:-.03em;font-variant-numeric:tabular-nums}
.stat b .of{color:var(--head);font-size:20px}
.stat-label{display:flex;align-items:center;height:24px;color:var(--muted);font-size:13px;font-weight:500}
.legend{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px;padding:18px 22px;border:1px dashed var(--line-2);border-radius:20px;background:var(--legend)}
.legend p{color:var(--muted);font-size:13px;line-height:1.55;text-wrap:pretty}
.legend b{display:block;margin-bottom:3px;color:var(--text-2);font-weight:500}
.legend b.drain{color:var(--drain)}
.legend b.reas{color:var(--reas)}
.legend b.crit{color:var(--crit)}
.table-card{padding:18px 10px 6px}
.table-card .more{padding-bottom:12px}
#machines td{height:66px}
.status{display:flex;flex-direction:column;align-items:flex-start;gap:5px}
.status .pills{display:flex;gap:6px}
.age{color:var(--head);font-size:12.5px}
.status .name{color:var(--text);font-weight:500}
.slots{display:flex;align-items:center;gap:12px}
.segs{display:flex;gap:3px}
.segs i{width:12px;height:8px;border-radius:3px;background:var(--track)}
.segs i.f{background:var(--accent)}
.segs.wide{width:96px;height:8px;border-radius:99px;background:var(--track);overflow:hidden}
.segs.wide i{height:100%;border-radius:0}
tr.offline td{color:var(--muted)}
tr.offline .segs i.f{background:var(--faint)}
td.moving{color:var(--reas)}
.cell-note{max-width:260px;margin-top:4px;color:var(--warn);font-size:12px;white-space:normal}
.acts{display:flex;justify-content:flex-end;gap:8px}
/* The accounts page's selection: a tick column, and the bar that acts on what is ticked. */
th.pick,td.pick{width:1%;padding-right:0}
tr.picked td{background:var(--accent-soft)}
.batch{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px 16px;margin:-4px 6px 14px;padding:10px 10px 10px 16px;border-radius:14px;background:var(--accent-soft);color:var(--text-2);font-size:14px}
.batch-count b{color:var(--text);font-variant-numeric:tabular-nums}
.batch .acts{flex-wrap:wrap;align-items:center}
.form-card{display:flex;flex-direction:column;gap:18px;padding:22px 24px 24px}
.form-card h2{font-size:16px;font-weight:600}
.form-card h2+.small{margin-top:-12px}
.plan-form{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:14px 16px;align-items:end}
.plan-form button{grid-column:1/-1;justify-self:start}
.row-form{display:flex;flex-wrap:wrap;align-items:flex-end;gap:12px}
.row-form .field{flex:1;min-width:200px;max-width:320px}
.search-form{max-width:640px}
#new-voucher{padding:12px 16px;border-radius:14px;background:var(--accent-soft);color:var(--accent-text);font-family:"Geist Mono",ui-monospace,monospace;font-size:14px;overflow-wrap:anywhere}
#new-voucher:empty{display:none}
.acts input{width:110px;height:34px;padding:0 10px;border-radius:10px;font-size:14px}
.ask-text{margin-top:10px;font-size:14px;white-space:pre-line}

/* Narrow screens: the sidebar becomes a top bar */
@media (max-width:1040px){
  .overview{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lp-hero{grid-template-columns:minmax(0,1fr) 380px;gap:40px}
  .lp-step,.lp-step:nth-child(even){grid-template-columns:minmax(0,1fr) minmax(0,420px);gap:40px}
  .lp-step:nth-child(even) .lp-stage{order:0}
  .lp-uses{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:860px){
  .shell{flex-direction:column}
  .side{position:static;width:auto;height:auto;flex-direction:row;flex-wrap:wrap;align-items:center;padding:12px 14px;border-right:0;border-bottom:1px solid var(--line)}
  .brand-row{width:100%;margin-bottom:4px}
  .group,.spacer,.side-foot{display:none}
  .nav{height:36px;font-size:14px}
  .me{width:100%}
  .main{padding:28px 18px 96px}
  .page-head{flex-direction:column;align-items:flex-start;gap:14px}
  .page-head h1{font-size:28px}
  .credits,.app{padding:22px}
  .big .num{font-size:48px}
  .kv{grid-template-columns:120px minmax(0,1fr)}
  .section-head{flex-direction:column;gap:12px}
  dialog{padding:24px 20px}
  .topbar{padding:0 16px}
  .lp-nav{display:none}
  .lp{padding:0 18px;gap:80px}
  .lp-hero{grid-template-columns:minmax(0,1fr);gap:36px;padding-top:36px}
  .signin{width:100%;padding:22px}
  .lp-band{grid-template-columns:minmax(0,1fr)}
  .lp-band div,.lp-band div+div{padding:18px 0 20px;border-left:0}
  .lp-band div+div{border-top:1px solid var(--line)}
  .lp-section{gap:40px}
  .lp-flow{gap:64px}
  .lp-step,.lp-step:nth-child(even){grid-template-columns:minmax(0,1fr);gap:24px}
  .lp-stage{padding:12px;border-radius:20px}
  .lp-text h3{font-size:24px}
  .lp-split{grid-template-columns:minmax(0,1fr);gap:20px}
  .lp-faq p{padding-right:0}
  .lp-cta{padding:44px 20px}
}
@media (max-width:560px){
  /* Room in the landing page's top bar for the language switch on a phone. */
  .lp-top .brand span{display:none}
  .lp-top .topbar-end{gap:8px}
  .lp-uses{grid-template-columns:minmax(0,1fr)}
  .lp-lede{font-size:16.5px}
  .m-rules{grid-template-columns:minmax(0,1fr)}
}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important;animation:none!important}}
