/* ===== SkyOS PWA — design system ===== */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  /* Brand palette — the SkyOS style guide, verbatim. */
  --white: #FFFFFF;        /* White         */
  --cloud-white: #F4F9FC;  /* Cloud White   */
  --soft-sky: #E5F2FF;     /* Soft sky      */
  --accent: #0A66C2;       /* Sky Blue      */
  --deep-sky: #053666;     /* Deep Sky      */
  --ink: #0E1E2C;          /* Midnight navy */
  --ink-2: #556B82;        /* Blue Gray     */

  --accent-soft: #3E8EDE;
  --accent-wash: var(--soft-sky);
  --ink-3: #8A9BAD;
  --bg-top: var(--cloud-white);
  --bg-bottom: var(--white);
  --surface: var(--white);
  --separator: #E2EAF2;
  --shadow: rgba(14, 30, 44, 0.12);
  --shadow-strong: rgba(14, 30, 44, 0.22);

  /* 10px corner radius everywhere; no strokes. */
  --r: 10px;

  /* Frame-accurate margins (402x874 reference). Top bar sits at y=67. */
  --top-margin: max(67px, calc(env(safe-area-inset-top) + 8px));
  --bottom-margin: max(25px, calc(env(safe-area-inset-bottom) + 12px));

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #dbe4ec;
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

/* Phone shell — full-bleed on mobile, a centered device on desktop */
#app {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  height: 100dvh;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}
@media (min-width: 480px) {
  body { display: flex; align-items: center; justify-content: center; }
  #app {
    height: min(920px, 96dvh);
    border-radius: 42px;
    box-shadow: 0 30px 80px rgba(14, 30, 44, 0.30);
    border: 10px solid #0f1720;
    overflow: hidden;
  }
}

/* ===== Screens & transitions ===== */
.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: var(--top-margin) 0 var(--bottom-margin);
  animation: fade 0.35s ease;
}
/* Onboarding question screens sit lower — their progress pill is at y=97. */
.screen.onboard { padding-top: max(97px, calc(env(safe-area-inset-top) + 38px)); }
.screen.glow::before {
  content: '';
  position: absolute;
  left: 50%; top: 60%;
  width: 460px; height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(62, 142, 222, 0.12), transparent 62%);
  pointer-events: none;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeout { from { opacity: 1; } to { opacity: 0; } }

/* A re-render that stays on the same screen must not replay the fade — that is
   what made every button press look like a whole new screen. */
.screen.no-anim,
.drawer.no-anim, .popover.no-anim, .proj-menu.no-anim, .scrim.no-anim { animation: none; }

.pad { padding-left: 16px; padding-right: 16px; }
.spacer { flex: 1; }
.col { display: flex; flex-direction: column; }
.center { align-items: center; text-align: center; }

/* ===== Typography ===== */
.hero { font-family: var(--serif); font-weight: 600; font-size: 44px; line-height: 1.08; color: var(--ink); text-align: center; }
.title { font-family: var(--serif); font-weight: 600; font-size: 34px; line-height: 1.12; color: var(--ink); text-align: center; }
.title-lg { font-size: 40px; }
.subtitle { font-size: 16px; font-weight: 500; color: var(--ink-2); text-align: center; line-height: 1.5; }

/* ===== Buttons ===== */
.btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 56px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff; font-size: 20px; font-weight: 600;
  box-shadow: 0 4px 8px rgba(10, 102, 194, 0.25);
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn:active { transform: scale(0.98); opacity: 0.92; }
.btn[disabled] { opacity: 0.5; box-shadow: none; }

/* Continue with trailing arrow (node 1341:3337). */
.btn-arrow { position: relative; }
.btn-arrow .arw { position: absolute; right: 21px; top: 50%; transform: translateY(-50%); display: flex; color: #fff; }

/* "Tell us about yourself" — free text that seeds the global notes. */
.about-field {
  width: 100%; height: 170px; resize: none;
  padding: 16px; border: none; outline: none;
  background: var(--surface); border-radius: var(--r);
  box-shadow: 0 0 4px var(--shadow);
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  line-height: 1.45; color: var(--ink);
}
.about-field::placeholder { color: var(--ink-2); font-weight: 300; }
.about-field:focus { box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.35); }

.textbtn { color: var(--ink-2); font-size: 16px; font-weight: 500; padding: 8px; align-self: center; }
.textbtn.skip { font-family: var(--sans); font-size: 20px; font-weight: 300; color: var(--ink-2); }
.textbtn.underline { text-decoration: underline; }

/* ===== Fields ===== */
.field {
  display: flex; align-items: center; gap: 12px;
  height: 52px; padding: 0 16px;
  background: var(--surface);
  border: none;
  border-radius: var(--r);
  box-shadow: 0 0 4px var(--shadow);
}
.field:focus-within { box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.35); }
.field .ico { color: var(--ink-2); display: flex; }
.field input {
  flex: 1; border: none; outline: none; background: none;
  font-size: 16px; color: var(--ink); min-width: 0;
}
.field input::placeholder { color: var(--ink-3); }
.field .eye { color: var(--ink-2); display: flex; }

/* ===== Card / pill / dots ===== */
.card {
  background: var(--surface);
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 4px var(--shadow);
}
.pill {
  height: 34px; padding: 0 20px; border-radius: 999px;
  background: var(--accent-wash); color: var(--accent);
  font-size: 15px; font-weight: 600;
  transition: transform 0.12s ease;
}
.pill:active { transform: scale(0.95); }
.pill.filled { background: var(--accent); color: #fff; }

.dots { display: flex; gap: 8px; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(10, 102, 194, 0.25); transition: width 0.3s ease, background 0.3s ease; }
.dot.active { width: 20px; background: var(--accent); }

.progress { width: 180px; height: 8px; border-radius: 999px; background: rgba(10, 102, 194, 0.15); overflow: hidden; }
.progress > i { display: block; height: 100%; border-radius: 999px; background: var(--accent); transition: width 0.5s ease; }
.progress.wide { width: 240px; height: 6px; }

/* ===== Circle icon button ===== */
.circle-btn {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--surface); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 0 6px var(--shadow);
  transition: transform 0.12s ease;
}
.circle-btn:active { transform: scale(0.92); }

/* ===== Mascot ===== */
.mascot { display: block; }
.mascot .halo { }

/* ===== Login sheet ===== */
.sheet {
  margin-top: auto;
  background: var(--bg-top);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -6px 24px var(--shadow);
  padding: 24px 24px calc(env(safe-area-inset-bottom) + 28px);
  display: flex; flex-direction: column; gap: 16px;
}
.divider-row { display: flex; align-items: center; gap: 12px; }
.divider-row .ln { flex: 1; height: 1px; background: var(--separator); }
.divider-row span { font-size: 13px; color: var(--ink-2); }
.social-row { display: flex; justify-content: center; gap: 48px; }
.social { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.social .disc {
  width: 56px; height: 56px; border-radius: 999px; background: #fff;
  border: none; box-shadow: 0 0 6px var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.social span { font-size: 15px; color: var(--ink-2); }

/* ===== Phone illustration (onboarding) ===== */
.phone-illu { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
.phone-frame { width: 170px; height: 300px; border: 5px solid #141C26; border-radius: 42px; position: relative; box-shadow: 0 12px 24px rgba(14,30,44,0.12); }
.phone-frame::before { content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 54px; height: 16px; border-radius: 999px; background: #141C26; }
.phone-disc { position: absolute; width: 214px; height: 214px; border-radius: 999px; background: #DCEBF9; box-shadow: 0 8px 24px rgba(62,142,222,0.18); }
.phone-disc::after { content: ''; position: absolute; inset: 0; border-radius: 999px; background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.5), transparent 55%); }

/* ===== Integration rows ===== */
.src-row { display: flex; align-items: center; gap: 14px; padding: 12px; }
.src-row .txt { flex: 1; }
.src-name { font-size: 15px; font-weight: 400; color: var(--ink); }
.src-sub { font-size: 12px; color: var(--ink-2); }
.row-div { height: 1px; background: var(--separator); margin-left: 60px; }

/* ===== Paywall ===== */
.feat-head, .feat-row { display: flex; align-items: center; }
.feat-head { color: var(--ink-2); font-weight: 500; }
.feat-col { width: 50px; text-align: center; }
.feat-col.pro { color: var(--accent); font-weight: 600; width: 44px; }
.feat-row .label { flex: 1; display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); }
.feat-div { height: 1px; background: var(--separator); }
.plan-card { position: relative; border: none; background: var(--accent-wash); border-radius: var(--r); padding: 18px; box-shadow: 0 0 4px var(--shadow); }
.plan-top { display: flex; justify-content: space-between; align-items: baseline; }
.plan-name { font-size: 18px; font-weight: 600; }
.plan-year { font-size: 15px; color: var(--ink-2); }
.plan-price { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; }
.plan-price b { font-size: 24px; }
.plan-price s { font-size: 15px; color: var(--ink-2); }
.save-badge { position: absolute; top: -10px; left: 16px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }

/* ===== Chat ===== */
.topbar { display: flex; align-items: center; gap: 12px; padding: 0 16px; }
.topbar .proj-title { flex: 1; text-align: center; font-size: 17px; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upgrade { display: flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; border-radius: 999px; background: var(--surface); box-shadow: 0 2px 8px var(--shadow); color: var(--accent); font-weight: 600; font-size: 16px; }

.transcript { flex: 1; overflow-y: auto; padding: 30px 16px 28px; display: flex; flex-direction: column; gap: 40px; -webkit-overflow-scrolling: touch; }
.transcript::-webkit-scrollbar { width: 0; }

/* Squared top-right corner, 10px elsewhere — matches the frame. No stroke. */
.msg-user {
  align-self: flex-end; max-width: 280px;
  background: var(--surface); border: none;
  border-radius: var(--r) 0 var(--r) var(--r);
  padding: 12px 16px; font-size: 18px; line-height: 1.5; color: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.msg-ai { align-self: stretch; display: flex; flex-direction: column; gap: 14px; }
.avatar { width: 30px; height: 30px; }
.ai-text { font-size: 18px; color: var(--ink); line-height: 1.5; }
.ai-text ul { margin: 12px 0; padding-left: 20px; margin-left: -10px; }
.ai-text li { margin: 12px 0; }
.ai-text p { margin: 12px 0; }
.ai-text p:first-child, .ai-text ul:first-child { margin-top: 0; }
.ai-text p:last-child, .ai-text ul:last-child { margin-bottom: 0; }
.ai-text b { font-weight: 600; }
.actions { display: flex; align-items: center; gap: 22px; color: var(--ink-2); margin-top: 26px; }
.actions button { color: var(--ink-2); display: flex; }
.actions .tools { display: flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 300; }

.typing { display: flex; gap: 6px; }
.typing i { width: 7px; height: 7px; border-radius: 999px; background: var(--ink-3); animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.2s; }
.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.35; } 30% { opacity: 1; } }

/* Empty state */
/* Suggestions are left-aligned and sit just above the composer, not centred. */
.empty { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 16px 36px; }
.suggestions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.suggestion { display: flex; align-items: center; gap: 14px; padding: 0; color: var(--ink-2); font-size: 18px; }
.suggestion .ico { width: 22px; display: flex; justify-content: center; }

/* Composer */
.composer-wrap { padding: 0 16px; }
.composer {
  display: flex; align-items: center; gap: 14px;
  min-height: 56px; padding: 0 10px 0 14px;
  background: var(--surface); border: none;
  border-radius: var(--r);
  box-shadow: 0 0 24px rgba(14, 30, 44, 0.13);
}
.composer .plus { color: var(--ink); display: flex; flex: 0 0 auto; }
.composer input { flex: 1; border: none; outline: none; background: none; font-size: 20px; color: var(--ink); min-width: 0; }
.composer input::placeholder { color: var(--ink-2); }
.composer .mic { color: var(--ink); display: flex; flex: 0 0 auto; }
.composer .orb { width: 36px; height: 36px; border-radius: 999px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }

/* ===== Overlays ===== */
.scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.22); animation: fade 0.2s ease; z-index: 20; }
.popover { position: absolute; z-index: 21; background: var(--surface); border: none; border-radius: var(--r); box-shadow: 0 12px 28px var(--shadow-strong); padding: 4px 0; animation: pop 0.18s ease; }
@keyframes pop { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.popover-row { display: flex; align-items: center; gap: 14px; padding: 12px 16px; color: var(--ink); font-size: 16px; width: 100%; text-align: left; }
.popover-row .ico { width: 22px; display: flex; }

.drawer { position: absolute; z-index: 21; top: 0; left: 0; bottom: 0; width: 309px; background: var(--surface); box-shadow: 6px 0 24px var(--shadow-strong); display: flex; flex-direction: column; animation: slidein 0.3s ease; border-radius: 0 12px 12px 0; }
@keyframes slidein { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes slideout { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Exit animations — without these the panel is deleted mid-air and appears to
   blink out instead of sliding away. */
.drawer.closing { animation: slideout 0.22s cubic-bezier(0.4, 0, 1, 1) forwards; }
.popover.closing, .proj-menu.closing { animation: popout 0.15s ease forwards; }
.scrim.closing { animation: fadeout 0.2s ease forwards; }
@keyframes popout { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.94); } }

@media (prefers-reduced-motion: reduce) {
  .screen, .drawer, .popover, .proj-menu, .scrim { animation-duration: 0.01ms !important; }
}
.drawer .dh { display: flex; align-items: center; gap: 10px; padding: 16px 20px; }
.drawer .dh .name { font-family: var(--serif); font-weight: 600; font-size: 22px; }
.drawer .new { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: var(--accent); font-weight: 600; font-size: 16px; }
.drawer .sec { padding: 16px 20px 6px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.drawer .recent { display: flex; align-items: center; gap: 12px; padding: 11px 20px; color: var(--ink); font-size: 15px; }
.drawer .recent .ico { color: var(--ink-2); display: flex; }
.drawer .foot { margin-top: auto; display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-top: 1px solid var(--separator); }
.avatar-initials { width: 34px; height: 34px; border-radius: 999px; background: #55697E; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }

/* ===== Drawer (ready-for-dev redesign) ===== */
.drawer-cloud { width: 196px; margin: 50px 0 0 -22px; transform: rotate(4.93deg); transform-origin: center; }
.drawer-nav { padding: 8px 0; margin-top: 24px; }

/* Projects — separate threads that share one memory. */
.drawer-scroll { flex: 1; overflow-y: auto; min-height: 0; padding-bottom: 96px; }
.drawer-scroll::-webkit-scrollbar { width: 0; }
/* "Recents" — Inter Light 15px, not an uppercase eyebrow. */
.drawer-sec { font-size: 15px; font-weight: 300; color: var(--ink-2); padding: 14px 20px 8px; }
.drawer-rule { height: 1px; background: var(--separator); margin: 16px 20px 0; }
.proj-row {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 11px 14px; margin: 0 8px 4px; width: calc(100% - 16px);
  border-radius: var(--r); color: var(--ink); font-size: 17px; text-align: left;
}
/* Project rows carry no glyph; the slot stays so names align with "New project". */
.proj-row .ico { display: flex; justify-content: center; width: 20px; color: var(--ink-2); flex: 0 0 auto; }
.proj-row .nm { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.proj-row.active { background: var(--soft-sky); }
.proj-row .pinned { display: flex; color: var(--ink-2); flex: 0 0 auto; }
.proj-row.renaming { padding: 4px 8px; }
.proj-rename {
  width: 100%; height: 38px; padding: 0 12px;
  border: none; outline: none; border-radius: var(--r);
  background: var(--surface); box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.35);
  font-family: var(--sans); font-size: 17px; color: var(--ink);
}

/* Per-project menu (node 1334:3273): 160 wide, Cloud White, 10px, soft shadow. */
.scrim-clear { background: transparent; }
.proj-menu {
  position: absolute; z-index: 22; left: 196px; width: 160px;
  background: var(--cloud-white); border-radius: var(--r);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 0; animation: pop 0.16s ease;
}
.pm-row {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 8px 14px; color: var(--ink); font-size: 15px; text-align: left;
}
.pm-row .ico { display: flex; width: 22px; justify-content: center; color: var(--ink); flex: 0 0 auto; }
.pm-row:active { background: var(--soft-sky); }
.pm-row.danger, .pm-row.danger .ico { color: #E5484D; }
.drawer-item { display: flex; align-items: center; gap: 20px; width: 100%; padding: 12px 16px; color: var(--ink); font-size: 20px; font-weight: 500; }
.drawer-item .ico { display: flex; color: var(--ink); }
.drawer-item:active { background: var(--accent-wash); }
.drawer-foot { position: absolute; left: 0; right: 0; bottom: 0; height: 84px; display: flex; align-items: center; gap: 12px; padding: 0 16px; background: var(--surface); box-shadow: 0 -2px 10px rgba(14,30,44,0.04); border-radius: 0 0 12px 0; }
.drawer-foot .avatar-initials { background: var(--accent-wash); color: var(--ink); font-weight: 600; }
.drawer-foot .who { flex: 1; min-width: 0; }
.drawer-foot .who-name { font-size: 20px; color: var(--ink); }
.drawer-foot .who-plan { font-size: 15px; color: var(--ink-2); font-weight: 300; }
.drawer-foot .moon { display: flex; color: var(--ink-2); padding: 8px; }

/* ===== In-app settings screens (Integrations / Library) ===== */
.settings-nav { display: flex; align-items: center; gap: 12px; padding: 0 16px; }
.settings-nav .title { flex: 1; text-align: center; font-size: 22px; font-weight: 500; color: var(--ink); }
.settings-nav .trail { display: flex; color: var(--ink-2); padding: 8px; }
.settings-scroll { flex: 1; overflow-y: auto; padding: 8px 16px calc(env(safe-area-inset-bottom) + 24px); }
.settings-scroll::-webkit-scrollbar { width: 0; }
.settings-section { color: var(--ink-2); font-size: 18px; padding: 20px 8px 10px; }
.settings-card { background: var(--surface); border: none; border-radius: 10px; box-shadow: 0 0 4px var(--shadow); padding: 6px 0; }
.settings-row { display: flex; align-items: center; gap: 15px; padding: 14px 16px; }
.settings-row .mark { width: 22px; display: flex; justify-content: center; }
.settings-row .txt { flex: 1; min-width: 0; }
.settings-row .r-name { font-size: 15px; color: var(--ink); }
.settings-row .r-sub { font-size: 12px; color: var(--ink-2); }
.pill-connected, .pill-connect { height: 30px; padding: 0 18px; border-radius: 30px; font-size: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0.5px 4px var(--shadow); }
.pill-connected { background: var(--accent); color: #fff; min-width: 110px; }
.pill-connect { background: var(--accent-wash); color: var(--ink); min-width: 100px; }
.mcp-row { display: flex; align-items: center; gap: 20px; width: 100%; padding: 16px; color: var(--ink); font-size: 18px; }
.mcp-row .ico { display: flex; color: var(--ink); }
/* Memory — read-only. Deliberately not an editable field. */
.note-line { padding: 12px 16px; font-size: 16px; line-height: 1.45; color: var(--ink); }
.note-line + .note-line { box-shadow: inset 0 1px 0 var(--separator); }
.note-empty { padding: 14px 16px; font-size: 15px; color: var(--ink-2); }
.note-foot { padding: 20px 8px 8px; font-size: 13px; line-height: 1.5; color: var(--ink-2); }

.lib-row { display: flex; align-items: center; gap: 14px; padding: 14px 12px; color: var(--ink); font-size: 16px; background: var(--surface); border-radius: var(--r); box-shadow: 0 0 4px var(--shadow); margin-bottom: 10px; }
.lib-row .ico { display: flex; color: var(--ink-2); }

/* ===== Dark theme ===== */
:root[data-theme="dark"] {
  --accent: #3E8EDE;
  --accent-soft: #6FB0EC;
  --accent-wash: rgba(62, 142, 222, 0.16);
  --ink: #EAF1F8;
  --ink-2: #93A6BA;
  --ink-3: #5E7387;
  --bg-top: #0F1B28;
  --bg-bottom: #0A1420;
  --surface: #16232F;
  --separator: #253544;
  --field: #16232F;
  --shadow: rgba(0, 0, 0, 0.4);
  --shadow-strong: rgba(0, 0, 0, 0.6);
}
html[data-theme="dark"], html[data-theme="dark"] body { background: #060b12; }

/* utility */
.hidden { display: none !important; }
